mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-08-01 20:29:00 +00:00
canutils/slcan: make stacksize configurable
This commit is contained in:
parent
13fcbcb3d1
commit
f4a1d28fd5
2 changed files with 6 additions and 2 deletions
|
|
@ -12,6 +12,10 @@ config CANUTILS_SLCAN
|
|||
|
||||
if CANUTILS_SLCAN
|
||||
|
||||
config CANUTILS_SLCAN_STACKSIZE
|
||||
int "SocketCAN slcan stack size"
|
||||
default DEFAULT_TASK_STACKSIZE
|
||||
|
||||
config SLCAN_TRACE
|
||||
bool "Print trace output"
|
||||
default y
|
||||
|
|
|
|||
|
|
@ -24,10 +24,10 @@
|
|||
|
||||
PROGNAME = slcan
|
||||
PRIORITY = SCHED_PRIORITY_DEFAULT
|
||||
STACKSIZE = 3048
|
||||
STACKSIZE = $(CONFIG_CANUTILS_SLCAN_STACKSIZE)
|
||||
MODULE = $(CONFIG_CANUTILS_SLCAN)
|
||||
|
||||
CSRCS =
|
||||
CSRCS =
|
||||
|
||||
MAINSRC = slcan.c
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue