| |
| config BT_HOST_CRYPTO |
| bool |
| default n |
| |
| config COMMON_LIBC_MALLOC_ARENA_SIZE |
| default -1 |
| |
| config CHIP_WIFI |
| default y if BOARD_SIWX917_RB4338A |
| default y if BOARD_SIWX917_RB4342A |
| |
| # ============================================================================== |
| # Logging configuration |
| # ============================================================================== |
| |
| config LOG |
| default y |
| |
| if LOG |
| |
| #choice LOG_MODE |
| # default LOG_MODE_MINIMAL |
| #endchoice |
| |
| choice MATTER_LOG_LEVEL_CHOICE |
| default MATTER_LOG_LEVEL_DBG |
| endchoice |
| |
| config CHIP_APP_LOG_LEVEL |
| default 4 # debug |
| |
| config LOG_BUFFER_SIZE |
| default 4096 |
| |
| config LOG_DEFAULT_LEVEL |
| default 1 # error |
| |
| config CHIP_LOG_SIZE_OPTIMIZATION |
| default y |
| |
| # disable synchronous printk to avoid blocking IRQs which |
| # may affect time sensitive components |
| config PRINTK_SYNC |
| default n |
| |
| endif # LOG |
| |
| # ============================================================================== |
| # Shell configuration |
| # ============================================================================== |
| |
| config SHELL |
| default y |
| |
| if !CHIP_WIFI |
| |
| config OPENTHREAD_MANUAL_START |
| default y |
| config OPENTHREAD_OPERATIONAL_DATASET_AUTO_INIT |
| default n |
| config OPENTHREAD_MLR |
| default y |
| config OPENTHREAD_SLAAC |
| default y |
| config OPENTHREAD_ENABLE_SERVICE |
| default y |
| config OPENTHREAD_THREAD_PREEMPTIVE |
| default y |
| config CHIP_TASK_PRIORITY |
| default 10 |
| config DNS_SD |
| default y |
| |
| config OPENTHREAD_PANID |
| default 48879 |
| config OPENTHREAD_NETWORK_NAME |
| default "Silabs-test" |
| |
| config PM |
| default y |
| config SILABS_SISDK_POWER_MANAGER |
| default y |
| # generous stack sizes for now |
| config MAIN_STACK_SIZE |
| default 16384 |
| config SYSTEM_WORKQUEUE_STACK_SIZE |
| default 16384 |
| config OPENTHREAD_THREAD_STACK_SIZE |
| default 6144 |
| config OPENTHREAD_RADIO_WORKQUEUE_STACK_SIZE |
| default 2048 |
| |
| # for 1.4 and the ability to ping |
| choice OPENTHREAD_STACK_VERSION |
| default OPENTHREAD_THREAD_VERSION_1_4 |
| endchoice |
| |
| config OPENTHREAD_PING_SENDER |
| default y |
| endif |
| |
| |
| config SILABS_SISDK_RAIL_MULTIPROTOCOL |
| default y if !CHIP_WIFI |
| |
| if SHELL |
| |
| config SHELL_STACK_SIZE |
| default 2616 if CHIP_WIFI |
| |
| config SHELL_MINIMAL |
| default y if !CHIP_MEMORY_PROFILING |
| |
| config KERNEL_SHELL |
| default n if !CHIP_MEMORY_PROFILING |
| |
| config SHELL_WILDCARD |
| default n |
| |
| config SENSOR_SHELL |
| default n |
| |
| config DEVICE_SHELL |
| default y |
| |
| config DATE_SHELL |
| default n |
| |
| config DEVMEM_SHELL |
| default n |
| |
| config MCUBOOT_SHELL |
| default n |
| |
| config FLASH_SHELL |
| default n |
| |
| config HWINFO_SHELL |
| default n |
| |
| config OPENTHREAD_SHELL |
| default n if !CHIP_MEMORY_PROFILING |
| |
| config SHELL_CMD_BUFF_SIZE |
| default 512 if CHIP_MEMORY_PROFILING |
| |
| endif # SHELL |