FreeRTOSConfig.h 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. /*
  2. * FreeRTOS V202104.00
  3. * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
  4. *
  5. * Permission is hereby granted, free of charge, to any person obtaining a copy of
  6. * this software and associated documentation files (the "Software"), to deal in
  7. * the Software without restriction, including without limitation the rights to
  8. * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
  9. * the Software, and to permit persons to whom the Software is furnished to do so,
  10. * subject to the following conditions:
  11. *
  12. * The above copyright notice and this permission notice shall be included in all
  13. * copies or substantial portions of the Software.
  14. *
  15. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  16. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
  17. * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
  18. * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
  19. * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  20. * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  21. *
  22. * http://www.FreeRTOS.org
  23. * http://aws.amazon.com/freertos
  24. *
  25. * 1 tab == 4 spaces!
  26. */
  27. #ifndef FREERTOS_CONFIG_H
  28. #define FREERTOS_CONFIG_H
  29. /*-----------------------------------------------------------
  30. * Application specific definitions.
  31. *
  32. * These definitions should be adjusted for your particular hardware and
  33. * application requirements.
  34. *
  35. * THESE PARAMETERS ARE DESCRIBED WITHIN THE 'CONFIGURATION' SECTION OF THE
  36. * FreeRTOS API DOCUMENTATION AVAILABLE ON THE FreeRTOS.org WEB SITE.
  37. *
  38. * See http://www.freertos.org/a00110.html
  39. *----------------------------------------------------------*/
  40. #define configCPU_CLOCK_HZ /* Not used in this port as the value comes from the Atmel libraries. */
  41. #define configUSE_PORT_OPTIMISED_TASK_SELECTION 1
  42. #define configUSE_TICKLESS_IDLE 0
  43. #define configTICK_RATE_HZ ( ( TickType_t ) 1000 )
  44. #define configUSE_PREEMPTION 1
  45. #define configUSE_IDLE_HOOK 1
  46. #define configUSE_TICK_HOOK 1
  47. #define configMAX_PRIORITIES ( 32 )
  48. #define configMINIMAL_STACK_SIZE ( ( unsigned short ) 512 )
  49. #ifdef DDR16X16
  50. #ifdef VG_DRIVER
  51. #ifdef VG_ONLY
  52. #ifdef AWTK
  53. // 注意:AWTK使用时, 堆大小不可任意设计, 一般需将堆大小设置为1MB或者512KB的倍数, 其他值慎用。
  54. // ***
  55. // configTOTAL_HEAP_SIZE 不可以随意设置,比如( 18.8 * 1024 * 1024), 当设置为该值时, 使能Google 拼音输入法后,当输入拼音提取候选字时, 内核报告如下异常
  56. // Data Abort occured in 0 domain
  57. // Data abort fault reason is: Translation fault - section
  58. // Data fault occured at Address = 0x2200001c
  59. // -[Info]-Data fault status register value = 0x805
  60. // 将 configTOTAL_HEAP_SIZE 改为 ( 18.5 * 1024 * 1024)后(512KB的倍数), 上述异常不再出现
  61. // ***
  62. //
  63. //#define configTOTAL_HEAP_SIZE ( ( size_t ) ( 18.8 * 1024 * 1024) ) // google拼音出现异常
  64. #define configTOTAL_HEAP_SIZE ( ( size_t ) ( 18.5 * 1024 * 1024) ) // google拼音正常工作
  65. #else
  66. #define configTOTAL_HEAP_SIZE ( ( size_t ) ( 20 * 1024 * 1024) )
  67. #endif
  68. #else
  69. #ifdef REVERSE_TRACK
  70. #define configTOTAL_HEAP_SIZE ( ( size_t ) ( 22 * 1024 * 1024) )
  71. #else
  72. #define configTOTAL_HEAP_SIZE ( ( size_t ) ( 18 * 1024 * 1024) )
  73. #endif
  74. #endif
  75. #else
  76. #define configTOTAL_HEAP_SIZE ( ( size_t ) ( 28 * 1024 * 1024) )
  77. #endif
  78. #else
  79. #ifdef VG_DRIVER
  80. #error "DDR8MX16 can't support vg_driver!"
  81. #endif
  82. #define configTOTAL_HEAP_SIZE ( ( size_t ) ( 14 * 1024 * 1024) )
  83. #endif
  84. #define configMAX_TASK_NAME_LEN ( 10 )
  85. #define configUSE_TRACE_FACILITY 1
  86. #define configUSE_16_BIT_TICKS 0
  87. #define configIDLE_SHOULD_YIELD 1
  88. #define configUSE_MUTEXES 1
  89. #define configQUEUE_REGISTRY_SIZE 8
  90. #define configCHECK_FOR_STACK_OVERFLOW 2
  91. #define configUSE_RECURSIVE_MUTEXES 1
  92. #define configUSE_MALLOC_FAILED_HOOK 1
  93. #define configUSE_APPLICATION_TASK_TAG 1
  94. #define configUSE_COUNTING_SEMAPHORES 1
  95. #define configSUPPORT_STATIC_ALLOCATION 1
  96. #define configNUM_THREAD_LOCAL_STORAGE_POINTERS 3 /* FreeRTOS+FAT requires 2 pointers if a CWD is supported. */
  97. /* Co-routine definitions. */
  98. #define configUSE_CO_ROUTINES 0
  99. #define configMAX_CO_ROUTINE_PRIORITIES ( 2 )
  100. /* Software timer definitions. */
  101. #define configUSE_TIMERS 1
  102. #define configTIMER_TASK_PRIORITY ( configMAX_PRIORITIES - 1 )
  103. #define configTIMER_QUEUE_LENGTH 16
  104. #define configTIMER_TASK_STACK_DEPTH ( configMINIMAL_STACK_SIZE * 2 )
  105. /* Set the following definitions to 1 to include the API function, or zero
  106. to exclude the API function. */
  107. #define INCLUDE_vTaskPrioritySet 1
  108. #define INCLUDE_uxTaskPriorityGet 1
  109. #define INCLUDE_vTaskDelete 1
  110. #define INCLUDE_vTaskCleanUpResources 1
  111. #define INCLUDE_vTaskSuspend 1
  112. #define INCLUDE_vTaskDelayUntil 1
  113. #define INCLUDE_vTaskDelay 1
  114. #define INCLUDE_eTaskGetState 1
  115. #define INCLUDE_xEventGroupSetBitsFromISR 1
  116. #define INCLUDE_xTimerPendFunctionCall 1
  117. #define INCLUDE_xQueueGetMutexHolder 1 // pthread
  118. /* This demo makes use of one or more example stats formatting functions. These
  119. format the raw data provided by the uxTaskGetSystemState() function in to human
  120. readable ASCII form. See the notes in the implementation of vTaskList() within
  121. FreeRTOS/Source/tasks.c for limitations. */
  122. #define configUSE_STATS_FORMATTING_FUNCTIONS 1
  123. /* Cortex-A specific setting: FPU has 32 (rather than 16) d registers. See:
  124. http://www.FreeRTOS.org/Using-FreeRTOS-on-Cortex-A-proprietary-interrupt-controller.html */
  125. #define configFPU_D32 0
  126. /* Cortex-A specific setting: The address of the register within the interrupt
  127. controller from which the address of the current interrupt's handling function
  128. can be obtained. See:
  129. http://www.FreeRTOS.org/Using-FreeRTOS-on-Cortex-A-proprietary-interrupt-controller.html */
  130. /* #define configINTERRUPT_VECTOR_ADDRESS 0xFC06E010UL */
  131. /* Cortex-A specific setting: The address of End of Interrupt register within
  132. the interrupt controller. See:
  133. http://www.FreeRTOS.org/Using-FreeRTOS-on-Cortex-A-proprietary-interrupt-controller.html */
  134. /* #define configEOI_ADDRESS 0xFC06E038UL */
  135. /* Cortex-A specific setting: configCLEAR_TICK_INTERRUPT() is a macro that is
  136. called by the RTOS kernel's tick handler to clear the source of the tick
  137. interrupt. See:
  138. http://www.FreeRTOS.org/Using-FreeRTOS-on-Cortex-A-proprietary-interrupt-controller.html */
  139. /* Clear timer0 interrupt. */
  140. #define configCLEAR_TICK_INTERRUPT()
  141. /* Prevent C code being included in assembly files when the IAR compiler is
  142. used. */
  143. #ifndef __IASMARM__
  144. /* The interrupt nesting test creates a 20KHz timer. For convenience the
  145. 20KHz timer is also used to generate the run time stats time base, removing
  146. the need to use a separate timer for that purpose. The 20KHz timer
  147. increments ulHighFrequencyTimerCounts, which is used as the time base.
  148. Therefore the following macro is not implemented. */
  149. #define configGENERATE_RUN_TIME_STATS 1
  150. extern void vInitialiseTimerForRunTimeState();
  151. #define portCONFIGURE_TIMER_FOR_RUN_TIME_STATS() vInitialiseTimerForRunTimeState();
  152. extern volatile uint32_t ulHighFrequencyTimerCounts;
  153. #define portGET_RUN_TIME_COUNTER_VALUE() ulHighFrequencyTimerCounts
  154. /* The size of the global output buffer that is available for use when there
  155. are multiple command interpreters running at once (for example, one on a UART
  156. and one on TCP/IP). This is done to prevent an output buffer being defined by
  157. each implementation - which would waste RAM. In this case, there is only one
  158. command interpreter running. */
  159. #define configCOMMAND_INT_MAX_OUTPUT_SIZE 3000
  160. /* Normal assert() semantics without relying on the provision of an assert.h
  161. header file. */
  162. void vAssertCalled( const char * pcFile, unsigned long ulLine );
  163. #define configASSERT( x ) if( ( x ) == 0 ) vAssertCalled( __FILE__, __LINE__ );
  164. /****** Hardware specific settings. *******************************************/
  165. /*
  166. * The application must provide a function that configures a peripheral to
  167. * create the FreeRTOS tick interrupt, then define configSETUP_TICK_INTERRUPT()
  168. * in FreeRTOSConfig.h to call the function. FreeRTOS_Tick_Handler() must
  169. * be installed as the peripheral's interrupt handler.
  170. */
  171. void vConfigureTickInterrupt( void );
  172. #define configSETUP_TICK_INTERRUPT() vConfigureTickInterrupt()
  173. #endif /* __IASMARM__ */
  174. #endif /* FREERTOS_CONFIG_H */