mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
3989945679
This PR converts tabs to white spaces. The statement I used for the conversion: ```find . -name "*.[ch]" -exec zsh -c 'expand -t 4 "$0" > /tmp/e && mv /tmp/e "$0"' {} \;``` Afterwards, I had a quick overview of the converted files to prevent odd indentation.
19 lines
348 B
C
19 lines
348 B
C
#ifndef CPU_CONF_H
|
|
#define CPU_CONF_H
|
|
|
|
/**
|
|
* @name Kernel configuration
|
|
* @{
|
|
*/
|
|
#define KERNEL_CONF_STACKSIZE_PRINTF (4096)
|
|
#ifndef KERNEL_CONF_STACKSIZE_DEFAULT
|
|
#define KERNEL_CONF_STACKSIZE_DEFAULT 1500
|
|
#endif
|
|
|
|
#define KERNEL_CONF_STACKSIZE_IDLE 1000
|
|
|
|
#define UART0_BUFSIZE (128)
|
|
/** @} */
|
|
|
|
#endif /* CPU_CONF_H */
|