Hello, is it possible to receive and transmit RSCS characteristic on only one nRF51 DK ? If merging rscs_example and rscs_c_example into 1 project is a good idea ?
Hello, is it possible to receive and transmit RSCS characteristic on only one nRF51 DK ? If merging rscs_example and rscs_c_example into 1 project is a good idea ?
Hi.
is it possible to receive and transmit RSCS characteristic on only one nRF51 DK ?
I assume you aren't trying to receive a packet on the same board as you used to send it?
Could you elaborate a little bit on what you are trying to acheive here?
Do you want an application that acts like a relay, being able to receive values and then pass the on, i.e acting as both a central and a periperal?
I suggest that you take a look at the Experimental: BLE Relay Example:
"This example application demonstrates a simple relay that receives values and passes them on. The application combines a collector part on one end and a sensor part on the other to show how the SoftDevice can be used to make a device simultaneously function as central and peripheral device."
Is that something similar to what you are looking for?
Best regards,
Joakim
I have one nrf51 DK and one PC app with BLED112 dongle. Currently I am able to advertise rscs data from nrf51. PC applications handle connecting, receiving and transmitting data. I want to enable receiving also on nrf51 (not only transmitting). Receiving and transmiting should be included in the same (ONE) nrf51 DK.
I want to have 2 way communication (just like nus and nus_c example) for hrs or rscs service is it possible or maybe peripheral cannot receive anything ?
Ok.
Did you take a look at the Experimental: BLE Relay Example that I linked to in my previous answer?
This example should be doing exactly what you are looking for.
Best regards.
Yes, but in my understanding this example is more like gateway.
It collects from peripheral and passes to client.
PERIPH ---> RELAY ---> CLIENT
I want to collect from peripheral and pass response to the same peripheral from which I received data.
PERIPH <---> CLIENT
Is it possible ?