mirror of
https://github.com/apache/nuttx.git
synced 2026-06-04 23:03:27 +08:00
wireless/ieee802154: Fixes build and configuration setup
This commit is contained in:
@@ -10,12 +10,12 @@ config WIRELESS_IEEE802154
|
|||||||
---help---
|
---help---
|
||||||
Enables support for the IEEE 802.14.5 Wireless library.
|
Enables support for the IEEE 802.14.5 Wireless library.
|
||||||
|
|
||||||
if IEEE802154
|
if WIRELESS_IEEE802154
|
||||||
|
|
||||||
config IEEE802154_MAC
|
config IEEE802154_MAC
|
||||||
bool "Generic Media Access Control layer for 802.15.4 radios"
|
bool "Generic Media Access Control layer for 802.15.4 radios"
|
||||||
default n
|
default n
|
||||||
depends on IEEE802154
|
depends on WIRELESS_IEEE802154
|
||||||
---help---
|
---help---
|
||||||
Enables a Media Access Controller for any IEEE802.15.4 radio
|
Enables a Media Access Controller for any IEEE802.15.4 radio
|
||||||
device. This in turn can be used by higher layer entities
|
device. This in turn can be used by higher layer entities
|
||||||
@@ -25,7 +25,7 @@ config IEEE802154_MAC
|
|||||||
config IEEE802154_DEV
|
config IEEE802154_DEV
|
||||||
bool "Debug character driver for ieee802.15.4 radio interfaces"
|
bool "Debug character driver for ieee802.15.4 radio interfaces"
|
||||||
default n
|
default n
|
||||||
depends on IEEE802154
|
depends on WIRELESS_IEEE802154
|
||||||
---help---
|
---help---
|
||||||
Enables a device driver to expose ieee802.15.4 radio controls
|
Enables a device driver to expose ieee802.15.4 radio controls
|
||||||
to user space as IOCTLs.
|
to user space as IOCTLs.
|
||||||
|
|||||||
@@ -45,7 +45,7 @@ CSRCS += ieee802154/mac802154.c
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(CONFIG_IEEE802154_DEV),y)
|
ifeq ($(CONFIG_IEEE802154_DEV),y)
|
||||||
CSRCS += ieee802154/ieee802154_device.c
|
CSRCS += ieee802154/radio802154_device.c
|
||||||
endif
|
endif
|
||||||
|
|
||||||
DEPPATH += --dep-path wireless/ieee802154
|
DEPPATH += --dep-path wireless/ieee802154
|
||||||
|
|||||||
Reference in New Issue
Block a user