FreeRTOS v9.0.0 upgrade.

This commit is contained in:
ourairquality 2016-10-21 19:11:08 +11:00
parent 2994a566a6
commit efd78f754e
60 changed files with 10627 additions and 3653 deletions

View file

@ -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