espressif_tinyusb/vendor/freertos/FreeRTOSConfig.h

17 lines
346 B
C
Raw Normal View History

#ifndef __FREERTOS_CONFIG__H
#define __FREERTOS_CONFIG__H
2014-03-03 10:25:34 +01:00
#include "hal/hal.h"
#if __CORTEX_M == 4
#include "lpc43xx_m4_FreeRTOSConfig.h"
2014-03-03 10:25:34 +01:00
#elif __CORTEX_M == 0
#include "lpc43xx_m0_FreeRTOSConfig.h"
2014-03-03 10:25:34 +01:00
#elif __CORTEX_M == 3
#include "FreeRTOSConfig_lpc175x_6x.h"
#else
#error "not yet supported MCU"
#endif
# endif /* __FREERTOS_CONFIG__H */