1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #18709 from miri64/gnrc_udp/enh/use-smaller-stack

gnrc_udp: use small stack-size
This commit is contained in:
Martine Lenders 2022-10-28 11:51:23 +02:00 committed by GitHub
commit 85cce1ec0d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 10 deletions

View File

@ -11,23 +11,15 @@ BOARD_INSUFFICIENT_MEMORY := \
blackpill \ blackpill \
bluepill \ bluepill \
bluepill-stm32f030c8 \ bluepill-stm32f030c8 \
calliope-mini \
derfmega128 \ derfmega128 \
hifive1 \
hifive1b \
i-nucleo-lrwan1 \ i-nucleo-lrwan1 \
im880b \
mega-xplained \ mega-xplained \
microbit \
microduino-corerf \ microduino-corerf \
msb-430 \ msb-430 \
msb-430h \ msb-430h \
nucleo-f030r8 \ nucleo-f030r8 \
nucleo-f031k6 \ nucleo-f031k6 \
nucleo-f042k6 \ nucleo-f042k6 \
nucleo-f070rb \
nucleo-f072rb \
nucleo-f103rb \
nucleo-f302r8 \ nucleo-f302r8 \
nucleo-f303k8 \ nucleo-f303k8 \
nucleo-f334r8 \ nucleo-f334r8 \
@ -38,7 +30,6 @@ BOARD_INSUFFICIENT_MEMORY := \
saml10-xpro \ saml10-xpro \
saml11-xpro \ saml11-xpro \
slstk3400a \ slstk3400a \
spark-core \
stk3200 \ stk3200 \
stm32f030f4-demo \ stm32f030f4-demo \
stm32f0discovery \ stm32f0discovery \

View File

@ -59,7 +59,7 @@ extern "C" {
* @brief Default stack size to use for the UDP thread * @brief Default stack size to use for the UDP thread
*/ */
#ifndef GNRC_UDP_STACK_SIZE #ifndef GNRC_UDP_STACK_SIZE
#define GNRC_UDP_STACK_SIZE (THREAD_STACKSIZE_DEFAULT) #define GNRC_UDP_STACK_SIZE (THREAD_STACKSIZE_SMALL)
#endif #endif
/** @} */ /** @} */