i am using this project:
\nRF5_SDK_14.2.0_17b948a\examples\ble_central\ble_app_uart_c\main.c as center.
nRF5_SDK_14.2.0_17b948a\examples\ble_peripheral\ble_app_uart\main.c as slave.
i have two slave ,the data flow is this :
slave(two slave air) -->center -( physical serial)---->andorid board -- >display screen
the two slave send button state and position data to center.
if i use only one slave, data is all ok
but if i connect two slave. sometimes i miss one of slaves 's button press message
and sometimes i found the position data is overlapped.
for example slave a send; i am jam;
slave b send: i am cherry
when two slave is connected with center, the display screen show : i am i am cherry
i think slave a's data is interruped by slave b's data or may be some buffer is overflow,slave a's data is overwrite.
how can i fix this ???