Skip to content

Commit

Permalink
AP_Notify: fixed PixracerLED on NuttX
Browse files Browse the repository at this point in the history
led_dim must be a positive number, and is not related to the led off
value
  • Loading branch information
tridge authored and rmackay9 committed Oct 9, 2018
1 parent ed71790 commit 6489166
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/AP_Notify/PixRacerLED.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
extern const AP_HAL::HAL& hal;

PixRacerLED::PixRacerLED() :
RGBLed(0, HAL_GPIO_LED_OFF, HAL_GPIO_LED_OFF, HAL_GPIO_LED_OFF)
RGBLed(0, 1, 1, 1)
{
}

Expand Down

0 comments on commit 6489166

Please sign in to comment.