mirror of
https://github.com/hathach/tinyusb.git
synced 2025-01-17 05:32:55 +08:00
962e8a2546
ngx4330 work well with lpc/keil for non/freeRTOS
17 lines
346 B
C
17 lines
346 B
C
#ifndef __FREERTOS_CONFIG__H
|
|
#define __FREERTOS_CONFIG__H
|
|
|
|
#include "hal/hal.h"
|
|
|
|
#if __CORTEX_M == 4
|
|
#include "lpc43xx_m4_FreeRTOSConfig.h"
|
|
#elif __CORTEX_M == 0
|
|
#include "lpc43xx_m0_FreeRTOSConfig.h"
|
|
#elif __CORTEX_M == 3
|
|
#include "FreeRTOSConfig_lpc175x_6x.h"
|
|
#else
|
|
#error "not yet supported MCU"
|
|
#endif
|
|
|
|
# endif /* __FREERTOS_CONFIG__H */
|