Skip to content

Commit

Permalink
Add generic advertisement 'type' functions (#575)
Browse files Browse the repository at this point in the history
  • Loading branch information
jcontrerasf authored and h2zero committed Nov 25, 2023
1 parent 065c886 commit b0ef2f5
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
26 changes: 26 additions & 0 deletions src/NimBLEAdvertisedDevice.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,24 @@ std::string NimBLEAdvertisedDevice::getURI() {
return "";
} // getURI

/**
* @brief Get the data from any type available in the advertisement
* @param [in] type The advertised data type BLE_HS_ADV_TYPE
* @return The data available under the type `type`
*/
std::string NimBLEAdvertisedDevice::getPayloadByType(uint16_t type) {
size_t data_loc = 0;

if(findAdvField(type, 0, &data_loc) > 0) {
ble_hs_adv_field *field = (ble_hs_adv_field *)&m_payload[data_loc];
if(field->length > 1) {
return std::string((char*)field->value, field->length - 1);
}
}

return "";
} // getPayloadByType


/**
* @brief Get the advertised name.
Expand Down Expand Up @@ -556,6 +574,14 @@ bool NimBLEAdvertisedDevice::haveURI() {
return findAdvField(BLE_HS_ADV_TYPE_URI) > 0;
} // haveURI

/**
* @brief Does this advertisement have a adv type `type`?
* @return True if there is a `type` present.
*/
bool NimBLEAdvertisedDevice::haveType(uint16_t type) {
return findAdvField(type) > 0;
}


/**
* @brief Does the advertisement contain a target address?
Expand Down
2 changes: 2 additions & 0 deletions src/NimBLEAdvertisedDevice.h
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ class NimBLEAdvertisedDevice {
uint8_t getManufacturerDataCount();
std::string getManufacturerData(uint8_t index = 0);
std::string getURI();
std::string getPayloadByType(uint16_t type);

/**
* @brief A template to convert the service data to <type\>.
Expand Down Expand Up @@ -134,6 +135,7 @@ class NimBLEAdvertisedDevice {
bool haveAdvInterval();
bool haveTargetAddress();
bool haveURI();
bool haveType(uint16_t type);
std::string toString();
bool isConnectable();
bool isLegacyAdvertisement();
Expand Down

0 comments on commit b0ef2f5

Please sign in to comment.