espressif_tinyusb/vendor/freertos/FreeRTOSConfig.h

20 lines
330 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
2014-03-06 05:52:21 +01:00
#include "FreeRTOSConfig_cm4f.h"
2014-03-03 10:25:34 +01:00
#elif __CORTEX_M == 3
2014-03-06 05:52:21 +01:00
#include "FreeRTOSConfig_cm3.h"
#elif __CORTEX_M == 0
#include "FreeRTOSConfig_cm0.h"
#else
#error "not yet supported MCU"
#endif
2014-03-06 06:51:16 +01:00
#endif /* __FREERTOS_CONFIG__H */