]> www.fi.muni.cz Git - bike-lights.git/commitdiff
control.c: new multi-pwmled panic pattern
authorJan "Yenya" Kasprzak <kas@fi.muni.cz>
Wed, 26 Jun 2013 20:06:20 +0000 (22:06 +0200)
committerJan "Yenya" Kasprzak <kas@fi.muni.cz>
Wed, 26 Jun 2013 20:06:20 +0000 (22:06 +0200)
firmware/control.c

index efc61ad2498d4a240d31a64415b545a0946769b9..a789acce1b7a57827d3328b51dbd32879cf1ea0b 100644 (file)
@@ -4,28 +4,27 @@
 #include "lights.h"
 
 static pattern_t panic_pattern[] = {
-       { 3, D_1 }, // FIXME: will be 4, but let's be safe while testing
-       { 0, D_1 },
-       { 3, D_1 },
-       { 0, D_1 },
-       { 3, D_1 },
-       { 0, D_1 },
-       { 3, D_1 },
-       { 0, D_1 },
-       { 3, D_1 },
-       { 0, D_1 },
-       { 3, D_1 },
-       { 0, D_1 },
-       { 3, D_1 },
-       { 0, D_1 },
-       { 3, D_1 },
-       { 0, D_1 },
-       { 3, D_1 },
-       { 0, D_1 },
-       { 3, D_1 },
-       { 0, D_1 },
-       { 3, D_1 },
-       { 0, D_1 },
+       { PWM_PAT(2, 0, 0), D_1 },
+       { PWM_PAT(0, 0, 2), D_1 },
+       { PWM_PAT(0, 0, 0), D_1 },
+       { PWM_PAT(2, 0, 0), D_1 },
+       { PWM_PAT(0, 0, 2), D_1 },
+       { PWM_PAT(0, 0, 0), D_1 },
+       { PWM_PAT(2, 0, 0), D_1 },
+       { PWM_PAT(0, 0, 2), D_1 },
+       { PWM_PAT(0, 0, 0), D_1 },
+       { PWM_PAT(2, 0, 0), D_1 },
+       { PWM_PAT(0, 0, 2), D_1 },
+       { PWM_PAT(0, 0, 0), D_1 },
+       { PWM_PAT(2, 0, 0), D_1 },
+       { PWM_PAT(0, 0, 2), D_1 },
+       { PWM_PAT(0, 0, 0), D_1 },
+       { PWM_PAT(2, 0, 0), D_1 },
+       { PWM_PAT(0, 0, 2), D_1 },
+       { PWM_PAT(0, 0, 0), D_1 },
+       { PWM_PAT(2, 0, 0), D_1 },
+       { PWM_PAT(0, 0, 2), D_1 },
+       { PWM_PAT(0, 0, 0), D_1 },
        PATTERN_END
 };