Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: BLE_API mbed nRF51822
Fork of eco_Labs_ble_Client by
Diff: ble_msg_handler.cpp
- Revision:
- 29:6ebf4b4f297f
- Parent:
- 28:5acf1e0542f3
- Child:
- 30:ce6ba33e0dff
--- a/ble_msg_handler.cpp Wed Nov 09 11:09:30 2016 +0000 +++ b/ble_msg_handler.cpp Wed Nov 09 15:49:34 2016 +0000 @@ -57,7 +57,7 @@ send_buf[1] = rx_data[0]; send_buf[2] = len+4; - memcpy(&send_buf[3], rx_data, (len-1)); + memcpy(&send_buf[3], &rx_data[1], (len-1)); send_buf[len + 3] = BLE_EOT_CMD; spi_slave_tx_data(send_buf, (len + 4)); }