Browse Source

AP_Notify: update some logic syntax

non-functional change, just the logic easier to read.
Converted
success = success || blah
to
success |= blah
mission-4.1.18
Tom Pittenger 7 years ago
parent
commit
228058e089
  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 = success || uavcan->led_write(_led_index, red, green, blue);
success |= uavcan->led_write(_led_index, red, green, blue);
}
}
}

Loading…
Cancel
Save