From f3783caf432bc391ffb64a9288a3467c390ef50a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?King=20K=C3=A9vin?= Date: Thu, 23 Jul 2015 00:07:14 +0200 Subject: [PATCH] fix typo --- firmware/lib/ws2812b.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/lib/ws2812b.c b/firmware/lib/ws2812b.c index ccc358b..caafa71 100644 --- a/firmware/lib/ws2812b.c +++ b/firmware/lib/ws2812b.c @@ -137,7 +137,7 @@ void ws2812b_show(void) return; } /* WS2812B LEDs use 1 bit per 1.25 us communication input. - * that correspnds to a 800 kHz data transfer rate. + * that correspnds to a 800 kbps data transfer rate. * on a 16 MHz development board 1 clock cycle needs 62.5 ns. * this means we have exactly 20 clock cycles to send a single bit. * this timing constraint is hard to respect with pure C.