From 17645b576ac30efd557e274d7144d880397ef315 Mon Sep 17 00:00:00 2001 From: Travis Goodspeed Date: Thu, 9 Sep 2021 16:08:50 -0400 Subject: [PATCH] Adds a missing function declaration. --- firmware/apps/submenu.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/firmware/apps/submenu.h b/firmware/apps/submenu.h index 6fbd40a..7f97a00 100644 --- a/firmware/apps/submenu.h +++ b/firmware/apps/submenu.h @@ -9,6 +9,9 @@ void submenu_draw(); //! Change the selected applet. int submenu_keypress(char c); +//! Lets a keypress fall through from the clock to the select submenu applet. +int submenu_fallthrough(char ch); + //! On exit, set the submenu app. int submenu_exit();