-
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.
Features - Added provisioning script for `demo` examples - Added nRF52840dk_nRF52840 with OpenThread support - Added automatic handling of connection link state - Added option for use of non-secure WiFi networks - Added configuration for software-based security on nRF9160DK Improvements - Updated Zephyr to 3.2.0 - Updated sdk-nrf to 2.1.1 - Refactored network connection handling - Firmware update success status can be now persisted across reboots until actual delivery Bugfixes - Fixed critical memory corruption bug in the factory provisioning app - Fixed problem with push buttons IID
- Loading branch information
Showing
85 changed files
with
2,511 additions
and
511 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
build | ||
.vscode | ||
__pycache__ |
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 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 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 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,3 @@ | ||
&wifi { | ||
status = "okay"; | ||
}; |
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,66 @@ | ||
# anjay-zephyr-client | ||
CONFIG_ANJAY_CLIENT_DEVICE_MANUFACTURER="Nordic Semiconductor" | ||
CONFIG_ANJAY_CLIENT_MODEL_NUMBER="nRF52840DK" | ||
|
||
# Anjay Settings | ||
CONFIG_ANJAY_COMPAT_TIME=y | ||
CONFIG_ANJAY_COMPAT_MBEDTLS=y | ||
CONFIG_ANJAY_COMPAT_NET=y | ||
|
||
# General Settings | ||
CONFIG_MAIN_STACK_SIZE=2048 | ||
CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE=2048 | ||
|
||
# Logging | ||
CONFIG_LOG_BLOCK_IN_THREAD=y | ||
CONFIG_LOG_MODE_DEFERRED=y | ||
|
||
# Clock synchronization | ||
CONFIG_DATE_TIME=y | ||
CONFIG_DATE_TIME_AUTO_UPDATE=n | ||
|
||
# Networking | ||
CONFIG_NET_IPV4=n | ||
CONFIG_NET_IPV6=y | ||
CONFIG_NET_IPV6_NBR_CACHE=n | ||
CONFIG_NET_IPV6_MLD=n | ||
CONFIG_NET_CONFIG_NEED_IPV4=n | ||
CONFIG_NET_MGMT_EVENT_INFO=y | ||
CONFIG_NET_L2_OPENTHREAD=y | ||
|
||
# DNS | ||
CONFIG_DNS_RESOLVER=y | ||
CONFIG_DNS_SERVER_IP_ADDRESSES=y | ||
CONFIG_DNS_SERVER1="fdaa:bb:1::2" | ||
|
||
# OpenThread | ||
CONFIG_OPENTHREAD_JOINER=y | ||
CONFIG_OPENTHREAD_JOINER_AUTOSTART=y | ||
CONFIG_OPENTHREAD_MANUAL_START=y | ||
CONFIG_OPENTHREAD_SLAAC=y | ||
CONFIG_OPENTHREAD_JOINER_PSKD="J01NME" | ||
CONFIG_OPENTHREAD_FTD=y | ||
|
||
# MbedTLS and security | ||
CONFIG_MBEDTLS=y | ||
CONFIG_MBEDTLS_KEY_EXCHANGE_PSK_ENABLED=y | ||
CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED=y | ||
CONFIG_MBEDTLS_DTLS=y | ||
CONFIG_MBEDTLS_ENTROPY_ENABLED=y | ||
|
||
# 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 | ||
CONFIG_OPENTHREAD_SHELL=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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
/ { | ||
aliases { | ||
push-button-0 = &button0; | ||
push-button-1 = &button1; | ||
push-button-2 = &button2; | ||
push-button-3 = &button3; | ||
status-led = &led0; | ||
}; | ||
}; |
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 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.