mirror of
https://github.com/lvgl/lvgl.git
synced 2024-11-30 21:24:07 +08:00
72 lines
1.6 KiB
C
72 lines
1.6 KiB
C
/**
|
|
* @file lvgl.h
|
|
* Include all LittleV GL related headers
|
|
*/
|
|
|
|
#ifndef LV_GL_H
|
|
#define LV_GL_H
|
|
|
|
/*********************
|
|
* INCLUDES
|
|
*********************/
|
|
|
|
/*Test misc. module version*/
|
|
#include "misc/misc.h"
|
|
#define LV_MISC_REQ_MAJOR 3
|
|
#define LV_MISC_REQ_MINOR 0
|
|
#define LV_MISC_REQ_PATCH 0
|
|
|
|
#if MISC_VERSION_MAJOR != LV_MISC_REQ_MAJOR /*The version major has to match*/
|
|
#error "LV: incompatible misc. module version! See lvgl.h"
|
|
#endif
|
|
|
|
#if MISC_VERSION_MINOR < LV_MISC_REQ_MINOR /*The version minor has to be the same or greater*/
|
|
#error "LV: incompatible misc. module version! See lvgl.h"
|
|
#endif
|
|
|
|
#if MISC_VERSION_PATCH < LV_MISC_REQ_PATCH /*The version patch has to be the same or greater*/
|
|
#error "LV: incompatible misc. module version! See lvgl.h"
|
|
#endif
|
|
|
|
#include <lvgl/lv_objx/lv_chart.h>
|
|
#include "lv_obj/lv_obj.h"
|
|
#include "lv_objx/lv_btn.h"
|
|
#include "lv_objx/lv_img.h"
|
|
#include "lv_objx/lv_label.h"
|
|
#include "lv_objx/lv_line.h"
|
|
#include "lv_objx/lv_page.h"
|
|
#include "lv_objx/lv_rect.h"
|
|
#include "lv_objx/lv_list.h"
|
|
#include "lv_objx/lv_cb.h"
|
|
#include "lv_objx/lv_pb.h"
|
|
#include "lv_objx/lv_led.h"
|
|
#include "lv_objx/lv_btnm.h"
|
|
#include "lv_objx/lv_ta.h"
|
|
#include "lv_objx/lv_win.h"
|
|
#include "lv_objx/lv_mbox.h"
|
|
#include "lv_objx/lv_gauge.h"
|
|
|
|
#include "lv_app/lv_app.h"
|
|
|
|
/*********************
|
|
* DEFINES
|
|
*********************/
|
|
#define LVGL_VERSION_MAJOR 2
|
|
#define LVGL_VERSION_MINOR 2
|
|
#define LVGL_VERSION_PATH 0
|
|
|
|
|
|
/**********************
|
|
* TYPEDEFS
|
|
**********************/
|
|
|
|
/**********************
|
|
* GLOBAL PROTOTYPES
|
|
**********************/
|
|
|
|
/**********************
|
|
* MACROS
|
|
**********************/
|
|
|
|
#endif
|