|
|
|
@ -140,19 +140,6 @@ to exclude the API function. */
|
|
|
|
|
#define INCLUDE_vTaskDelayUntil 1
|
|
|
|
|
#define INCLUDE_vTaskDelay 1
|
|
|
|
|
|
|
|
|
|
/* FreeRTOS+CLI definitions. */
|
|
|
|
|
|
|
|
|
|
/* Dimensions a buffer into which command outputs can be written. The buffer
|
|
|
|
|
can be declared in the CLI code itself, to allow multiple command consoles to
|
|
|
|
|
share the same buffer. For example, an application may allow access to the
|
|
|
|
|
command interpreter by UART and by Ethernet. Sharing a buffer is done purely
|
|
|
|
|
to save RAM. Note, however, that the command console itself is not re-entrant,
|
|
|
|
|
so only one command interpreter interface can be used at any one time. For
|
|
|
|
|
that reason, no attempt at providing mutual exclusion to the buffer is
|
|
|
|
|
attempted. */
|
|
|
|
|
#define configCOMMAND_INT_MAX_OUTPUT_SIZE 400
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Cortex-M specific definitions. */
|
|
|
|
|
|
|
|
|
|
#ifdef __NVIC_PRIO_BITS
|
|
|
|
@ -192,5 +179,11 @@ void vPostSleepProcessing( unsigned long xExpectedIdleTime );
|
|
|
|
|
#define configPRE_SLEEP_PROCESSING( xExpectedIdleTime ) vPreSleepProcessing( xExpectedIdleTime );
|
|
|
|
|
#define configPOST_SLEEP_PROCESSING( xExpectedIdleTime ) vPostSleepProcessing( xExpectedIdleTime );
|
|
|
|
|
|
|
|
|
|
/* Definitions that map the FreeRTOS port interrupt handlers to their CMSIS
|
|
|
|
|
standard names. */
|
|
|
|
|
#define vPortSVCHandler SVC_Handler
|
|
|
|
|
#define xPortPendSVHandler PendSV_Handler
|
|
|
|
|
#define xPortSysTickHandler SysTick_Handler
|
|
|
|
|
|
|
|
|
|
#endif /* FREERTOS_CONFIG_H */
|
|
|
|
|
|
|
|
|
|