Hello Nordic,
I have to transmit data from the nRF Chip(now i'm testing nRF52832 DK Board) to a PC on UART serial.
Each beacon has transmitted advertising and scanRSP data.
I have confirmed that following the transmission of advertising data comes the scanRSP data.
I'm seeing the data(ADV+RSP) through the debugger terminal on Segger Embedded Studio. It is no problem.
However, when I transmit the confirmed data(ADV+RSP) through serial, the PC program (DLL) prints only ADV data.
If I transmit only scanRSP data, the DLL program prints RSP data and the print interval is about 20s (I have transmitted scanRSP every second).
The same thing occurs even after changing the UART priority (HIGHEST)
The output for scanRSP and advertising data is received by its own, but when I attempt to receive both, the scanRSP data is not outputted.
Is there anyway for me to receive both scanRSP and advertising data such that I am able to read both? What is the reasoning behind not being able to see both forms of data simultaneously?
I have tested and confirmed that it was not due to the DLL, as its only function is to print out UART RX buffer data.
I am currently using
- nRF52832 DK board
- SDK 14.2
- Receiver app = ble_app_uart_c
- beacon app = ble_app_beacon
Thanks.