1. 完成了gif的显示测试(使用lvgl当中的gif解码器),测试通过

This commit is contained in:
Misaki
2025-08-26 10:07:46 +08:00
parent 7fa73d6183
commit f5df1d4739
9 changed files with 227 additions and 18 deletions
+7 -1
View File
@@ -205,7 +205,6 @@ void exio_text(void)
#include "audio_test.h"
void audio_test(void)
{
run_audio_test();
@@ -243,4 +242,11 @@ void lcd_touch_lvgl_test(void)
lv_timer_handler();
vTaskDelay(pdMS_TO_TICKS(10));
}
}
#include "gif_test.h"
void gif_test(void)
{
gif_display_test();
}
+3
View File
@@ -29,5 +29,8 @@ void audio_test(void);
// LCD测试
void lcd_touch_lvgl_test(void);
// GIF测试
void gif_test(void);
#endif //BIONIC_SPHERE_DRIVERS_TEST_H