blob: 125675355fc9c90360221635bdecfec6b3e9e618 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#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 */
|