mirror of https://github.com/ArduPilot/ardupilot
AP_Periph: update to new NeoPixel API
This commit is contained in:
parent
81a95e2a71
commit
913b42d5de
|
@ -93,7 +93,7 @@ void AP_Periph_FW::init()
|
|||
|
||||
#ifdef HAL_PERIPH_NEOPIXEL_COUNT
|
||||
hal.rcout->init();
|
||||
hal.rcout->set_neopixel_num_LEDs(HAL_PERIPH_NEOPIXEL_CHAN, HAL_PERIPH_NEOPIXEL_COUNT);
|
||||
hal.rcout->set_serial_led_num_LEDs(HAL_PERIPH_NEOPIXEL_CHAN, AP_HAL::RCOutput::MODE_NEOPIXEL);
|
||||
#endif
|
||||
|
||||
#ifdef HAL_PERIPH_ENABLE_ADSB
|
||||
|
@ -124,8 +124,8 @@ static void update_rainbow()
|
|||
uint32_t now = AP_HAL::millis();
|
||||
if (now-start_ms > 1500) {
|
||||
rainbow_done = true;
|
||||
hal.rcout->set_neopixel_rgb_data(HAL_PERIPH_NEOPIXEL_CHAN, -1, 0, 0, 0);
|
||||
hal.rcout->neopixel_send();
|
||||
hal.rcout->set_serial_led_rgb_data(HAL_PERIPH_NEOPIXEL_CHAN, -1, 0, 0, 0);
|
||||
hal.rcout->serial_led_send(HAL_PERIPH_NEOPIXEL_CHAN);
|
||||
return;
|
||||
}
|
||||
static uint32_t last_update_ms;
|
||||
|
@ -153,13 +153,13 @@ static void update_rainbow()
|
|||
float brightness = 0.3;
|
||||
for (uint8_t n=0; n<8; n++) {
|
||||
uint8_t i = (step + n) % nsteps;
|
||||
hal.rcout->set_neopixel_rgb_data(HAL_PERIPH_NEOPIXEL_CHAN, n,
|
||||
hal.rcout->set_serial_led_rgb_data(HAL_PERIPH_NEOPIXEL_CHAN, n,
|
||||
rgb_rainbow[i].red*brightness,
|
||||
rgb_rainbow[i].green*brightness,
|
||||
rgb_rainbow[i].blue*brightness);
|
||||
}
|
||||
step++;
|
||||
hal.rcout->neopixel_send();
|
||||
hal.rcout->serial_led_send(HAL_PERIPH_NEOPIXEL_CHAN);
|
||||
}
|
||||
#endif
|
||||
|
||||
|
@ -187,7 +187,7 @@ void AP_Periph_FW::update()
|
|||
show_stack_usage();
|
||||
#endif
|
||||
#ifdef HAL_PERIPH_NEOPIXEL_COUNT
|
||||
hal.rcout->set_neopixel_num_LEDs(HAL_PERIPH_NEOPIXEL_CHAN, HAL_PERIPH_NEOPIXEL_COUNT);
|
||||
hal.rcout->set_serial_led_num_LEDs(HAL_PERIPH_NEOPIXEL_CHAN, HAL_PERIPH_NEOPIXEL_COUNT, AP_HAL::RCOutput::MODE_NEOPIXEL);
|
||||
#endif
|
||||
}
|
||||
can_update();
|
||||
|
|
|
@ -476,8 +476,8 @@ static void handle_safety_state(CanardInstance* ins, CanardRxTransfer* transfer)
|
|||
static void set_rgb_led(uint8_t red, uint8_t green, uint8_t blue)
|
||||
{
|
||||
#ifdef HAL_PERIPH_NEOPIXEL_COUNT
|
||||
hal.rcout->set_neopixel_rgb_data(HAL_PERIPH_NEOPIXEL_CHAN, -1, red, green, blue);
|
||||
hal.rcout->neopixel_send();
|
||||
hal.rcout->set_serial_led_rgb_data(HAL_PERIPH_NEOPIXEL_CHAN, -1, red, green, blue);
|
||||
hal.rcout->serial_led_send(HAL_PERIPH_NEOPIXEL_CHAN);
|
||||
#endif // HAL_PERIPH_NEOPIXEL_COUNT
|
||||
#ifdef HAL_PERIPH_ENABLE_NCP5623_LED
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue