29 lines
646 B
Plaintext
29 lines
646 B
Plaintext
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
CONFIG_ZTEST=y
|
|
|
|
# General Zephyr settings
|
|
CONFIG_MAIN_STACK_SIZE=2048
|
|
CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE=2048
|
|
CONFIG_THREAD_NAME=y
|
|
CONFIG_LOG=y
|
|
|
|
# LoRa PHY and required peripherals
|
|
CONFIG_LORA=y
|
|
CONFIG_SPI=y
|
|
CONFIG_GPIO=y
|
|
|
|
# Random number generator required for several LoRaWAN services
|
|
CONFIG_ENTROPY_GENERATOR=y
|
|
|
|
# LoRaWAN application layer
|
|
CONFIG_LORAWAN=y
|
|
CONFIG_LORAWAN_EMUL=y
|
|
CONFIG_LORAMAC_REGION_EU868=y
|
|
|
|
# LoRaWAN services required for this test
|
|
CONFIG_LORAWAN_SERVICES=y
|
|
CONFIG_LORAWAN_APP_CLOCK_SYNC=y
|
|
# use shortest possible periodicity for testing
|
|
CONFIG_LORAWAN_APP_CLOCK_SYNC_PERIODICITY=128
|