diff options
| author | hathach <[email protected]> | 2014-03-31 14:33:40 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2014-03-31 14:33:40 +0700 |
| commit | cee41a787126b08e86d5ccd600bd32ae016d761b (patch) | |
| tree | e53a7810d8fbed4c4981cdd7837a5a3cf9213d4f /boards | |
| parent | 124dffd2cdd45fb2588165c6b3dfce55669a47c3 (diff) | |
fix keil ngx4330 invalid ram init path
add ngx, lpc1769 to keil/iar/lpcxpresso device freertos
Diffstat (limited to 'boards')
| -rw-r--r-- | boards/board.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/boards/board.c b/boards/board.c index 504bb9442..6830d27e8 100644 --- a/boards/board.c +++ b/boards/board.c @@ -63,7 +63,7 @@ static uint32_t led_blink_interval_ms = 1000; // default is 1 second void led_blinking_init(void)
{
- (void) osal_task_create( OSAL_TASK_REF(led_blinking_task) );
+ ASSERT(TUSB_ERROR_NONE == osal_task_create( OSAL_TASK_REF(led_blinking_task) ), VOID_RETURN );
}
void led_blinking_set_interval(uint32_t ms)
|
