Loading...
Searching...
No Matches
screen_dev.h
1/*
2 * SPDX-FileCopyrightText: 2020 Inria
3 * SPDX-License-Identifier: LGPL-2.1-only
4 */
5
6#pragma once
7
32
33#ifdef __cplusplus
34extern "C" {
35#endif
36
37#include "disp_dev.h"
38
39#ifdef MODULE_TOUCH_DEV
40#include "touch_dev.h"
41#endif
42
46typedef struct {
48#if MODULE_TOUCH_DEV || DOXYGEN
50#endif
52
53#ifdef __cplusplus
54}
55#endif
56
struct disp_dev disp_dev_t
Forward declaration for display device struct.
Definition disp_dev.h:39
struct touch_dev touch_dev_t
Forward declaration for touch device struct.
Definition touch_dev.h:35
Screen device descriptor.
Definition screen_dev.h:46
disp_dev_t * display
Pointer to the display device.
Definition screen_dev.h:47
touch_dev_t * touch
Pointer to the touch device.
Definition screen_dev.h:49