blob: 16e24ff8f1a65dcbe61197a4c70483d2570c29e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
/**
* @file lv_nuttx_lcd.h
*
*/
#ifndef LV_NUTTX_LCD_H
#define LV_NUTTX_LCD_H
#ifdef __cplusplus
extern "C" {
#endif
/*********************
* INCLUDES
*********************/
#include "../../display/lv_display.h"
#if LV_USE_NUTTX
#if LV_USE_NUTTX_LCD
/*********************
* DEFINES
*********************/
/**********************
* TYPEDEFS
**********************/
/**********************
* GLOBAL PROTOTYPES
**********************/
lv_display_t * lv_nuttx_lcd_create(const char * dev_path);
/**********************
* MACROS
**********************/
#endif /* LV_USE_NUTTX_LCD */
#endif /* LV_USE_NUTTX*/
#ifdef __cplusplus
} /* extern "C" */
#endif
#endif /* LV_NUTTX_LCD_H */
|