Hi,
In order to understand how it works and to start my app, I ran the proximity demo.
My first needs is to understand how to scan devices.
What I did :
- - -在个人电脑上运行host_proxm_sdk.exe。
- load prox_monitor_ext.uvprojx on eval_pan1740 with Keil 5
The module report correctly scanned devices to the pc app.
Now, I'm looking for the code that execute the start scan function. As far a I understood, the PC apps, builds the ble message, sends
it to module thru uart. I suppose that the module sends it "as it" to ble but I'm not able to find in the project where the module
gets the data from uart and send them to BLE.
Does anybody have some clue about it ?
SDK 5.0.3
Regards.
Device:
Hi s.miermont,
Most of the code in the external configuration is located in the ROM and is not accessible, uart messages are tasks that trigger handlers in the sdk_profiles, next those handlers trigger the coresponding ble writting/reading data. The only thing that you can access is the pin configuration for the UART via the user_periph_setup.h file.
Thanks MT_dialog
Maybe you can find some information athttp://support.dialog-semiconductor.com/resource/um-b-017-gtl-interface-...
Ok, thanks.