mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-15 17:43:51 +01:00
cpu/esp8266: adjust THREAD_STACKSIZE_{SMALL/TINY}
This commit is contained in:
parent
6386580b8f
commit
f1830294c0
@ -65,16 +65,27 @@ extern "C" {
|
|||||||
#ifndef THREAD_EXTRA_STACKSIZE_PRINTF
|
#ifndef THREAD_EXTRA_STACKSIZE_PRINTF
|
||||||
#define THREAD_EXTRA_STACKSIZE_PRINTF (0)
|
#define THREAD_EXTRA_STACKSIZE_PRINTF (0)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef THREAD_STACKSIZE_DEFAULT
|
#ifndef THREAD_STACKSIZE_DEFAULT
|
||||||
#define THREAD_STACKSIZE_DEFAULT (1024)
|
#define THREAD_STACKSIZE_DEFAULT (1024)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef THREAD_STACKSIZE_IDLE
|
#ifndef THREAD_STACKSIZE_IDLE
|
||||||
#define THREAD_STACKSIZE_IDLE (1024)
|
#define THREAD_STACKSIZE_IDLE (1024)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef THREAD_STACKSIZE_MAIN
|
#ifndef THREAD_STACKSIZE_MAIN
|
||||||
#define THREAD_STACKSIZE_MAIN (3072)
|
#define THREAD_STACKSIZE_MAIN (3072)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifndef THREAD_STACKSIZE_SMALL
|
||||||
|
#define THREAD_STACKSIZE_SMALL (THREAD_STACKSIZE_MEDIUM * 3 / 2)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef THREAD_STACKSIZE_TINY
|
||||||
|
#define THREAD_STACKSIZE_TINY (THREAD_STACKSIZE_MEDIUM / 2)
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifndef GNRC_IPV6_STACK_SIZE
|
#ifndef GNRC_IPV6_STACK_SIZE
|
||||||
#define GNRC_IPV6_STACK_SIZE (1536)
|
#define GNRC_IPV6_STACK_SIZE (1536)
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
4
dist/tools/doccheck/exclude_patterns
vendored
4
dist/tools/doccheck/exclude_patterns
vendored
@ -5955,9 +5955,7 @@ cpu/esp8266/include/cpu_conf\.h:[0-9]+: warning: Member GNRC_IPV6_STACK_SIZE \(m
|
|||||||
cpu/esp8266/include/cpu_conf\.h:[0-9]+: warning: Member GNRC_PKTDUMP_STACKSIZE \(macro definition\) of group cpu_esp8266_conf is not documented\.
|
cpu/esp8266/include/cpu_conf\.h:[0-9]+: warning: Member GNRC_PKTDUMP_STACKSIZE \(macro definition\) of group cpu_esp8266_conf is not documented\.
|
||||||
cpu/esp8266/include/cpu_conf\.h:[0-9]+: warning: Member TCPIP_THREAD_STACKSIZE \(macro definition\) of group cpu_esp8266_conf is not documented\.
|
cpu/esp8266/include/cpu_conf\.h:[0-9]+: warning: Member TCPIP_THREAD_STACKSIZE \(macro definition\) of group cpu_esp8266_conf is not documented\.
|
||||||
cpu/esp8266/include/cpu_conf\.h:[0-9]+: warning: Member THREAD_EXTRA_STACKSIZE_PRINTF \(macro definition\) of group cpu_esp8266_conf is not documented\.
|
cpu/esp8266/include/cpu_conf\.h:[0-9]+: warning: Member THREAD_EXTRA_STACKSIZE_PRINTF \(macro definition\) of group cpu_esp8266_conf is not documented\.
|
||||||
cpu/esp8266/include/cpu_conf\.h:[0-9]+: warning: Member THREAD_STACKSIZE_DEFAULT \(macro definition\) of group cpu_esp8266_conf is not documented\.
|
cpu/esp8266/include/cpu_conf\.h:[0-9]+: warning: Member THREAD_STACKSIZE_[A-Z]+ \(macro definition\) of group cpu_esp8266_conf is not documented\.
|
||||||
cpu/esp8266/include/cpu_conf\.h:[0-9]+: warning: Member THREAD_STACKSIZE_IDLE \(macro definition\) of group cpu_esp8266_conf is not documented\.
|
|
||||||
cpu/esp8266/include/cpu_conf\.h:[0-9]+: warning: Member THREAD_STACKSIZE_MAIN \(macro definition\) of group cpu_esp8266_conf is not documented\.
|
|
||||||
cpu/esp8266/include/irq_arch\.h:[0-9]+: warning: Member ETS_SOFT_INT_HDL_MAC \(macro definition\) of file irq_arch\.h is not documented\.
|
cpu/esp8266/include/irq_arch\.h:[0-9]+: warning: Member ETS_SOFT_INT_HDL_MAC \(macro definition\) of file irq_arch\.h is not documented\.
|
||||||
cpu/esp8266/include/irq_arch\.h:[0-9]+: warning: Member ETS_SOFT_INT_NONE \(macro definition\) of file irq_arch\.h is not documented\.
|
cpu/esp8266/include/irq_arch\.h:[0-9]+: warning: Member ETS_SOFT_INT_NONE \(macro definition\) of file irq_arch\.h is not documented\.
|
||||||
cpu/esp8266/include/irq_arch\.h:[0-9]+: warning: Member ETS_SOFT_INT_YIELD \(macro definition\) of file irq_arch\.h is not documented\.
|
cpu/esp8266/include/irq_arch\.h:[0-9]+: warning: Member ETS_SOFT_INT_YIELD \(macro definition\) of file irq_arch\.h is not documented\.
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user