aboutsummaryrefslogtreecommitdiffstats
path: root/firmware/libboard/common/source/led.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/libboard/common/source/led.c')
-rw-r--r--firmware/libboard/common/source/led.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/firmware/libboard/common/source/led.c b/firmware/libboard/common/source/led.c
index 6772007..4822a6d 100644
--- a/firmware/libboard/common/source/led.c
+++ b/firmware/libboard/common/source/led.c
@@ -58,6 +58,10 @@ static const struct blink_state bs_on[] = {
{ 0, 1 }
};
+static const struct blink_state bs_5on_5off[] = {
+ { 500, 1 }, { 500, 0 }
+};
+
static const struct blink_state bs_3on_5off[] = {
{ 300, 1 }, { 500, 0 }
};
@@ -107,6 +111,10 @@ static const struct blink_pattern patterns[] = {
.states = bs_on,
.size = ARRAY_SIZE(bs_on),
},
+ [BLINK_5O_5F] = {
+ .states = bs_5on_5off,
+ .size = ARRAY_SIZE(bs_5on_5off),
+ },
[BLINK_3O_5F] = {
.states = bs_3on_5off,
.size = ARRAY_SIZE(bs_3on_5off),