Complete RL78/G14 demo.

This commit is contained in:
Richard Barry 2013-03-17 12:12:20 +00:00
parent 3b1ff85222
commit c79a5fe50c
7 changed files with 702 additions and 302 deletions

View file

@ -122,12 +122,12 @@ to exclude the API function. */
#define INCLUDE_vTaskDelete 0
#define INCLUDE_vTaskCleanUpResources 0
#define INCLUDE_vTaskSuspend 1
#define INCLUDE_vTaskDelayUntil 0
#define INCLUDE_vTaskDelayUntil 1
#define INCLUDE_vTaskDelay 1
#define INCLUDE_xTaskGetIdleTaskHandle 0
#define INCLUDE_xTimerGetTimerDaemonTaskHandle 0
#define configASSERT( x ) if( ( x ) == 0 ) vAssertCalled()
#define configASSERT( x ) if( ( x ) == 0 ) { taskDISABLE_INTERRUPTS(); for( ;; ); }
#endif /* FREERTOS_CONFIG_H */