File tree Expand file tree Collapse file tree 13 files changed +15
-8
lines changed
libraries/Bluefruit52Lib/examples
central_ti_sensortag_optical Expand file tree Collapse file tree 13 files changed +15
-8
lines changed Original file line number Diff line number Diff line change @@ -139,6 +139,7 @@ void connect_callback(uint16_t conn_handle)
139
139
* Callback invoked when a connection is dropped
140
140
* @param conn_handle
141
141
* @param reason is a BLE_HCI_STATUS_CODE which can be found in ble_hci.h
142
+ * https://github.com/adafruit/Adafruit_nRF52_Arduino/blob/master/cores/nRF5/nordic/softdevice/s140_nrf52_6.1.1_API/include/ble_hci.h
142
143
*/
143
144
void disconnect_callback (uint16_t conn_handle, uint8_t reason)
144
145
{
Original file line number Diff line number Diff line change @@ -188,6 +188,7 @@ void connect_callback(uint16_t conn_handle)
188
188
* Callback invoked when a connection is dropped
189
189
* @param conn_handle
190
190
* @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
191
192
*/
192
193
void disconnect_callback (uint16_t conn_handle, uint8_t reason)
193
194
{
Original file line number Diff line number Diff line change @@ -165,6 +165,7 @@ void connect_callback(uint16_t conn_handle)
165
165
* Callback invoked when a connection is dropped
166
166
* @param conn_handle
167
167
* @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
168
169
*/
169
170
void disconnect_callback (uint16_t conn_handle, uint8_t reason)
170
171
{
Original file line number Diff line number Diff line change @@ -135,6 +135,7 @@ void connect_callback(uint16_t conn_handle)
135
135
* Callback invoked when a connection is dropped
136
136
* @param conn_handle
137
137
* @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
138
139
*/
139
140
void disconnect_callback (uint16_t conn_handle, uint8_t reason)
140
141
{
Original file line number Diff line number Diff line change @@ -237,7 +237,8 @@ void connect_callback(uint16_t conn_handle)
237
237
/* *
238
238
* Callback invoked when a connection is dropped
239
239
* @param conn_handle
240
- * @param reason
240
+ * @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
241
242
*/
242
243
void disconnect_callback (uint16_t conn_handle, uint8_t reason)
243
244
{
Original file line number Diff line number Diff line change @@ -204,8 +204,9 @@ void ancs_notification_callback(AncsNotification_t* notif)
204
204
205
205
/* *
206
206
* Callback invoked when a connection is dropped
207
- * @param conn_handle connection where this event happens
207
+ * @param conn_handle
208
208
* @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
209
210
*/
210
211
void disconnect_callback (uint16_t conn_handle, uint8_t reason)
211
212
{
Original file line number Diff line number Diff line change @@ -380,6 +380,7 @@ void ancs_notification_callback(AncsNotification_t* notif)
380
380
* Callback invoked when a connection is dropped
381
381
* @param conn_handle connection where this event happens
382
382
* @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
383
384
*/
384
385
void disconnect_callback (uint16_t conn_handle, uint8_t reason)
385
386
{
Original file line number Diff line number Diff line change @@ -130,6 +130,7 @@ void connect_callback(uint16_t conn_handle)
130
130
* Callback invoked when a connection is dropped
131
131
* @param conn_handle connection where this event happens
132
132
* @param reason is a BLE_HCI_STATUS_CODE which can be found in ble_hci.h
133
+ * https://github.com/adafruit/Adafruit_nRF52_Arduino/blob/master/cores/nRF5/nordic/softdevice/s140_nrf52_6.1.1_API/include/ble_hci.h
133
134
*/
134
135
void disconnect_callback (uint16_t conn_handle, uint8_t reason)
135
136
{
Original file line number Diff line number Diff line change @@ -165,6 +165,7 @@ void printTime(void)
165
165
* Callback invoked when a connection is dropped
166
166
* @param conn_handle connection where this event happens
167
167
* @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
168
169
*/
169
170
void disconnect_callback (uint16_t conn_handle, uint8_t reason)
170
171
{
Original file line number Diff line number Diff line change @@ -180,6 +180,7 @@ void printTime(void)
180
180
* Callback invoked when a connection is dropped
181
181
* @param conn_handle connection where this event happens
182
182
* @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
183
184
*/
184
185
void disconnect_callback (uint16_t conn_handle, uint8_t reason)
185
186
{
You can’t perform that action at this time.
0 commit comments