Adds overlays to support HTTP over IEEE 802.15.4 (including SubG for a sample SoC). Signed-off-by: Florian Grandel <fgrandel@code-for-humans.de>
22 lines
249 B
Plaintext
22 lines
249 B
Plaintext
/*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* Overlay to enable for CC1352R1 / CC1352P1-based boards.
|
|
*/
|
|
|
|
/ {
|
|
chosen {
|
|
zephyr,ieee802154 = &ieee802154g;
|
|
};
|
|
};
|
|
|
|
&ieee802154 {
|
|
status = "disabled";
|
|
};
|
|
|
|
&ieee802154g {
|
|
status = "okay";
|
|
};
|