template and default configuration build

This commit is contained in:
Joseph Julicher 2023-09-15 14:01:32 -07:00
parent bddb61e88b
commit 81bd4c1776
2 changed files with 2 additions and 6 deletions

View file

@ -71,7 +71,7 @@ normally using a count leading zeros assembly instruction. Set to 0 to select
the next task to run using a generic C algorithm that works for all FreeRTOS
ports. Not all FreeRTOS ports have this option. Defaults to 0 if left
undefined. */
#define configUSE_PORT_OPTIMISED_TASK_SELECTION 1
#define configUSE_PORT_OPTIMISED_TASK_SELECTION 0
/* Set configUSE_TICKLESS_IDLE to 1 to use the low power tickless mode. Set to
0 to keep the tick interrupt running at all times. Not all FreeRTOS ports
@ -327,10 +327,6 @@ or it can simple disable interrupts and sit in a loop to halt all execution
on the failing line for viewing in a debugger. */
#define configASSERT( x ) if( ( x ) == 0 ) { taskDISABLE_INTERRUPTS(); for( ;; ); }
/******************************************************************************/
/* Cortex-M MPU specific definitions. *****************************************/
/******************************************************************************/

View file

@ -55,7 +55,7 @@ typedef unsigned char UBaseType_t;
/*-----------------------------------------------------------*/
#define portGET_HIGHEST_PRIORITY( uxTopPriority, uxReadyPriorities )
#define portGET_HIGHEST_PRIORITY( uxTopPriority, uxReadyPriorities ) {uxTopPriority = 0;}while(0)
#endif /* configUSE_PORT_OPTIMISED_TASK_SELECTION */