Skip to content
Prev Previous commit
Next Next commit
fix(zigbee): Fix typo in the comment
Co-authored-by: Lucas Saavedra Vaz <32426024+lucasssvaz@users.noreply.github.com>
  • Loading branch information
P-R-O-C-H-Y and lucasssvaz authored Jan 8, 2025
commit d1634785c11d054aad2015549e0693af4be09c7e
2 changes: 1 addition & 1 deletion libraries/Zigbee/src/ZigbeeCore.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ void esp_zb_app_signal_handler(esp_zb_app_signal_t *signal_struct) {
if (!(*it)->bound() || (*it)->epAllowMultipleBinding()) {
// Check if the device is already bound
bool found = false;
// Gte the list of devices bound to the EP
// Get the list of devices bound to the EP
std::list<zb_device_params_t *> bound_devices = (*it)->getBoundDevices();
for (std::list<zb_device_params_t *>::iterator device = bound_devices.begin(); device != bound_devices.end(); ++device) {
if (((*device)->short_addr == dev_annce_params->device_short_addr) || (memcmp((*device)->ieee_addr, dev_annce_params->ieee_addr, 8) == 0)) {
Expand Down
Loading