2024-02-13 18:44:11 -07:00
|
|
|
|
2024-02-14 10:09:29 -07:00
|
|
|
# Copyright (c) 2022 Nordic Semiconductor ASA
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
|
|
|
|
#
|
|
|
|
|
|
|
|
# Configure serial
|
|
|
|
CONFIG_UART_INTERRUPT_DRIVEN=y
|
|
|
|
CONFIG_SERIAL=y
|
|
|
|
|
|
|
|
# Make sure printk is not printing to the UART console
|
2024-02-14 09:30:12 -07:00
|
|
|
CONFIG_CONSOLE=y
|
2024-02-14 10:09:29 -07:00
|
|
|
CONFIG_UART_CONSOLE=y
|
|
|
|
|
|
|
|
CONFIG_HEAP_MEM_POOL_SIZE=2048
|
|
|
|
CONFIG_MAIN_THREAD_PRIORITY=7
|
2024-02-14 09:30:12 -07:00
|
|
|
|
|
|
|
CONFIG_ZIGBEE=y
|
2024-02-14 10:09:29 -07:00
|
|
|
CONFIG_ZIGBEE_APP_UTILS=y
|
|
|
|
CONFIG_ZIGBEE_ROLE_ROUTER=y
|
|
|
|
|
|
|
|
# This example requires more workqueue stack
|
|
|
|
CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE=2048
|
|
|
|
|
|
|
|
# Enable nRF ECB driver
|
|
|
|
CONFIG_CRYPTO=y
|
|
|
|
CONFIG_CRYPTO_NRF_ECB=y
|
|
|
|
CONFIG_CRYPTO_INIT_PRIORITY=80
|
|
|
|
|
|
|
|
# Networking
|
|
|
|
CONFIG_NET_IPV6=n
|
|
|
|
CONFIG_NET_IP_ADDR_CHECK=n
|
|
|
|
|
|
|
|
# Zigbee shell
|
|
|
|
CONFIG_ZIGBEE_SHELL=y
|
|
|
|
CONFIG_ZIGBEE_SHELL_DEBUG_CMD=y
|
|
|
|
CONFIG_ZIGBEE_SHELL_ENDPOINT=64
|
|
|
|
|
|
|
|
# Increase RX serial ring buffer
|
|
|
|
CONFIG_SHELL_BACKEND_SERIAL_RX_RING_BUFFER_SIZE=128
|
|
|
|
|
|
|
|
# USB subsystem configuration
|
|
|
|
CONFIG_USB_DEVICE_STACK=y
|
|
|
|
CONFIG_USB_DEVICE_PRODUCT="Zigbee Shell"
|
|
|
|
CONFIG_USB_CDC_ACM=y
|
|
|
|
CONFIG_UART_LINE_CTRL=y
|
|
|
|
|
|
|
|
# Initialize USB device as soon as possible as the USB CDC ACM is used
|
|
|
|
# as backend for both Shell and Logging subsystems.
|
|
|
|
CONFIG_USB_DEVICE_INITIALIZE_AT_BOOT=y
|
|
|
|
|
|
|
|
# Enable this to duplicate Zephyr logs to default Logger serial backend,
|
|
|
|
# usually connected to on-board JLink device.
|
|
|
|
# CONFIG_LOG_BACKEND_UART=y
|