Skip to content

Commit d17d13f

Browse files
committed
clean up
1 parent 5f06fd2 commit d17d13f

File tree

15 files changed

+0
-15
lines changed

15 files changed

+0
-15
lines changed

libraries/Bluefruit52Lib/examples/Central/central_bleuart/central_bleuart.ino

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,6 @@ void connect_callback(uint16_t conn_handle)
157157
* Callback invoked when a connection is dropped
158158
* @param conn_handle
159159
* @param reason is a BLE_HCI_STATUS_CODE which can be found in ble_hci.h
160-
* https://github.com/adafruit/Adafruit_nRF52_Arduino/blob/master/cores/nRF5/nordic/softdevice/s140_nrf52_6.1.1_API/include/ble_hci.h
161160
*/
162161
void disconnect_callback(uint16_t conn_handle, uint8_t reason)
163162
{

libraries/Bluefruit52Lib/examples/Central/central_bleuart_multi/central_bleuart_multi.ino

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,6 @@ void connect_callback(uint16_t conn_handle)
188188
* Callback invoked when a connection is dropped
189189
* @param conn_handle
190190
* @param reason is a BLE_HCI_STATUS_CODE which can be found in ble_hci.h
191-
* https://github.com/adafruit/Adafruit_nRF52_Arduino/blob/master/cores/nRF5/nordic/softdevice/s140_nrf52_6.1.1_API/include/ble_hci.h
192191
*/
193192
void disconnect_callback(uint16_t conn_handle, uint8_t reason)
194193
{

libraries/Bluefruit52Lib/examples/Central/central_custom_hrm/central_custom_hrm.ino

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,6 @@ void connect_callback(uint16_t conn_handle)
165165
* Callback invoked when a connection is dropped
166166
* @param conn_handle
167167
* @param reason is a BLE_HCI_STATUS_CODE which can be found in ble_hci.h
168-
* https://github.com/adafruit/Adafruit_nRF52_Arduino/blob/master/cores/nRF5/nordic/softdevice/s140_nrf52_6.1.1_API/include/ble_hci.h
169168
*/
170169
void disconnect_callback(uint16_t conn_handle, uint8_t reason)
171170
{

libraries/Bluefruit52Lib/examples/Central/central_hid/central_hid.ino

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,6 @@ void connect_callback(uint16_t conn_handle)
135135
* Callback invoked when a connection is dropped
136136
* @param conn_handle
137137
* @param reason is a BLE_HCI_STATUS_CODE which can be found in ble_hci.h
138-
* https://github.com/adafruit/Adafruit_nRF52_Arduino/blob/master/cores/nRF5/nordic/softdevice/s140_nrf52_6.1.1_API/include/ble_hci.h
139138
*/
140139
void disconnect_callback(uint16_t conn_handle, uint8_t reason)
141140
{

libraries/Bluefruit52Lib/examples/Central/central_ti_sensortag_optical/central_ti_sensortag_optical.ino

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,6 @@ void connect_callback(uint16_t conn_handle)
238238
* Callback invoked when a connection is dropped
239239
* @param conn_handle
240240
* @param reason is a BLE_HCI_STATUS_CODE which can be found in ble_hci.h
241-
* https://github.com/adafruit/Adafruit_nRF52_Arduino/blob/master/cores/nRF5/nordic/softdevice/s140_nrf52_6.1.1_API/include/ble_hci.h
242241
*/
243242
void disconnect_callback(uint16_t conn_handle, uint8_t reason)
244243
{

libraries/Bluefruit52Lib/examples/Peripheral/ancs/ancs.ino

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,6 @@ void ancs_notification_callback(AncsNotification_t* notif)
206206
* Callback invoked when a connection is dropped
207207
* @param conn_handle
208208
* @param reason is a BLE_HCI_STATUS_CODE which can be found in ble_hci.h
209-
* https://github.com/adafruit/Adafruit_nRF52_Arduino/blob/master/cores/nRF5/nordic/softdevice/s140_nrf52_6.1.1_API/include/ble_hci.h
210209
*/
211210
void disconnect_callback(uint16_t conn_handle, uint8_t reason)
212211
{

libraries/Bluefruit52Lib/examples/Peripheral/ancs_oled/ancs_oled.ino

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,6 @@ void ancs_notification_callback(AncsNotification_t* notif)
380380
* Callback invoked when a connection is dropped
381381
* @param conn_handle connection where this event happens
382382
* @param reason is a BLE_HCI_STATUS_CODE which can be found in ble_hci.h
383-
* https://github.com/adafruit/Adafruit_nRF52_Arduino/blob/master/cores/nRF5/nordic/softdevice/s140_nrf52_6.1.1_API/include/ble_hci.h
384383
*/
385384
void disconnect_callback(uint16_t conn_handle, uint8_t reason)
386385
{

libraries/Bluefruit52Lib/examples/Peripheral/bleuart/bleuart.ino

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,6 @@ void connect_callback(uint16_t conn_handle)
137137
* Callback invoked when a connection is dropped
138138
* @param conn_handle connection where this event happens
139139
* @param reason is a BLE_HCI_STATUS_CODE which can be found in ble_hci.h
140-
* https://github.com/adafruit/Adafruit_nRF52_Arduino/blob/master/cores/nRF5/nordic/softdevice/s140_nrf52_6.1.1_API/include/ble_hci.h
141140
*/
142141
void disconnect_callback(uint16_t conn_handle, uint8_t reason)
143142
{

libraries/Bluefruit52Lib/examples/Peripheral/client_cts/client_cts.ino

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,6 @@ void printTime(void)
165165
* Callback invoked when a connection is dropped
166166
* @param conn_handle connection where this event happens
167167
* @param reason is a BLE_HCI_STATUS_CODE which can be found in ble_hci.h
168-
* https://github.com/adafruit/Adafruit_nRF52_Arduino/blob/master/cores/nRF5/nordic/softdevice/s140_nrf52_6.1.1_API/include/ble_hci.h
169168
*/
170169
void disconnect_callback(uint16_t conn_handle, uint8_t reason)
171170
{

libraries/Bluefruit52Lib/examples/Peripheral/client_cts_oled/client_cts_oled.ino

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,6 @@ void printTime(void)
180180
* Callback invoked when a connection is dropped
181181
* @param conn_handle connection where this event happens
182182
* @param reason is a BLE_HCI_STATUS_CODE which can be found in ble_hci.h
183-
* https://github.com/adafruit/Adafruit_nRF52_Arduino/blob/master/cores/nRF5/nordic/softdevice/s140_nrf52_6.1.1_API/include/ble_hci.h
184183
*/
185184
void disconnect_callback(uint16_t conn_handle, uint8_t reason)
186185
{

0 commit comments

Comments
 (0)