From 112760ab5d47e952b10f865a127693c716438315 Mon Sep 17 00:00:00 2001 From: Brett Witherspoon Date: Tue, 3 Sep 2019 20:44:45 -0500 Subject: [PATCH] simplelink: add RFC driverlib sources Required for RFCDoorbellSendTo used in 802.15.4 driver. See zephyrproject-rtos/zephyr#16263 Signed-off-by: Brett Witherspoon --- simplelink/source/ti/devices/cc13x2_cc26x2/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/simplelink/source/ti/devices/cc13x2_cc26x2/CMakeLists.txt b/simplelink/source/ti/devices/cc13x2_cc26x2/CMakeLists.txt index 3f2deaf..bb7cd80 100644 --- a/simplelink/source/ti/devices/cc13x2_cc26x2/CMakeLists.txt +++ b/simplelink/source/ti/devices/cc13x2_cc26x2/CMakeLists.txt @@ -13,4 +13,6 @@ zephyr_library_sources( driverlib/aux_sysif.c # Required for CPUdelay which is not in ROM driverlib/cpu.c + # Required for RFCDoorbellSendTo which is not in ROM + driverlib/rfc.c )