mirror of https://github.com/Desuuuu/klipper.git
neopixel: Be sure to set the line low on a failed write
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
parent
be2d0abbab
commit
0af5b9ff6d
|
@ -87,7 +87,8 @@ send_data(struct neopixel_s *n, uint32_t data)
|
||||||
return 0;
|
return 0;
|
||||||
fail:
|
fail:
|
||||||
// A hardware irq messed up the transmission - report a failure
|
// A hardware irq messed up the transmission - report a failure
|
||||||
n->last_req_time = cur;
|
gpio_out_write(pin, 0);
|
||||||
|
n->last_req_time = timer_read_time();
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue