From aa3ac5b2424f930baf331eef285ed3bfc6c65741 Mon Sep 17 00:00:00 2001 From: aanper Date: Fri, 9 Oct 2020 08:10:11 +0300 Subject: [PATCH] add forgotten header --- firmware/targets/local/Inc/input_priv.h | 29 +++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 firmware/targets/local/Inc/input_priv.h diff --git a/firmware/targets/local/Inc/input_priv.h b/firmware/targets/local/Inc/input_priv.h new file mode 100644 index 00000000..eed84f4b --- /dev/null +++ b/firmware/targets/local/Inc/input_priv.h @@ -0,0 +1,29 @@ +#ifndef __INPUT_PRIV_H +#define __INPUT_PRIV_H + +#include "main.h" +#include "flipper_hal.h" + +#define DEBOUNCE_TICKS 10 + +const GpioPin input_gpio[] = { + {"Up", 0}, + {"Down", 0}, + {"Right", 0}, + {"Left", 0}, + {"Ok", 0}, + {"Back", 0}, + {"Charg", 0} +}; + +const bool input_invert[] = { + false, // {BUTTON_UP_GPIO_Port, BUTTON_UP_Pin}, + false, // {BUTTON_DOWN_GPIO_Port, BUTTON_DOWN_Pin}, + false, // {BUTTON_RIGHT_GPIO_Port, BUTTON_RIGHT_Pin}, + false, // {BUTTON_LEFT_GPIO_Port, BUTTON_LEFT_Pin}, + false, // {BUTTON_OK_GPIO_Port, BUTTON_OK_Pin}, + false, // {BUTTON_BACK_GPIO_Port, BUTTON_BACK_Pin}, + true, // {CHRG_GPIO_Port, CHRG_Pin} +}; + +#endif /* __INPUT_PRIV_H */