Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: BSP_DISCO_F746NG
hal_stm_lvgl/touchpad/touchpad.h@5:071136c3eefa, 2021-06-15 (annotated)
- Committer:
- JohnnyK
- Date:
- Tue Jun 15 19:35:57 2021 +0000
- Revision:
- 5:071136c3eefa
- Parent:
- 3:4f5dc253eb7b
Update to MbedOS6.11 and LVGL 8
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
JohnnyK | 3:4f5dc253eb7b | 1 | /** |
JohnnyK | 3:4f5dc253eb7b | 2 | * @file indev.h |
JohnnyK | 3:4f5dc253eb7b | 3 | * |
JohnnyK | 3:4f5dc253eb7b | 4 | */ |
JohnnyK | 5:071136c3eefa | 5 | #ifdef __cplusplus |
JohnnyK | 5:071136c3eefa | 6 | extern "C" { |
JohnnyK | 5:071136c3eefa | 7 | #endif |
JohnnyK | 3:4f5dc253eb7b | 8 | |
JohnnyK | 3:4f5dc253eb7b | 9 | #ifndef INDEV_H |
JohnnyK | 3:4f5dc253eb7b | 10 | #define INDEV_H |
JohnnyK | 3:4f5dc253eb7b | 11 | |
JohnnyK | 3:4f5dc253eb7b | 12 | /********************* |
JohnnyK | 3:4f5dc253eb7b | 13 | * INCLUDES |
JohnnyK | 3:4f5dc253eb7b | 14 | *********************/ |
JohnnyK | 3:4f5dc253eb7b | 15 | #include <stdbool.h> |
JohnnyK | 3:4f5dc253eb7b | 16 | #include <stdint.h> |
JohnnyK | 3:4f5dc253eb7b | 17 | |
JohnnyK | 3:4f5dc253eb7b | 18 | /********************* |
JohnnyK | 3:4f5dc253eb7b | 19 | * DEFINES |
JohnnyK | 3:4f5dc253eb7b | 20 | *********************/ |
JohnnyK | 3:4f5dc253eb7b | 21 | |
JohnnyK | 3:4f5dc253eb7b | 22 | /********************** |
JohnnyK | 3:4f5dc253eb7b | 23 | * TYPEDEFS |
JohnnyK | 3:4f5dc253eb7b | 24 | **********************/ |
JohnnyK | 3:4f5dc253eb7b | 25 | |
JohnnyK | 3:4f5dc253eb7b | 26 | /********************** |
JohnnyK | 3:4f5dc253eb7b | 27 | * GLOBAL PROTOTYPES |
JohnnyK | 3:4f5dc253eb7b | 28 | **********************/ |
JohnnyK | 3:4f5dc253eb7b | 29 | void touchpad_init(void); |
JohnnyK | 3:4f5dc253eb7b | 30 | |
JohnnyK | 3:4f5dc253eb7b | 31 | /********************** |
JohnnyK | 3:4f5dc253eb7b | 32 | * MACROS |
JohnnyK | 3:4f5dc253eb7b | 33 | **********************/ |
JohnnyK | 3:4f5dc253eb7b | 34 | #ifdef __cplusplus |
JohnnyK | 3:4f5dc253eb7b | 35 | } |
JohnnyK | 3:4f5dc253eb7b | 36 | #endif |
JohnnyK | 3:4f5dc253eb7b | 37 | |
JohnnyK | 5:071136c3eefa | 38 | #endif |