Skip to content

Commit af9ef4b

Browse files
committed
fix(wifi): fix missing Kconfig dependency on latest Zephyr
### Summary The changes in recent upstream commit[^1] in the ESP WIFI driver added a header without checking that the correct Kconfig dependency was enabled. Add the missing Kconfig dependency to work around this. [^1] zephyrproject-rtos/zephyr@91b688a#diff-4e692c27c1090ab494a23007de38cb2539cfac21b893099a24236abedf5c9c90 ### Test Plan Built successfuly with zephyr `main` branch.
1 parent 41ddb87 commit af9ef4b

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

prj.conf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ CONFIG_NET_STATISTICS=y
3434
CONFIG_NET_STATISTICS_PERIODIC_OUTPUT=n
3535

3636
CONFIG_WIFI=y
37+
CONFIG_WIFI_NM=y
3738
CONFIG_WIFI_LOG_LEVEL_ERR=y
3839
CONFIG_NET_L2_WIFI_SHELL=y
3940

west.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ manifest:
22
projects:
33
- name: zephyr
44
url: https://github.com/zephyrproject-rtos/zephyr
5-
revision: v3.7.0
5+
revision: main
66
import:
77
# Limit the Zephyr modules to the required set
88
name-allowlist:

0 commit comments

Comments
 (0)