I'd like to know whether the cetnral get the data from peripheral or not.
I'm using UART, it connects mcu(stm32f4) to ble module (nrf52832) and ble module gets the sensed data.
Those data should be sent to other ble module (nrf52840) with NUS.
I'm checking the data is sent from nrf52832 (peripehral) to nrf52840 (central) with RTT viewer.
Using BLE in nrf connect program, I make the nrf52840 is central (adapter) and the nrf52832 is peripheral, after scanning and connecting.
I send the hex data in peripheral, such as 31 (0x31) in TX (Write) characteristic, I can see this value in RTT viewer, it is printed there.
Should I connect the j link to nrf52840 for checking if the sent data is writtien to it or not?
I don't know how to know it.
Also, what should I do if I want to send the data from central to peripheral?
And, is it correct that using UART/NUS for sending the data from ble to another ble? it should be bidirectional (read and write).