rename LV_TXT_ENC_ISO8859-1 to ..._ASCII

This commit is contained in:
Gabor Kiss-Vamosi
2019-04-24 06:13:50 +02:00
parent 1e5f690a45
commit 4b657eb07b
4 changed files with 7 additions and 7 deletions

View File

@@ -267,7 +267,7 @@ typedef void * lv_indev_drv_user_data_t; /*Type of user data in the i
/* Select a character encoding for strings. /* Select a character encoding for strings.
* Your IDE or editor should have the same character encoding * Your IDE or editor should have the same character encoding
* - LV_TXT_ENC_UTF8 * - LV_TXT_ENC_UTF8
* - LV_TXT_ENC_ISO8859_1 * - LV_TXT_ENC_ASCII
* */ * */
#define LV_TXT_ENC LV_TXT_ENC_UTF8 #define LV_TXT_ENC LV_TXT_ENC_UTF8

View File

@@ -406,7 +406,7 @@
/* Select a character encoding for strings. /* Select a character encoding for strings.
* Your IDE or editor should have the same character encoding * Your IDE or editor should have the same character encoding
* - LV_TXT_ENC_UTF8 * - LV_TXT_ENC_UTF8
* - LV_TXT_ENC_ISO8859_1 * - LV_TXT_ENC_ASCII
* */ * */
#ifndef LV_TXT_ENC #ifndef LV_TXT_ENC
#define LV_TXT_ENC LV_TXT_ENC_UTF8 #define LV_TXT_ENC LV_TXT_ENC_UTF8

View File

@@ -47,7 +47,7 @@ static uint32_t lv_txt_utf8_prev(const char * txt, uint32_t * i_start);
static uint32_t lv_txt_utf8_get_byte_id(const char * txt, uint32_t utf8_id); static uint32_t lv_txt_utf8_get_byte_id(const char * txt, uint32_t utf8_id);
static uint32_t lv_txt_utf8_get_char_id(const char * txt, uint32_t byte_id); static uint32_t lv_txt_utf8_get_char_id(const char * txt, uint32_t byte_id);
static uint32_t lv_txt_utf8_get_length(const char * txt); static uint32_t lv_txt_utf8_get_length(const char * txt);
#elif LV_TXT_ENC == LV_TXT_ENC_ISO8859_1 #elif LV_TXT_ENC == LV_TXT_ENC_ASCII
static uint8_t lv_txt_iso8859_1_size(const char * str); static uint8_t lv_txt_iso8859_1_size(const char * str);
static uint32_t lv_txt_unicode_to_iso8859_1(uint32_t letter_uni); static uint32_t lv_txt_unicode_to_iso8859_1(uint32_t letter_uni);
static uint32_t lv_txt_iso8859_1_conv_wc(uint32_t c); static uint32_t lv_txt_iso8859_1_conv_wc(uint32_t c);
@@ -73,7 +73,7 @@ uint32_t (*lv_txt_encoded_prev)(const char *, uint32_t *) = lv_txt_utf8_pre
uint32_t (*lv_txt_encoded_get_byte_id)(const char *, uint32_t) = lv_txt_utf8_get_byte_id; uint32_t (*lv_txt_encoded_get_byte_id)(const char *, uint32_t) = lv_txt_utf8_get_byte_id;
uint32_t (*lv_encoded_get_char_id)(const char *, uint32_t) = lv_txt_utf8_get_char_id; uint32_t (*lv_encoded_get_char_id)(const char *, uint32_t) = lv_txt_utf8_get_char_id;
uint32_t (*lv_txt_get_encoded_length)(const char *) = lv_txt_utf8_get_length; uint32_t (*lv_txt_get_encoded_length)(const char *) = lv_txt_utf8_get_length;
#elif LV_TXT_ENC == LV_TXT_ENC_ISO8859_1 #elif LV_TXT_ENC == LV_TXT_ENC_ASCII
uint8_t (*lv_txt_encoded_size)(const char *) = lv_txt_iso8859_1_size; uint8_t (*lv_txt_encoded_size)(const char *) = lv_txt_iso8859_1_size;
uint32_t (*lv_txt_unicode_to_encoded)(uint32_t) = lv_txt_unicode_to_iso8859_1; uint32_t (*lv_txt_unicode_to_encoded)(uint32_t) = lv_txt_unicode_to_iso8859_1;
uint32_t (*lv_txt_encoded_conv_wc)(uint32_t) = lv_txt_iso8859_1_conv_wc; uint32_t (*lv_txt_encoded_conv_wc)(uint32_t) = lv_txt_iso8859_1_conv_wc;
@@ -677,9 +677,9 @@ static uint32_t lv_txt_utf8_get_length(const char * txt)
return len; return len;
} }
#elif LV_TXT_ENC == LV_TXT_ENC_ISO8859_1 #elif LV_TXT_ENC == LV_TXT_ENC_ASCII
/******************************* /*******************************
* IOS8859-1 ENCODER/DECOER * ASCII ENCODER/DECOER
******************************/ ******************************/
/** /**

View File

@@ -30,7 +30,7 @@ extern "C" {
#define LV_TXT_COLOR_CMD "#" #define LV_TXT_COLOR_CMD "#"
#define LV_TXT_ENC_UTF8 1 #define LV_TXT_ENC_UTF8 1
#define LV_TXT_ENC_ISO8859_1 2 #define LV_TXT_ENC_ASCII 2
/********************** /**********************
* TYPEDEFS * TYPEDEFS