We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1277de9 commit d163478Copy full SHA for d163478
libraries/Zigbee/src/ZigbeeCore.cpp
@@ -316,7 +316,7 @@ void esp_zb_app_signal_handler(esp_zb_app_signal_t *signal_struct) {
316
if (!(*it)->bound() || (*it)->epAllowMultipleBinding()) {
317
// Check if the device is already bound
318
bool found = false;
319
- // Gte the list of devices bound to the EP
+ // Get the list of devices bound to the EP
320
std::list<zb_device_params_t *> bound_devices = (*it)->getBoundDevices();
321
for (std::list<zb_device_params_t *>::iterator device = bound_devices.begin(); device != bound_devices.end(); ++device) {
322
if (((*device)->short_addr == dev_annce_params->device_short_addr) || (memcmp((*device)->ieee_addr, dev_annce_params->ieee_addr, 8) == 0)) {
0 commit comments