sys_arch.h 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. /*
  2. * Copyright (c) 2001-2003 Swedish Institute of Computer Science.
  3. * All rights reserved.
  4. *
  5. * Redistribution and use in source and binary forms, with or without modification,
  6. * are permitted provided that the following conditions are met:
  7. *
  8. * 1. Redistributions of source code must retain the above copyright notice,
  9. * this list of conditions and the following disclaimer.
  10. * 2. Redistributions in binary form must reproduce the above copyright notice,
  11. * this list of conditions and the following disclaimer in the documentation
  12. * and/or other materials provided with the distribution.
  13. * 3. The name of the author may not be used to endorse or promote products
  14. * derived from this software without specific prior written permission.
  15. *
  16. * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
  17. * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  18. * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
  19. * SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  20. * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
  21. * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  22. * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  23. * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
  24. * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
  25. * OF SUCH DAMAGE.
  26. *
  27. * This file is part of the lwIP TCP/IP stack.
  28. *
  29. * Author: Adam Dunkels <adam@sics.se>
  30. *
  31. */
  32. #ifndef __SYS_RTXC_H__
  33. #define __SYS_RTXC_H__
  34. #include "FreeRTOS.h"
  35. #include "task.h"
  36. #include "queue.h"
  37. #include "semphr.h"
  38. //#include "cmsis_os.h"
  39. #if LWIP_SOCKET_SET_ERRNO
  40. #include <errno.h>
  41. #endif
  42. #define SYS_MBOX_NULL ( ( QueueHandle_t ) NULL )
  43. #define SYS_SEM_NULL ( ( SemaphoreHandle_t ) NULL )
  44. #define SYS_DEFAULT_THREAD_STACK_DEPTH configMINIMAL_STACK_SIZE
  45. typedef SemaphoreHandle_t sys_sem_t;
  46. typedef SemaphoreHandle_t sys_mutex_t;
  47. typedef QueueHandle_t sys_mbox_t;
  48. typedef TaskHandle_t sys_thread_t;
  49. typedef struct _sys_arch_state_t
  50. {
  51. // Task creation data.
  52. char cTaskName[configMAX_TASK_NAME_LEN];
  53. unsigned short nStackDepth;
  54. unsigned short nTaskCount;
  55. } sys_arch_state_t;
  56. //extern sys_arch_state_t s_sys_arch_state;
  57. //void sys_set_default_state();
  58. //void sys_set_state(signed char *pTaskName, unsigned short nStackSize);
  59. /* Message queue constants. */
  60. #define archMESG_QUEUE_LENGTH ( 6 )
  61. #endif /* __SYS_RTXC_H__ */
  62. #if 0
  63. /*
  64. * Copyright (c) 2017 Simon Goldschmidt
  65. * All rights reserved.
  66. *
  67. * Redistribution and use in source and binary forms, with or without modification,
  68. * are permitted provided that the following conditions are met:
  69. *
  70. * 1. Redistributions of source code must retain the above copyright notice,
  71. * this list of conditions and the following disclaimer.
  72. * 2. Redistributions in binary form must reproduce the above copyright notice,
  73. * this list of conditions and the following disclaimer in the documentation
  74. * and/or other materials provided with the distribution.
  75. * 3. The name of the author may not be used to endorse or promote products
  76. * derived from this software without specific prior written permission.
  77. *
  78. * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
  79. * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  80. * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
  81. * SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  82. * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
  83. * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  84. * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  85. * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
  86. * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
  87. * OF SUCH DAMAGE.
  88. *
  89. * This file is part of the lwIP TCP/IP stack.
  90. *
  91. * Author: Simon Goldschmidt
  92. *
  93. */
  94. #ifndef LWIP_HDR_TEST_SYS_ARCH_H
  95. #define LWIP_HDR_TEST_SYS_ARCH_H
  96. #include "FreeRTOS.h"
  97. #include "task.h"
  98. #include "queue.h"
  99. #include "semphr.h"
  100. /* 定义与FreeRTOS相结合的数据结构 */
  101. typedef xSemaphoreHandle sys_sem_t;
  102. typedef xQueueHandle sys_mbox_t;
  103. typedef xTaskHandle sys_thread_t;
  104. //typedef int sys_sem_t;
  105. //#define sys_sem_valid(sema) ((sema) != NULL)
  106. typedef int sys_mutex_t;
  107. //#define sys_mutex_valid(mutex) (((mutex) != NULL)
  108. //struct lwip_mbox {
  109. // void* sem;
  110. // void** q_mem;
  111. // unsigned int head, tail;
  112. // int size;
  113. // int used;
  114. //};
  115. //typedef struct lwip_mbox sys_mbox_t;
  116. //#define SYS_MBOX_NULL NULL
  117. //#define sys_mbox_valid(mbox) ((mbox != NULL) && ((mbox)->sem != NULL) && ((mbox)->sem != (void*)-1))
  118. //#define sys_mbox_valid_val(mbox) (((mbox).sem != NULL) && ((mbox).sem != (void*)-1))
  119. /* DWORD (thread id) is used for sys_thread_t but we won't include windows.h */
  120. //typedef u32_t sys_thread_t;
  121. //#define SYS_ARCH_DECL_PROTECT(lev)
  122. //#define SYS_ARCH_PROTECT(lev)
  123. //#define SYS_ARCH_UNPROTECT(lev)
  124. /* to implement doing something while blocking on an mbox or semaphore:
  125. * pass a function to test_sys_arch_wait_callback() that returns
  126. * '0' if waiting again and
  127. * '1' if now there should be something to do (used for asserting)
  128. */
  129. typedef int (*test_sys_arch_waiting_fn)(sys_sem_t* wait_sem, sys_mbox_t* wait_mbox);
  130. void test_sys_arch_wait_callback(test_sys_arch_waiting_fn waiting_fn);
  131. /* current time */
  132. extern u32_t lwip_sys_now;
  133. #endif /* LWIP_HDR_TEST_SYS_ARCH_H */
  134. #endif