FreeRTOSConfig.h 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. /*
  2. FreeRTOS V8.1.2 - Copyright (C) 2014 Real Time Engineers Ltd.
  3. All rights reserved
  4. */
  5. //
  6. #ifndef FREERTOS_CONFIG_H
  7. #define FREERTOS_CONFIG_H
  8. #include "hv_chip_Clk.h"
  9. /*-----------------------------------------------------------
  10. * Application specific definitions.
  11. *
  12. * These definitions should be adjusted for your particular hardware and
  13. * application requirements.
  14. *
  15. * THESE PARAMETERS ARE DESCRIBED WITHIN THE 'CONFIGURATION' SECTION OF THE
  16. * FreeRTOS API DOCUMENTATION AVAILABLE ON THE FreeRTOS.org WEB SITE.
  17. *
  18. * See http://www.freertos.org/a00110.html.
  19. *----------------------------------------------------------*/
  20. #define configUSE_NEWLIB_REENTRANT 1
  21. #define configUSE_PREEMPTION 1
  22. #define configUSE_PORT_OPTIMISED_TASK_SELECTION 1
  23. #define configCPU_CLOCK_HZ (HV_CHIP_CLK_CPU ) //current cpu real clock.
  24. #define configTIMER_RATE_HZ ( ( TickType_t ) (HV_CHIP_CLK_CPU/2)) //configCPU_CLOCK_HZ
  25. #define configTICK_RATE_HZ ( 100 )
  26. #define configUSE_16_BIT_TICKS 0
  27. #define configMAX_PRIORITIES ( 7 )
  28. #define configMINIMAL_STACK_SIZE ( 256 )
  29. #define configISR_STACK_SIZE ( 512 )
  30. #define configTOTAL_HEAP_SIZE ( ( size_t ) 0x200000)
  31. #define configMAX_TASK_NAME_LEN ( 32 )
  32. #define configUSE_TIMERS 1
  33. #define configTIMER_TASK_PRIORITY 5
  34. #define configTIMER_QUEUE_LENGTH 36
  35. #define configTIMER_TASK_STACK_DEPTH 512
  36. #define configUSE_TIME_SLICING 1
  37. #define configUSE_MUTEXES 1
  38. #define configUSE_RECURSIVE_MUTEXES 1
  39. #define configCHECK_FOR_STACK_OVERFLOW 1
  40. #define configUSE_CO_ROUTINES 0
  41. /* Hook functions */
  42. #define configUSE_IDLE_HOOK 0
  43. #define configUSE_TICK_HOOK 0
  44. #define configUSE_TRACE_FACILITY 1
  45. #define configUSE_STATS_FORMATTING_FUNCTIONS 0
  46. #define configSUPPORT_DYNAMIC_ALLOCATION 1
  47. #define configUSE_COUNTING_SEMAPHORES 1
  48. /* The interrupt priority of the RTOS kernel */
  49. #define configKERNEL_INTERRUPT_PRIORITY 0x01
  50. /* The maximum priority from which API functions can be called */
  51. #define configMAX_API_CALL_INTERRUPT_PRIORITY 0x03
  52. /* The runtime statics switcher */
  53. #define configGENERATE_RUN_TIME_STATS 1
  54. #if (configGENERATE_RUN_TIME_STATS == 1)
  55. #define portCONFIGURE_TIMER_FOR_RUN_TIME_STATS()
  56. #define portGET_RUN_TIME_COUNTER_VALUE() xTaskGetTickCount()
  57. #endif
  58. /* Prevent assert code from being used in assembly files */
  59. /* Optional functions */
  60. #define INCLUDE_vTaskPrioritySet 1
  61. #define INCLUDE_uxTaskPriorityGet 1
  62. #define INCLUDE_vTaskDelayUntil 1
  63. #define INCLUDE_vTaskDelay 1
  64. #define INCLUDE_uxTaskGetStackHighWaterMark 0
  65. #define INCLUDE_xTaskGetCurrentTaskHandle 1
  66. #define INCLUDE_vTaskDelete 1
  67. #define INCLUDE_vTaskSuspend 0
  68. #define INCLUDE_xTaskGetSchedulerState 1
  69. #define INCLUDE_eTaskGetState 1
  70. #define INCLUDE_xSemaphoreGetMutexHolder 1
  71. #define INCLUDE_xTimerPendFunctionCall 1
  72. #if defined(ENABLE_TRACE)
  73. #include "trace.h"
  74. #endif
  75. #endif /* FREERTOSCONFIG_H */