-
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 support for nRF7002DK board Improvements - Updated Zephyr to 3.3.0 - Updated sdk-nrf to 2.3.0 - Updated Anjay-zephyr to 3.4.1 - Adjusted partition layout and MCUboot configuration on nRF9160DK builds to support newer version of sdk-nrf - Added overlay for nRF9160DK in demo application which enables experimental Advanced Firmware Update object (/33629) Bugfixes - Fixed firmware update on Thingy:91 - made sure that enough free space is left on the flash partition for MCUboot's move algorithm to work - Fixed runtime certificate configuration on nRF52840 based boards
- Loading branch information
Mateusz Kwiatkowski
committed
Jun 23, 2023
1 parent
cad976f
commit a9472b5
Showing
36 changed files
with
440 additions
and
80 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,3 +1,4 @@ | ||
build | ||
.vscode | ||
.idea | ||
__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
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,45 @@ | ||
# anjay-zephyr-client | ||
CONFIG_ANJAY_ZEPHYR_DEVICE_MANUFACTURER="Nordic Semiconductor" | ||
CONFIG_ANJAY_ZEPHYR_MODEL_NUMBER="nRF7002DK" | ||
|
||
# Anjay Settings | ||
CONFIG_ANJAY_COMPAT_MBEDTLS=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_MAX_LEVEL=3 | ||
CONFIG_POSIX_MAX_FDS=16 | ||
|
||
# Networking | ||
CONFIG_NET_NATIVE=y | ||
CONFIG_NET_DHCPV4=y | ||
CONFIG_DNS_RESOLVER=y | ||
|
||
# WiFi | ||
CONFIG_WIFI=y | ||
CONFIG_WIFI_NRF700X=y | ||
CONFIG_WPA_SUPP=y | ||
CONFIG_NET_L2_WIFI_MGMT=y | ||
CONFIG_NET_L2_WIFI_MGMT_LOG_LEVEL_ERR=y | ||
CONFIG_NET_L2_ETHERNET=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 | ||
|
||
# Heap | ||
CONFIG_HEAP_MEM_POOL_SIZE=200000 |
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,8 @@ | ||
/ { | ||
aliases { | ||
push-button-0 = &button0; | ||
push-button-1 = &button1; | ||
status-led = &led0; | ||
light-control-0 = &led1; | ||
}; | ||
}; |
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.