mirror of
https://github.com/apache/nuttx-apps.git
synced 2025-10-16 05:27:11 +08:00
Replace "STACKSIZE = 2048" with CONFIG_DEFAULT_TASK_SIZE
For now, I left the following instances because it isn't clear to me why they are using the different values. Maybe they need one-by-one inspection. examples/igmp/Makefile:STACKSIZE = 1024 examples/powerled/Makefile:STACKSIZE = 1024 examples/powermonitor/Makefile:STACKSIZE = 768 examples/relays/Makefile:STACKSIZE = 512 examples/smps/Makefile:STACKSIZE = 1024 graphics/screenshot/Makefile:STACKSIZE = 4096 system/flash_eraseall/Makefile:STACKSIZE = 1024 testing/cxxtest/Makefile:STACKSIZE = 4096 testing/smart_test/Makefile:STACKSIZE = 4096
This commit is contained in:

committed by
Xiang Xiao

parent
2f7480d11b
commit
c304624fab
@@ -43,7 +43,7 @@ MAINSRC = i2sloop_main.c
|
||||
|
||||
PROGNAME = i2sloop
|
||||
PRIORITY = 140
|
||||
STACKSIZE = 2048
|
||||
STACKSIZE = $(CONFIG_DEFAULT_TASK_STACKSIZE)
|
||||
MODULE = $(CONFIG_EXAMPLES_I2SLOOP)
|
||||
|
||||
include $(APPDIR)/Application.mk
|
||||
|
Reference in New Issue
Block a user