lv_hal: use less general structur elements

This commit is contained in:
Gabor Kiss-Vamosi
2017-11-27 00:48:16 +01:00
parent c890dc8d43
commit c9b28c7692
4 changed files with 10 additions and 10 deletions

View File

@@ -54,7 +54,7 @@ typedef struct {
/*Initialized by the user and registered by 'lv_indev_add()'*/
typedef struct {
lv_hal_indev_type_t type; /*Input device type*/
bool (*get_data)(lv_indev_data_t *data); /*Function pointer to read data. Return 'true' if there is still data to be read (buffered)*/
bool (*read_fp)(lv_indev_data_t *data); /*Function pointer to read data. Return 'true' if there is still data to be read (buffered)*/
}lv_indev_drv_t;
struct _lv_obj_t;