** Function: InputHandler ** Handles the variables PrevPress, NextPress, SelPress, AnyKeyPress and EscPress **********************************************************************/
| 31 | ** Handles the variables PrevPress, NextPress, SelPress, AnyKeyPress and EscPress |
| 32 | **********************************************************************/ |
| 33 | void InputHandler(void) { |
| 34 | if (launcherGpioRead(SEL_BTN) == BTN_ACT) { |
| 35 | SelPress = true; |
| 36 | AnyKeyPress = true; |
| 37 | } |
| 38 | } |
nothing calls this directly
no test coverage detected