il3820: Replace ESP_LOG with LVGL logging
This commit is contained in:
parent
44b552758e
commit
94244ad432
|
@ -30,7 +30,6 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR TH
|
||||||
*********************/
|
*********************/
|
||||||
#include "disp_spi.h"
|
#include "disp_spi.h"
|
||||||
#include "driver/gpio.h"
|
#include "driver/gpio.h"
|
||||||
#include "esp_log.h"
|
|
||||||
#include "freertos/FreeRTOS.h"
|
#include "freertos/FreeRTOS.h"
|
||||||
#include "freertos/task.h"
|
#include "freertos/task.h"
|
||||||
|
|
||||||
|
@ -279,7 +278,7 @@ static void il3820_waitbusy(int wait_ms)
|
||||||
vTaskDelay(10 / portTICK_RATE_MS);
|
vTaskDelay(10 / portTICK_RATE_MS);
|
||||||
}
|
}
|
||||||
|
|
||||||
ESP_LOGE( TAG, "busy exceeded %dms", i*10 );
|
LV_LOG_ERROR( TAG, "busy exceeded %dms", i*10 );
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Set DC signal to command mode */
|
/* Set DC signal to command mode */
|
||||||
|
|
Loading…
Reference in a new issue