Upgrade to FreeRTOS v9.0.0
This commit is contained in:
parent
22c480b583
commit
c9c69178ff
53 changed files with 20817 additions and 13816 deletions
|
|
@ -34,13 +34,6 @@
|
|||
#define configUSE_TICK_HOOK 0
|
||||
#endif
|
||||
#ifndef configCPU_CLOCK_HZ
|
||||
/* This is the _default_ clock speed for the CPU. Can be either 80MHz
|
||||
* or 160MHz, and the system will set the clock speed to match at startup.
|
||||
|
||||
Note that it's possible to change the clock speed at runtime, so you
|
||||
can/should use sdk_system_get_cpu_frequency() in order to determine the
|
||||
current CPU frequency, in preference to this macro.
|
||||
*/
|
||||
#define configCPU_CLOCK_HZ ( ( unsigned long ) 80000000 )
|
||||
#endif
|
||||
#ifndef configTICK_RATE_HZ
|
||||
|
|
@ -88,6 +81,15 @@ current CPU frequency, in preference to this macro.
|
|||
#define configUSE_TIMERS 1
|
||||
#endif
|
||||
|
||||
#ifndef configUSE_QUEUE_SETS
|
||||
#define configUSE_QUEUE_SETS 1
|
||||
#endif
|
||||
#ifndef configUSE_TASK_NOTIFICATIONS
|
||||
#define configUSE_TASK_NOTIFICATIONS 1
|
||||
#endif
|
||||
#ifndef configUSE_COUNTING_SEMAPHORES
|
||||
#define configUSE_COUNTING_SEMAPHORES 1
|
||||
#endif
|
||||
|
||||
#if configUSE_TIMERS
|
||||
#ifndef configTIMER_TASK_PRIORITY
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue