Input handling and debouncing (#148)

* Add input driver and definitions for target_f2

* Add input_dump example

* Invert charge input

* Fix back and left button configuration

* remove input debug

* input testing case

* move header

* lint code

Co-authored-by: aanper <mail@s3f.ru>
This commit is contained in:
Vadim Kaushan
2020-10-02 09:44:05 +03:00
committed by GitHub
parent ed76f702b1
commit 8c36d65e63
13 changed files with 285 additions and 8 deletions

View File

@@ -103,7 +103,8 @@ C_DEFS += \
-DUSE_HAL_DRIVER \
-DSTM32L476xx \
-DBUTON_INVERT=false \
-DDEBUG_UART=huart1
-DDEBUG_UART=huart1 \
-DUSE_INPUT
ASM_SOURCES += \
startup_stm32l476xx.s
@@ -139,7 +140,8 @@ C_SOURCES += ../lib/u8g2/u8x8_d_st7565.c \
# System applications
C_SOURCES += ../applications/display-u8g2/display-u8g2.c
C_SOURCES += ../applications/display-u8g2/display-u8g2.c \
../applications/input/input.c \
# Examples
@@ -170,6 +172,11 @@ C_SOURCES += ../applications/examples/ipc.c
C_DEFS += -DEXAMPLE_IPC
endif
ifeq ($(EXAMPLE_INPUT_DUMP), 1)
C_SOURCES += ../applications/examples/input_dump.c
C_DEFS += -DEXAMPLE_INPUT_DUMP
endif
# User application
C_SOURCES += ../applications/coreglitch_demo_0/coreglitch_demo_0.c
@@ -303,6 +310,10 @@ example_ipc:
EXAMPLE_IPC=1 make
rm $(BUILD_DIR)/app.o
example_input_dump:
EXAMPLE_INPUT_DUMP=1 make
rm $(BUILD_DIR)/app.o
test:
TEST=1 make
rm $(BUILD_DIR)/app.o