Jan Kamidra / Mbed OS DISCO-F746NG_MbedOs_LvGL_example

Dependencies:   BSP_DISCO_F746NG

Committer:
JohnnyK
Date:
Sat Apr 24 19:08:28 2021 +0000
Revision:
3:4f5dc253eb7b
Child:
5:071136c3eefa
Rework to LVGL 7.10.1 and MbedOS 6.10

Who changed what in which revision?

UserRevisionLine numberNew contents of line
JohnnyK 3:4f5dc253eb7b 1 /**
JohnnyK 3:4f5dc253eb7b 2 * @file indev.h
JohnnyK 3:4f5dc253eb7b 3 *
JohnnyK 3:4f5dc253eb7b 4 */
JohnnyK 3:4f5dc253eb7b 5
JohnnyK 3:4f5dc253eb7b 6 #ifndef INDEV_H
JohnnyK 3:4f5dc253eb7b 7 #define INDEV_H
JohnnyK 3:4f5dc253eb7b 8
JohnnyK 3:4f5dc253eb7b 9 #ifdef __cplusplus
JohnnyK 3:4f5dc253eb7b 10 extern "C" {
JohnnyK 3:4f5dc253eb7b 11 #endif
JohnnyK 3:4f5dc253eb7b 12
JohnnyK 3:4f5dc253eb7b 13 /*********************
JohnnyK 3:4f5dc253eb7b 14 * INCLUDES
JohnnyK 3:4f5dc253eb7b 15 *********************/
JohnnyK 3:4f5dc253eb7b 16 #include <stdbool.h>
JohnnyK 3:4f5dc253eb7b 17 #include <stdint.h>
JohnnyK 3:4f5dc253eb7b 18
JohnnyK 3:4f5dc253eb7b 19 /*********************
JohnnyK 3:4f5dc253eb7b 20 * DEFINES
JohnnyK 3:4f5dc253eb7b 21 *********************/
JohnnyK 3:4f5dc253eb7b 22
JohnnyK 3:4f5dc253eb7b 23 /**********************
JohnnyK 3:4f5dc253eb7b 24 * TYPEDEFS
JohnnyK 3:4f5dc253eb7b 25 **********************/
JohnnyK 3:4f5dc253eb7b 26
JohnnyK 3:4f5dc253eb7b 27 /**********************
JohnnyK 3:4f5dc253eb7b 28 * GLOBAL PROTOTYPES
JohnnyK 3:4f5dc253eb7b 29 **********************/
JohnnyK 3:4f5dc253eb7b 30 void touchpad_init(void);
JohnnyK 3:4f5dc253eb7b 31
JohnnyK 3:4f5dc253eb7b 32 /**********************
JohnnyK 3:4f5dc253eb7b 33 * MACROS
JohnnyK 3:4f5dc253eb7b 34 **********************/
JohnnyK 3:4f5dc253eb7b 35 #ifdef __cplusplus
JohnnyK 3:4f5dc253eb7b 36 }
JohnnyK 3:4f5dc253eb7b 37 #endif
JohnnyK 3:4f5dc253eb7b 38
JohnnyK 3:4f5dc253eb7b 39 #endif
JohnnyK 3:4f5dc253eb7b 40