1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-28 07:03:00 +08:00

minor fixes

This commit is contained in:
Gabor Kiss-Vamosi 2017-12-08 08:59:37 +01:00
parent 0bfb73b632
commit 91b788dc57
12 changed files with 13 additions and 13 deletions

View File

@ -73,11 +73,11 @@
#define LV_TXT_UTF8 1 #define LV_TXT_UTF8 1
#define LV_TXT_BREAK_CHARS " ,.;:-_" /*Can break texts on these chars*/ #define LV_TXT_BREAK_CHARS " ,.;:-_" /*Can break texts on these chars*/
/*Graphics feature usage*/ /*Feature usage*/
#define USE_LV_ANIMATION 1 /*1: disable all animations*/ #define USE_LV_ANIMATION 1 /*1: disable all animations*/
#define USE_LV_SHADOW 1 /*1: disable shadows*/ #define USE_LV_SHADOW 1 /*1: disable shadows*/
#define USE_LV_GROUP 1 /*1: Enable object groups (for keyboards)*/ #define USE_LV_GROUP 1 /*1: Enable object groups (for keyboards)*/
#define USE_LV_GPU 0 /*1: Enable GPU interface*/ #define USE_LV_GPU 1 /*1: Enable GPU interface*/
#define USE_LV_FILESYSTEM 1 /*1: Enable file system (required by images aka. lv_img)*/ #define USE_LV_FILESYSTEM 1 /*1: Enable file system (required by images aka. lv_img)*/
/*================== /*==================

View File

@ -7,7 +7,7 @@
#if USE_LV_FONT_DEJAVU_40 #if USE_LV_FONT_DEJAVU_40
#include <stdint.h> #include <stdint.h>
#include "lvgl/lv_misc/lv_font.h" #include "../lv_font.h"
extern lv_font_t lv_font_dejavu_40; extern lv_font_t lv_font_dejavu_40;

View File

@ -7,7 +7,7 @@
#if USE_LV_FONT_DEJAVU_40_CYRILLIC #if USE_LV_FONT_DEJAVU_40_CYRILLIC
#include <stdint.h> #include <stdint.h>
#include "lvgl/lv_misc/lv_font.h" #include "../lv_font.h"
extern lv_font_t lv_font_dejavu_40_cyrillic; extern lv_font_t lv_font_dejavu_40_cyrillic;

View File

@ -7,7 +7,7 @@
#if USE_LV_FONT_DEJAVU_40_LATIN_EXT_A #if USE_LV_FONT_DEJAVU_40_LATIN_EXT_A
#include <stdint.h> #include <stdint.h>
#include "lvgl/lv_misc/lv_font.h" #include "../lv_font.h"
extern lv_font_t lv_font_dejavu_40_latin_ext_a; extern lv_font_t lv_font_dejavu_40_latin_ext_a;

View File

@ -7,7 +7,7 @@
#if USE_LV_FONT_DEJAVU_40_LATIN_EXT_B #if USE_LV_FONT_DEJAVU_40_LATIN_EXT_B
#include <stdint.h> #include <stdint.h>
#include "lvgl/lv_misc/lv_font.h" #include "../lv_font.h"
extern lv_font_t lv_font_dejavu_40_latin_ext_b; extern lv_font_t lv_font_dejavu_40_latin_ext_b;

View File

@ -7,7 +7,7 @@
#if USE_LV_FONT_DEJAVU_40_SUP #if USE_LV_FONT_DEJAVU_40_SUP
#include <stdint.h> #include <stdint.h>
#include "lvgl/lv_misc/lv_font.h" #include "../lv_font.h"
extern lv_font_t lv_font_dejavu_40_sup; extern lv_font_t lv_font_dejavu_40_sup;

View File

@ -612,7 +612,7 @@ static const uint8_t symbol_40_basic_width[] =
lv_font_t lv_font_symbol_40_basic = lv_font_t lv_font_symbol_40_basic =
{ {
#if LV_TXT_UTF8 == 0 #if TXT_UTF8 == 0
192, /*First letter's unicode */ 192, /*First letter's unicode */
207, /*Last letter's unicode */ 207, /*Last letter's unicode */
#else #else

View File

@ -7,7 +7,7 @@
#if USE_LV_FONT_SYMBOL_40_BASIC #if USE_LV_FONT_SYMBOL_40_BASIC
#include <stdint.h> #include <stdint.h>
#include "lvgl/lv_misc/lv_font.h" #include "../lv_font.h"
extern lv_font_t lv_font_symbol_40_basic; extern lv_font_t lv_font_symbol_40_basic;

View File

@ -654,7 +654,7 @@ static const uint8_t symbol_40_feedback_width[] =
lv_font_t lv_font_symbol_40_feedback = lv_font_t lv_font_symbol_40_feedback =
{ {
#if LV_TXT_UTF8 == 0 #if TXT_UTF8 == 0
208, /*First letter's unicode */ 208, /*First letter's unicode */
223, /*Last letter's unicode */ 223, /*Last letter's unicode */
#else #else

View File

@ -7,7 +7,7 @@
#if USE_LV_FONT_SYMBOL_40_FEEDBACK #if USE_LV_FONT_SYMBOL_40_FEEDBACK
#include <stdint.h> #include <stdint.h>
#include "lvgl/lv_misc/lv_font.h" #include "../lv_font.h"
extern lv_font_t lv_font_symbol_40_feedback; extern lv_font_t lv_font_symbol_40_feedback;

View File

@ -908,7 +908,7 @@ static const uint8_t symbol_40_file_width[] =
lv_font_t lv_font_symbol_40_file = lv_font_t lv_font_symbol_40_file =
{ {
#if LV_TXT_UTF8 == 0 #if TXT_UTF8 == 0
224, /*First letter's unicode */ 224, /*First letter's unicode */
255, /*Last letter's unicode */ 255, /*Last letter's unicode */
#else #else

View File

@ -7,7 +7,7 @@
#if USE_LV_FONT_SYMBOL_40_FILE #if USE_LV_FONT_SYMBOL_40_FILE
#include <stdint.h> #include <stdint.h>
#include "lvgl/lv_misc/lv_font.h" #include "../lv_font.h"
extern lv_font_t lv_font_symbol_40_file; extern lv_font_t lv_font_symbol_40_file;