mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-09-17 19:47:44 -04:00
For RL78GCC port/demo:
- Added YRDKRL78G14 build configuration. - Runs provided the dynamic priority tasks are not started. - Does not run with the debugger connected.
This commit is contained in:
parent
fba04057ec
commit
08b959f143
10 changed files with 365 additions and 57 deletions
|
@ -91,12 +91,12 @@
|
|||
#define configTICK_RATE_HZ ( ( unsigned short ) 1000 )
|
||||
#define configCPU_CLOCK_HZ ( ( unsigned long ) 32000000 ) /* Using the internal high speed clock */
|
||||
#define configMAX_PRIORITIES ( ( unsigned portBASE_TYPE ) 4 )
|
||||
#define configMINIMAL_STACK_SIZE ( ( unsigned short ) 80 )
|
||||
#define configMINIMAL_STACK_SIZE ( ( unsigned short ) 100 )
|
||||
#define configMAX_TASK_NAME_LEN ( 10 )
|
||||
#define configUSE_TRACE_FACILITY 0
|
||||
#define configUSE_16_BIT_TICKS 1
|
||||
#define configIDLE_SHOULD_YIELD 1
|
||||
#define configTOTAL_HEAP_SIZE ( (size_t ) ( 3420 ) )
|
||||
#define configTOTAL_HEAP_SIZE ( (size_t ) ( 5000 ) )
|
||||
#define configCHECK_FOR_STACK_OVERFLOW 2
|
||||
#define configUSE_MUTEXES 1
|
||||
|
||||
|
@ -127,7 +127,7 @@ to exclude the API function. */
|
|||
#define INCLUDE_xTaskGetIdleTaskHandle 0
|
||||
#define INCLUDE_xTimerGetTimerDaemonTaskHandle 0
|
||||
|
||||
#define configASSERT( x ) if( ( x ) == 0 ) { taskDISABLE_INTERRUPTS(); for( ;; ); }
|
||||
#define configASSERT( x ) if( ( x ) == 0 ) vAssertCalled()
|
||||
|
||||
#define __DATA_MODEL_FAR__ 0
|
||||
#define __DATA_MODEL_NEAR__ 1
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue