-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improvements: - Adjusted `nrf9160dk_nrf9160_ns` build to meet new default target - Reworked build system to use `sysbuild` for FOTA builds on upstream Zephyr and T-Mobile SDKs
- Loading branch information
Showing
41 changed files
with
622 additions
and
414 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
# anjay-zephyr-client | ||
CONFIG_ANJAY_ZEPHYR_DEVICE_MANUFACTURER="AVSystem" | ||
CONFIG_ANJAY_ZEPHYR_MODEL_NUMBER="Bubblemaker" | ||
CONFIG_ANJAY_ZEPHYR_GPS=n | ||
CONFIG_ANJAY_ZEPHYR_GPS_NRF_A_GPS=n | ||
|
||
CONFIG_ANJAY_ZEPHYR_FOTA=y | ||
|
||
# Anjay Settings | ||
CONFIG_ANJAY_COMPAT_ZEPHYR_TLS=y | ||
CONFIG_ANJAY_COMPAT_NET=y | ||
CONFIG_ANJAY_COMPAT_TIME=y | ||
CONFIG_ANJAY_LOG_LEVEL_INF=y | ||
CONFIG_ANJAY_WITH_NET_STATS=n | ||
CONFIG_ANJAY_WITH_SENML_JSON=y | ||
CONFIG_ANJAY_WITH_TRACE_LOGS=n | ||
CONFIG_ANJAY_WITH_ACCESS_CONTROL=n | ||
|
||
# General Settings | ||
CONFIG_MAIN_STACK_SIZE=2048 | ||
CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE=4096 | ||
CONFIG_LOG_RUNTIME_FILTERING=n | ||
CONFIG_LOG_CMDS=n | ||
CONFIG_LOG_MAX_LEVEL=3 | ||
CONFIG_HWINFO=n | ||
|
||
# Networking | ||
CONFIG_NET_NATIVE=n | ||
CONFIG_NET_IF_MAX_IPV4_COUNT=2 | ||
CONFIG_NET_TCP_ISN_RFC6528=n | ||
CONFIG_NET_LOG=n | ||
|
||
# nRF LTE | ||
CONFIG_NRF_MODEM_LIB=y | ||
CONFIG_MODEM_INFO=y | ||
CONFIG_LTE_LINK_CONTROL=y | ||
CONFIG_LTE_NETWORK_MODE_LTE_M_GPS=y | ||
CONFIG_LTE_AUTO_INIT_AND_CONNECT=n | ||
CONFIG_LTE_NETWORK_TIMEOUT=600 | ||
CONFIG_NRF_CLOUD_GPS_LOG_LEVEL_INF=y | ||
|
||
# Clock synchronization | ||
CONFIG_DATE_TIME=y | ||
CONFIG_DATE_TIME_UPDATE_INTERVAL_SECONDS=600 | ||
CONFIG_DATE_TIME_TOO_OLD_SECONDS=600 | ||
CONFIG_DATE_TIME_NTP_QUERY_TIME_SECONDS=5 | ||
|
||
# File system | ||
CONFIG_FLASH_PAGE_LAYOUT=y | ||
CONFIG_MPU_ALLOW_FLASH_WRITE=y | ||
CONFIG_STREAM_FLASH=y | ||
|
||
# Heap | ||
CONFIG_HEAP_MEM_POOL_SIZE=2048 | ||
|
||
# MCUboot | ||
CONFIG_BOOTLOADER_MCUBOOT=y | ||
CONFIG_IMG_MANAGER=y | ||
CONFIG_IMG_ERASE_PROGRESSIVELY=y | ||
CONFIG_MCUBOOT_IMGTOOL_SIGN_VERSION="24.5.0" | ||
|
||
# Shell settings | ||
CONFIG_SHELL_MINIMAL=y | ||
CONFIG_SHELL_WILDCARD=n | ||
CONFIG_SHELL_VT100_COMMANDS=y | ||
CONFIG_SHELL_VT100_COLORS=n | ||
CONFIG_SHELL_STATS=n | ||
CONFIG_SHELL_CMDS=n | ||
CONFIG_SHELL_TAB=y | ||
CONFIG_SHELL_TAB_AUTOCOMPLETION=y | ||
CONFIG_SHELL_CMDS_RESIZE=n | ||
CONFIG_DEVICE_SHELL=n | ||
CONFIG_DATE_SHELL=n | ||
CONFIG_DEVMEM_SHELL=n | ||
CONFIG_MCUBOOT_SHELL=n | ||
CONFIG_KERNEL_SHELL=y | ||
|
||
# Bubblemaker | ||
CONFIG_SENSOR=y | ||
CONFIG_ADC=y | ||
CONFIG_W1=y | ||
|
||
CONFIG_LED_STRIP=y | ||
CONFIG_WS2812_STRIP=y | ||
CONFIG_SPI=y | ||
|
||
CONFIG_GPIO=y |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.