39 lines
628 B
C
39 lines
628 B
C
/**
|
|
* @file lvgl.h
|
|
* This file exists only to be compatible with Arduino's library structure
|
|
*/
|
|
|
|
#ifndef LVGL_SRC_H
|
|
#define LVGL_SRC_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/*********************
|
|
* INCLUDES
|
|
*********************/
|
|
|
|
#include "../lvgl.h"
|
|
#include "lv_conf_internal.h"
|
|
/*********************
|
|
* DEFINES
|
|
*********************/
|
|
|
|
/**********************
|
|
* TYPEDEFS
|
|
**********************/
|
|
|
|
/**********************
|
|
* GLOBAL PROTOTYPES
|
|
**********************/
|
|
|
|
/**********************
|
|
* MACROS
|
|
**********************/
|
|
|
|
#ifdef __cplusplus
|
|
} /*extern "C"*/
|
|
#endif
|
|
|
|
#endif /*LVGL_SRC_H*/
|