mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-08-01 20:29:00 +00:00
Fix errors from DEFAULT_TASK_SIZE change
There were several places where default sector and buffer sizes of 2048 were changed to DEFAULT_TASK_STACKSIZE. This is not correct. This was noted by Xiao Xiang.
This commit is contained in:
parent
e589c45ab1
commit
de60ff9408
2 changed files with 2 additions and 2 deletions
|
|
@ -35,7 +35,7 @@ if !EXAMPLES_MOUNT_BLOCKDEVICE
|
|||
|
||||
config EXAMPLES_MOUNT_NSECTORS
|
||||
int "RAM disk number of sectors"
|
||||
default DEFAULT_TASK_STACKSIZE
|
||||
default 2048
|
||||
---help---
|
||||
The number of "sectors" in the RAM disk used when
|
||||
EXAMPLES_MOUNT_BLOCKDEVICE is not selected.
|
||||
|
|
|
|||
|
|
@ -44,6 +44,6 @@ config LIBCURL4NX_MINRXBUFLEN
|
|||
|
||||
config LIBCURL4NX_MAXRXBUFLEN
|
||||
int "Maximum RX buffer size for CURL4NXOPT_BUFFERSIZE"
|
||||
default DEFAULT_TASK_STACKSIZE
|
||||
default 2048
|
||||
|
||||
endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue