mirror of
https://github.com/hathach/tinyusb.git
synced 2025-01-17 05:32:55 +08:00
17 lines
399 B
C
17 lines
399 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 "For LPC43XX one of CORE_M0 or CORE_M4 must be defined!"
|
|
#endif /* ifdef CORE_M4 */
|
|
|
|
# endif /* __FREERTOS_CONFIG__H */
|