screen_dev.h
1 /*
2  * Copyright (C) 2020 Inria
3  *
4  * This file is subject to the terms and conditions of the GNU Lesser
5  * General Public License v2.1. See the file LICENSE in the top level
6  * directory for more details.
7  */
8 
23 #ifndef SCREEN_DEV_H
24 #define SCREEN_DEV_H
25 
26 #ifdef __cplusplus
27 extern "C" {
28 #endif
29 
30 #include "disp_dev.h"
31 
32 #ifdef MODULE_TOUCH_DEV
33 #include "touch_dev.h"
34 #endif
35 
39 typedef struct {
41 #if MODULE_TOUCH_DEV || DOXYGEN
43 #endif
44 } screen_dev_t;
45 
46 #ifdef __cplusplus
47 }
48 #endif
49 
50 #endif /* SCREEN_DEV_H */
51 
screen_dev_t::display
disp_dev_t * display
Pointer to the display device.
Definition: screen_dev.h:40
disp_dev
Generic type for a display device.
Definition: disp_dev.h:100
screen_dev_t::touch
touch_dev_t * touch
Pointer to the touch device.
Definition: screen_dev.h:42
touch_dev
Generic type for a touch device.
Definition: touch_dev.h:83
screen_dev_t
Screen device descriptor.
Definition: screen_dev.h:39