Loading...
Searching...
No Matches
lvgl_riot.h
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2019 Inria
3 * SPDX-License-Identifier: LGPL-2.1-only
4 */
5
6#pragma once
7
17
18#include "screen_dev.h"
19
20#ifdef __cplusplus
21extern "C" {
22#endif
23
29void lvgl_init(screen_dev_t *screen_dev);
30
40void lvgl_run(void);
41
49void lvgl_wakeup(void);
50
51#ifdef __cplusplus
52}
53#endif
54
void lvgl_init(screen_dev_t *screen_dev)
Initialize the lvgl display engine.
void lvgl_wakeup(void)
Wakeup lvgl when inactive.
void lvgl_run(void)
Run the lvgl task handler.
Screen device descriptor.
Definition screen_dev.h:46