Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/src/modules/cloud/Kconfig.cloud
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ config APP_CLOUD_BACKOFF_MAX_SECONDS

config APP_CLOUD_THREAD_STACK_SIZE
int "Thread stack size"
default 8192
default 4096

config APP_CLOUD_MESSAGE_QUEUE_SIZE
int "Message queue size"
Expand Down
2 changes: 1 addition & 1 deletion app/src/modules/environmental/Kconfig.environmental
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ if APP_ENVIRONMENTAL

config APP_ENVIRONMENTAL_THREAD_STACK_SIZE
int "Thread stack size"
default 1024
default 512

config APP_ENVIRONMENTAL_WATCHDOG_TIMEOUT_SECONDS
int "Watchdog timeout"
Expand Down
2 changes: 1 addition & 1 deletion app/src/modules/fota/Kconfig.fota
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ if APP_FOTA

config APP_FOTA_THREAD_STACK_SIZE
int "Thread stack size"
default 2500
default 2048

config APP_FOTA_WATCHDOG_TIMEOUT_SECONDS
int "Watchdog timeout"
Expand Down
2 changes: 1 addition & 1 deletion app/src/modules/location/Kconfig.location
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ if APP_LOCATION

config APP_LOCATION_THREAD_STACK_SIZE
int "Thread stack size"
default 4096
default 2048

config APP_LOCATION_WATCHDOG_TIMEOUT_SECONDS
int "Watchdog timeout"
Expand Down
2 changes: 1 addition & 1 deletion app/src/modules/network/Kconfig.network
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ config APP_NETWORK_SHELL

config APP_NETWORK_THREAD_STACK_SIZE
int "Thread stack size"
default 2048
default 1024

config APP_NETWORK_WATCHDOG_TIMEOUT_SECONDS
int "Watchdog timeout"
Expand Down
2 changes: 1 addition & 1 deletion app/src/modules/storage/Kconfig.storage
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ if APP_STORAGE

config APP_STORAGE_THREAD_STACK_SIZE
int "Storage module thread stack size"
default 2048
default 1024

config APP_STORAGE_BACKEND_RAM
bool "RAM storage backend"
Expand Down
2 changes: 1 addition & 1 deletion docs/modules/storage.md
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ The following includes the key configuration categories:

### Thread Configuration

- **`CONFIG_APP_STORAGE_THREAD_STACK_SIZE`** (default: 1536): Stack size for the storage module's main thread.
- **`CONFIG_APP_STORAGE_THREAD_STACK_SIZE`** (default: 1024): Stack size for the storage module's main thread.

- **`CONFIG_APP_STORAGE_WATCHDOG_TIMEOUT_SECONDS`** (default: 60): Watchdog timeout for detecting stuck operations.

Expand Down