This website requires JavaScript.
Explore
Help
Sign In
OrgZephyr
/
zephyr
mirror of
https://github.com/zephyrproject-rtos/zephyr.git
Watch
1
Star
0
Fork
You've already forked zephyr
0
Code
Issues
Releases
Wiki
Activity
87d177a6fb
zephyr
/
samples
/
net
/
wpanusb
/
overlay-cc2520.conf
3 lines
74 B
Plaintext
Raw
Normal View
History
Unescape
Escape
samples: net: wpanusb: split cc2520 settings from prj.conf When the CC2520-specific configs are removed from the prj.conf file, the sample can be built for hardware that supports 802.15.4 natively w/o any changes to the prj.conf like so: cmake -DBOARD=nrf52840_pca10056 .. cmake -DBOARD=usb_kw24d512 .. The CC2520-specific settings now live in overlay-cc2520.conf which can be used like so when building for devices that can use it: cmake -DBOARD=quark_se_c1000_devboard \ -DOVERLAY_CONFIG=overlay-cc2520.conf .. Later, support for other optional HW like CC1200 and MCR20A can be added in a similar way. Signed-off-by: Michael Scott <mike@foundries.io>
2018-07-13 06:53:12 +08:00
CONFIG_IEEE802154_CC2520=y
net: config: Rename Kconfig options to correspond to library name This finishes refactor of splitting off net_config library name from net_app library, started in c60df1311, c89a06dbc. This commit makes sure that Kconfig options are prefixed with CONFIG_NET_CONFIG_ instead of CONFIG_NET_APP_, and propagates these changes thru the app configs in the tree. Also, minor dependency, etc. tweaks are made. Signed-off-by: Paul Sokolovsky <paul.sokolovsky@linaro.org>
2018-08-12 14:32:12 +08:00
CONFIG_NET_CONFIG_IEEE802154_DEV_NAME="cc2520"