From a0ef882bee1096b30474629c7a967b3601ef0561 Mon Sep 17 00:00:00 2001 From: "Jan \"Yenya\" Kasprzak" Date: Wed, 6 Mar 2013 22:54:02 +0100 Subject: [PATCH] pattern.c: shorten the final delay Shorten tne final delay in number patterns and off_pattern. --- firmware/pattern.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 }; -- 2.39.3