Hi,
My end application is an external MCU, CC2650 as BLE module and bidirectional data transmission between android application and device. Regarding this, I have certain doubts. Please clarify these for me..
- I need a continuous data transmission and reception between app and CC2650. For this , I thought of keeping CC2650 as peripheral and adding UART to BLE bridge for two way communication using SPP profile.
- In all the sample profiles given, I can transmit data from CC2650 to app. But how can a profile be made to receive?
- There are a lot of callbacks in the code which sets event and task will process based on state change events. but how does callbacks gets triggered?
- Regarding the variable app_msg_queue (which gets filled with value) where does it get populated? Is it from the app/ stack ? I don't think it is app.
- To implement a profile for data reception, adding UART driver to a project / SPP BLE server and client which is the best solution?
- Any suggestions for the android app which can be used for two way communication?