mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-20 05:21:59 -04:00
Merge branch 'main' into link
This commit is contained in:
commit
06f71b8a2c
|
@ -621,6 +621,13 @@
|
||||||
#define traceTASK_SWITCHED_IN()
|
#define traceTASK_SWITCHED_IN()
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifndef traceSTARTING_SCHEDULER
|
||||||
|
|
||||||
|
/* Called after all idle tasks and timer task (if enabled) have been created
|
||||||
|
* successfully, just before the scheduler is started. */
|
||||||
|
#define traceSTARTING_SCHEDULER( xIdleTaskHandles )
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifndef traceINCREASE_TICK_COUNT
|
#ifndef traceINCREASE_TICK_COUNT
|
||||||
|
|
||||||
/* Called before stepping the tick count after waking from tickless idle
|
/* Called before stepping the tick count after waking from tickless idle
|
||||||
|
|
|
@ -34,7 +34,7 @@
|
||||||
#include "FreeRTOS.h"
|
#include "FreeRTOS.h"
|
||||||
#include "task.h"
|
#include "task.h"
|
||||||
|
|
||||||
#ifndef __VFP_FP__
|
#ifndef __ARM_FP
|
||||||
#error This port can only be used when the project options are configured to enable hardware floating point support.
|
#error This port can only be used when the project options are configured to enable hardware floating point support.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
@ -40,7 +40,7 @@
|
||||||
#include "task.h"
|
#include "task.h"
|
||||||
#include "mpu_syscall_numbers.h"
|
#include "mpu_syscall_numbers.h"
|
||||||
|
|
||||||
#ifndef __VFP_FP__
|
#ifndef __ARM_FP
|
||||||
#error This port can only be used when the project options are configured to enable hardware floating point support.
|
#error This port can only be used when the project options are configured to enable hardware floating point support.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
@ -34,7 +34,7 @@
|
||||||
#include "FreeRTOS.h"
|
#include "FreeRTOS.h"
|
||||||
#include "task.h"
|
#include "task.h"
|
||||||
|
|
||||||
#ifndef __VFP_FP__
|
#ifndef __ARM_FP
|
||||||
#error This port can only be used when the project options are configured to enable hardware floating point support.
|
#error This port can only be used when the project options are configured to enable hardware floating point support.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
2
tasks.c
2
tasks.c
|
@ -3732,6 +3732,8 @@ void vTaskStartScheduler( void )
|
||||||
|
|
||||||
traceTASK_SWITCHED_IN();
|
traceTASK_SWITCHED_IN();
|
||||||
|
|
||||||
|
traceSTARTING_SCHEDULER( xIdleTaskHandles );
|
||||||
|
|
||||||
/* Setting up the timer tick is hardware specific and thus in the
|
/* Setting up the timer tick is hardware specific and thus in the
|
||||||
* portable interface. */
|
* portable interface. */
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue