]> www.fi.muni.cz Git - bike-lights.git/commitdiff
control.c: night pattern fix
authorJan "Yenya" Kasprzak <kas@fi.muni.cz>
Wed, 26 Jun 2013 22:14:38 +0000 (00:14 +0200)
committerJan "Yenya" Kasprzak <kas@fi.muni.cz>
Wed, 26 Jun 2013 22:14:38 +0000 (00:14 +0200)
Use pwmled2 mode 2 for standalone, and mode 3 for pwmled2+0,
to be consistent with brake handling in pattern.c.

firmware/control.c

index 3012ba65856aaa02d9e2939ace37ed2463863da0..c5ba92fe2c2e79b42fe150df6a08769cce305f02 100644 (file)
@@ -50,12 +50,12 @@ static pattern_t fast_pattern[] = {
 };
 
 static pattern_t night_pattern[] = {
-       { PWM_PAT(2, 0, 2), D_3 },
-       { PWM_PAT(3, 0, 0), D_8 },
-       { PWM_PAT(2, 0, 2), D_1 },
-       { PWM_PAT(3, 0, 0), D_2 },
-       { PWM_PAT(2, 0, 2), D_1 },
-       { PWM_PAT(3, 0, 0), D_8 },
+       { PWM_PAT(3, 0, 1), D_3 },
+       { PWM_PAT(2, 0, 0), D_8 },
+       { PWM_PAT(3, 0, 1), D_1 },
+       { PWM_PAT(2, 0, 0), D_2 },
+       { PWM_PAT(3, 0, 1), D_1 },
+       { PWM_PAT(2, 0, 0), D_8 },
        PATTERN_END
 };