Skip to content

Commit

Permalink
fix(zigbee): Fix typo in the comment
Browse files Browse the repository at this point in the history
Co-authored-by: Lucas Saavedra Vaz <[email protected]>
  • Loading branch information
P-R-O-C-H-Y and lucasssvaz authored Jan 8, 2025
1 parent 1277de9 commit d163478
Showing 1 changed file with 1 addition and 1 deletion.
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

0 comments on commit d163478

Please sign in to comment.