f5b342abbe
* initial gpio layer * move temlplate.c to template.c.example in preparing to applications.mk rework * separate arduino layer * separate flipper_hal.x * prepare to switch applications on v2 core gpio api * swithch applications to v2 gpio api * gpio api for local target * better gpio_disable handling * remove pwm functions from local target * inline gpio funcs * common function to init all api's * fix local example blink * move delay us to hal api folder * move pwm_set/pwm_stop to hal api folder * update applications to use hal pwm api * remove gpio mode case warning * add speaker demo to build Co-authored-by: DrZlo13 <who.just.the.doctor@gmail.com>
30 lines
885 B
C
30 lines
885 B
C
#ifndef __INPUT_PRIV_H
|
|
#define __INPUT_PRIV_H
|
|
|
|
#include "main.h"
|
|
#include "flipper_v2.h"
|
|
|
|
#define DEBOUNCE_TICKS 10
|
|
|
|
const GpioPin input_gpio[] = {
|
|
{BUTTON_UP_GPIO_Port, BUTTON_UP_Pin},
|
|
{BUTTON_DOWN_GPIO_Port, BUTTON_DOWN_Pin},
|
|
{BUTTON_RIGHT_GPIO_Port, BUTTON_RIGHT_Pin},
|
|
{BUTTON_LEFT_GPIO_Port, BUTTON_LEFT_Pin},
|
|
{BUTTON_OK_GPIO_Port, BUTTON_OK_Pin},
|
|
{BUTTON_BACK_GPIO_Port, BUTTON_BACK_Pin},
|
|
{CHRG_GPIO_Port, CHRG_Pin}
|
|
};
|
|
|
|
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 */
|