simplelink: rf: use multi-protocol patch

Use the same multi-protocol patch for ble, 15.4, and subg.

Signed-off-by: Christopher Friedt <chrisfriedt@gmail.com>
This commit is contained in:
Christopher Friedt 2020-09-18 10:13:10 -04:00 committed by Kumar Gala
parent 405dfc8fab
commit 277d70a65a
1 changed files with 12 additions and 2 deletions

View File

@ -21,13 +21,23 @@ zephyr_library_sources(
# Required for IEEE 802.15.4 support
zephyr_library_sources_ifdef(CONFIG_IEEE802154_CC13XX_CC26XX
rf_patches/rf_patch_cpe_ieee_802_15_4.c)
rf_patches/rf_patch_cpe_multi_protocol.c)
# Required for IEEE 802.15.4 support
# (until driver is changed to use multi-protocol rf patch)
zephyr_library_sources_ifdef(CONFIG_IEEE802154_CC13XX_CC26XX
rf_patches/rf_patch_cpe_ieee_802_15_4.c)
# Required for RFCDoorbellSendTo which is not in ROM
zephyr_library_sources_ifdef(CONFIG_IEEE802154_CC13XX_CC26XX driverlib/rfc.c)
# Required for IEEE 802.15.4g support
zephyr_library_sources_ifdef(CONFIG_IEEE802154_CC13XX_CC26XX_SUB_GHZ
rf_patches/rf_patch_cpe_multi_protocol.c)
# Required for RFCDoorbellSendTo which is not in ROM
zephyr_library_sources_ifdef(CONFIG_IEEE802154_CC13XX_CC26XX_SUB_GHZ driverlib/rfc.c)
# Required for BLE support
zephyr_library_sources_ifdef(CONFIG_BLE_CC13XX_CC26XX
rf_patches/rf_patch_cpe_bt5.c)
rf_patches/rf_patch_cpe_multi_protocol.c)
# Required for RFCDoorbellSendTo which is not in ROM
zephyr_library_sources_ifdef(CONFIG_BLE_CC13XX_CC26XX driverlib/rfc.c)