Browse Source

AP_Notify: revert wrong commit 228058e089

Also change the order of logical OR so that led_write in UAVCAN_RGB_LED is called for all UAVCAN instances and not only first one
mission-4.1.18
Francisco Ferreira 7 years ago
parent
commit
f468602baf
No known key found for this signature in database
GPG Key ID: F63C20A6773E787E
  1. 2
      libraries/AP_Notify/UAVCAN_RGB_LED.cpp

2
libraries/AP_Notify/UAVCAN_RGB_LED.cpp

@ -61,7 +61,7 @@ bool UAVCAN_RGB_LED::hw_set_rgb(uint8_t red, uint8_t green, uint8_t blue) @@ -61,7 +61,7 @@ bool UAVCAN_RGB_LED::hw_set_rgb(uint8_t red, uint8_t green, uint8_t blue)
if (hal.can_mgr[i] != nullptr) {
AP_UAVCAN *uavcan = hal.can_mgr[i]->get_UAVCAN();
if (uavcan != nullptr) {
success |= uavcan->led_write(_led_index, red, green, blue);
success = uavcan->led_write(_led_index, red, green, blue) || success;
}
}
}

Loading…
Cancel
Save