Hi everyone
I setting my nRF52832 is central and iPhone(iOS 12.3.2) is peripheral and using "ble_app_uart_c(SDK15.3.0 s132 v6.1.1)" sample program. I print the debug message from central, can see the message "<info> app: Connected to device with Nordic UART Service." But when I send data to peripheral from central, iPhone did not receive any information.
Here is my debug message:
<debug> ble_scan: Added filter on UUID 1
<info> app: BLE UART central example started.
<debug> ble_scan: Scanning
<debug> ble_scan: Connecting
<debug> ble_scan: Connection status: 0
<info> app: Connecting to target BD396002CC50
<debug> nrf_ble_gatt: Requesting to update ATT MTU to 247 bytes on connection 0x0.
<debug> nrf_ble_gatt: Updating data length to 251 on connection 0x0.
<debug> ble_db_disc: Starting discovery of service with UUID 0x1 on connection handle 0x0.
<debug> nrf_ble_gatt: Data length updated to 251 on connection 0x0.
<debug> nrf_ble_gatt: max_rx_octets: 251
<debug> nrf_ble_gatt: max_tx_octets: 251
<debug> nrf_ble_gatt: max_rx_time: 2120
<debug> nrf_ble_gatt: max_tx_time: 2120
<debug> ble_db_disc: Starting discovery of service with UUID 0x1 on connection handle 0x0.
<debug> nrf_ble_gatt: ATT MTU updated to 247 bytes on connection 0x0 (response).
<info> app: ATT MTU exchange completed.
<info> app: Ble NUS max data length set to 0xF4(244)
<debug> ble_db_disc: Found service UUID 0x1.
<debug> ble_db_disc: Discovery of service with UUID 0x1 completed with success on connection handle 0x0.
<info> ble_nus_c: ! nus_c_evt.handles.nus_rx_handle 44 !
<info> ble_nus_c: ! nus_c_evt.handles.nus_tx_handle 48 !
<info> ble_nus_c: ! nus_c_evt.handles.nus_tx_cccd_handle 4A !
<info> app: Discovery complete.
<info> app: Connected to device with Nordic UART Service.
Thanks everyone