1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-14 06:42:58 +08:00

Fix "lv_timer.h" includes in dev (#1943)

* Fix "lv_timer.h" includes

* Kick CI

* Merge incoming changes

* refactor(scroll): lv_obj_scroll_to_obj -> lv_obj_scroll_to_child

* kick CI

Co-authored-by: fvanroie <cpt_jack@msn.com>
Co-authored-by: embeddedt <42941056+embeddedt@users.noreply.github.com>
Co-authored-by: Gabor Kiss-Vamosi <kisvegabor@gmail.com>
This commit is contained in:
fvanroie 2020-12-02 09:59:49 +01:00 committed by GitHub
parent fe5796f268
commit 37dcfab21d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 6 additions and 13 deletions

View File

@ -1,10 +1,6 @@
{
"name": "lvgl",
<<<<<<< HEAD
"version": "8.0.0",
=======
"version": "7.8.1",
>>>>>>> master
"keywords": "graphics, gui, embedded, tft, lvgl",
"description": "Graphics library to create embedded GUI with easy-to-use graphical elements, beautiful visual effects and low memory footprint. It offers anti-aliasing, opacity, and animations using only one frame buffer.",
"repository": {

View File

@ -1,9 +1,5 @@
name=lvgl
<<<<<<< HEAD
version=8.0.0
=======
version=7.8.1
>>>>>>> master
author=kisvegabor
maintainer=kisvegabor,embeddedt,pete-pjb
sentence=Full-featured Graphics Library for Embedded Systems

2
lvgl.h
View File

@ -24,7 +24,7 @@ extern "C" {
*********************/
#include "src/lv_misc/lv_log.h"
#include <lvgl/src/lv_misc/lv_timer.h>
#include "src/lv_misc/lv_timer.h"
#include "src/lv_misc/lv_math.h"
#include "src/lv_misc/lv_async.h"

View File

@ -27,6 +27,7 @@ extern "C" {
* GLOBAL PROTOTYPES
**********************/
static inline LV_ATTRIBUTE_TIMER_HANDLER uint32_t lv_task_handler(void)
{
return lv_timer_handler();

View File

@ -13,7 +13,7 @@
#include <string.h>
#include "../lv_misc/lv_debug.h"
#include "../lv_hal/lv_hal_tick.h"
#include <lvgl/src/lv_misc/lv_timer.h>
#include "lv_timer.h"
#include "lv_math.h"
#include "lv_gc.h"

View File

@ -14,7 +14,7 @@ extern "C" {
* INCLUDES
*********************/
#include <lvgl/src/lv_misc/lv_timer.h>
#include "lv_timer.h"
#include "lv_types.h"
/*********************

View File

@ -17,7 +17,7 @@ extern "C" {
#include <stdbool.h>
#include "lv_mem.h"
#include "lv_ll.h"
#include <lvgl/src/lv_misc/lv_timer.h>
#include "lv_timer.h"
#include "../lv_draw/lv_img_cache.h"
#include "../lv_draw/lv_draw_mask.h"

View File

@ -5,7 +5,7 @@
/*********************
* INCLUDES
*********************/
#include <lvgl/src/lv_misc/lv_timer.h>
#include "lv_timer.h"
#include <stddef.h>
#include "../lv_misc/lv_debug.h"
#include "../lv_hal/lv_hal_tick.h"