summaryrefslogtreecommitdiff
path: root/firmware/target/arm/as3525/debug-as3525.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/arm/as3525/debug-as3525.c')
-rw-r--r--firmware/target/arm/as3525/debug-as3525.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/firmware/target/arm/as3525/debug-as3525.c b/firmware/target/arm/as3525/debug-as3525.c
index c4c4a7f4dc..57161541fd 100644
--- a/firmware/target/arm/as3525/debug-as3525.c
+++ b/firmware/target/arm/as3525/debug-as3525.c
@@ -288,14 +288,19 @@ static bool dbg_btn(bool *done, int *x)
{
case DEBUG_CANCEL:
*done = true;
+ /*fallthrough*/
case DEBUG_NEXT:
cont = false;
+ /*fallthrough*/
case DEBUG_LEFT_JUSTIFY:
(*x) = 0;
sleep(HZ/5);
break;
case DEBUG_LEFT_SCROLL:
(*x)--;
+ break;
+ default:
+ break;
}
}
lcd_clear_display();
@@ -610,4 +615,4 @@ int get_cpu_voltage_setting(void)
return value;
}
-#endif /* HAVE_ADJUSTABLE_CPU_VOLTAGE */ \ No newline at end of file
+#endif /* HAVE_ADJUSTABLE_CPU_VOLTAGE */