mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-08-01 20:29:00 +00:00
canutils/candump: make stacksize configurable
This commit is contained in:
parent
cc5b99a725
commit
267d198212
2 changed files with 6 additions and 1 deletions
|
|
@ -13,4 +13,9 @@ config CANUTILS_CANDUMP
|
|||
https://github.com/linux-can/can-utils
|
||||
|
||||
if CANUTILS_CANDUMP
|
||||
|
||||
config CANUTILS_CANDUMP_STACKSIZE
|
||||
int "SocketCAN candump stack size"
|
||||
default DEFAULT_TASK_STACKSIZE
|
||||
|
||||
endif
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ include $(APPDIR)/Make.defs
|
|||
|
||||
PROGNAME = candump
|
||||
PRIORITY = SCHED_PRIORITY_DEFAULT
|
||||
STACKSIZE = 3072
|
||||
STACKSIZE = $(CONFIG_CANUTILS_CANDUMP_STACKSIZE)
|
||||
MODULE = $(CONFIG_CANUTILS_CANDUMP)
|
||||
|
||||
CFLAGS += ${shell $(INCDIR) "$(CC)" $(APPDIR)/canutils/libcanutils}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue