Skip to content

Commit 1dbd8c9

Browse files
committed
Remove broken links from docs.
1 parent 449193b commit 1dbd8c9

File tree

6 files changed

+0
-17
lines changed

6 files changed

+0
-17
lines changed

examples/Refactored_original_examples/BLE_notify/BLE_notify.ino

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,6 @@ void setup() {
104104
NIMBLE_PROPERTY::INDICATE
105105
);
106106

107-
// https://www.bluetooth.com/specifications/gatt/viewer?attributeXmlFile=org.bluetooth.descriptor.gatt.client_characteristic_configuration.xml
108107
// Create a BLE Descriptor
109108
/***************************************************
110109
NOTE: DO NOT create a 2902 descriptor.

examples/Refactored_original_examples/BLE_server_multiconnect/BLE_server_multiconnect.ino

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,6 @@ void setup() {
107107
NIMBLE_PROPERTY::INDICATE
108108
);
109109

110-
// https://www.bluetooth.com/specifications/gatt/viewer?attributeXmlFile=org.bluetooth.descriptor.gatt.client_characteristic_configuration.xml
111110
// Create a BLE Descriptor
112111
/***************************************************
113112
NOTE: DO NOT create a 2902 descriptor

src/NimBLE2904.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,6 @@
1212
* Author: kolban
1313
*/
1414

15-
/*
16-
* See also:
17-
* https://www.bluetooth.com/specifications/gatt/viewer?attributeXmlFile=org.bluetooth.descriptor.gatt.characteristic_presentation_format.xml
18-
*/
1915
#include "nimconfig.h"
2016
#if defined(CONFIG_BT_ENABLED) && defined(CONFIG_BT_NIMBLE_ROLE_PERIPHERAL)
2117

src/NimBLE2904.h

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,6 @@ struct BLE2904_Data {
3333
* @brief Descriptor for Characteristic Presentation Format.
3434
*
3535
* This is a convenience descriptor for the Characteristic Presentation Format which has a UUID of 0x2904.
36-
*
37-
* See also:
38-
* https://www.bluetooth.com/specifications/gatt/viewer?attributeXmlFile=org.bluetooth.descriptor.gatt.characteristic_presentation_format.xml
3936
*/
4037
class NimBLE2904: public NimBLEDescriptor {
4138
public:

src/NimBLEAdvertising.cpp

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -112,8 +112,6 @@ void NimBLEAdvertising::removeServiceUUID(const NimBLEUUID &serviceUUID) {
112112

113113
/**
114114
* @brief Set the device appearance in the advertising data.
115-
* The codes for distinct appearances can be found here:\n
116-
* https://www.bluetooth.com/specifications/gatt/viewer?attributeXmlFile=org.bluetooth.characteristic.gap.appearance.xml.
117115
* @param [in] appearance The appearance of the device in the advertising data.
118116
*/
119117
void NimBLEAdvertising::setAppearance(uint16_t appearance) {
@@ -800,9 +798,6 @@ void NimBLEAdvertisementData::addData(char * data, size_t length) {
800798
/**
801799
* @brief Set the appearance.
802800
* @param [in] appearance The appearance code value.
803-
*
804-
* See also:
805-
* https://www.bluetooth.com/specifications/gatt/viewer?attributeXmlFile=org.bluetooth.characteristic.gap.appearance.xml
806801
*/
807802
void NimBLEAdvertisementData::setAppearance(uint16_t appearance) {
808803
char cdata[2];

src/NimBLEExtAdvertising.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -623,9 +623,6 @@ void NimBLEExtAdvertisement::addData(const uint8_t * data, size_t length) {
623623
/**
624624
* @brief Set the appearance.
625625
* @param [in] appearance The appearance code value.
626-
*
627-
* See also:
628-
* https://www.bluetooth.com/specifications/gatt/viewer?attributeXmlFile=org.bluetooth.characteristic.gap.appearance.xml
629626
*/
630627
void NimBLEExtAdvertisement::setAppearance(uint16_t appearance) {
631628
char cdata[2];

0 commit comments

Comments
 (0)