From e51f47526309528685751c786c615ce0db452434 Mon Sep 17 00:00:00 2001 From: C47D Date: Wed, 13 Oct 2021 23:15:27 -0500 Subject: [PATCH] ili9486: Replace ESP_LOG with LVGL logging --- lvgl_tft/ili9486.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/lvgl_tft/ili9486.c b/lvgl_tft/ili9486.c index e96b607..afc5fd4 100644 --- a/lvgl_tft/ili9486.c +++ b/lvgl_tft/ili9486.c @@ -9,14 +9,13 @@ #include "ili9486.h" #include "disp_spi.h" #include "driver/gpio.h" -#include "esp_log.h" #include "freertos/FreeRTOS.h" #include "freertos/task.h" /********************* * DEFINES *********************/ - #define TAG "ILI9486" +#define TAG "ILI9486: " /********************** * TYPEDEFS @@ -80,7 +79,7 @@ void ili9486_init(void) vTaskDelay(100 / portTICK_RATE_MS); #endif - ESP_LOGI(TAG, "ILI9486 Initialization."); + LV_LOG_INFO(TAG, "ILI9486 Initialization."); //Send all the commands uint16_t cmd = 0; @@ -171,11 +170,11 @@ static void ili9486_set_orientation(uint8_t orientation) "PORTRAIT", "PORTRAIT_INVERTED", "LANDSCAPE", "LANDSCAPE_INVERTED" }; - ESP_LOGI(TAG, "Display orientation: %s", orientation_str[orientation]); + LV_LOG_INFO(TAG, "Display orientation: %s", orientation_str[orientation]); const uint8_t data[] = {0x48, 0x88, 0x28, 0xE8}; - ESP_LOGD(TAG, "0x36 command value: 0x%02X", data[orientation]); + LV_LOG_INFO(TAG, "0x36 command value: 0x%02X", data[orientation]); ili9486_send_cmd(0x36); ili9486_send_data((void *) &data[orientation], 1);