From ccee61e5bdb5309a273b19b2beb6aea654218375 Mon Sep 17 00:00:00 2001 From: Vincent Wan Date: Tue, 17 Sep 2019 16:58:45 -0700 Subject: [PATCH] ext: simplelink: import driverlib functions used by TI Power module Extra functions from driverlib are needed to build the Power module. Signed-off-by: Vincent Wan --- simplelink/source/ti/devices/cc13x2_cc26x2/CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/simplelink/source/ti/devices/cc13x2_cc26x2/CMakeLists.txt b/simplelink/source/ti/devices/cc13x2_cc26x2/CMakeLists.txt index bb7cd80..c8c765e 100644 --- a/simplelink/source/ti/devices/cc13x2_cc26x2/CMakeLists.txt +++ b/simplelink/source/ti/devices/cc13x2_cc26x2/CMakeLists.txt @@ -15,4 +15,8 @@ zephyr_library_sources( driverlib/cpu.c # Required for RFCDoorbellSendTo which is not in ROM driverlib/rfc.c + # Required functions to support the TI Power module + driverlib/sys_ctrl.c + driverlib/osc.c + driverlib/driverlib_release.c )