diff options
author | Ayush Singh <ayush@beagleboard.org> | 2025-06-16 22:04:56 +0530 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2025-06-23 11:39:21 +1000 |
commit | 41fc3e1505fff31e79d60c17b29a790b46c3af6b (patch) | |
tree | 35a01fff79e18195e8063a933e0cde614ccd51fb | |
parent | 32e69f7fdb31781b2b57c260db9ee4cbb70c1bf3 (diff) | |
download | micropython-41fc3e1505fff31e79d60c17b29a790b46c3af6b.tar.gz micropython-41fc3e1505fff31e79d60c17b29a790b46c3af6b.zip |
zephyr/boards/beagleconnect_freedom: Enable networking.
Having both PWM and networking enabled now works fine. So enable subg
networking.
Signed-off-by: Ayush Singh <ayush@beagleboard.org>
-rw-r--r-- | ports/zephyr/boards/beagleconnect_freedom.conf | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/ports/zephyr/boards/beagleconnect_freedom.conf b/ports/zephyr/boards/beagleconnect_freedom.conf index 8fe2583205..e31e09444f 100644 --- a/ports/zephyr/boards/beagleconnect_freedom.conf +++ b/ports/zephyr/boards/beagleconnect_freedom.conf @@ -7,3 +7,13 @@ CONFIG_SPI=y # Flash drivers CONFIG_FLASH=y CONFIG_FLASH_MAP=y + +# Networking +CONFIG_BT=n +CONFIG_NET_IPV4=n +CONFIG_NET_CONFIG_NEED_IPV6=y +CONFIG_NET_CONFIG_NEED_IPV4=n +CONFIG_NET_CONFIG_MY_IPV4_ADDR="" +CONFIG_NET_L2_IEEE802154=y +CONFIG_NET_DHCPV4=n +CONFIG_NET_CONFIG_IEEE802154_CHANNEL=1 |