diff --git a/_h_i_d_keyboard_types_8h_source.html b/_h_i_d_keyboard_types_8h_source.html index 7922d8d..08133df 100644 --- a/_h_i_d_keyboard_types_8h_source.html +++ b/_h_i_d_keyboard_types_8h_source.html @@ -25,7 +25,7 @@ -
esp-nimble-cpp 2.3.2 +
esp-nimble-cpp 2.3.3
diff --git a/_h_i_d_types_8h_source.html b/_h_i_d_types_8h_source.html index 2bade38..01ec545 100644 --- a/_h_i_d_types_8h_source.html +++ b/_h_i_d_types_8h_source.html @@ -25,7 +25,7 @@ -
esp-nimble-cpp 2.3.2 +
esp-nimble-cpp 2.3.3
diff --git a/_nim_b_l_e2904_8h_source.html b/_nim_b_l_e2904_8h_source.html index 854ab54..331d5fe 100644 --- a/_nim_b_l_e2904_8h_source.html +++ b/_nim_b_l_e2904_8h_source.html @@ -25,7 +25,7 @@ -
esp-nimble-cpp 2.3.2 +
esp-nimble-cpp 2.3.3
diff --git a/_nim_b_l_e_address_8h_source.html b/_nim_b_l_e_address_8h_source.html index da8520a..6c7bdfd 100644 --- a/_nim_b_l_e_address_8h_source.html +++ b/_nim_b_l_e_address_8h_source.html @@ -25,7 +25,7 @@ -
esp-nimble-cpp 2.3.2 +
esp-nimble-cpp 2.3.3
diff --git a/_nim_b_l_e_advertised_device_8h_source.html b/_nim_b_l_e_advertised_device_8h_source.html index aee4f54..5cd1484 100644 --- a/_nim_b_l_e_advertised_device_8h_source.html +++ b/_nim_b_l_e_advertised_device_8h_source.html @@ -25,7 +25,7 @@ -
esp-nimble-cpp 2.3.2 +
esp-nimble-cpp 2.3.3
@@ -162,7 +162,7 @@ $(document).ready(function(){initNavTree('_nim_b_l_e_advertised_device_8h_source
69 NimBLEAddress getTargetAddress(uint8_t index = 0) const;
70 uint8_t getTargetAddressCount() const;
71 int8_t getTXPower() const;
-
72 uint8_t getAdvLength() const;
+
72 uint16_t getAdvLength() const;
73 uint8_t getAddressType() const;
74 bool isAdvertisingService(const NimBLEUUID& uuid) const;
75 bool haveAppearance() const;
@@ -185,64 +185,66 @@ $(document).ready(function(){initNavTree('_nim_b_l_e_advertised_device_8h_source
92 uint8_t getPrimaryPhy() const;
93 uint8_t getSecondaryPhy() const;
94 uint16_t getPeriodicInterval() const;
-
95# endif
-
96 operator NimBLEAddress() const;
-
97
-
98 const std::vector<uint8_t>& getPayload() const;
-
99 const std::vector<uint8_t>::const_iterator begin() const;
-
100 const std::vector<uint8_t>::const_iterator end() const;
-
101
-
110 template <typename T>
-
111 T getManufacturerData(bool skipSizeCheck = false) const {
-
112 std::string data = getManufacturerData();
-
113 if (!skipSizeCheck && data.size() < sizeof(T)) return T();
-
114 const char* pData = data.data();
-
115 return *((T*)pData);
-
116 }
-
117
-
127 template <typename T>
-
128 T getServiceData(uint8_t index = 0, bool skipSizeCheck = false) const {
-
129 std::string data = getServiceData(index);
-
130 if (!skipSizeCheck && data.size() < sizeof(T)) return T();
-
131 const char* pData = data.data();
-
132 return *((T*)pData);
-
133 }
-
134
-
144 template <typename T>
-
145 T getServiceData(const NimBLEUUID& uuid, bool skipSizeCheck = false) const {
-
146 std::string data = getServiceData(uuid);
-
147 if (!skipSizeCheck && data.size() < sizeof(T)) return T();
-
148 const char* pData = data.data();
-
149 return *((T*)pData);
-
150 }
-
151
-
152 private:
-
153 friend class NimBLEScan;
-
154
-
155 NimBLEAdvertisedDevice(const ble_gap_event* event, uint8_t eventType);
-
156 void update(const ble_gap_event* event, uint8_t eventType);
-
157 uint8_t findAdvField(uint8_t type, uint8_t index = 0, size_t* data_loc = nullptr) const;
-
158 size_t findServiceData(uint8_t index, uint8_t* bytes) const;
-
159
-
160 NimBLEAddress m_address{};
-
161 uint8_t m_advType{};
-
162 int8_t m_rssi{};
-
163 uint8_t m_callbackSent{};
-
164 uint8_t m_advLength{};
-
165
-
166# if MYNEWT_VAL(BLE_EXT_ADV)
-
167 bool m_isLegacyAdv{};
-
168 uint8_t m_sid{};
-
169 uint8_t m_primPhy{};
-
170 uint8_t m_secPhy{};
-
171 uint16_t m_periodicItvl{};
-
172# endif
-
173
-
174 std::vector<uint8_t> m_payload;
-
175};
-
176
-
177#endif /* CONFIG_BT_NIMBLE_ENABLED && MYNEWT_VAL(BLE_ROLE_OBSERVER) */
-
178#endif /* NIMBLE_CPP_ADVERTISED_DEVICE_H_ */
+
95 uint8_t getDataStatus() const;
+
96# endif
+
97 operator NimBLEAddress() const;
+
98
+
99 const std::vector<uint8_t>& getPayload() const;
+
100 const std::vector<uint8_t>::const_iterator begin() const;
+
101 const std::vector<uint8_t>::const_iterator end() const;
+
102
+
111 template <typename T>
+
112 T getManufacturerData(bool skipSizeCheck = false) const {
+
113 std::string data = getManufacturerData();
+
114 if (!skipSizeCheck && data.size() < sizeof(T)) return T();
+
115 const char* pData = data.data();
+
116 return *((T*)pData);
+
117 }
+
118
+
128 template <typename T>
+
129 T getServiceData(uint8_t index = 0, bool skipSizeCheck = false) const {
+
130 std::string data = getServiceData(index);
+
131 if (!skipSizeCheck && data.size() < sizeof(T)) return T();
+
132 const char* pData = data.data();
+
133 return *((T*)pData);
+
134 }
+
135
+
145 template <typename T>
+
146 T getServiceData(const NimBLEUUID& uuid, bool skipSizeCheck = false) const {
+
147 std::string data = getServiceData(uuid);
+
148 if (!skipSizeCheck && data.size() < sizeof(T)) return T();
+
149 const char* pData = data.data();
+
150 return *((T*)pData);
+
151 }
+
152
+
153 private:
+
154 friend class NimBLEScan;
+
155
+
156 NimBLEAdvertisedDevice(const ble_gap_event* event, uint8_t eventType);
+
157 void update(const ble_gap_event* event, uint8_t eventType);
+
158 uint8_t findAdvField(uint8_t type, uint8_t index = 0, size_t* data_loc = nullptr) const;
+
159 size_t findServiceData(uint8_t index, uint8_t* bytes) const;
+
160
+
161 NimBLEAddress m_address{};
+
162 uint8_t m_advType{};
+
163 int8_t m_rssi{};
+
164 uint8_t m_callbackSent{};
+
165 uint16_t m_advLength{};
+
166
+
167# if MYNEWT_VAL(BLE_EXT_ADV)
+
168 bool m_isLegacyAdv{};
+
169 uint8_t m_dataStatus{};
+
170 uint8_t m_sid{};
+
171 uint8_t m_primPhy{};
+
172 uint8_t m_secPhy{};
+
173 uint16_t m_periodicItvl{};
+
174# endif
+
175
+
176 std::vector<uint8_t> m_payload;
+
177};
+
178
+
179#endif /* CONFIG_BT_NIMBLE_ENABLED && MYNEWT_VAL(BLE_ROLE_OBSERVER) */
+
180#endif /* NIMBLE_CPP_ADVERTISED_DEVICE_H_ */
A BLE device address.
Definition NimBLEAddress.h:42
A model of a BLE UUID.
Definition NimBLEUUID.h:41
diff --git a/_nim_b_l_e_advertisement_data_8h_source.html b/_nim_b_l_e_advertisement_data_8h_source.html index f3bccd2..2281888 100644 --- a/_nim_b_l_e_advertisement_data_8h_source.html +++ b/_nim_b_l_e_advertisement_data_8h_source.html @@ -25,7 +25,7 @@ -
esp-nimble-cpp 2.3.2 +
esp-nimble-cpp 2.3.3
diff --git a/_nim_b_l_e_advertising_8h_source.html b/_nim_b_l_e_advertising_8h_source.html index b779d11..76ab8d5 100644 --- a/_nim_b_l_e_advertising_8h_source.html +++ b/_nim_b_l_e_advertising_8h_source.html @@ -25,7 +25,7 @@ -
esp-nimble-cpp 2.3.2 +
esp-nimble-cpp 2.3.3
diff --git a/_nim_b_l_e_att_value_8h_source.html b/_nim_b_l_e_att_value_8h_source.html index eaa82eb..c3ae24e 100644 --- a/_nim_b_l_e_att_value_8h_source.html +++ b/_nim_b_l_e_att_value_8h_source.html @@ -25,7 +25,7 @@ -
esp-nimble-cpp 2.3.2 +
esp-nimble-cpp 2.3.3
diff --git a/_nim_b_l_e_attribute_8h_source.html b/_nim_b_l_e_attribute_8h_source.html index f976f71..4b205b6 100644 --- a/_nim_b_l_e_attribute_8h_source.html +++ b/_nim_b_l_e_attribute_8h_source.html @@ -25,7 +25,7 @@ -
esp-nimble-cpp 2.3.2 +
esp-nimble-cpp 2.3.3
diff --git a/_nim_b_l_e_beacon_8h_source.html b/_nim_b_l_e_beacon_8h_source.html index 6cc0338..f573aa3 100644 --- a/_nim_b_l_e_beacon_8h_source.html +++ b/_nim_b_l_e_beacon_8h_source.html @@ -25,7 +25,7 @@ -
esp-nimble-cpp 2.3.2 +
esp-nimble-cpp 2.3.3
diff --git a/_nim_b_l_e_characteristic_8h_source.html b/_nim_b_l_e_characteristic_8h_source.html index 7beb5d0..ffc5639 100644 --- a/_nim_b_l_e_characteristic_8h_source.html +++ b/_nim_b_l_e_characteristic_8h_source.html @@ -25,7 +25,7 @@ -
esp-nimble-cpp 2.3.2 +
esp-nimble-cpp 2.3.3
diff --git a/_nim_b_l_e_client_8h_source.html b/_nim_b_l_e_client_8h_source.html index b87d3c0..41ee599 100644 --- a/_nim_b_l_e_client_8h_source.html +++ b/_nim_b_l_e_client_8h_source.html @@ -25,7 +25,7 @@ -
esp-nimble-cpp 2.3.2 +
esp-nimble-cpp 2.3.3
diff --git a/_nim_b_l_e_conn_info_8h_source.html b/_nim_b_l_e_conn_info_8h_source.html index 057f416..7cb0126 100644 --- a/_nim_b_l_e_conn_info_8h_source.html +++ b/_nim_b_l_e_conn_info_8h_source.html @@ -25,7 +25,7 @@ -
esp-nimble-cpp 2.3.2 +
esp-nimble-cpp 2.3.3
diff --git a/_nim_b_l_e_descriptor_8h_source.html b/_nim_b_l_e_descriptor_8h_source.html index 9689382..77074d7 100644 --- a/_nim_b_l_e_descriptor_8h_source.html +++ b/_nim_b_l_e_descriptor_8h_source.html @@ -25,7 +25,7 @@ -
esp-nimble-cpp 2.3.2 +
esp-nimble-cpp 2.3.3
diff --git a/_nim_b_l_e_device_8h_source.html b/_nim_b_l_e_device_8h_source.html index 883b81b..09d2d54 100644 --- a/_nim_b_l_e_device_8h_source.html +++ b/_nim_b_l_e_device_8h_source.html @@ -25,7 +25,7 @@ -
esp-nimble-cpp 2.3.2 +
esp-nimble-cpp 2.3.3
diff --git a/_nim_b_l_e_eddystone_t_l_m_8h_source.html b/_nim_b_l_e_eddystone_t_l_m_8h_source.html index 2245af5..f039006 100644 --- a/_nim_b_l_e_eddystone_t_l_m_8h_source.html +++ b/_nim_b_l_e_eddystone_t_l_m_8h_source.html @@ -25,7 +25,7 @@ -
esp-nimble-cpp 2.3.2 +
esp-nimble-cpp 2.3.3
diff --git a/_nim_b_l_e_ext_advertising_8h_source.html b/_nim_b_l_e_ext_advertising_8h_source.html index e6ba661..78cec78 100644 --- a/_nim_b_l_e_ext_advertising_8h_source.html +++ b/_nim_b_l_e_ext_advertising_8h_source.html @@ -25,7 +25,7 @@ -
esp-nimble-cpp 2.3.2 +
esp-nimble-cpp 2.3.3
diff --git a/_nim_b_l_e_h_i_d_device_8h_source.html b/_nim_b_l_e_h_i_d_device_8h_source.html index feb4def..05e89be 100644 --- a/_nim_b_l_e_h_i_d_device_8h_source.html +++ b/_nim_b_l_e_h_i_d_device_8h_source.html @@ -25,7 +25,7 @@ -
esp-nimble-cpp 2.3.2 +
esp-nimble-cpp 2.3.3
diff --git a/_nim_b_l_e_l2_c_a_p_channel_8h_source.html b/_nim_b_l_e_l2_c_a_p_channel_8h_source.html index 14fb389..2fa3aa0 100644 --- a/_nim_b_l_e_l2_c_a_p_channel_8h_source.html +++ b/_nim_b_l_e_l2_c_a_p_channel_8h_source.html @@ -25,7 +25,7 @@ -
esp-nimble-cpp 2.3.2 +
esp-nimble-cpp 2.3.3
diff --git a/_nim_b_l_e_l2_c_a_p_server_8h_source.html b/_nim_b_l_e_l2_c_a_p_server_8h_source.html index 3629053..2f6e566 100644 --- a/_nim_b_l_e_l2_c_a_p_server_8h_source.html +++ b/_nim_b_l_e_l2_c_a_p_server_8h_source.html @@ -25,7 +25,7 @@ -
esp-nimble-cpp 2.3.2 +
esp-nimble-cpp 2.3.3
diff --git a/_nim_b_l_e_local_attribute_8h_source.html b/_nim_b_l_e_local_attribute_8h_source.html index b1f6ed2..f509756 100644 --- a/_nim_b_l_e_local_attribute_8h_source.html +++ b/_nim_b_l_e_local_attribute_8h_source.html @@ -25,7 +25,7 @@ -
esp-nimble-cpp 2.3.2 +
esp-nimble-cpp 2.3.3
diff --git a/_nim_b_l_e_local_value_attribute_8h_source.html b/_nim_b_l_e_local_value_attribute_8h_source.html index 56c4c57..2ab513f 100644 --- a/_nim_b_l_e_local_value_attribute_8h_source.html +++ b/_nim_b_l_e_local_value_attribute_8h_source.html @@ -25,7 +25,7 @@ -
esp-nimble-cpp 2.3.2 +
esp-nimble-cpp 2.3.3
diff --git a/_nim_b_l_e_log_8h_source.html b/_nim_b_l_e_log_8h_source.html index 9eb0c4e..5fc75a4 100644 --- a/_nim_b_l_e_log_8h_source.html +++ b/_nim_b_l_e_log_8h_source.html @@ -25,7 +25,7 @@ -
esp-nimble-cpp 2.3.2 +
esp-nimble-cpp 2.3.3
diff --git a/_nim_b_l_e_remote_characteristic_8h_source.html b/_nim_b_l_e_remote_characteristic_8h_source.html index 39c8b50..67f3057 100644 --- a/_nim_b_l_e_remote_characteristic_8h_source.html +++ b/_nim_b_l_e_remote_characteristic_8h_source.html @@ -25,7 +25,7 @@ -
esp-nimble-cpp 2.3.2 +
esp-nimble-cpp 2.3.3
diff --git a/_nim_b_l_e_remote_descriptor_8h_source.html b/_nim_b_l_e_remote_descriptor_8h_source.html index 2bdbd21..9ade4ec 100644 --- a/_nim_b_l_e_remote_descriptor_8h_source.html +++ b/_nim_b_l_e_remote_descriptor_8h_source.html @@ -25,7 +25,7 @@ -
esp-nimble-cpp 2.3.2 +
esp-nimble-cpp 2.3.3
diff --git a/_nim_b_l_e_remote_service_8h_source.html b/_nim_b_l_e_remote_service_8h_source.html index 697a655..bd2961a 100644 --- a/_nim_b_l_e_remote_service_8h_source.html +++ b/_nim_b_l_e_remote_service_8h_source.html @@ -25,7 +25,7 @@ -
esp-nimble-cpp 2.3.2 +
esp-nimble-cpp 2.3.3
diff --git a/_nim_b_l_e_remote_value_attribute_8h_source.html b/_nim_b_l_e_remote_value_attribute_8h_source.html index b2d206f..a9df8a7 100644 --- a/_nim_b_l_e_remote_value_attribute_8h_source.html +++ b/_nim_b_l_e_remote_value_attribute_8h_source.html @@ -25,7 +25,7 @@ -
esp-nimble-cpp 2.3.2 +
esp-nimble-cpp 2.3.3
diff --git a/_nim_b_l_e_scan_8h_source.html b/_nim_b_l_e_scan_8h_source.html index 9c88f32..bfa27b9 100644 --- a/_nim_b_l_e_scan_8h_source.html +++ b/_nim_b_l_e_scan_8h_source.html @@ -25,7 +25,7 @@ -
esp-nimble-cpp 2.3.2 +
esp-nimble-cpp 2.3.3
diff --git a/_nim_b_l_e_server_8h_source.html b/_nim_b_l_e_server_8h_source.html index 6a50581..0fbe65a 100644 --- a/_nim_b_l_e_server_8h_source.html +++ b/_nim_b_l_e_server_8h_source.html @@ -25,7 +25,7 @@ -
esp-nimble-cpp 2.3.2 +
esp-nimble-cpp 2.3.3
diff --git a/_nim_b_l_e_service_8h_source.html b/_nim_b_l_e_service_8h_source.html index 6972e61..408e9b9 100644 --- a/_nim_b_l_e_service_8h_source.html +++ b/_nim_b_l_e_service_8h_source.html @@ -25,7 +25,7 @@ -
esp-nimble-cpp 2.3.2 +
esp-nimble-cpp 2.3.3
diff --git a/_nim_b_l_e_u_u_i_d_8h_source.html b/_nim_b_l_e_u_u_i_d_8h_source.html index 66db724..031a7da 100644 --- a/_nim_b_l_e_u_u_i_d_8h_source.html +++ b/_nim_b_l_e_u_u_i_d_8h_source.html @@ -25,7 +25,7 @@ -
esp-nimble-cpp 2.3.2 +
esp-nimble-cpp 2.3.3
diff --git a/_nim_b_l_e_utils_8h_source.html b/_nim_b_l_e_utils_8h_source.html index 9723431..16be202 100644 --- a/_nim_b_l_e_utils_8h_source.html +++ b/_nim_b_l_e_utils_8h_source.html @@ -25,7 +25,7 @@ -
esp-nimble-cpp 2.3.2 +
esp-nimble-cpp 2.3.3
diff --git a/_nim_b_l_e_value_attribute_8h_source.html b/_nim_b_l_e_value_attribute_8h_source.html index 95733e1..337e598 100644 --- a/_nim_b_l_e_value_attribute_8h_source.html +++ b/_nim_b_l_e_value_attribute_8h_source.html @@ -25,7 +25,7 @@ -
esp-nimble-cpp 2.3.2 +
esp-nimble-cpp 2.3.3
diff --git a/annotated.html b/annotated.html index dd240a4..1f792d7 100644 --- a/annotated.html +++ b/annotated.html @@ -25,7 +25,7 @@ -
esp-nimble-cpp 2.3.2 +
esp-nimble-cpp 2.3.3
diff --git a/class_nim_b_l_e_address-members.html b/class_nim_b_l_e_address-members.html index 2fad62c..fb4b76b 100644 --- a/class_nim_b_l_e_address-members.html +++ b/class_nim_b_l_e_address-members.html @@ -25,7 +25,7 @@ -
esp-nimble-cpp 2.3.2 +
esp-nimble-cpp 2.3.3
diff --git a/class_nim_b_l_e_address.html b/class_nim_b_l_e_address.html index aa63dfe..5636e6e 100644 --- a/class_nim_b_l_e_address.html +++ b/class_nim_b_l_e_address.html @@ -25,7 +25,7 @@ -
esp-nimble-cpp 2.3.2 +
esp-nimble-cpp 2.3.3
diff --git a/class_nim_b_l_e_advertisement_data-members.html b/class_nim_b_l_e_advertisement_data-members.html index bcabf54..491edd0 100644 --- a/class_nim_b_l_e_advertisement_data-members.html +++ b/class_nim_b_l_e_advertisement_data-members.html @@ -25,7 +25,7 @@ -
esp-nimble-cpp 2.3.2 +
esp-nimble-cpp 2.3.3
diff --git a/class_nim_b_l_e_advertisement_data.html b/class_nim_b_l_e_advertisement_data.html index 576890e..4d76685 100644 --- a/class_nim_b_l_e_advertisement_data.html +++ b/class_nim_b_l_e_advertisement_data.html @@ -25,7 +25,7 @@ -
esp-nimble-cpp 2.3.2 +
esp-nimble-cpp 2.3.3
diff --git a/class_nim_b_l_e_advertising-members.html b/class_nim_b_l_e_advertising-members.html index 182a41f..5836087 100644 --- a/class_nim_b_l_e_advertising-members.html +++ b/class_nim_b_l_e_advertising-members.html @@ -25,7 +25,7 @@ -
esp-nimble-cpp 2.3.2 +
esp-nimble-cpp 2.3.3
diff --git a/class_nim_b_l_e_advertising.html b/class_nim_b_l_e_advertising.html index b6a8f44..66a4e51 100644 --- a/class_nim_b_l_e_advertising.html +++ b/class_nim_b_l_e_advertising.html @@ -25,7 +25,7 @@ -
esp-nimble-cpp 2.3.2 +
esp-nimble-cpp 2.3.3
diff --git a/class_nim_b_l_e_att_value-members.html b/class_nim_b_l_e_att_value-members.html index a95dab1..f901345 100644 --- a/class_nim_b_l_e_att_value-members.html +++ b/class_nim_b_l_e_att_value-members.html @@ -25,7 +25,7 @@ -
esp-nimble-cpp 2.3.2 +
esp-nimble-cpp 2.3.3
diff --git a/class_nim_b_l_e_att_value.html b/class_nim_b_l_e_att_value.html index ea8b379..8794720 100644 --- a/class_nim_b_l_e_att_value.html +++ b/class_nim_b_l_e_att_value.html @@ -25,7 +25,7 @@ -
esp-nimble-cpp 2.3.2 +
esp-nimble-cpp 2.3.3
diff --git a/class_nim_b_l_e_conn_info-members.html b/class_nim_b_l_e_conn_info-members.html index 5a724fa..6db1427 100644 --- a/class_nim_b_l_e_conn_info-members.html +++ b/class_nim_b_l_e_conn_info-members.html @@ -25,7 +25,7 @@ -
esp-nimble-cpp 2.3.2 +
esp-nimble-cpp 2.3.3
diff --git a/class_nim_b_l_e_conn_info.html b/class_nim_b_l_e_conn_info.html index e11defd..05dd205 100644 --- a/class_nim_b_l_e_conn_info.html +++ b/class_nim_b_l_e_conn_info.html @@ -25,7 +25,7 @@ -
esp-nimble-cpp 2.3.2 +
esp-nimble-cpp 2.3.3
diff --git a/class_nim_b_l_e_device-members.html b/class_nim_b_l_e_device-members.html index 5bb2fc4..b808a8c 100644 --- a/class_nim_b_l_e_device-members.html +++ b/class_nim_b_l_e_device-members.html @@ -25,7 +25,7 @@ -
esp-nimble-cpp 2.3.2 +
esp-nimble-cpp 2.3.3
diff --git a/class_nim_b_l_e_device.html b/class_nim_b_l_e_device.html index 4759803..7685b81 100644 --- a/class_nim_b_l_e_device.html +++ b/class_nim_b_l_e_device.html @@ -25,7 +25,7 @@ -
esp-nimble-cpp 2.3.2 +
esp-nimble-cpp 2.3.3
diff --git a/class_nim_b_l_e_device_callbacks-members.html b/class_nim_b_l_e_device_callbacks-members.html index b58ad64..e035604 100644 --- a/class_nim_b_l_e_device_callbacks-members.html +++ b/class_nim_b_l_e_device_callbacks-members.html @@ -25,7 +25,7 @@ -
esp-nimble-cpp 2.3.2 +
esp-nimble-cpp 2.3.3
diff --git a/class_nim_b_l_e_device_callbacks.html b/class_nim_b_l_e_device_callbacks.html index 829d120..ba1e8b2 100644 --- a/class_nim_b_l_e_device_callbacks.html +++ b/class_nim_b_l_e_device_callbacks.html @@ -25,7 +25,7 @@ -
esp-nimble-cpp 2.3.2 +
esp-nimble-cpp 2.3.3
diff --git a/class_nim_b_l_e_u_u_i_d-members.html b/class_nim_b_l_e_u_u_i_d-members.html index 1d74413..bf323e1 100644 --- a/class_nim_b_l_e_u_u_i_d-members.html +++ b/class_nim_b_l_e_u_u_i_d-members.html @@ -25,7 +25,7 @@ -
esp-nimble-cpp 2.3.2 +
esp-nimble-cpp 2.3.3
diff --git a/class_nim_b_l_e_u_u_i_d.html b/class_nim_b_l_e_u_u_i_d.html index 2dd19d4..50dbcad 100644 --- a/class_nim_b_l_e_u_u_i_d.html +++ b/class_nim_b_l_e_u_u_i_d.html @@ -25,7 +25,7 @@ -
esp-nimble-cpp 2.3.2 +
esp-nimble-cpp 2.3.3
diff --git a/class_nim_b_l_e_utils-members.html b/class_nim_b_l_e_utils-members.html index 241a1a6..1fc87db 100644 --- a/class_nim_b_l_e_utils-members.html +++ b/class_nim_b_l_e_utils-members.html @@ -25,7 +25,7 @@ -
esp-nimble-cpp 2.3.2 +
esp-nimble-cpp 2.3.3
diff --git a/class_nim_b_l_e_utils.html b/class_nim_b_l_e_utils.html index 91a55a9..db5ee47 100644 --- a/class_nim_b_l_e_utils.html +++ b/class_nim_b_l_e_utils.html @@ -25,7 +25,7 @@ -
esp-nimble-cpp 2.3.2 +
esp-nimble-cpp 2.3.3
diff --git a/classes.html b/classes.html index d6e293a..887a8f0 100644 --- a/classes.html +++ b/classes.html @@ -25,7 +25,7 @@ -
esp-nimble-cpp 2.3.2 +
esp-nimble-cpp 2.3.3
diff --git a/deprecated.html b/deprecated.html index 406ba1d..4b6daea 100644 --- a/deprecated.html +++ b/deprecated.html @@ -25,7 +25,7 @@ -
esp-nimble-cpp 2.3.2 +
esp-nimble-cpp 2.3.3
diff --git a/dir_68267d1309a1af8e8297ef4c3efbcdba.html b/dir_68267d1309a1af8e8297ef4c3efbcdba.html index 7afb266..1b4825c 100644 --- a/dir_68267d1309a1af8e8297ef4c3efbcdba.html +++ b/dir_68267d1309a1af8e8297ef4c3efbcdba.html @@ -25,7 +25,7 @@ -
esp-nimble-cpp 2.3.2 +
esp-nimble-cpp 2.3.3
diff --git a/files.html b/files.html index 2a97f08..178c5fa 100644 --- a/files.html +++ b/files.html @@ -25,7 +25,7 @@ -
esp-nimble-cpp 2.3.2 +
esp-nimble-cpp 2.3.3
diff --git a/functions.html b/functions.html index 8cd96f0..2e4b9e1 100644 --- a/functions.html +++ b/functions.html @@ -25,7 +25,7 @@ -
esp-nimble-cpp 2.3.2 +
esp-nimble-cpp 2.3.3
diff --git a/functions_func.html b/functions_func.html index 703dd75..d9659e7 100644 --- a/functions_func.html +++ b/functions_func.html @@ -25,7 +25,7 @@ -
esp-nimble-cpp 2.3.2 +
esp-nimble-cpp 2.3.3
diff --git a/index.html b/index.html index d515148..39e0c34 100644 --- a/index.html +++ b/index.html @@ -25,7 +25,7 @@ -
esp-nimble-cpp 2.3.2 +
esp-nimble-cpp 2.3.3
diff --git a/md_1_8x__to2_8x__migration__guide.html b/md_1_8x__to2_8x__migration__guide.html index 3700126..d41e782 100644 --- a/md_1_8x__to2_8x__migration__guide.html +++ b/md_1_8x__to2_8x__migration__guide.html @@ -25,7 +25,7 @@ -
esp-nimble-cpp 2.3.2 +
esp-nimble-cpp 2.3.3
diff --git a/md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html b/md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html index 6462afd..8344b51 100644 --- a/md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html +++ b/md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html @@ -25,7 +25,7 @@ -
esp-nimble-cpp 2.3.2 +
esp-nimble-cpp 2.3.3
@@ -93,9 +93,22 @@ $(document).ready(function(){initNavTree('md__2github_2workspace_2_c_h_a_n_g_e_l

All notable changes to this project will be documented in this file.

+

+[2.3.3] 2025-09-05

+

+Fixed

+
    +
  • NimBLEAdvertisedDevice::isConnectable returning incorrect result.
  • +
  • Extended advertisements not reporting full data.
  • +
+

+Added

+
    +
  • Support up to 1650 bytes of advertisement with extended advertising
  • +

[2.3.2] 2025-09-02

-

+

Fixed

  • Build failures with esp-idf versions 4.x.
  • @@ -110,21 +123,21 @@ Changed

[2.3.1] 2025-06-11

-

+

Fixed

  • Build errors when disabling BLE roles.
  • NimBLEClient::readValue call not returning when the instance was created with aNimBLEServer and reading a secured characteristic.
  • NimBLEScan destructor potentially causing a crash.
-

+

Added

[2.3.0] 2025-05-19

-

+

Fixed

  • Incorrect NimBLECharacteristic::onSubscribe value when indications are set.
  • @@ -136,7 +149,7 @@ Fixed
  • Attribute getValue failing with some data types
  • Incorrectly passing a pointer to a function taking const reference.
-

+

Added

  • Support for esp32c5
  • @@ -151,7 +164,7 @@ Changed

[2.2.1] 2025-02-28

-

+

Fixed

  • Added back NimBLEClient::connect overload with NimBLEAdvertisedDevice parameter to resolve connection error due to NULL address.
  • @@ -159,12 +172,12 @@ Fixed

[2.2.0] 2025-02-24

-

+

Fixed

  • Crash when calling NimBLEClient::DiscoverAttributes.
-

+

Added

  • Conditional macros for logging.
  • @@ -172,7 +185,7 @@ Added

[2.1.1] 2025-01-26

-

+

Fixed

  • remote descriptor discovery error when no descriptors exist.
  • @@ -181,7 +194,7 @@ Fixed

[2.1.0] 2025-01-12

-

+

Fixed

  • Crash when retrieving descriptors if more than one exists.
  • @@ -195,7 +208,7 @@ Changed
  • If privacy is not enabled identity keys will not be shared.
  • NimBLEDevice::setPower and NimBLEDevice::getPower now take an additional parameter NimBLETxPowerType to set/get the power level for different operations.
-

+

Added

  • Config option CONFIG_NIMBLE_CPP_ADDR_FMT_EXCLUDE_DELIMITER, if defined will remove the ":" delimiter from the BLE address string.
  • @@ -203,7 +216,7 @@ Added

[2.0.3] 2025-01-05

-

+

Fixed

  • Unused variable warning when log level is below info.
  • @@ -218,7 +231,7 @@ Changed
    • NimBLEHIDDevice now allows for the same report ID in multiple input/output/feature reports.
    -

    +

    Added

    • Config for custom log colors pre level.
    • @@ -228,7 +241,7 @@ Added

    [2.0.2] 2024-12-21

    -

    +

    Fixed

    • Compile error when only advertising role is enabled.
    • @@ -241,7 +254,7 @@ Changed

    [2.0.1] 2024-12-16

    -

    +

    Fixed

    • NimBLEHIDDevice::getOutputReport will now return the correct characteristic.
    • @@ -293,7 +306,7 @@ Changed
    • -NimBLEScanCallbacks::onScanEnd, replaces the scanEnded callback passed toNimBLEScan::startand now takes aconst NimBLEScanResults&andint reasonparameter.
    • -NimBLEScanCallbacks::onDiscovered, This is called immediately when a device is first scanned, before any scan response data is available and takes aconst NimBLEAdvertisedDevice*parameter. -NimBLEScan::stopwill no longer call theonScanEndcallback as the caller should know its been stopped when this is called. -NimBLEScan::clearDuplicateCachehas been removed as it was problematic and only for the esp32. Stop and start the scanner for the same effect. -NimBLEScanResults::getDevicemethods now returnconst NimBLEAdvertisedDevice*. -NimBLEScanResultsiterators are nowconst_iterator. -NimBLEAdvertisedDevice::hasRSSIremoved as redundant, RSSI is always available. -NimBLEAdvertisedDevice::getPayloadnow returnsconst std::vector<uint8_t>instead of a pointer to internal memory. -NimBLEAdvertisedDeviceTimestamp removed, if needed then the app should track the time from the callback. -NimBLECharacteristic::notifyno longer takes abool is_notificationparameter, insteadindicate()should be called to send indications. -NimBLECharacteristicCallbacks::onNotifyremoved as unnecessary, the library does not call notify without app input. -NimBLECharacteristicCallbacks::onStatusNo longer takes astatusparameter, refer to the return code for success/failure. -NimBLERemoteCharacteristic::getRemoteServicenow returns aconst NimBLERemoteService*instead of non-const. -NimBLERemoteCharacteristic::readUInt32Has been removed. -NimBLERemoteCharacteristic::readUInt16Has been removed. -NimBLERemoteCharacteristic::readUInt8Has been removed. -NimBLERemoteCharacteristic::readFloatHas been removed. -NimBLERemoteCharacteristic::registerForNotifyHas been removed. -NimBLERemoteService::getCharacteristicsnow returns aconst std::vector<NimBLERemoteCharacteristic*>&instead of non-conststd::vector<NimBLERemoteCharacteristic*>*. -NimBLERemoteService::getValuenow returnsNimBLEAttValueinstead ofstd::string. -NimBLEService::getCharacteristicsnow returns aconst std::vector<NimBLECharacteristic*>&instead of std::vector<NimBLECharacteristic *>. -NimBLEUUID::getNativemethod replaced withNimBLEUUID::getBasewhich returns a read-only pointer to the underlyingble_uuid_tstruct. -NimBLEUUID;msbFirstparameter has been removed from constructor, caller should reverse the data first or call the newreverseByteOrdermethod after. -NimBLEAddressconstructor; default value for thetypeparameter removed, caller should know the address type and specify it. -NimBLEAddress::getNativereplaced withNimBLEAddress::getBaseand now returns a pointer toconst ble_addr_tinstead of a pointer to the address value. -NimBLEAddress::equalsmethod andNimBLEAddress::== operatorwill now also test if the address types are the same. -NimBLEUtils::dumpGapEventfunction removed. -NimBLEUtils::buildHexDatareplaced withNimBLEUtils::dataToHexString, which returns astd::stringcontaining the hex string. -NimBLEEddystoneTLM::setTempnow takes anint16_tparameter instead of float to be friendly to devices without floating point support. -NimBLEEddystoneTLM::getTempnow returnsint16_tto work with devices that don't have floating point support. -NimBLEEddystoneTLM::setDatanow takes a reference to *NimBLEEddystoneTLM::BeaconDatainstead ofstd::string. -NimBLEEddystoneTLM::getDatanow returns a reference to *NimBLEEddystoneTLM::BeaconDatainstead ofstd::string. -NimBLEBeacon::setDatanow takesconst NimBLEBeacon::BeaconData&instead ofstd::string. -NimBLEBeacon::getDatanow returnsconst NimBLEBeacon::BeaconData&instead ofstd::string. -NimBLEHIDDevice::reportMaprenamed toNimBLEHIDDevice::getReportMap. -NimBLEHIDDevice::hidControlrenamed toNimBLEHIDDevice::getHidControl. -NimBLEHIDDevice::inputReportrenamed toNimBLEHIDDevice::getInputReport. -NimBLEHIDDevice::outputReportrenamed toNimBLEHIDDevice::getOutputReport. -NimBLEHIDDevice::featureReportrenamed toNimBLEHIDDevice::getFeatureReport. -NimBLEHIDDevice::protocolModerenamed toNimBLEHIDDevice::getProtocolMode. -NimBLEHIDDevice::bootOutputrenamed toNimBLEHIDDevice::getBootOutput. -NimBLEHIDDevice::pnprenamed toNimBLEHIDDevice::setPnp. -NimBLEHIDDevice::hidInforenamed toNimBLEHIDDevice::setHidInfo. -NimBLEHIDDevice::deviceInforenamed toNimBLEHIDDevice::getDeviceInfoService. -NimBLEHIDDevice::hidServicerenamed toNimBLEHIDDevice::getHidService. -NimBLEHIDDevice::batteryServicerenamed toNimBLEHIDDevice::getBatteryService`.
    -

    +

    Fixed

    • NimBLEDevice::getPower and NimBLEDevice::getPowerLevel bug worked around for the esp32s3 and esp32c3.
    • @@ -361,7 +374,7 @@ Changed
    • NimBLEAttValue cleanup and optimization.
    • cleaned up code, removed assert/abort calls, replaced with a configurable option to enable debug asserts.
    -

    +

    Added

    • (esp32 specific) NimBLEDevice::setPowerLevel and NimBLEDevice::getPowerLevel which take and return the related esp_power_level* types.
    • @@ -414,7 +427,7 @@ Added

    [1.4.1] - 2022-10-30

    -

    +

    Fixed

    • NimBLEDevice::getPower incorrect value when power level is -3db.
    • @@ -425,7 +438,7 @@ Changed
      • Revert previous change that forced writing with response when subscribing in favor of allowing the application to decide.
      -

      +

      Added

      • Added NimBLEHIDDevice::batteryLevel.
      • @@ -434,7 +447,7 @@ Added

      [1.4.0] - 2022-07-31

      -

      +

      Fixed

      • Fixed missing data from long notification values.
      • @@ -451,7 +464,7 @@ Changed
      • NimBLEClient::discoverAttributes now returns a bool value to indicate success/failure.
      • Scan result callbacks are no longer called when the scan response data is updated in order to reduce duplicates.
      -

      +

      Added

      • Preliminary support for non-esp devices, NRF51 and NRF52 devices supported with n-able arduino core
      • @@ -466,7 +479,7 @@ Changed
        • If attribute retrieval fails with a "not found" try again with the 16 bit version if a 128 bit base uuid is used.
        -

        +

        Fixed

        • Memory leak when deleting client instance.
        • @@ -476,7 +489,7 @@ Fixed

        [1.3.2] - 2022-01-15

        -

        +

        Fixed

        • Initialize advertising complete callback in NimBLEAdvertising constructor.
        • @@ -485,7 +498,7 @@ Fixed
        • Fix missing data in notifications when using a large MTU size and more than 270 bytes of data are sent.
        • Workaround fix added for cases when the task notification value is not cleared, causing various functions that should block not to block.
        -

        +

        Added

        • NimBLEClient::getLastError : Gets the error code of the last function call that produces a return code from the stack.
        • @@ -503,14 +516,14 @@ Changed

        [1.3.1] - 2021-08-04

        -

        +

        Fixed

        • Corrected a compiler/linker error when an application or a library uses bluetooth classic due to the redefinition of btInUse.

        [1.3.0] - 2021-08-02

        -

        +

        Added

        • NimBLECharacteristic::removeDescriptor: Dynamically remove a descriptor from a characteristic. Takes effect after all connections are closed and sends a service changed indication.
        • @@ -544,7 +557,7 @@ Changed
        • Excess logging and some asserts removed.
        • Use ESP_LOGx macros to enable using local log level filtering.
        -

        +

        Fixed

        • NimBLECharacteristicCallbacks::onSubscribe Is now called after the connection is added to the vector.
        • @@ -558,7 +571,7 @@ Fixed

        [1.2.0] - 2021-02-08

        -

        +

        Added

        • NimBLECharacteristic::getDescriptorByHandle: Return the BLE Descriptor for the given handle.
        • @@ -607,14 +620,14 @@ Changed
        • NimBLEScan Now uses the controller duplicate filter.
        • NimBLEAdvertisedDevice Has been refactored to store the complete advertisement payload and no longer parses the data from each advertisement. Instead the data will be parsed on-demand when the user application asks for specific data.
        -

        +

        Fixed

        • NimBLEHIDDevice Characteristics now use encryption, this resolves an issue with communicating with devices requiring encryption for HID devices.

        [1.1.0] - 2021-01-20

        -

        +

        Added

        • NimBLEDevice::setOwnAddrType added to enable the use of random and random-resolvable addresses, by asukiaaa
        • @@ -637,7 +650,7 @@ Changed
        • Advertising tx power level is now sent in the advertisement packet instead of scan response.
        • NimBLEScan When the scan ends the scan stopped flag is now set before calling the scan complete callback (if used) this allows the starting of a new scan from the callback function.
        -

        +

        Fixed

        • Sometimes NimBLEClient::connect would hang on the task block if no event arrived to unblock. A time limit has been added to timeout appropriately.
        • @@ -664,7 +677,7 @@ Changed

        [1.0.1] - 2020-09-02

        -

        +

        Added

        • Empty NimBLEAddress constructor: NimBLEAddress() produces an address of 00:00:00:00:00:00 type 0.
        • @@ -675,7 +688,7 @@ Changed
          • notify_callback typedef is now defined as std::function to enable the use of std::bind to call a class member function.
          -

          +

          Fixed

          • Fix advertising start delay when first called.
          • diff --git a/md__bluetooth_015_01features.html b/md__bluetooth_015_01features.html index bf11cb8..7b19e35 100644 --- a/md__bluetooth_015_01features.html +++ b/md__bluetooth_015_01features.html @@ -25,7 +25,7 @@ -
            esp-nimble-cpp 2.3.2 +
            esp-nimble-cpp 2.3.3
            diff --git a/md__migration__guide.html b/md__migration__guide.html index 347629a..ffd33df 100644 --- a/md__migration__guide.html +++ b/md__migration__guide.html @@ -25,7 +25,7 @@ -
            esp-nimble-cpp 2.3.2 +
            esp-nimble-cpp 2.3.3
            diff --git a/md__new__user__guide.html b/md__new__user__guide.html index d931884..6180db8 100644 --- a/md__new__user__guide.html +++ b/md__new__user__guide.html @@ -25,7 +25,7 @@ -
            esp-nimble-cpp 2.3.2 +
            esp-nimble-cpp 2.3.3
            diff --git a/md__usage__tips.html b/md__usage__tips.html index 37563ae..17e558c 100644 --- a/md__usage__tips.html +++ b/md__usage__tips.html @@ -25,7 +25,7 @@ -
            esp-nimble-cpp 2.3.2 +
            esp-nimble-cpp 2.3.3
            diff --git a/navtreedata.js b/navtreedata.js index d6f790f..da894c1 100644 --- a/navtreedata.js +++ b/navtreedata.js @@ -27,87 +27,90 @@ var NAVTREE = [ "esp-nimble-cpp", "index.html", [ [ "Overview", "index.html", "index" ], [ "Changelog", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html", [ - [ "[2.3.2] 2025-09-02", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md232-2025-09-02", null ], + [ "[2.3.3] 2025-09-05", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md233-2025-09-05", null ], [ "Fixed", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed", null ], + [ "Added", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added", null ], + [ "[2.3.2] 2025-09-02", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md232-2025-09-02", null ], + [ "Fixed", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-1", null ], [ "Changed", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#changed", null ], [ "[2.3.1] 2025-06-11", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md231-2025-06-11", null ], - [ "Fixed", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-1", null ], - [ "Added", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added", null ], - [ "[2.3.0] 2025-05-19", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md230-2025-05-19", null ], [ "Fixed", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-2", null ], [ "Added", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added-1", null ], + [ "[2.3.0] 2025-05-19", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md230-2025-05-19", null ], + [ "Fixed", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-3", null ], + [ "Added", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added-2", null ], [ "Changed", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#changed-1", null ], [ "[2.2.1] 2025-02-28", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md221-2025-02-28", null ], - [ "Fixed", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-3", null ], - [ "[2.2.0] 2025-02-24", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md220-2025-02-24", null ], [ "Fixed", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-4", null ], - [ "Added", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added-2", null ], - [ "[2.1.1] 2025-01-26", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md211-2025-01-26", null ], + [ "[2.2.0] 2025-02-24", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md220-2025-02-24", null ], [ "Fixed", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-5", null ], - [ "[2.1.0] 2025-01-12", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md210-2025-01-12", null ], - [ "Fixed", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-6", null ], - [ "Changed", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#changed-2", null ], [ "Added", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added-3", null ], - [ "[2.0.3] 2025-01-05", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md203-2025-01-05", null ], + [ "[2.1.1] 2025-01-26", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md211-2025-01-26", null ], + [ "Fixed", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-6", null ], + [ "[2.1.0] 2025-01-12", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md210-2025-01-12", null ], [ "Fixed", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-7", null ], - [ "Changed", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#changed-3", null ], + [ "Changed", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#changed-2", null ], [ "Added", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added-4", null ], - [ "[2.0.2] 2024-12-21", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md202-2024-12-21", null ], + [ "[2.0.3] 2025-01-05", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md203-2025-01-05", null ], [ "Fixed", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-8", null ], + [ "Changed", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#changed-3", null ], + [ "Added", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added-5", null ], + [ "[2.0.2] 2024-12-21", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md202-2024-12-21", null ], + [ "Fixed", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-9", null ], [ "Changed", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#changed-4", null ], [ "[2.0.1] 2024-12-16", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md201-2024-12-16", null ], - [ "Fixed", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-9", null ], + [ "Fixed", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-10", null ], [ "Changed", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#changed-5", null ], [ "[2.0.0] 2024-12-14", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md200-2024-12-14", null ], [ "Breaking changes", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#breaking-changes", null ], - [ "Fixed", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-10", [ + [ "Fixed", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-11", [ [ "Changed", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#changed-6", null ], - [ "Added", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added-5", null ] - ] ], - [ "[1.4.1] - 2022-10-30", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md141---2022-10-30", [ - [ "Fixed", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-11", null ], - [ "Changed", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#changed-7", null ], [ "Added", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added-6", null ] ] ], - [ "[1.4.0] - 2022-07-31", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md140---2022-07-31", [ + [ "[1.4.1] - 2022-10-30", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md141---2022-10-30", [ [ "Fixed", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-12", null ], - [ "Changed", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#changed-8", null ], + [ "Changed", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#changed-7", null ], [ "Added", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added-7", null ] ] ], + [ "[1.4.0] - 2022-07-31", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md140---2022-07-31", [ + [ "Fixed", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-13", null ], + [ "Changed", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#changed-8", null ], + [ "Added", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added-8", null ] + ] ], [ "[1.3.3] - 2022-02-15", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md133---2022-02-15", [ [ "Changed", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#changed-9", null ], - [ "Fixed", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-13", null ] + [ "Fixed", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-14", null ] ] ], [ "[1.3.2] - 2022-01-15", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md132---2022-01-15", [ - [ "Fixed", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-14", null ], - [ "Added", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added-8", null ], + [ "Fixed", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-15", null ], + [ "Added", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added-9", null ], [ "Changed", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#changed-10", null ] ] ], [ "[1.3.1] - 2021-08-04", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md131---2021-08-04", [ - [ "Fixed", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-15", null ] - ] ], - [ "[1.3.0] - 2021-08-02", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md130---2021-08-02", [ - [ "Added", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added-9", null ], - [ "Changed", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#changed-11", null ], [ "Fixed", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-16", null ] ] ], - [ "[1.2.0] - 2021-02-08", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md120---2021-02-08", [ + [ "[1.3.0] - 2021-08-02", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md130---2021-08-02", [ [ "Added", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added-10", null ], - [ "Changed", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#changed-12", null ], + [ "Changed", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#changed-11", null ], [ "Fixed", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-17", null ] ] ], - [ "[1.1.0] - 2021-01-20", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md110---2021-01-20", [ + [ "[1.2.0] - 2021-02-08", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md120---2021-02-08", [ [ "Added", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added-11", null ], - [ "Changed", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#changed-13", null ], + [ "Changed", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#changed-12", null ], [ "Fixed", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-18", null ] ] ], + [ "[1.1.0] - 2021-01-20", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md110---2021-01-20", [ + [ "Added", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added-12", null ], + [ "Changed", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#changed-13", null ], + [ "Fixed", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-19", null ] + ] ], [ "[1.0.2] - 2020-09-13", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md102---2020-09-13", [ [ "Changed", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#changed-14", null ] ] ], [ "[1.0.1] - 2020-09-02", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md101---2020-09-02", [ - [ "Added", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added-12", null ], + [ "Added", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added-13", null ], [ "Changed", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#changed-15", null ], - [ "Fixed", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-19", null ] + [ "Fixed", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-20", null ] ] ], [ "[1.0.0] - 2020-08-22", "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md100---2020-08-22", null ] ] ], @@ -201,7 +204,7 @@ var NAVTREE = var NAVTREEINDEX = [ "_h_i_d_keyboard_types_8h_source.html", -"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md132---2022-01-15" +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md131---2021-08-04" ]; var SYNCONMSG = 'click to disable panel synchronisation'; diff --git a/navtreeindex0.js b/navtreeindex0.js index 08ce735..2795894 100644 --- a/navtreeindex0.js +++ b/navtreeindex0.js @@ -230,24 +230,24 @@ var NAVTREEINDEX0 = "md_1_8x__to2_8x__migration__guide.html#services":[2,4,0], "md_1_8x__to2_8x__migration__guide.html#utilities":[2,9], "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html":[1], -"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added":[1,5], +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added":[1,2], "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added-1":[1,8], -"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added-10":[1,40,0], -"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added-11":[1,41,0], -"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added-12":[1,43,0], -"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added-2":[1,14], -"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added-3":[1,20], -"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added-4":[1,24], -"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added-5":[1,33,1], -"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added-6":[1,34,2], -"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added-7":[1,35,2], -"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added-8":[1,37,1], -"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added-9":[1,39,0], -"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md100---2020-08-22":[1,44], -"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md101---2020-09-02":[1,43], -"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md102---2020-09-13":[1,42], -"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md110---2021-01-20":[1,41], -"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md120---2021-02-08":[1,40], -"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md130---2021-08-02":[1,39], -"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md131---2021-08-04":[1,38] +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added-10":[1,42,0], +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added-11":[1,43,0], +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added-12":[1,44,0], +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added-13":[1,46,0], +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added-2":[1,11], +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added-3":[1,17], +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added-4":[1,23], +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added-5":[1,27], +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added-6":[1,36,1], +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added-7":[1,37,2], +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added-8":[1,38,2], +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added-9":[1,40,1], +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md100---2020-08-22":[1,47], +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md101---2020-09-02":[1,46], +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md102---2020-09-13":[1,45], +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md110---2021-01-20":[1,44], +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md120---2021-02-08":[1,43], +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md130---2021-08-02":[1,42] }; diff --git a/navtreeindex1.js b/navtreeindex1.js index ef08ba1..72db562 100644 --- a/navtreeindex1.js +++ b/navtreeindex1.js @@ -1,56 +1,59 @@ var NAVTREEINDEX1 = { -"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md132---2022-01-15":[1,37], -"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md133---2022-02-15":[1,36], -"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md140---2022-07-31":[1,35], -"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md141---2022-10-30":[1,34], -"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md200-2024-12-14":[1,31], -"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md201-2024-12-16":[1,28], -"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md202-2024-12-21":[1,25], -"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md203-2025-01-05":[1,21], -"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md210-2025-01-12":[1,17], -"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md211-2025-01-26":[1,15], -"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md220-2025-02-24":[1,12], -"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md221-2025-02-28":[1,10], -"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md230-2025-05-19":[1,6], -"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md231-2025-06-11":[1,3], -"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md232-2025-09-02":[1,0], -"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#breaking-changes":[1,32], -"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#changed":[1,2], -"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#changed-1":[1,9], -"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#changed-10":[1,37,2], -"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#changed-11":[1,39,1], -"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#changed-12":[1,40,1], -"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#changed-13":[1,41,1], -"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#changed-14":[1,42,0], -"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#changed-15":[1,43,1], -"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#changed-2":[1,19], -"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#changed-3":[1,23], -"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#changed-4":[1,27], -"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#changed-5":[1,30], -"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#changed-6":[1,33,0], -"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#changed-7":[1,34,1], -"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#changed-8":[1,35,1], -"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#changed-9":[1,36,0], +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md131---2021-08-04":[1,41], +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md132---2022-01-15":[1,40], +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md133---2022-02-15":[1,39], +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md140---2022-07-31":[1,38], +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md141---2022-10-30":[1,37], +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md200-2024-12-14":[1,34], +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md201-2024-12-16":[1,31], +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md202-2024-12-21":[1,28], +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md203-2025-01-05":[1,24], +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md210-2025-01-12":[1,20], +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md211-2025-01-26":[1,18], +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md220-2025-02-24":[1,15], +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md221-2025-02-28":[1,13], +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md230-2025-05-19":[1,9], +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md231-2025-06-11":[1,6], +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md232-2025-09-02":[1,3], +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md233-2025-09-05":[1,0], +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#breaking-changes":[1,35], +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#changed":[1,5], +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#changed-1":[1,12], +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#changed-10":[1,40,2], +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#changed-11":[1,42,1], +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#changed-12":[1,43,1], +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#changed-13":[1,44,1], +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#changed-14":[1,45,0], +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#changed-15":[1,46,1], +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#changed-2":[1,22], +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#changed-3":[1,26], +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#changed-4":[1,30], +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#changed-5":[1,33], +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#changed-6":[1,36,0], +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#changed-7":[1,37,1], +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#changed-8":[1,38,1], +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#changed-9":[1,39,0], "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed":[1,1], "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-1":[1,4], -"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-10":[1,33], -"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-11":[1,34,0], -"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-12":[1,35,0], -"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-13":[1,36,1], -"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-14":[1,37,0], -"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-15":[1,38,0], -"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-16":[1,39,2], -"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-17":[1,40,2], -"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-18":[1,41,2], -"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-19":[1,43,2], +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-10":[1,32], +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-11":[1,36], +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-12":[1,37,0], +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-13":[1,38,0], +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-14":[1,39,1], +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-15":[1,40,0], +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-16":[1,41,0], +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-17":[1,42,2], +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-18":[1,43,2], +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-19":[1,44,2], "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-2":[1,7], -"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-3":[1,11], -"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-4":[1,13], +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-20":[1,46,2], +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-3":[1,10], +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-4":[1,14], "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-5":[1,16], -"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-6":[1,18], -"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-7":[1,22], -"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-8":[1,26], +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-6":[1,19], +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-7":[1,21], +"md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-8":[1,25], "md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-9":[1,29], "md__bluetooth_015_01features.html":[3], "md__bluetooth_015_01features.html#about-extended-advertising":[3,0], diff --git a/pages.html b/pages.html index accc23f..4ec5b56 100644 --- a/pages.html +++ b/pages.html @@ -25,7 +25,7 @@ -
            esp-nimble-cpp 2.3.2 +
            esp-nimble-cpp 2.3.3
            diff --git a/search/all_0.js b/search/all_0.js index a866df8..6de39a1 100644 --- a/search/all_0.js +++ b/search/all_0.js @@ -26,7 +26,7 @@ var searchData= ['02_2024_23',['[2.2.0] 2025-02-24',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md220-2025-02-24',1,'']]], ['02_2028_24',['[2.2.1] 2025-02-28',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md221-2025-02-28',1,'']]], ['04_25',['[1.3.1] - 2021-08-04',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md131---2021-08-04',1,'']]], - ['05_26',['[2.0.3] 2025-01-05',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md203-2025-01-05',1,'']]], + ['05_26',['05',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md203-2025-01-05',1,'[2.0.3] 2025-01-05'],['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md233-2025-09-05',1,'[2.3.3] 2025-09-05']]], ['05_2019_27',['[2.3.0] 2025-05-19',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md230-2025-05-19',1,'']]], ['06_2011_28',['[2.3.1] 2025-06-11',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md231-2025-06-11',1,'']]], ['07_2031_29',['[1.4.0] - 2022-07-31',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md140---2022-07-31',1,'']]], @@ -35,5 +35,6 @@ var searchData= ['08_2004_32',['[1.3.1] - 2021-08-04',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md131---2021-08-04',1,'']]], ['08_2022_33',['[1.0.0] - 2020-08-22',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md100---2020-08-22',1,'']]], ['09_2002_34',['09 02',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md101---2020-09-02',1,'[1.0.1] - 2020-09-02'],['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md232-2025-09-02',1,'[2.3.2] 2025-09-02']]], - ['09_2013_35',['[1.0.2] - 2020-09-13',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md102---2020-09-13',1,'']]] + ['09_2005_35',['[2.3.3] 2025-09-05',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md233-2025-09-05',1,'']]], + ['09_2013_36',['[1.0.2] - 2020-09-13',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md102---2020-09-13',1,'']]] ]; diff --git a/search/all_2.js b/search/all_2.js index 68f4fe6..a0b2102 100644 --- a/search/all_2.js +++ b/search/all_2.js @@ -14,33 +14,35 @@ var searchData= ['2_203_200_202025_2005_2019_11',['[2.3.0] 2025-05-19',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md230-2025-05-19',1,'']]], ['2_203_201_202025_2006_2011_12',['[2.3.1] 2025-06-11',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md231-2025-06-11',1,'']]], ['2_203_202_202025_2009_2002_13',['[2.3.2] 2025-09-02',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md232-2025-09-02',1,'']]], - ['2_20x_14',['Migrating from 1.x to 2.x',['../md_1_8x__to2_8x__migration__guide.html',1,'']]], - ['20_15',['[1.1.0] - 2021-01-20',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md110---2021-01-20',1,'']]], - ['2020_2008_2022_16',['[1.0.0] - 2020-08-22',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md100---2020-08-22',1,'']]], - ['2020_2009_2002_17',['[1.0.1] - 2020-09-02',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md101---2020-09-02',1,'']]], - ['2020_2009_2013_18',['[1.0.2] - 2020-09-13',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md102---2020-09-13',1,'']]], - ['2021_2001_2020_19',['[1.1.0] - 2021-01-20',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md110---2021-01-20',1,'']]], - ['2021_2002_2008_20',['[1.2.0] - 2021-02-08',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md120---2021-02-08',1,'']]], - ['2021_2008_2002_21',['[1.3.0] - 2021-08-02',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md130---2021-08-02',1,'']]], - ['2021_2008_2004_22',['[1.3.1] - 2021-08-04',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md131---2021-08-04',1,'']]], - ['2022_2001_2015_23',['[1.3.2] - 2022-01-15',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md132---2022-01-15',1,'']]], - ['2022_2002_2015_24',['[1.3.3] - 2022-02-15',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md133---2022-02-15',1,'']]], - ['2022_2007_2031_25',['[1.4.0] - 2022-07-31',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md140---2022-07-31',1,'']]], - ['2022_2010_2030_26',['[1.4.1] - 2022-10-30',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md141---2022-10-30',1,'']]], - ['2024_2012_2014_27',['[2.0.0] 2024-12-14',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md200-2024-12-14',1,'']]], - ['2024_2012_2016_28',['[2.0.1] 2024-12-16',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md201-2024-12-16',1,'']]], - ['2024_2012_2021_29',['[2.0.2] 2024-12-21',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md202-2024-12-21',1,'']]], - ['2025_2001_2005_30',['[2.0.3] 2025-01-05',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md203-2025-01-05',1,'']]], - ['2025_2001_2012_31',['[2.1.0] 2025-01-12',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md210-2025-01-12',1,'']]], - ['2025_2001_2026_32',['[2.1.1] 2025-01-26',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md211-2025-01-26',1,'']]], - ['2025_2002_2024_33',['[2.2.0] 2025-02-24',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md220-2025-02-24',1,'']]], - ['2025_2002_2028_34',['[2.2.1] 2025-02-28',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md221-2025-02-28',1,'']]], - ['2025_2005_2019_35',['[2.3.0] 2025-05-19',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md230-2025-05-19',1,'']]], - ['2025_2006_2011_36',['[2.3.1] 2025-06-11',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md231-2025-06-11',1,'']]], - ['2025_2009_2002_37',['[2.3.2] 2025-09-02',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md232-2025-09-02',1,'']]], - ['21_38',['[2.0.2] 2024-12-21',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md202-2024-12-21',1,'']]], - ['22_39',['[1.0.0] - 2020-08-22',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md100---2020-08-22',1,'']]], - ['24_40',['[2.2.0] 2025-02-24',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md220-2025-02-24',1,'']]], - ['26_41',['[2.1.1] 2025-01-26',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md211-2025-01-26',1,'']]], - ['28_42',['[2.2.1] 2025-02-28',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md221-2025-02-28',1,'']]] + ['2_203_203_202025_2009_2005_14',['[2.3.3] 2025-09-05',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md233-2025-09-05',1,'']]], + ['2_20x_15',['Migrating from 1.x to 2.x',['../md_1_8x__to2_8x__migration__guide.html',1,'']]], + ['20_16',['[1.1.0] - 2021-01-20',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md110---2021-01-20',1,'']]], + ['2020_2008_2022_17',['[1.0.0] - 2020-08-22',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md100---2020-08-22',1,'']]], + ['2020_2009_2002_18',['[1.0.1] - 2020-09-02',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md101---2020-09-02',1,'']]], + ['2020_2009_2013_19',['[1.0.2] - 2020-09-13',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md102---2020-09-13',1,'']]], + ['2021_2001_2020_20',['[1.1.0] - 2021-01-20',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md110---2021-01-20',1,'']]], + ['2021_2002_2008_21',['[1.2.0] - 2021-02-08',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md120---2021-02-08',1,'']]], + ['2021_2008_2002_22',['[1.3.0] - 2021-08-02',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md130---2021-08-02',1,'']]], + ['2021_2008_2004_23',['[1.3.1] - 2021-08-04',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md131---2021-08-04',1,'']]], + ['2022_2001_2015_24',['[1.3.2] - 2022-01-15',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md132---2022-01-15',1,'']]], + ['2022_2002_2015_25',['[1.3.3] - 2022-02-15',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md133---2022-02-15',1,'']]], + ['2022_2007_2031_26',['[1.4.0] - 2022-07-31',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md140---2022-07-31',1,'']]], + ['2022_2010_2030_27',['[1.4.1] - 2022-10-30',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md141---2022-10-30',1,'']]], + ['2024_2012_2014_28',['[2.0.0] 2024-12-14',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md200-2024-12-14',1,'']]], + ['2024_2012_2016_29',['[2.0.1] 2024-12-16',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md201-2024-12-16',1,'']]], + ['2024_2012_2021_30',['[2.0.2] 2024-12-21',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md202-2024-12-21',1,'']]], + ['2025_2001_2005_31',['[2.0.3] 2025-01-05',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md203-2025-01-05',1,'']]], + ['2025_2001_2012_32',['[2.1.0] 2025-01-12',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md210-2025-01-12',1,'']]], + ['2025_2001_2026_33',['[2.1.1] 2025-01-26',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md211-2025-01-26',1,'']]], + ['2025_2002_2024_34',['[2.2.0] 2025-02-24',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md220-2025-02-24',1,'']]], + ['2025_2002_2028_35',['[2.2.1] 2025-02-28',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md221-2025-02-28',1,'']]], + ['2025_2005_2019_36',['[2.3.0] 2025-05-19',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md230-2025-05-19',1,'']]], + ['2025_2006_2011_37',['[2.3.1] 2025-06-11',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md231-2025-06-11',1,'']]], + ['2025_2009_2002_38',['[2.3.2] 2025-09-02',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md232-2025-09-02',1,'']]], + ['2025_2009_2005_39',['[2.3.3] 2025-09-05',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md233-2025-09-05',1,'']]], + ['21_40',['[2.0.2] 2024-12-21',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md202-2024-12-21',1,'']]], + ['22_41',['[1.0.0] - 2020-08-22',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md100---2020-08-22',1,'']]], + ['24_42',['[2.2.0] 2025-02-24',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md220-2025-02-24',1,'']]], + ['26_43',['[2.1.1] 2025-01-26',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md211-2025-01-26',1,'']]], + ['28_44',['[2.2.1] 2025-02-28',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md221-2025-02-28',1,'']]] ]; diff --git a/search/all_3.js b/search/all_3.js index 6a88418..add12c0 100644 --- a/search/all_3.js +++ b/search/all_3.js @@ -8,6 +8,7 @@ var searchData= ['3_202_202025_2009_2002_5',['[2.3.2] 2025-09-02',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md232-2025-09-02',1,'']]], ['3_202025_2001_2005_6',['[2.0.3] 2025-01-05',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md203-2025-01-05',1,'']]], ['3_203_202022_2002_2015_7',['[1.3.3] - 2022-02-15',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md133---2022-02-15',1,'']]], - ['30_8',['[1.4.1] - 2022-10-30',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md141---2022-10-30',1,'']]], - ['31_9',['[1.4.0] - 2022-07-31',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md140---2022-07-31',1,'']]] + ['3_203_202025_2009_2005_8',['[2.3.3] 2025-09-05',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md233-2025-09-05',1,'']]], + ['30_9',['[1.4.1] - 2022-10-30',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md141---2022-10-30',1,'']]], + ['31_10',['[1.4.0] - 2022-07-31',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#autotoc_md140---2022-07-31',1,'']]] ]; diff --git a/search/all_6.js b/search/all_6.js index 16c54ca..ae0559e 100644 --- a/search/all_6.js +++ b/search/all_6.js @@ -6,9 +6,9 @@ var searchData= ['about_20extended_20advertising_3',['About extended advertising',['../md__bluetooth_015_01features.html#about-extended-advertising',1,'']]], ['acknowledgments_4',['Acknowledgments',['../index.html#acknowledgments',1,'']]], ['adddata_5',['adddata',['../class_nim_b_l_e_advertisement_data.html#a051d8f4ae66d2caa39351af8277bf0ed',1,'NimBLEAdvertisementData::addData(const std::vector< uint8_t > &data)'],['../class_nim_b_l_e_advertisement_data.html#a67f4d6869eb2797bc78389adf20cb59e',1,'NimBLEAdvertisementData::addData(const uint8_t *data, size_t length)']]], - ['added_6',['added',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added-10',1,'Added'],['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added-12',1,'Added'],['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added-11',1,'Added'],['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added-9',1,'Added'],['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added-8',1,'Added'],['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added-7',1,'Added'],['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added-6',1,'Added'],['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added-5',1,'Added'],['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added-3',1,'Added'],['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added-2',1,'Added'],['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added-1',1,'Added'],['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added',1,'Added'],['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added-4',1,'Added']]], + ['added_6',['added',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added-11',1,'Added'],['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added-13',1,'Added'],['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added-12',1,'Added'],['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added-10',1,'Added'],['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added-9',1,'Added'],['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added-8',1,'Added'],['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added-7',1,'Added'],['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added-6',1,'Added'],['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added-4',1,'Added'],['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added-3',1,'Added'],['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added-2',1,'Added'],['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added-1',1,'Added'],['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added',1,'Added'],['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#added-5',1,'Added']]], ['addresses_7',['addresses',['../md_1_8x__to2_8x__migration__guide.html#ble-addresses',1,'BLE Addresses'],['../md__migration__guide.html#ble-addresses-1',1,'BLE Addresses']]], - ['addserviceuuid_8',['addserviceuuid',['../class_nim_b_l_e_advertisement_data.html#a4119cfc1dafeee9c32f9a08dbb213139',1,'NimBLEAdvertisementData::addServiceUUID()'],['../class_nim_b_l_e_advertising.html#a1bacfa32690f7e0c6f1172ea03c68c0d',1,'NimBLEAdvertising::addServiceUUID()'],['../class_nim_b_l_e_advertisement_data.html#acbea9f95711b329a427919ecd9cbeb23',1,'NimBLEAdvertisementData::addServiceUUID()'],['../class_nim_b_l_e_advertising.html#a67c9589dff7e0ee3ec24f2c930d56c06',1,'NimBLEAdvertising::addServiceUUID(const NimBLEUUID &serviceUUID)']]], + ['addserviceuuid_8',['addserviceuuid',['../class_nim_b_l_e_advertisement_data.html#acbea9f95711b329a427919ecd9cbeb23',1,'NimBLEAdvertisementData::addServiceUUID(const NimBLEUUID &serviceUUID)'],['../class_nim_b_l_e_advertisement_data.html#a4119cfc1dafeee9c32f9a08dbb213139',1,'NimBLEAdvertisementData::addServiceUUID(const char *serviceUUID)'],['../class_nim_b_l_e_advertising.html#a67c9589dff7e0ee3ec24f2c930d56c06',1,'NimBLEAdvertising::addServiceUUID(const NimBLEUUID &serviceUUID)'],['../class_nim_b_l_e_advertising.html#a1bacfa32690f7e0c6f1172ea03c68c0d',1,'NimBLEAdvertising::addServiceUUID(const char *serviceUUID)']]], ['addtxpower_9',['addtxpower',['../class_nim_b_l_e_advertising.html#a0d3c5cb3a93416a4206abb1f8e443ebf',1,'NimBLEAdvertising::addTxPower()'],['../class_nim_b_l_e_advertisement_data.html#a3f227c597ec00f639e4bd26b80ce404b',1,'NimBLEAdvertisementData::addTxPower()']]], ['advertised_20device_10',['Advertised Device',['../md_1_8x__to2_8x__migration__guide.html#advertised-device',1,'']]], ['advertising_11',['advertising',['../md__bluetooth_015_01features.html#about-extended-advertising',1,'About extended advertising'],['../md_1_8x__to2_8x__migration__guide.html#advertising',1,'Advertising'],['../md__bluetooth_015_01features.html#enabling-extended-advertising',1,'Enabling extended advertising']]], diff --git a/search/all_b.js b/search/all_b.js index d37baa1..aa97de1 100644 --- a/search/all_b.js +++ b/search/all_b.js @@ -2,7 +2,7 @@ var searchData= [ ['features_0',['Bluetooth 5.x features',['../md__bluetooth_015_01features.html',1,'']]], ['files_1',['files',['../md__migration__guide.html#header-files',1,'Header Files'],['../md__new__user__guide.html#include-files',1,'Include Files']]], - ['fixed_2',['fixed',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-19',1,'Fixed'],['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-18',1,'Fixed'],['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-17',1,'Fixed'],['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-16',1,'Fixed'],['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-15',1,'Fixed'],['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-14',1,'Fixed'],['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-13',1,'Fixed'],['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-12',1,'Fixed'],['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-11',1,'Fixed'],['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-10',1,'Fixed'],['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-9',1,'Fixed'],['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-8',1,'Fixed'],['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-7',1,'Fixed'],['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-6',1,'Fixed'],['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-5',1,'Fixed'],['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-4',1,'Fixed'],['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-3',1,'Fixed'],['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-2',1,'Fixed'],['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-1',1,'Fixed'],['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed',1,'Fixed']]], + ['fixed_2',['fixed',['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-20',1,'Fixed'],['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-19',1,'Fixed'],['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-18',1,'Fixed'],['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-17',1,'Fixed'],['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-16',1,'Fixed'],['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-15',1,'Fixed'],['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-14',1,'Fixed'],['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-13',1,'Fixed'],['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-12',1,'Fixed'],['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-11',1,'Fixed'],['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-10',1,'Fixed'],['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-9',1,'Fixed'],['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-8',1,'Fixed'],['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-7',1,'Fixed'],['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-6',1,'Fixed'],['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-5',1,'Fixed'],['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-4',1,'Fixed'],['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-3',1,'Fixed'],['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-2',1,'Fixed'],['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed-1',1,'Fixed'],['../md__2github_2workspace_2_c_h_a_n_g_e_l_o_g.html#fixed',1,'Fixed']]], ['from_201_20x_20to_202_20x_3',['Migrating from 1.x to 2.x',['../md_1_8x__to2_8x__migration__guide.html',1,'']]], ['from_20bluedroid_20to_20nimble_4',['Migrating from Bluedroid to NimBLE',['../md__migration__guide.html',1,'']]], ['fromstring_5',['fromString',['../class_nim_b_l_e_u_u_i_d.html#ae09acdc52e23a3a38c57aaf859c278c2',1,'NimBLEUUID']]], diff --git a/struct_nim_b_l_e_task_data-members.html b/struct_nim_b_l_e_task_data-members.html index b6e6212..6182f32 100644 --- a/struct_nim_b_l_e_task_data-members.html +++ b/struct_nim_b_l_e_task_data-members.html @@ -25,7 +25,7 @@ -
            esp-nimble-cpp 2.3.2 +
            esp-nimble-cpp 2.3.3
            diff --git a/struct_nim_b_l_e_task_data.html b/struct_nim_b_l_e_task_data.html index 6538226..8073c70 100644 --- a/struct_nim_b_l_e_task_data.html +++ b/struct_nim_b_l_e_task_data.html @@ -25,7 +25,7 @@ -
            esp-nimble-cpp 2.3.2 +
            esp-nimble-cpp 2.3.3