I have a SmartRF06EB dev board with the CC2650EM-7ID module, and I'm trying to directly drive the RF core without using the BLE stack, but I'm having some problems with the include directories.
I included the RF driver ( C:\ti\tirtos_simplelink_2_14_01_20\packages\ti\drivers\rf\FR.h ), using the standard driver include
#include <ti/drivers/rf/RF.h>
I'm also using the PIN and LCDDogm1286 drivers successfully.
RF.h includes 2 device specific driver header files (located in the appropriate driverlib folder).
#include <driverlib/rf_common_cmd.h> #include <driverlib/rf_prop_cmd.h>
Those two files do not exist in C:\ti\tirtos_simplelink_2_14_01_20\products\cc26xxware_2_21_03_15980\driverlib. They do exist in the CC13XXware\driverlib folder, which leads me to believe that only cc13xxs can use the RF driver.
Is the BLE stack required to operate the RF core on the cc2650? Or am I just missing something really obvious with the cc2650 RF driver?