1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00
RIOT/cpu/lpc1768/include/cpu-conf.h

19 lines
361 B
C

#ifndef CPU_CONF_H
#define CPU_CONF_H
/**
* @name Kernel configuration
* @{
*/
#define F_CPU 96000000
#define KERNEL_CONF_STACKSIZE_PRINTF (4096)
#ifndef KERNEL_CONF_STACKSIZE_DEFAULT
#define KERNEL_CONF_STACKSIZE_DEFAULT 1500
#endif
#define KERNEL_CONF_STACKSIZE_IDLE 1000
/** @} */
#endif /* CPU_CONF_H */