Skip to content

Commit 598b4c9

Browse files
committed
leds: Increase length of reset period.
SK6805 spec states minimum reset period is 80us. A small number of LEDs are misbehaving when running at this value; increasing it to 85us makes them happy.
1 parent 0caf36e commit 598b4c9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

orbtrace/serial_led.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def __init__(self):
1919
self.sync += If(~cnt_done, cnt.eq(cnt - 1))
2020

2121
time_bit_4 = round(75e6 * 0.3e-6)
22-
time_end = round(75e6 * 80e-6)
22+
time_end = round(75e6 * 85e-6)
2323

2424
fsm.act('IDLE',
2525
out.eq(0),

0 commit comments

Comments
 (0)