blob: 111ef5933ceb6910a418a7b524e0a6531d389b3e (
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 /* ifdef CORE_M4 */
# endif /* __FREERTOS_CONFIG__H */
|