From: Jan "Yenya" Kasprzak Date: Wed, 6 Mar 2013 21:54:02 +0000 (+0100) Subject: pattern.c: shorten the final delay X-Git-Url: https://www.fi.muni.cz/~kas/git//home/kas/public_html/git/?p=bike-lights.git;a=commitdiff_plain;h=a0ef882bee1096b30474629c7a967b3601ef0561 pattern.c: shorten the final delay Shorten tne final delay in number patterns and off_pattern. --- diff --git a/firmware/pattern.c b/firmware/pattern.c index 2b83420..55b64cc 100644 --- a/firmware/pattern.c +++ b/firmware/pattern.c @@ -47,7 +47,7 @@ static pattern_t pattern_num[] = { { 1, 0x1 }, /* 2 */ { 0, 0x5 }, { 1, 0x1 }, /* 1 */ - { 0, 0x1E }, + { 0, 0xF }, PATTERN_END }; @@ -72,12 +72,12 @@ static pattern_t pattern_invnum[] = { { 0, 0x1 }, /* 2 */ { 1, 0x5 }, { 0, 0x1 }, /* 1 */ - { 1, 0x1E }, + { 1, 0xF }, PATTERN_END }; pattern_t off_pattern[] = { - { 0, 0x1E }, + { 0, 0x1 }, PATTERN_END };