Hi, I have some questions about building BLE Firmware with CC2650DK-7ID.
There is a library called 'CC26xx Driver Library' and I was trying to build some programs with it.(Also with technical reference manual)
Reason I try to build with library is because I will design some circuit based on CC2640 chip with Orcad and going to build some programs on it and I'm now testing some functions I'm going to use in the future.
I built peripheral programs using 'CC26xx Driver Library', like GPIO control, timer control and so on.
However, I'm now struggling with building BLE program.
In 'CC26xx Driver Library', there are RF Core, and RF Core Command API.
There are RF related functions in RF Core section and there are structures in RF Core Command API section. However, I couldn't use structures in RF Core Command API section with RF Core functions. According to tech. ref. manual, I have to send doorbell and there is a function called RFCDoorbellSendTo in RF Core section. The function's parameter is pOp so I don't know how to use structures with this RFCDoorbellSendTo function.
Also, I want to know BLE initialization sequence with functions in 'CC26xx Driver Library'. Sequence below is my guess.
1. turn on OSC ( AUX )
2. setup CMD_START_RAT ( in Common_cmd )
3. setup CMD_RADIO_SETUP ( in Common_cmd )
4. setup CMD_BLE_MASTER ( in Ble_cmd )
I really need some help.