tinyusb/vendor/freertos/FreeRTOSConfig.h
hathach 1ae5484320 finally able to get freeRTOS run with current mouse + keyboard example
NOTES: print_greeting if is executed before the start of freeRTOS scheduler --> hardfault
- print_greeting->vsprintf->systick -> bunch of ISR --> hardfault.

printf using serial after the start of scheduler is ok though
2013-04-25 15:43:33 +07:00

13 lines
310 B
C

#ifndef __FREERTOS_CONFIG__H
#define __FREERTOS_CONFIG__H
#ifdef CORE_M4
#include "lpc43xx_m4_FreeRTOSConfig.h"
#elif defined(CORE_M0)
#include "lpc43xx_m0_FreeRTOSConfig.h"
#else
#error "For LPC43XX one of CORE_M0 or CORE_M4 must be defined!"
#endif /* ifdef CORE_M4 */
# endif /* __FREERTOS_CONFIG__H */