img_decoder is working (not fully tested yet)

This commit is contained in:
Gabor Kiss-Vamosi
2019-05-14 15:45:03 +02:00
parent d58c8663d4
commit f706de5517
10 changed files with 423 additions and 294 deletions

View File

@@ -16,6 +16,7 @@
#include "../lv_misc/lv_anim.h"
#include "../lv_misc/lv_task.h"
#include "../lv_misc/lv_fs.h"
#include "../lv_misc/lv_img_decoder.h"
#include "../lv_hal/lv_hal.h"
#include <stdint.h>
#include <string.h>
@@ -109,6 +110,8 @@ void lv_init(void)
/*Init the input device handling*/
lv_indev_init();
lv_img_decoder_init();
lv_initialized = true;
LV_LOG_INFO("lv_init ready");
}