This repository has been archived by the owner on Jul 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bump Zephyr to tip of main (post 3.2.0-rc2)
Newest Zephyr has fixes for: * `esp32` platform running `samples/dfu/`, * `mimxrt1060_evkb` platform running `samples/settings/`, `esp32` platform requires now to enable `wifi` node in DT in order to start using WiFi driver. This WiFi driver is now enabled by default when mentioned node has status "okay". CONFIG_ESP32_WIFI_{SSID,PSK} options exist, but they are not used by Zephyr anymore. This means that configuring them (indirectly by CONFIG_GOLIOTH_SAMPLE_WIFI_{SSID,PSK}) is no longer resulting in automatic connection attempt to Access Point. However, ESP32 WiFi driver supports now Zephyr WiFi MGMT APIs, which allows to utilize CONFIG_GOLIOTH_SAMPLE_WIFI and `net_connect()` function which is called from within every sample. This makes `esp32` WiFi setup work similar as `nrf52840dk_nrf52840`, which is obviously a positive thing (code deduplication). As newest Zephyr require SDK 0.15.0, it is now time to bump Docker CI images. Use the same Docker CI image as Zephyr is using now, which is 0.24.2. For NCS twister build time tests, use 0.23.3 for now, so that newest GCC (contained in SDK 0.15.0) will not trigger build time errors from warnings treated as errors (which is the default twister behavior). An alternative would be to disable warnings as errors for NCS builds, but that could potentially introduce build time warnings unrelated to GCC change in subsequent commits. Signed-off-by: Marcin Niestroj <m.niestroj@emb.dev>
- Loading branch information
Showing
41 changed files
with
91 additions
and
192 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 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
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
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,17 +1,15 @@ | ||
CONFIG_WIFI=y | ||
CONFIG_WIFI_ESP32=y | ||
CONFIG_HEAP_MEM_POOL_SIZE=98304 | ||
|
||
CONFIG_NET_L2_ETHERNET=y | ||
|
||
CONFIG_NET_DHCPV4=y | ||
|
||
CONFIG_NET_CONFIG_LOG_LEVEL_DBG=y | ||
CONFIG_NET_CONFIG_SETTINGS=y | ||
CONFIG_NET_CONFIG_NEED_IPV4=y | ||
|
||
CONFIG_MBEDTLS_ENTROPY_ENABLED=y | ||
CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED=y | ||
CONFIG_MBEDTLS_ECP_ALL_ENABLED=y | ||
|
||
CONFIG_ESP32_WIFI_STA_AUTO=y | ||
CONFIG_ESP32_WIFI_STA_AUTO_DHCPV4=y | ||
|
||
CONFIG_NET_L2_WIFI_SHELL=y | ||
CONFIG_GOLIOTH_SAMPLE_WIFI=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
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,17 +1,15 @@ | ||
CONFIG_WIFI=y | ||
CONFIG_WIFI_ESP32=y | ||
CONFIG_HEAP_MEM_POOL_SIZE=98304 | ||
|
||
CONFIG_NET_L2_ETHERNET=y | ||
|
||
CONFIG_NET_DHCPV4=y | ||
|
||
CONFIG_NET_CONFIG_LOG_LEVEL_DBG=y | ||
CONFIG_NET_CONFIG_SETTINGS=y | ||
CONFIG_NET_CONFIG_NEED_IPV4=y | ||
|
||
CONFIG_MBEDTLS_ENTROPY_ENABLED=y | ||
CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED=y | ||
CONFIG_MBEDTLS_ECP_ALL_ENABLED=y | ||
|
||
CONFIG_ESP32_WIFI_STA_AUTO=y | ||
CONFIG_ESP32_WIFI_STA_AUTO_DHCPV4=y | ||
|
||
CONFIG_NET_L2_WIFI_SHELL=y | ||
CONFIG_GOLIOTH_SAMPLE_WIFI=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,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
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,17 +1,15 @@ | ||
CONFIG_WIFI=y | ||
CONFIG_WIFI_ESP32=y | ||
CONFIG_HEAP_MEM_POOL_SIZE=98304 | ||
|
||
CONFIG_NET_L2_ETHERNET=y | ||
|
||
CONFIG_NET_DHCPV4=y | ||
|
||
CONFIG_NET_CONFIG_LOG_LEVEL_DBG=y | ||
CONFIG_NET_CONFIG_SETTINGS=y | ||
CONFIG_NET_CONFIG_NEED_IPV4=y | ||
|
||
CONFIG_MBEDTLS_ENTROPY_ENABLED=y | ||
CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED=y | ||
CONFIG_MBEDTLS_ECP_ALL_ENABLED=y | ||
|
||
CONFIG_ESP32_WIFI_STA_AUTO=y | ||
CONFIG_ESP32_WIFI_STA_AUTO_DHCPV4=y | ||
|
||
CONFIG_NET_L2_WIFI_SHELL=y | ||
CONFIG_GOLIOTH_SAMPLE_WIFI=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,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
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,17 +1,15 @@ | ||
CONFIG_WIFI=y | ||
CONFIG_WIFI_ESP32=y | ||
CONFIG_HEAP_MEM_POOL_SIZE=98304 | ||
|
||
CONFIG_NET_L2_ETHERNET=y | ||
|
||
CONFIG_NET_DHCPV4=y | ||
|
||
CONFIG_NET_CONFIG_LOG_LEVEL_DBG=y | ||
CONFIG_NET_CONFIG_SETTINGS=y | ||
CONFIG_NET_CONFIG_NEED_IPV4=y | ||
|
||
CONFIG_MBEDTLS_ENTROPY_ENABLED=y | ||
CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED=y | ||
CONFIG_MBEDTLS_ECP_ALL_ENABLED=y | ||
|
||
CONFIG_ESP32_WIFI_STA_AUTO=y | ||
CONFIG_ESP32_WIFI_STA_AUTO_DHCPV4=y | ||
|
||
CONFIG_NET_L2_WIFI_SHELL=y | ||
CONFIG_GOLIOTH_SAMPLE_WIFI=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,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
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,17 +1,15 @@ | ||
CONFIG_WIFI=y | ||
CONFIG_WIFI_ESP32=y | ||
CONFIG_HEAP_MEM_POOL_SIZE=98304 | ||
|
||
CONFIG_NET_L2_ETHERNET=y | ||
|
||
CONFIG_NET_DHCPV4=y | ||
|
||
CONFIG_NET_CONFIG_LOG_LEVEL_DBG=y | ||
CONFIG_NET_CONFIG_SETTINGS=y | ||
CONFIG_NET_CONFIG_NEED_IPV4=y | ||
|
||
CONFIG_MBEDTLS_ENTROPY_ENABLED=y | ||
CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED=y | ||
CONFIG_MBEDTLS_ECP_ALL_ENABLED=y | ||
|
||
CONFIG_ESP32_WIFI_STA_AUTO=y | ||
CONFIG_ESP32_WIFI_STA_AUTO_DHCPV4=y | ||
|
||
CONFIG_NET_L2_WIFI_SHELL=y | ||
CONFIG_GOLIOTH_SAMPLE_WIFI=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,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
Oops, something went wrong.