├── .gitignore ├── .gitmodules ├── .travis.yml ├── .vscode └── ipch │ └── 386eab4720923aef │ └── mmap_address.bin ├── CHANGELOG.md ├── CMakeLists.txt ├── LICENSE ├── README.md ├── brun.sh ├── brun_auto.sh ├── cmake ├── CMakeLists.txt ├── README.md ├── common.cmake ├── compile-flags.cmake ├── dump-config.cmake ├── executable.cmake ├── fix-9985.cmake ├── macros.cmake ├── macros.internal.cmake └── toolchain.cmake ├── gdb.sh ├── lds └── kendryte.ld ├── lib ├── CMakeLists.txt ├── bsp │ ├── crt.S │ ├── entry.c │ ├── entry_user.c │ ├── include │ │ ├── atomic.h │ │ ├── bsp.h │ │ ├── dump.h │ │ ├── encoding.h │ │ ├── entry.h │ │ ├── interrupt.h │ │ ├── platform.h │ │ ├── printf.h │ │ ├── sleep.h │ │ ├── syscalls.h │ │ └── util.h │ ├── interrupt.c │ ├── printf.c │ ├── sleep.c │ └── syscalls.c ├── drivers │ ├── aes.c │ ├── apu.c │ ├── clint.c │ ├── dmac.c │ ├── dvp.c │ ├── fft.c │ ├── fpioa.c │ ├── gpio.c │ ├── gpiohs.c │ ├── i2c.c │ ├── i2s.c │ ├── include │ │ ├── aes.h │ │ ├── apu.h │ │ ├── clint.h │ │ ├── dmac.h │ │ ├── dvp.h │ │ ├── fft.h │ │ ├── fpioa.h │ │ ├── gpio.h │ │ ├── gpio_common.h │ │ ├── gpiohs.h │ │ ├── i2c.h │ │ ├── i2s.h │ │ ├── io.h │ │ ├── kpu.h │ │ ├── plic.h │ │ ├── pwm.h │ │ ├── rtc.h │ │ ├── sha256.h │ │ ├── spi.h │ │ ├── sysctl.h │ │ ├── timer.h │ │ ├── uart.h │ │ ├── uarths.h │ │ ├── utils.h │ │ └── wdt.h │ ├── kpu.c │ ├── plic.c │ ├── pwm.c │ ├── rtc.c │ ├── sha256.c │ ├── spi.c │ ├── sysclock.c │ ├── sysctl.c │ ├── timer.c │ ├── uart.c │ ├── uarths.c │ ├── utils.c │ └── wdt.c ├── freertos │ ├── conf │ │ └── FreeRTOSConfig.h │ ├── core_sync.c │ ├── croutine.c │ ├── event_groups.c │ ├── include │ │ ├── FreeRTOS.h │ │ ├── StackMacros.h │ │ ├── core_sync.h │ │ ├── croutine.h │ │ ├── event_groups.h │ │ ├── list.h │ │ ├── message_buffer.h │ │ ├── mpu_prototypes.h │ │ ├── mpu_wrappers.h │ │ ├── portable.h │ │ ├── projdefs.h │ │ ├── queue.h │ │ ├── semphr.h │ │ ├── stack_macros.h │ │ ├── stdint.readme │ │ ├── stream_buffer.h │ │ ├── task.h │ │ └── timers.h │ ├── list.c │ ├── locks.c │ ├── os_entry.c │ ├── portable │ │ ├── heap_4.c │ │ ├── port.c │ │ ├── portasm.S │ │ └── portmacro.h │ ├── pthread.c │ ├── queue.c │ ├── readme.txt │ ├── stream_buffer.c │ ├── tasks.c │ └── timers.c └── utils │ └── include │ └── syslog.h ├── make.sh └── src ├── .gitignore ├── ai_demo_sim ├── ai_demo_sim.bin ├── board_config.h ├── cnn.c ├── cnn.h ├── font.h ├── gencode_output.c ├── lcd.c ├── lcd.h ├── main.c ├── nt35310.c ├── nt35310.h ├── ov2640.c ├── ov2640.h ├── ov5640.c ├── ov5640.h ├── ov5640cfg.h ├── region_layer.c └── region_layer.h ├── auto.sh ├── dvp_ov ├── README.md ├── board_config.h ├── dvp_ov.bin ├── font.h ├── lcd.c ├── lcd.h ├── main.c ├── nt35310.c ├── nt35310.h ├── ov2640.c ├── ov2640.h ├── ov5640.c ├── ov5640.h └── ov5640cfg.h ├── face_detect ├── board_config.h ├── face_detect.bin ├── font.h ├── gen_array.py ├── gencode_output.c ├── lcd.c ├── lcd.h ├── main.c ├── nt35310.c ├── nt35310.h ├── ov2640.c ├── ov2640.h ├── ov5640.c ├── ov5640.h ├── ov5640cfg.h ├── region_layer.c ├── region_layer.h └── region_layer_array.include ├── face_detect_kmodel_flash ├── README.md ├── board_config.h ├── face_detect_kmodel_flash.bin ├── font.h ├── gencode_output.c ├── gencode_output.h ├── incbin.h ├── kfpkg │ ├── aug.kmodel │ ├── face_detect_kmodel_flash.bin │ ├── face_detect_kmodel_flash.kfpkg │ └── flash-list.json ├── lcd.c ├── lcd.h ├── main.c ├── nt35310.c ├── nt35310.h ├── ov2640.c ├── ov2640.h ├── ov5640.c ├── ov5640.h ├── ov5640cfg.h ├── region_layer.c ├── region_layer.h ├── w25qxx.c └── w25qxx.h ├── gpiohs_led ├── README.md ├── gpiohs_led.bin └── main.c ├── hello_world ├── hello_world.bin └── main.c ├── jpeg_decode ├── img.c ├── jpeg │ ├── picojpeg.c │ ├── picojpeg.h │ ├── picojpeg_util.c │ └── picojpeg_util.h ├── jpeg_decode.bin ├── lcd │ ├── font.h │ ├── lcd.c │ ├── lcd.h │ ├── nt35310.c │ └── nt35310.h └── main.c ├── kpu_conv ├── board_config.h ├── data.h ├── font.h ├── kpu_conv.bin ├── layer.c ├── layer.h ├── lcd.c ├── lcd.h ├── main.c ├── nt35310.c ├── nt35310.h ├── ov2640.c ├── ov2640.h └── readme.txt ├── lcd ├── README.md ├── board_config.h ├── font.h ├── lcd.bin ├── lcd.c ├── lcd.h ├── main.c ├── nt35310.c └── nt35310.h ├── lvgl ├── board_config.h ├── ds │ └── InderNS2009EN.PDF ├── lcd │ ├── font.h │ ├── lcd.c │ ├── lcd.h │ ├── nt35310.c │ └── nt35310.h ├── lvgl.bin ├── lvgl │ ├── .gitignore │ ├── .gitmodules │ ├── README.md │ ├── docs │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── astyle_c │ │ └── astyle_h │ ├── licence.txt │ ├── lv_conf.h │ ├── lv_conf_templ.h │ ├── lv_core │ │ ├── lv_core.mk │ │ ├── lv_group.c │ │ ├── lv_group.h │ │ ├── lv_indev.c │ │ ├── lv_indev.h │ │ ├── lv_obj.c │ │ ├── lv_obj.h │ │ ├── lv_refr.c │ │ ├── lv_refr.h │ │ ├── lv_style.c │ │ ├── lv_style.h │ │ ├── lv_vdb.c │ │ └── lv_vdb.h │ ├── lv_draw │ │ ├── lv_draw.c │ │ ├── lv_draw.h │ │ ├── lv_draw.mk │ │ ├── lv_draw_arc.c │ │ ├── lv_draw_arc.h │ │ ├── lv_draw_img.c │ │ ├── lv_draw_img.h │ │ ├── lv_draw_label.c │ │ ├── lv_draw_label.h │ │ ├── lv_draw_line.c │ │ ├── lv_draw_line.h │ │ ├── lv_draw_rbasic.c │ │ ├── lv_draw_rbasic.h │ │ ├── lv_draw_rect.c │ │ ├── lv_draw_rect.h │ │ ├── lv_draw_triangle.c │ │ ├── lv_draw_triangle.h │ │ ├── lv_draw_vbasic.c │ │ └── lv_draw_vbasic.h │ ├── lv_ex_conf.h │ ├── lv_examples │ │ ├── .gitignore │ │ ├── README.md │ │ ├── docs │ │ │ ├── astyle_c │ │ │ └── astyle_h │ │ ├── lv_apps │ │ │ ├── benchmark │ │ │ │ ├── benchmark.c │ │ │ │ ├── benchmark.h │ │ │ │ ├── benchmark.mk │ │ │ │ ├── benchmark_bg.c │ │ │ │ └── benchmark_bg.png │ │ │ ├── demo │ │ │ │ ├── bubble_pattern.png │ │ │ │ ├── demo.c │ │ │ │ ├── demo.h │ │ │ │ ├── demo.mk │ │ │ │ └── img_bubble_pattern.c │ │ │ ├── sysmon │ │ │ │ ├── sysmon.c │ │ │ │ ├── sysmon.h │ │ │ │ └── sysmon.mk │ │ │ ├── terminal │ │ │ │ ├── terminal.c │ │ │ │ ├── terminal.h │ │ │ │ └── terminal.mk │ │ │ └── tpcal │ │ │ │ ├── tpcal.c │ │ │ │ ├── tpcal.h │ │ │ │ └── tpcal.mk │ │ ├── lv_ex_conf_templ.h │ │ ├── lv_examples.h │ │ ├── lv_tests │ │ │ ├── lv_test.h │ │ │ ├── lv_test_group │ │ │ │ ├── lv_test_group.c │ │ │ │ ├── lv_test_group.h │ │ │ │ ├── lv_test_group.mk │ │ │ │ └── lv_test_group_1.png │ │ │ ├── lv_test_misc │ │ │ │ ├── lv_test_task.c │ │ │ │ └── lv_test_task.h │ │ │ ├── lv_test_obj │ │ │ │ ├── lv_test_obj.c │ │ │ │ ├── lv_test_obj.h │ │ │ │ ├── lv_test_obj.mk │ │ │ │ └── lv_test_object_1.png │ │ │ ├── lv_test_objx │ │ │ │ ├── lv_test_arc │ │ │ │ │ ├── lv_test_arc.c │ │ │ │ │ ├── lv_test_arc.h │ │ │ │ │ ├── lv_test_arc.mk │ │ │ │ │ └── lv_test_arc_1.png │ │ │ │ ├── lv_test_bar │ │ │ │ │ ├── lv_test_bar.c │ │ │ │ │ ├── lv_test_bar.h │ │ │ │ │ ├── lv_test_bar.mk │ │ │ │ │ └── lv_test_bar_1.png │ │ │ │ ├── lv_test_btn │ │ │ │ │ ├── lv_test_btn.c │ │ │ │ │ ├── lv_test_btn.h │ │ │ │ │ ├── lv_test_btn.mk │ │ │ │ │ └── lv_test_btn_1.png │ │ │ │ ├── lv_test_btnm │ │ │ │ │ ├── lv_test_btnm.c │ │ │ │ │ ├── lv_test_btnm.h │ │ │ │ │ ├── lv_test_btnm.mk │ │ │ │ │ └── lv_test_btnm_1.png │ │ │ │ ├── lv_test_cb │ │ │ │ │ ├── lv_test_cb.c │ │ │ │ │ ├── lv_test_cb.h │ │ │ │ │ ├── lv_test_cb.mk │ │ │ │ │ └── lv_test_cb_1.png │ │ │ │ ├── lv_test_chart │ │ │ │ │ ├── lv_test_chart.c │ │ │ │ │ ├── lv_test_chart.h │ │ │ │ │ ├── lv_test_chart.mk │ │ │ │ │ └── lv_test_chart_1.png │ │ │ │ ├── lv_test_cont │ │ │ │ │ ├── lv_test_cont.c │ │ │ │ │ ├── lv_test_cont.h │ │ │ │ │ ├── lv_test_cont.mk │ │ │ │ │ ├── lv_test_cont_1.png │ │ │ │ │ └── lv_test_cont_2.png │ │ │ │ ├── lv_test_ddlist │ │ │ │ │ ├── lv_test_ddlist.c │ │ │ │ │ ├── lv_test_ddlist.h │ │ │ │ │ ├── lv_test_ddlist.mk │ │ │ │ │ └── lv_test_ddlist_1.png │ │ │ │ ├── lv_test_gauge │ │ │ │ │ ├── lv_test_gauge.c │ │ │ │ │ ├── lv_test_gauge.h │ │ │ │ │ ├── lv_test_gauge.mk │ │ │ │ │ └── lv_test_gauge_1.png │ │ │ │ ├── lv_test_img │ │ │ │ │ ├── flower_icon.png │ │ │ │ │ ├── img_flower_icon.c │ │ │ │ │ ├── lv_test_img.c │ │ │ │ │ ├── lv_test_img.h │ │ │ │ │ ├── lv_test_img.mk │ │ │ │ │ └── lv_test_img_1.png │ │ │ │ ├── lv_test_imgbtn │ │ │ │ │ ├── imgbtn_img_1.c │ │ │ │ │ ├── imgbtn_img_2.c │ │ │ │ │ ├── imgbtn_img_3.c │ │ │ │ │ ├── imgbtn_img_4.c │ │ │ │ │ ├── lv_test_imgbtn.c │ │ │ │ │ ├── lv_test_imgbtn.h │ │ │ │ │ ├── lv_test_imgbtn.mk │ │ │ │ │ └── lv_test_imgbtn_1.png │ │ │ │ ├── lv_test_kb │ │ │ │ │ ├── lv_test_kb.c │ │ │ │ │ ├── lv_test_kb.h │ │ │ │ │ ├── lv_test_kb.mk │ │ │ │ │ ├── lv_test_kb_1.png │ │ │ │ │ └── lv_test_kb_2.png │ │ │ │ ├── lv_test_label │ │ │ │ │ ├── lv_test_label.c │ │ │ │ │ ├── lv_test_label.h │ │ │ │ │ ├── lv_test_label.mk │ │ │ │ │ ├── lv_test_label_1.png │ │ │ │ │ ├── lv_test_label_2.png │ │ │ │ │ ├── lv_test_label_3.png │ │ │ │ │ └── lv_test_label_4.png │ │ │ │ ├── lv_test_led │ │ │ │ │ ├── lv_test_led.c │ │ │ │ │ ├── lv_test_led.h │ │ │ │ │ ├── lv_test_led.mk │ │ │ │ │ └── lv_test_led_1.png │ │ │ │ ├── lv_test_line │ │ │ │ │ ├── lv_test_line.c │ │ │ │ │ ├── lv_test_line.h │ │ │ │ │ ├── lv_test_line.mk │ │ │ │ │ └── lv_test_line_1.png │ │ │ │ ├── lv_test_list │ │ │ │ │ ├── lv_test_list.c │ │ │ │ │ ├── lv_test_list.h │ │ │ │ │ ├── lv_test_list.mk │ │ │ │ │ └── lv_test_list_1.png │ │ │ │ ├── lv_test_lmeter │ │ │ │ │ ├── lv_test_lmeter.c │ │ │ │ │ ├── lv_test_lmeter.h │ │ │ │ │ ├── lv_test_lmeter.mk │ │ │ │ │ └── lv_test_lmeter_1.png │ │ │ │ ├── lv_test_mbox │ │ │ │ │ ├── lv_test_mbox.c │ │ │ │ │ ├── lv_test_mbox.h │ │ │ │ │ ├── lv_test_mbox.mk │ │ │ │ │ └── lv_test_mbox_1.png │ │ │ │ ├── lv_test_page │ │ │ │ │ ├── lv_test_page.c │ │ │ │ │ ├── lv_test_page.h │ │ │ │ │ ├── lv_test_page.mk │ │ │ │ │ ├── lv_test_page_1.png │ │ │ │ │ └── lv_test_page_2.png │ │ │ │ ├── lv_test_preload │ │ │ │ │ ├── lv_test_preload.c │ │ │ │ │ ├── lv_test_preload.h │ │ │ │ │ ├── lv_test_preload.mk │ │ │ │ │ └── lv_test_preload_1.png │ │ │ │ ├── lv_test_roller │ │ │ │ │ ├── lv_test_roller.c │ │ │ │ │ ├── lv_test_roller.h │ │ │ │ │ ├── lv_test_roller.mk │ │ │ │ │ └── lv_test_roller_1.png │ │ │ │ ├── lv_test_slider │ │ │ │ │ ├── lv_test_slider.c │ │ │ │ │ ├── lv_test_slider.h │ │ │ │ │ ├── lv_test_slider.mk │ │ │ │ │ └── lv_test_slider_1.png │ │ │ │ ├── lv_test_sw │ │ │ │ │ ├── lv_test_sw.c │ │ │ │ │ ├── lv_test_sw.h │ │ │ │ │ ├── lv_test_sw.mk │ │ │ │ │ └── lv_test_sw_1.png │ │ │ │ ├── lv_test_ta │ │ │ │ │ ├── lv_test_ta.c │ │ │ │ │ ├── lv_test_ta.h │ │ │ │ │ ├── lv_test_ta.mk │ │ │ │ │ ├── lv_test_ta_1.png │ │ │ │ │ └── lv_test_ta_2.png │ │ │ │ ├── lv_test_table │ │ │ │ │ ├── lv_test_table.c │ │ │ │ │ ├── lv_test_table.h │ │ │ │ │ ├── lv_test_table.mk │ │ │ │ │ ├── lv_test_table_1.png │ │ │ │ │ └── lv_test_table_2.png │ │ │ │ ├── lv_test_tabview │ │ │ │ │ ├── lv_test_tabview.c │ │ │ │ │ ├── lv_test_tabview.h │ │ │ │ │ ├── lv_test_tabview.mk │ │ │ │ │ └── lv_test_tabview_1.png │ │ │ │ ├── lv_test_tileview │ │ │ │ │ ├── lv_test_tileview.c │ │ │ │ │ ├── lv_test_tileview.h │ │ │ │ │ ├── lv_test_tileview.mk │ │ │ │ │ └── lv_test_tileview_1.gif │ │ │ │ └── lv_test_win │ │ │ │ │ ├── lv_test_win.c │ │ │ │ │ ├── lv_test_win.h │ │ │ │ │ ├── lv_test_win.mk │ │ │ │ │ └── lv_test_win_1.png │ │ │ ├── lv_test_stress │ │ │ │ ├── lv_test_stress.c │ │ │ │ ├── lv_test_stress.h │ │ │ │ ├── lv_test_stress.mk │ │ │ │ └── lv_test_stress.png │ │ │ └── lv_test_theme │ │ │ │ ├── lv_test_theme.mk │ │ │ │ ├── lv_test_theme_1.c │ │ │ │ ├── lv_test_theme_1.h │ │ │ │ ├── lv_test_theme_1.png │ │ │ │ ├── lv_test_theme_2.c │ │ │ │ ├── lv_test_theme_2.h │ │ │ │ └── lv_test_theme_2.png │ │ └── lv_tutorial │ │ │ ├── 0_porting │ │ │ ├── lv_tutorial_porting.c │ │ │ ├── lv_tutorial_porting.h │ │ │ └── lv_tutorial_porting.mk │ │ │ ├── 10_keyboard │ │ │ ├── lv_tutorial_keyboard.c │ │ │ ├── lv_tutorial_keyboard.h │ │ │ └── lv_tutorial_keyboard.mk │ │ │ ├── 1_hello_world │ │ │ ├── lv_tutorial_hello_world.c │ │ │ ├── lv_tutorial_hello_world.h │ │ │ └── lv_tutorial_hello_world.mk │ │ │ ├── 2_objects │ │ │ ├── lv_tutorial_objects.c │ │ │ ├── lv_tutorial_objects.h │ │ │ └── lv_tutorial_objects.mk │ │ │ ├── 3_styles │ │ │ ├── lv_tutorial_styles.c │ │ │ ├── lv_tutorial_styles.h │ │ │ └── lv_tutorial_styles.mk │ │ │ ├── 4_themes │ │ │ ├── lv_tutorial_themes.c │ │ │ ├── lv_tutorial_themes.h │ │ │ └── lv_tutorial_themes.mk │ │ │ ├── 5_antialiasing │ │ │ ├── apple.png │ │ │ ├── apple_chroma.png │ │ │ ├── apple_icon_alpha.c │ │ │ ├── apple_icon_chroma.c │ │ │ ├── lv_tutorial_antialiasing.c │ │ │ ├── lv_tutorial_antialiasing.h │ │ │ └── lv_tutorial_antialiasing.mk │ │ │ ├── 6_images │ │ │ ├── blue_flower.jpg │ │ │ ├── blue_flower_16.bin │ │ │ ├── blue_flower_16_swap.bin │ │ │ ├── blue_flower_32.bin │ │ │ ├── blue_flower_8.bin │ │ │ ├── lv_tutorial_images.c │ │ │ ├── lv_tutorial_images.h │ │ │ ├── lv_tutorial_images.mk │ │ │ ├── red_flower.c │ │ │ └── red_flower.png │ │ │ ├── 7_fonts │ │ │ ├── arial_ascii_20.c │ │ │ ├── arial_cyrillic_20.c │ │ │ ├── arial_math_20.c │ │ │ ├── lv_tutorial_fonts.c │ │ │ ├── lv_tutorial_fonts.h │ │ │ └── lv_tutorial_fonts.mk │ │ │ ├── 8_animations │ │ │ ├── lv_tutorial_animations.c │ │ │ ├── lv_tutorial_animations.h │ │ │ └── lv_tutorial_animations.mk │ │ │ └── 9_responsive │ │ │ ├── lv_tutorial_responsive.c │ │ │ ├── lv_tutorial_responsive.h │ │ │ └── lv_tutorial_responsive.mk │ ├── lv_fonts │ │ ├── lv_font_builtin.c │ │ ├── lv_font_builtin.h │ │ ├── lv_font_dejavu_10.c │ │ ├── lv_font_dejavu_10_cyrillic.c │ │ ├── lv_font_dejavu_10_latin_sup.c │ │ ├── lv_font_dejavu_20.c │ │ ├── lv_font_dejavu_20_cyrillic.c │ │ ├── lv_font_dejavu_20_latin_sup.c │ │ ├── lv_font_dejavu_30.c │ │ ├── lv_font_dejavu_30_cyrillic.c │ │ ├── lv_font_dejavu_30_latin_sup.c │ │ ├── lv_font_dejavu_40.c │ │ ├── lv_font_dejavu_40_cyrillic.c │ │ ├── lv_font_dejavu_40_latin_sup.c │ │ ├── lv_font_monospace_8.c │ │ ├── lv_font_symbol_10.c │ │ ├── lv_font_symbol_20.c │ │ ├── lv_font_symbol_30.c │ │ ├── lv_font_symbol_40.c │ │ └── lv_fonts.mk │ ├── lv_hal │ │ ├── lv_hal.h │ │ ├── lv_hal.mk │ │ ├── lv_hal_disp.c │ │ ├── lv_hal_disp.h │ │ ├── lv_hal_indev.c │ │ ├── lv_hal_indev.h │ │ ├── lv_hal_tick.c │ │ └── lv_hal_tick.h │ ├── lv_misc │ │ ├── lv_anim.c │ │ ├── lv_anim.h │ │ ├── lv_area.c │ │ ├── lv_area.h │ │ ├── lv_circ.c │ │ ├── lv_circ.h │ │ ├── lv_color.c │ │ ├── lv_color.h │ │ ├── lv_font.c │ │ ├── lv_font.h │ │ ├── lv_fs.c │ │ ├── lv_fs.h │ │ ├── lv_ll.c │ │ ├── lv_ll.h │ │ ├── lv_log.c │ │ ├── lv_log.h │ │ ├── lv_math.c │ │ ├── lv_math.h │ │ ├── lv_mem.c │ │ ├── lv_mem.h │ │ ├── lv_misc.mk │ │ ├── lv_symbol_def.h │ │ ├── lv_task.c │ │ ├── lv_task.h │ │ ├── lv_templ.c │ │ ├── lv_templ.h │ │ ├── lv_txt.c │ │ ├── lv_txt.h │ │ ├── lv_ufs.c │ │ └── lv_ufs.h │ ├── lv_objx │ │ ├── lv_arc.c │ │ ├── lv_arc.h │ │ ├── lv_bar.c │ │ ├── lv_bar.h │ │ ├── lv_btn.c │ │ ├── lv_btn.h │ │ ├── lv_btnm.c │ │ ├── lv_btnm.h │ │ ├── lv_calendar.c │ │ ├── lv_calendar.h │ │ ├── lv_cb.c │ │ ├── lv_cb.h │ │ ├── lv_chart.c │ │ ├── lv_chart.h │ │ ├── lv_cont.c │ │ ├── lv_cont.h │ │ ├── lv_ddlist.c │ │ ├── lv_ddlist.h │ │ ├── lv_gauge.c │ │ ├── lv_gauge.h │ │ ├── lv_img.c │ │ ├── lv_img.h │ │ ├── lv_imgbtn.c │ │ ├── lv_imgbtn.h │ │ ├── lv_kb.c │ │ ├── lv_kb.h │ │ ├── lv_label.c │ │ ├── lv_label.h │ │ ├── lv_led.c │ │ ├── lv_led.h │ │ ├── lv_line.c │ │ ├── lv_line.h │ │ ├── lv_list.c │ │ ├── lv_list.h │ │ ├── lv_lmeter.c │ │ ├── lv_lmeter.h │ │ ├── lv_mbox.c │ │ ├── lv_mbox.h │ │ ├── lv_objx.mk │ │ ├── lv_objx_templ.c │ │ ├── lv_objx_templ.h │ │ ├── lv_page.c │ │ ├── lv_page.h │ │ ├── lv_preload.c │ │ ├── lv_preload.h │ │ ├── lv_roller.c │ │ ├── lv_roller.h │ │ ├── lv_slider.c │ │ ├── lv_slider.h │ │ ├── lv_sw.c │ │ ├── lv_sw.h │ │ ├── lv_ta.c │ │ ├── lv_ta.h │ │ ├── lv_tabview.c │ │ ├── lv_tabview.h │ │ ├── lv_win.c │ │ └── lv_win.h │ ├── lv_themes │ │ ├── lv_theme.c │ │ ├── lv_theme.h │ │ ├── lv_theme_alien.c │ │ ├── lv_theme_alien.h │ │ ├── lv_theme_default.c │ │ ├── lv_theme_default.h │ │ ├── lv_theme_material.c │ │ ├── lv_theme_material.h │ │ ├── lv_theme_mono.c │ │ ├── lv_theme_mono.h │ │ ├── lv_theme_nemo.c │ │ ├── lv_theme_nemo.h │ │ ├── lv_theme_night.c │ │ ├── lv_theme_night.h │ │ ├── lv_theme_templ.c │ │ ├── lv_theme_templ.h │ │ ├── lv_theme_zen.c │ │ ├── lv_theme_zen.h │ │ └── lv_themes.mk │ └── lvgl.h ├── main.c └── ns2009 │ ├── mean.c │ ├── mean.h │ ├── median.c │ ├── median.h │ ├── ns2009.c │ ├── ns2009.h │ ├── tscal.c │ ├── tscal.h │ ├── tsfilter.c │ └── tsfilter.h ├── mic_play ├── README.md ├── main.c └── mic_play.bin ├── mnist ├── board_config.h ├── burn_model.sh ├── flash-list.json ├── font.h ├── incbin.h ├── lcd.c ├── lcd.h ├── m.kmodel ├── main.c ├── mnist.bin ├── nt35310.c ├── nt35310.h ├── ov2640.c ├── ov2640.h ├── pack_model.sh ├── w25qxx.c └── w25qxx.h ├── sd_card ├── board_config.h ├── ccsbcs.c ├── diskio.c ├── diskio.h ├── ff.c ├── ff.h ├── ffconf.h ├── integer.h ├── main.c ├── sd_card.bin ├── sdcard.c ├── sdcard.h ├── wav_decode.c └── wav_decode.h └── wav_test ├── main.c ├── wav.h ├── wav_decode.c ├── wav_decode.h └── wav_test.bin /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | build/ 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/ipch/386eab4720923aef/mmap_address.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/.vscode/ipch/386eab4720923aef/mmap_address.bin -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/README.md -------------------------------------------------------------------------------- /brun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/brun.sh -------------------------------------------------------------------------------- /brun_auto.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/brun_auto.sh -------------------------------------------------------------------------------- /cmake/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/cmake/CMakeLists.txt -------------------------------------------------------------------------------- /cmake/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/cmake/README.md -------------------------------------------------------------------------------- /cmake/common.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/cmake/common.cmake -------------------------------------------------------------------------------- /cmake/compile-flags.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/cmake/compile-flags.cmake -------------------------------------------------------------------------------- /cmake/dump-config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/cmake/dump-config.cmake -------------------------------------------------------------------------------- /cmake/executable.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/cmake/executable.cmake -------------------------------------------------------------------------------- /cmake/fix-9985.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/cmake/fix-9985.cmake -------------------------------------------------------------------------------- /cmake/macros.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/cmake/macros.cmake -------------------------------------------------------------------------------- /cmake/macros.internal.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/cmake/macros.internal.cmake -------------------------------------------------------------------------------- /cmake/toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/cmake/toolchain.cmake -------------------------------------------------------------------------------- /gdb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/gdb.sh -------------------------------------------------------------------------------- /lds/kendryte.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lds/kendryte.ld -------------------------------------------------------------------------------- /lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/CMakeLists.txt -------------------------------------------------------------------------------- /lib/bsp/crt.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/bsp/crt.S -------------------------------------------------------------------------------- /lib/bsp/entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/bsp/entry.c -------------------------------------------------------------------------------- /lib/bsp/entry_user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/bsp/entry_user.c -------------------------------------------------------------------------------- /lib/bsp/include/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/bsp/include/atomic.h -------------------------------------------------------------------------------- /lib/bsp/include/bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/bsp/include/bsp.h -------------------------------------------------------------------------------- /lib/bsp/include/dump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/bsp/include/dump.h -------------------------------------------------------------------------------- /lib/bsp/include/encoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/bsp/include/encoding.h -------------------------------------------------------------------------------- /lib/bsp/include/entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/bsp/include/entry.h -------------------------------------------------------------------------------- /lib/bsp/include/interrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/bsp/include/interrupt.h -------------------------------------------------------------------------------- /lib/bsp/include/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/bsp/include/platform.h -------------------------------------------------------------------------------- /lib/bsp/include/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/bsp/include/printf.h -------------------------------------------------------------------------------- /lib/bsp/include/sleep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/bsp/include/sleep.h -------------------------------------------------------------------------------- /lib/bsp/include/syscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/bsp/include/syscalls.h -------------------------------------------------------------------------------- /lib/bsp/include/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/bsp/include/util.h -------------------------------------------------------------------------------- /lib/bsp/interrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/bsp/interrupt.c -------------------------------------------------------------------------------- /lib/bsp/printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/bsp/printf.c -------------------------------------------------------------------------------- /lib/bsp/sleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/bsp/sleep.c -------------------------------------------------------------------------------- /lib/bsp/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/bsp/syscalls.c -------------------------------------------------------------------------------- /lib/drivers/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/drivers/aes.c -------------------------------------------------------------------------------- /lib/drivers/apu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/drivers/apu.c -------------------------------------------------------------------------------- /lib/drivers/clint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/drivers/clint.c -------------------------------------------------------------------------------- /lib/drivers/dmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/drivers/dmac.c -------------------------------------------------------------------------------- /lib/drivers/dvp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/drivers/dvp.c -------------------------------------------------------------------------------- /lib/drivers/fft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/drivers/fft.c -------------------------------------------------------------------------------- /lib/drivers/fpioa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/drivers/fpioa.c -------------------------------------------------------------------------------- /lib/drivers/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/drivers/gpio.c -------------------------------------------------------------------------------- /lib/drivers/gpiohs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/drivers/gpiohs.c -------------------------------------------------------------------------------- /lib/drivers/i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/drivers/i2c.c -------------------------------------------------------------------------------- /lib/drivers/i2s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/drivers/i2s.c -------------------------------------------------------------------------------- /lib/drivers/include/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/drivers/include/aes.h -------------------------------------------------------------------------------- /lib/drivers/include/apu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/drivers/include/apu.h -------------------------------------------------------------------------------- /lib/drivers/include/clint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/drivers/include/clint.h -------------------------------------------------------------------------------- /lib/drivers/include/dmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/drivers/include/dmac.h -------------------------------------------------------------------------------- /lib/drivers/include/dvp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/drivers/include/dvp.h -------------------------------------------------------------------------------- /lib/drivers/include/fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/drivers/include/fft.h -------------------------------------------------------------------------------- /lib/drivers/include/fpioa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/drivers/include/fpioa.h -------------------------------------------------------------------------------- /lib/drivers/include/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/drivers/include/gpio.h -------------------------------------------------------------------------------- /lib/drivers/include/gpio_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/drivers/include/gpio_common.h -------------------------------------------------------------------------------- /lib/drivers/include/gpiohs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/drivers/include/gpiohs.h -------------------------------------------------------------------------------- /lib/drivers/include/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/drivers/include/i2c.h -------------------------------------------------------------------------------- /lib/drivers/include/i2s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/drivers/include/i2s.h -------------------------------------------------------------------------------- /lib/drivers/include/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/drivers/include/io.h -------------------------------------------------------------------------------- /lib/drivers/include/kpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/drivers/include/kpu.h -------------------------------------------------------------------------------- /lib/drivers/include/plic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/drivers/include/plic.h -------------------------------------------------------------------------------- /lib/drivers/include/pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/drivers/include/pwm.h -------------------------------------------------------------------------------- /lib/drivers/include/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/drivers/include/rtc.h -------------------------------------------------------------------------------- /lib/drivers/include/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/drivers/include/sha256.h -------------------------------------------------------------------------------- /lib/drivers/include/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/drivers/include/spi.h -------------------------------------------------------------------------------- /lib/drivers/include/sysctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/drivers/include/sysctl.h -------------------------------------------------------------------------------- /lib/drivers/include/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/drivers/include/timer.h -------------------------------------------------------------------------------- /lib/drivers/include/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/drivers/include/uart.h -------------------------------------------------------------------------------- /lib/drivers/include/uarths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/drivers/include/uarths.h -------------------------------------------------------------------------------- /lib/drivers/include/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/drivers/include/utils.h -------------------------------------------------------------------------------- /lib/drivers/include/wdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/drivers/include/wdt.h -------------------------------------------------------------------------------- /lib/drivers/kpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/drivers/kpu.c -------------------------------------------------------------------------------- /lib/drivers/plic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/drivers/plic.c -------------------------------------------------------------------------------- /lib/drivers/pwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/drivers/pwm.c -------------------------------------------------------------------------------- /lib/drivers/rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/drivers/rtc.c -------------------------------------------------------------------------------- /lib/drivers/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/drivers/sha256.c -------------------------------------------------------------------------------- /lib/drivers/spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/drivers/spi.c -------------------------------------------------------------------------------- /lib/drivers/sysclock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/drivers/sysclock.c -------------------------------------------------------------------------------- /lib/drivers/sysctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/drivers/sysctl.c -------------------------------------------------------------------------------- /lib/drivers/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/drivers/timer.c -------------------------------------------------------------------------------- /lib/drivers/uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/drivers/uart.c -------------------------------------------------------------------------------- /lib/drivers/uarths.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/drivers/uarths.c -------------------------------------------------------------------------------- /lib/drivers/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/drivers/utils.c -------------------------------------------------------------------------------- /lib/drivers/wdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/drivers/wdt.c -------------------------------------------------------------------------------- /lib/freertos/conf/FreeRTOSConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/freertos/conf/FreeRTOSConfig.h -------------------------------------------------------------------------------- /lib/freertos/core_sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/freertos/core_sync.c -------------------------------------------------------------------------------- /lib/freertos/croutine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/freertos/croutine.c -------------------------------------------------------------------------------- /lib/freertos/event_groups.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/freertos/event_groups.c -------------------------------------------------------------------------------- /lib/freertos/include/FreeRTOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/freertos/include/FreeRTOS.h -------------------------------------------------------------------------------- /lib/freertos/include/StackMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/freertos/include/StackMacros.h -------------------------------------------------------------------------------- /lib/freertos/include/core_sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/freertos/include/core_sync.h -------------------------------------------------------------------------------- /lib/freertos/include/croutine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/freertos/include/croutine.h -------------------------------------------------------------------------------- /lib/freertos/include/event_groups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/freertos/include/event_groups.h -------------------------------------------------------------------------------- /lib/freertos/include/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/freertos/include/list.h -------------------------------------------------------------------------------- /lib/freertos/include/message_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/freertos/include/message_buffer.h -------------------------------------------------------------------------------- /lib/freertos/include/mpu_prototypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/freertos/include/mpu_prototypes.h -------------------------------------------------------------------------------- /lib/freertos/include/mpu_wrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/freertos/include/mpu_wrappers.h -------------------------------------------------------------------------------- /lib/freertos/include/portable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/freertos/include/portable.h -------------------------------------------------------------------------------- /lib/freertos/include/projdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/freertos/include/projdefs.h -------------------------------------------------------------------------------- /lib/freertos/include/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/freertos/include/queue.h -------------------------------------------------------------------------------- /lib/freertos/include/semphr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/freertos/include/semphr.h -------------------------------------------------------------------------------- /lib/freertos/include/stack_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/freertos/include/stack_macros.h -------------------------------------------------------------------------------- /lib/freertos/include/stdint.readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/freertos/include/stdint.readme -------------------------------------------------------------------------------- /lib/freertos/include/stream_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/freertos/include/stream_buffer.h -------------------------------------------------------------------------------- /lib/freertos/include/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/freertos/include/task.h -------------------------------------------------------------------------------- /lib/freertos/include/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/freertos/include/timers.h -------------------------------------------------------------------------------- /lib/freertos/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/freertos/list.c -------------------------------------------------------------------------------- /lib/freertos/locks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/freertos/locks.c -------------------------------------------------------------------------------- /lib/freertos/os_entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/freertos/os_entry.c -------------------------------------------------------------------------------- /lib/freertos/portable/heap_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/freertos/portable/heap_4.c -------------------------------------------------------------------------------- /lib/freertos/portable/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/freertos/portable/port.c -------------------------------------------------------------------------------- /lib/freertos/portable/portasm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/freertos/portable/portasm.S -------------------------------------------------------------------------------- /lib/freertos/portable/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/freertos/portable/portmacro.h -------------------------------------------------------------------------------- /lib/freertos/pthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/freertos/pthread.c -------------------------------------------------------------------------------- /lib/freertos/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/freertos/queue.c -------------------------------------------------------------------------------- /lib/freertos/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/freertos/readme.txt -------------------------------------------------------------------------------- /lib/freertos/stream_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/freertos/stream_buffer.c -------------------------------------------------------------------------------- /lib/freertos/tasks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/freertos/tasks.c -------------------------------------------------------------------------------- /lib/freertos/timers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/freertos/timers.c -------------------------------------------------------------------------------- /lib/utils/include/syslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/lib/utils/include/syslog.h -------------------------------------------------------------------------------- /make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/make.sh -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- 1 | .release/ -------------------------------------------------------------------------------- /src/ai_demo_sim/ai_demo_sim.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/ai_demo_sim/ai_demo_sim.bin -------------------------------------------------------------------------------- /src/ai_demo_sim/board_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/ai_demo_sim/board_config.h -------------------------------------------------------------------------------- /src/ai_demo_sim/cnn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/ai_demo_sim/cnn.c -------------------------------------------------------------------------------- /src/ai_demo_sim/cnn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/ai_demo_sim/cnn.h -------------------------------------------------------------------------------- /src/ai_demo_sim/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/ai_demo_sim/font.h -------------------------------------------------------------------------------- /src/ai_demo_sim/gencode_output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/ai_demo_sim/gencode_output.c -------------------------------------------------------------------------------- /src/ai_demo_sim/lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/ai_demo_sim/lcd.c -------------------------------------------------------------------------------- /src/ai_demo_sim/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/ai_demo_sim/lcd.h -------------------------------------------------------------------------------- /src/ai_demo_sim/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/ai_demo_sim/main.c -------------------------------------------------------------------------------- /src/ai_demo_sim/nt35310.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/ai_demo_sim/nt35310.c -------------------------------------------------------------------------------- /src/ai_demo_sim/nt35310.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/ai_demo_sim/nt35310.h -------------------------------------------------------------------------------- /src/ai_demo_sim/ov2640.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/ai_demo_sim/ov2640.c -------------------------------------------------------------------------------- /src/ai_demo_sim/ov2640.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/ai_demo_sim/ov2640.h -------------------------------------------------------------------------------- /src/ai_demo_sim/ov5640.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/ai_demo_sim/ov5640.c -------------------------------------------------------------------------------- /src/ai_demo_sim/ov5640.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/ai_demo_sim/ov5640.h -------------------------------------------------------------------------------- /src/ai_demo_sim/ov5640cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/ai_demo_sim/ov5640cfg.h -------------------------------------------------------------------------------- /src/ai_demo_sim/region_layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/ai_demo_sim/region_layer.c -------------------------------------------------------------------------------- /src/ai_demo_sim/region_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/ai_demo_sim/region_layer.h -------------------------------------------------------------------------------- /src/auto.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/auto.sh -------------------------------------------------------------------------------- /src/dvp_ov/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/dvp_ov/README.md -------------------------------------------------------------------------------- /src/dvp_ov/board_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/dvp_ov/board_config.h -------------------------------------------------------------------------------- /src/dvp_ov/dvp_ov.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/dvp_ov/dvp_ov.bin -------------------------------------------------------------------------------- /src/dvp_ov/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/dvp_ov/font.h -------------------------------------------------------------------------------- /src/dvp_ov/lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/dvp_ov/lcd.c -------------------------------------------------------------------------------- /src/dvp_ov/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/dvp_ov/lcd.h -------------------------------------------------------------------------------- /src/dvp_ov/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/dvp_ov/main.c -------------------------------------------------------------------------------- /src/dvp_ov/nt35310.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/dvp_ov/nt35310.c -------------------------------------------------------------------------------- /src/dvp_ov/nt35310.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/dvp_ov/nt35310.h -------------------------------------------------------------------------------- /src/dvp_ov/ov2640.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/dvp_ov/ov2640.c -------------------------------------------------------------------------------- /src/dvp_ov/ov2640.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/dvp_ov/ov2640.h -------------------------------------------------------------------------------- /src/dvp_ov/ov5640.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/dvp_ov/ov5640.c -------------------------------------------------------------------------------- /src/dvp_ov/ov5640.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/dvp_ov/ov5640.h -------------------------------------------------------------------------------- /src/dvp_ov/ov5640cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/dvp_ov/ov5640cfg.h -------------------------------------------------------------------------------- /src/face_detect/board_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/face_detect/board_config.h -------------------------------------------------------------------------------- /src/face_detect/face_detect.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/face_detect/face_detect.bin -------------------------------------------------------------------------------- /src/face_detect/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/face_detect/font.h -------------------------------------------------------------------------------- /src/face_detect/gen_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/face_detect/gen_array.py -------------------------------------------------------------------------------- /src/face_detect/gencode_output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/face_detect/gencode_output.c -------------------------------------------------------------------------------- /src/face_detect/lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/face_detect/lcd.c -------------------------------------------------------------------------------- /src/face_detect/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/face_detect/lcd.h -------------------------------------------------------------------------------- /src/face_detect/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/face_detect/main.c -------------------------------------------------------------------------------- /src/face_detect/nt35310.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/face_detect/nt35310.c -------------------------------------------------------------------------------- /src/face_detect/nt35310.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/face_detect/nt35310.h -------------------------------------------------------------------------------- /src/face_detect/ov2640.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/face_detect/ov2640.c -------------------------------------------------------------------------------- /src/face_detect/ov2640.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/face_detect/ov2640.h -------------------------------------------------------------------------------- /src/face_detect/ov5640.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/face_detect/ov5640.c -------------------------------------------------------------------------------- /src/face_detect/ov5640.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/face_detect/ov5640.h -------------------------------------------------------------------------------- /src/face_detect/ov5640cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/face_detect/ov5640cfg.h -------------------------------------------------------------------------------- /src/face_detect/region_layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/face_detect/region_layer.c -------------------------------------------------------------------------------- /src/face_detect/region_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/face_detect/region_layer.h -------------------------------------------------------------------------------- /src/face_detect/region_layer_array.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/face_detect/region_layer_array.include -------------------------------------------------------------------------------- /src/face_detect_kmodel_flash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/face_detect_kmodel_flash/README.md -------------------------------------------------------------------------------- /src/face_detect_kmodel_flash/board_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/face_detect_kmodel_flash/board_config.h -------------------------------------------------------------------------------- /src/face_detect_kmodel_flash/face_detect_kmodel_flash.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/face_detect_kmodel_flash/face_detect_kmodel_flash.bin -------------------------------------------------------------------------------- /src/face_detect_kmodel_flash/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/face_detect_kmodel_flash/font.h -------------------------------------------------------------------------------- /src/face_detect_kmodel_flash/gencode_output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/face_detect_kmodel_flash/gencode_output.c -------------------------------------------------------------------------------- /src/face_detect_kmodel_flash/gencode_output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/face_detect_kmodel_flash/gencode_output.h -------------------------------------------------------------------------------- /src/face_detect_kmodel_flash/incbin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/face_detect_kmodel_flash/incbin.h -------------------------------------------------------------------------------- /src/face_detect_kmodel_flash/kfpkg/aug.kmodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/face_detect_kmodel_flash/kfpkg/aug.kmodel -------------------------------------------------------------------------------- /src/face_detect_kmodel_flash/kfpkg/face_detect_kmodel_flash.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/face_detect_kmodel_flash/kfpkg/face_detect_kmodel_flash.bin -------------------------------------------------------------------------------- /src/face_detect_kmodel_flash/kfpkg/face_detect_kmodel_flash.kfpkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/face_detect_kmodel_flash/kfpkg/face_detect_kmodel_flash.kfpkg -------------------------------------------------------------------------------- /src/face_detect_kmodel_flash/kfpkg/flash-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/face_detect_kmodel_flash/kfpkg/flash-list.json -------------------------------------------------------------------------------- /src/face_detect_kmodel_flash/lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/face_detect_kmodel_flash/lcd.c -------------------------------------------------------------------------------- /src/face_detect_kmodel_flash/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/face_detect_kmodel_flash/lcd.h -------------------------------------------------------------------------------- /src/face_detect_kmodel_flash/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/face_detect_kmodel_flash/main.c -------------------------------------------------------------------------------- /src/face_detect_kmodel_flash/nt35310.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/face_detect_kmodel_flash/nt35310.c -------------------------------------------------------------------------------- /src/face_detect_kmodel_flash/nt35310.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/face_detect_kmodel_flash/nt35310.h -------------------------------------------------------------------------------- /src/face_detect_kmodel_flash/ov2640.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/face_detect_kmodel_flash/ov2640.c -------------------------------------------------------------------------------- /src/face_detect_kmodel_flash/ov2640.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/face_detect_kmodel_flash/ov2640.h -------------------------------------------------------------------------------- /src/face_detect_kmodel_flash/ov5640.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/face_detect_kmodel_flash/ov5640.c -------------------------------------------------------------------------------- /src/face_detect_kmodel_flash/ov5640.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/face_detect_kmodel_flash/ov5640.h -------------------------------------------------------------------------------- /src/face_detect_kmodel_flash/ov5640cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/face_detect_kmodel_flash/ov5640cfg.h -------------------------------------------------------------------------------- /src/face_detect_kmodel_flash/region_layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/face_detect_kmodel_flash/region_layer.c -------------------------------------------------------------------------------- /src/face_detect_kmodel_flash/region_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/face_detect_kmodel_flash/region_layer.h -------------------------------------------------------------------------------- /src/face_detect_kmodel_flash/w25qxx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/face_detect_kmodel_flash/w25qxx.c -------------------------------------------------------------------------------- /src/face_detect_kmodel_flash/w25qxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/face_detect_kmodel_flash/w25qxx.h -------------------------------------------------------------------------------- /src/gpiohs_led/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/gpiohs_led/README.md -------------------------------------------------------------------------------- /src/gpiohs_led/gpiohs_led.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/gpiohs_led/gpiohs_led.bin -------------------------------------------------------------------------------- /src/gpiohs_led/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/gpiohs_led/main.c -------------------------------------------------------------------------------- /src/hello_world/hello_world.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/hello_world/hello_world.bin -------------------------------------------------------------------------------- /src/hello_world/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/hello_world/main.c -------------------------------------------------------------------------------- /src/jpeg_decode/img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/jpeg_decode/img.c -------------------------------------------------------------------------------- /src/jpeg_decode/jpeg/picojpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/jpeg_decode/jpeg/picojpeg.c -------------------------------------------------------------------------------- /src/jpeg_decode/jpeg/picojpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/jpeg_decode/jpeg/picojpeg.h -------------------------------------------------------------------------------- /src/jpeg_decode/jpeg/picojpeg_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/jpeg_decode/jpeg/picojpeg_util.c -------------------------------------------------------------------------------- /src/jpeg_decode/jpeg/picojpeg_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/jpeg_decode/jpeg/picojpeg_util.h -------------------------------------------------------------------------------- /src/jpeg_decode/jpeg_decode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/jpeg_decode/jpeg_decode.bin -------------------------------------------------------------------------------- /src/jpeg_decode/lcd/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/jpeg_decode/lcd/font.h -------------------------------------------------------------------------------- /src/jpeg_decode/lcd/lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/jpeg_decode/lcd/lcd.c -------------------------------------------------------------------------------- /src/jpeg_decode/lcd/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/jpeg_decode/lcd/lcd.h -------------------------------------------------------------------------------- /src/jpeg_decode/lcd/nt35310.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/jpeg_decode/lcd/nt35310.c -------------------------------------------------------------------------------- /src/jpeg_decode/lcd/nt35310.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/jpeg_decode/lcd/nt35310.h -------------------------------------------------------------------------------- /src/jpeg_decode/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/jpeg_decode/main.c -------------------------------------------------------------------------------- /src/kpu_conv/board_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/kpu_conv/board_config.h -------------------------------------------------------------------------------- /src/kpu_conv/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/kpu_conv/data.h -------------------------------------------------------------------------------- /src/kpu_conv/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/kpu_conv/font.h -------------------------------------------------------------------------------- /src/kpu_conv/kpu_conv.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/kpu_conv/kpu_conv.bin -------------------------------------------------------------------------------- /src/kpu_conv/layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/kpu_conv/layer.c -------------------------------------------------------------------------------- /src/kpu_conv/layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/kpu_conv/layer.h -------------------------------------------------------------------------------- /src/kpu_conv/lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/kpu_conv/lcd.c -------------------------------------------------------------------------------- /src/kpu_conv/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/kpu_conv/lcd.h -------------------------------------------------------------------------------- /src/kpu_conv/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/kpu_conv/main.c -------------------------------------------------------------------------------- /src/kpu_conv/nt35310.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/kpu_conv/nt35310.c -------------------------------------------------------------------------------- /src/kpu_conv/nt35310.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/kpu_conv/nt35310.h -------------------------------------------------------------------------------- /src/kpu_conv/ov2640.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/kpu_conv/ov2640.c -------------------------------------------------------------------------------- /src/kpu_conv/ov2640.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/kpu_conv/ov2640.h -------------------------------------------------------------------------------- /src/kpu_conv/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/kpu_conv/readme.txt -------------------------------------------------------------------------------- /src/lcd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lcd/README.md -------------------------------------------------------------------------------- /src/lcd/board_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lcd/board_config.h -------------------------------------------------------------------------------- /src/lcd/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lcd/font.h -------------------------------------------------------------------------------- /src/lcd/lcd.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lcd/lcd.bin -------------------------------------------------------------------------------- /src/lcd/lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lcd/lcd.c -------------------------------------------------------------------------------- /src/lcd/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lcd/lcd.h -------------------------------------------------------------------------------- /src/lcd/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lcd/main.c -------------------------------------------------------------------------------- /src/lcd/nt35310.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lcd/nt35310.c -------------------------------------------------------------------------------- /src/lcd/nt35310.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lcd/nt35310.h -------------------------------------------------------------------------------- /src/lvgl/board_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/board_config.h -------------------------------------------------------------------------------- /src/lvgl/ds/InderNS2009EN.PDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/ds/InderNS2009EN.PDF -------------------------------------------------------------------------------- /src/lvgl/lcd/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lcd/font.h -------------------------------------------------------------------------------- /src/lvgl/lcd/lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lcd/lcd.c -------------------------------------------------------------------------------- /src/lvgl/lcd/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lcd/lcd.h -------------------------------------------------------------------------------- /src/lvgl/lcd/nt35310.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lcd/nt35310.c -------------------------------------------------------------------------------- /src/lvgl/lcd/nt35310.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lcd/nt35310.h -------------------------------------------------------------------------------- /src/lvgl/lvgl.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl.bin -------------------------------------------------------------------------------- /src/lvgl/lvgl/.gitignore: -------------------------------------------------------------------------------- 1 | **/*.o -------------------------------------------------------------------------------- /src/lvgl/lvgl/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/.gitmodules -------------------------------------------------------------------------------- /src/lvgl/lvgl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/README.md -------------------------------------------------------------------------------- /src/lvgl/lvgl/docs/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/docs/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /src/lvgl/lvgl/docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/lvgl/lvgl/docs/astyle_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/docs/astyle_c -------------------------------------------------------------------------------- /src/lvgl/lvgl/docs/astyle_h: -------------------------------------------------------------------------------- 1 | --convert-tabs --indent=spaces=4 2 | -------------------------------------------------------------------------------- /src/lvgl/lvgl/licence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/licence.txt -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_conf.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_conf_templ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_conf_templ.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_core/lv_core.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_core/lv_core.mk -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_core/lv_group.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_core/lv_group.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_core/lv_group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_core/lv_group.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_core/lv_indev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_core/lv_indev.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_core/lv_indev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_core/lv_indev.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_core/lv_obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_core/lv_obj.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_core/lv_obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_core/lv_obj.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_core/lv_refr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_core/lv_refr.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_core/lv_refr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_core/lv_refr.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_core/lv_style.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_core/lv_style.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_core/lv_style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_core/lv_style.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_core/lv_vdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_core/lv_vdb.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_core/lv_vdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_core/lv_vdb.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_draw/lv_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_draw/lv_draw.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_draw/lv_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_draw/lv_draw.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_draw/lv_draw.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_draw/lv_draw.mk -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_draw/lv_draw_arc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_draw/lv_draw_arc.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_draw/lv_draw_arc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_draw/lv_draw_arc.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_draw/lv_draw_img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_draw/lv_draw_img.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_draw/lv_draw_img.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_draw/lv_draw_img.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_draw/lv_draw_label.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_draw/lv_draw_label.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_draw/lv_draw_label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_draw/lv_draw_label.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_draw/lv_draw_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_draw/lv_draw_line.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_draw/lv_draw_line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_draw/lv_draw_line.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_draw/lv_draw_rbasic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_draw/lv_draw_rbasic.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_draw/lv_draw_rbasic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_draw/lv_draw_rbasic.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_draw/lv_draw_rect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_draw/lv_draw_rect.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_draw/lv_draw_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_draw/lv_draw_rect.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_draw/lv_draw_triangle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_draw/lv_draw_triangle.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_draw/lv_draw_triangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_draw/lv_draw_triangle.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_draw/lv_draw_vbasic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_draw/lv_draw_vbasic.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_draw/lv_draw_vbasic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_draw/lv_draw_vbasic.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_ex_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_ex_conf.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/.gitignore: -------------------------------------------------------------------------------- 1 | **/*.o -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/README.md -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/docs/astyle_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/docs/astyle_c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/docs/astyle_h: -------------------------------------------------------------------------------- 1 | --convert-tabs --indent=spaces=4 2 | -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_apps/benchmark/benchmark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_apps/benchmark/benchmark.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_apps/benchmark/benchmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_apps/benchmark/benchmark.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_apps/benchmark/benchmark.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_apps/benchmark/benchmark.mk -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_apps/benchmark/benchmark_bg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_apps/benchmark/benchmark_bg.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_apps/benchmark/benchmark_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_apps/benchmark/benchmark_bg.png -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_apps/demo/bubble_pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_apps/demo/bubble_pattern.png -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_apps/demo/demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_apps/demo/demo.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_apps/demo/demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_apps/demo/demo.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_apps/demo/demo.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_apps/demo/demo.mk -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_apps/demo/img_bubble_pattern.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_apps/demo/img_bubble_pattern.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_apps/sysmon/sysmon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_apps/sysmon/sysmon.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_apps/sysmon/sysmon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_apps/sysmon/sysmon.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_apps/sysmon/sysmon.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_apps/sysmon/sysmon.mk -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_apps/terminal/terminal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_apps/terminal/terminal.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_apps/terminal/terminal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_apps/terminal/terminal.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_apps/terminal/terminal.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_apps/terminal/terminal.mk -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_apps/tpcal/tpcal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_apps/tpcal/tpcal.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_apps/tpcal/tpcal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_apps/tpcal/tpcal.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_apps/tpcal/tpcal.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_apps/tpcal/tpcal.mk -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_ex_conf_templ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_ex_conf_templ.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_examples.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_examples.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_group/lv_test_group.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_group/lv_test_group.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_group/lv_test_group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_group/lv_test_group.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_group/lv_test_group.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_group/lv_test_group.mk -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_group/lv_test_group_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_group/lv_test_group_1.png -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_misc/lv_test_task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_misc/lv_test_task.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_misc/lv_test_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_misc/lv_test_task.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_obj/lv_test_obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_obj/lv_test_obj.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_obj/lv_test_obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_obj/lv_test_obj.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_obj/lv_test_obj.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_obj/lv_test_obj.mk -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_obj/lv_test_object_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_obj/lv_test_object_1.png -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_arc/lv_test_arc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_arc/lv_test_arc.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_arc/lv_test_arc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_arc/lv_test_arc.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_arc/lv_test_arc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_arc/lv_test_arc.mk -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_arc/lv_test_arc_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_arc/lv_test_arc_1.png -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_bar/lv_test_bar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_bar/lv_test_bar.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_bar/lv_test_bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_bar/lv_test_bar.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_bar/lv_test_bar.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_bar/lv_test_bar.mk -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_bar/lv_test_bar_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_bar/lv_test_bar_1.png -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_btn/lv_test_btn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_btn/lv_test_btn.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_btn/lv_test_btn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_btn/lv_test_btn.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_btn/lv_test_btn.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_btn/lv_test_btn.mk -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_btn/lv_test_btn_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_btn/lv_test_btn_1.png -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_btnm/lv_test_btnm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_btnm/lv_test_btnm.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_btnm/lv_test_btnm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_btnm/lv_test_btnm.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_btnm/lv_test_btnm.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_btnm/lv_test_btnm.mk -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_btnm/lv_test_btnm_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_btnm/lv_test_btnm_1.png -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_cb/lv_test_cb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_cb/lv_test_cb.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_cb/lv_test_cb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_cb/lv_test_cb.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_cb/lv_test_cb.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_cb/lv_test_cb.mk -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_cb/lv_test_cb_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_cb/lv_test_cb_1.png -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_chart/lv_test_chart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_chart/lv_test_chart.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_chart/lv_test_chart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_chart/lv_test_chart.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_chart/lv_test_chart.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_chart/lv_test_chart.mk -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_chart/lv_test_chart_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_chart/lv_test_chart_1.png -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_cont/lv_test_cont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_cont/lv_test_cont.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_cont/lv_test_cont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_cont/lv_test_cont.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_cont/lv_test_cont.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_cont/lv_test_cont.mk -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_cont/lv_test_cont_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_cont/lv_test_cont_1.png -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_cont/lv_test_cont_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_cont/lv_test_cont_2.png -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_ddlist/lv_test_ddlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_ddlist/lv_test_ddlist.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_ddlist/lv_test_ddlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_ddlist/lv_test_ddlist.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_ddlist/lv_test_ddlist.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_ddlist/lv_test_ddlist.mk -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_ddlist/lv_test_ddlist_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_ddlist/lv_test_ddlist_1.png -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_gauge/lv_test_gauge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_gauge/lv_test_gauge.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_gauge/lv_test_gauge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_gauge/lv_test_gauge.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_gauge/lv_test_gauge.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_gauge/lv_test_gauge.mk -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_gauge/lv_test_gauge_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_gauge/lv_test_gauge_1.png -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_img/flower_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_img/flower_icon.png -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_img/img_flower_icon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_img/img_flower_icon.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_img/lv_test_img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_img/lv_test_img.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_img/lv_test_img.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_img/lv_test_img.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_img/lv_test_img.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_img/lv_test_img.mk -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_img/lv_test_img_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_img/lv_test_img_1.png -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_1.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_2.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_3.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_4.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/lv_test_imgbtn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/lv_test_imgbtn.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/lv_test_imgbtn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/lv_test_imgbtn.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/lv_test_imgbtn.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/lv_test_imgbtn.mk -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/lv_test_imgbtn_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/lv_test_imgbtn_1.png -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_kb/lv_test_kb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_kb/lv_test_kb.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_kb/lv_test_kb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_kb/lv_test_kb.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_kb/lv_test_kb.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_kb/lv_test_kb.mk -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_kb/lv_test_kb_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_kb/lv_test_kb_1.png -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_kb/lv_test_kb_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_kb/lv_test_kb_2.png -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_label/lv_test_label.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_label/lv_test_label.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_label/lv_test_label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_label/lv_test_label.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_label/lv_test_label.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_label/lv_test_label.mk -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_label/lv_test_label_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_label/lv_test_label_1.png -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_label/lv_test_label_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_label/lv_test_label_2.png -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_label/lv_test_label_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_label/lv_test_label_3.png -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_label/lv_test_label_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_label/lv_test_label_4.png -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_led/lv_test_led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_led/lv_test_led.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_led/lv_test_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_led/lv_test_led.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_led/lv_test_led.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_led/lv_test_led.mk -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_led/lv_test_led_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_led/lv_test_led_1.png -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_line/lv_test_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_line/lv_test_line.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_line/lv_test_line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_line/lv_test_line.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_line/lv_test_line.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_line/lv_test_line.mk -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_line/lv_test_line_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_line/lv_test_line_1.png -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_list/lv_test_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_list/lv_test_list.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_list/lv_test_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_list/lv_test_list.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_list/lv_test_list.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_list/lv_test_list.mk -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_list/lv_test_list_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_list/lv_test_list_1.png -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_lmeter/lv_test_lmeter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_lmeter/lv_test_lmeter.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_lmeter/lv_test_lmeter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_lmeter/lv_test_lmeter.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_lmeter/lv_test_lmeter.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_lmeter/lv_test_lmeter.mk -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_lmeter/lv_test_lmeter_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_lmeter/lv_test_lmeter_1.png -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_mbox/lv_test_mbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_mbox/lv_test_mbox.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_mbox/lv_test_mbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_mbox/lv_test_mbox.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_mbox/lv_test_mbox.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_mbox/lv_test_mbox.mk -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_mbox/lv_test_mbox_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_mbox/lv_test_mbox_1.png -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_page/lv_test_page.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_page/lv_test_page.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_page/lv_test_page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_page/lv_test_page.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_page/lv_test_page.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_page/lv_test_page.mk -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_page/lv_test_page_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_page/lv_test_page_1.png -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_page/lv_test_page_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_page/lv_test_page_2.png -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_preload/lv_test_preload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_preload/lv_test_preload.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_preload/lv_test_preload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_preload/lv_test_preload.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_preload/lv_test_preload.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_preload/lv_test_preload.mk -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_preload/lv_test_preload_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_preload/lv_test_preload_1.png -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_roller/lv_test_roller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_roller/lv_test_roller.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_roller/lv_test_roller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_roller/lv_test_roller.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_roller/lv_test_roller.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_roller/lv_test_roller.mk -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_roller/lv_test_roller_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_roller/lv_test_roller_1.png -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_slider/lv_test_slider.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_slider/lv_test_slider.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_slider/lv_test_slider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_slider/lv_test_slider.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_slider/lv_test_slider.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_slider/lv_test_slider.mk -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_slider/lv_test_slider_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_slider/lv_test_slider_1.png -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_sw/lv_test_sw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_sw/lv_test_sw.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_sw/lv_test_sw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_sw/lv_test_sw.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_sw/lv_test_sw.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_sw/lv_test_sw.mk -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_sw/lv_test_sw_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_sw/lv_test_sw_1.png -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_ta/lv_test_ta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_ta/lv_test_ta.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_ta/lv_test_ta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_ta/lv_test_ta.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_ta/lv_test_ta.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_ta/lv_test_ta.mk -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_ta/lv_test_ta_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_ta/lv_test_ta_1.png -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_ta/lv_test_ta_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_ta/lv_test_ta_2.png -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_table/lv_test_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_table/lv_test_table.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_table/lv_test_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_table/lv_test_table.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_table/lv_test_table.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_table/lv_test_table.mk -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_table/lv_test_table_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_table/lv_test_table_1.png -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_table/lv_test_table_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_table/lv_test_table_2.png -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_tabview/lv_test_tabview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_tabview/lv_test_tabview.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_tabview/lv_test_tabview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_tabview/lv_test_tabview.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_tabview/lv_test_tabview.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_tabview/lv_test_tabview.mk -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_tabview/lv_test_tabview_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_tabview/lv_test_tabview_1.png -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_tileview/lv_test_tileview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_tileview/lv_test_tileview.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_tileview/lv_test_tileview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_tileview/lv_test_tileview.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_tileview/lv_test_tileview.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_tileview/lv_test_tileview.mk -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_tileview/lv_test_tileview_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_tileview/lv_test_tileview_1.gif -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_win/lv_test_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_win/lv_test_win.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_win/lv_test_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_win/lv_test_win.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_win/lv_test_win.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_win/lv_test_win.mk -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_win/lv_test_win_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_objx/lv_test_win/lv_test_win_1.png -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_stress/lv_test_stress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_stress/lv_test_stress.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_stress/lv_test_stress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_stress/lv_test_stress.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_stress/lv_test_stress.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_stress/lv_test_stress.mk -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_stress/lv_test_stress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_stress/lv_test_stress.png -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_theme/lv_test_theme.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_theme/lv_test_theme.mk -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_theme/lv_test_theme_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_theme/lv_test_theme_1.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_theme/lv_test_theme_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_theme/lv_test_theme_1.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_theme/lv_test_theme_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_theme/lv_test_theme_1.png -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_theme/lv_test_theme_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_theme/lv_test_theme_2.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_theme/lv_test_theme_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_theme/lv_test_theme_2.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tests/lv_test_theme/lv_test_theme_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tests/lv_test_theme/lv_test_theme_2.png -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tutorial/0_porting/lv_tutorial_porting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tutorial/0_porting/lv_tutorial_porting.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tutorial/0_porting/lv_tutorial_porting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tutorial/0_porting/lv_tutorial_porting.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tutorial/0_porting/lv_tutorial_porting.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tutorial/0_porting/lv_tutorial_porting.mk -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tutorial/10_keyboard/lv_tutorial_keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tutorial/10_keyboard/lv_tutorial_keyboard.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tutorial/10_keyboard/lv_tutorial_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tutorial/10_keyboard/lv_tutorial_keyboard.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tutorial/10_keyboard/lv_tutorial_keyboard.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tutorial/10_keyboard/lv_tutorial_keyboard.mk -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tutorial/1_hello_world/lv_tutorial_hello_world.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tutorial/1_hello_world/lv_tutorial_hello_world.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tutorial/1_hello_world/lv_tutorial_hello_world.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tutorial/1_hello_world/lv_tutorial_hello_world.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tutorial/1_hello_world/lv_tutorial_hello_world.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tutorial/1_hello_world/lv_tutorial_hello_world.mk -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tutorial/2_objects/lv_tutorial_objects.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tutorial/2_objects/lv_tutorial_objects.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tutorial/2_objects/lv_tutorial_objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tutorial/2_objects/lv_tutorial_objects.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tutorial/2_objects/lv_tutorial_objects.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tutorial/2_objects/lv_tutorial_objects.mk -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tutorial/3_styles/lv_tutorial_styles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tutorial/3_styles/lv_tutorial_styles.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tutorial/3_styles/lv_tutorial_styles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tutorial/3_styles/lv_tutorial_styles.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tutorial/3_styles/lv_tutorial_styles.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tutorial/3_styles/lv_tutorial_styles.mk -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tutorial/4_themes/lv_tutorial_themes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tutorial/4_themes/lv_tutorial_themes.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tutorial/4_themes/lv_tutorial_themes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tutorial/4_themes/lv_tutorial_themes.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tutorial/4_themes/lv_tutorial_themes.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tutorial/4_themes/lv_tutorial_themes.mk -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tutorial/5_antialiasing/apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tutorial/5_antialiasing/apple.png -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tutorial/5_antialiasing/apple_chroma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tutorial/5_antialiasing/apple_chroma.png -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tutorial/5_antialiasing/apple_icon_alpha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tutorial/5_antialiasing/apple_icon_alpha.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tutorial/5_antialiasing/apple_icon_chroma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tutorial/5_antialiasing/apple_icon_chroma.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tutorial/5_antialiasing/lv_tutorial_antialiasing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tutorial/5_antialiasing/lv_tutorial_antialiasing.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tutorial/5_antialiasing/lv_tutorial_antialiasing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tutorial/5_antialiasing/lv_tutorial_antialiasing.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tutorial/5_antialiasing/lv_tutorial_antialiasing.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tutorial/5_antialiasing/lv_tutorial_antialiasing.mk -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tutorial/6_images/blue_flower.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tutorial/6_images/blue_flower.jpg -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tutorial/6_images/blue_flower_16.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tutorial/6_images/blue_flower_16.bin -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tutorial/6_images/blue_flower_16_swap.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tutorial/6_images/blue_flower_16_swap.bin -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tutorial/6_images/blue_flower_32.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tutorial/6_images/blue_flower_32.bin -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tutorial/6_images/blue_flower_8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tutorial/6_images/blue_flower_8.bin -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tutorial/6_images/lv_tutorial_images.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tutorial/6_images/lv_tutorial_images.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tutorial/6_images/lv_tutorial_images.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tutorial/6_images/lv_tutorial_images.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tutorial/6_images/lv_tutorial_images.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tutorial/6_images/lv_tutorial_images.mk -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tutorial/6_images/red_flower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tutorial/6_images/red_flower.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tutorial/6_images/red_flower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tutorial/6_images/red_flower.png -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tutorial/7_fonts/arial_ascii_20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tutorial/7_fonts/arial_ascii_20.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tutorial/7_fonts/arial_cyrillic_20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tutorial/7_fonts/arial_cyrillic_20.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tutorial/7_fonts/arial_math_20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tutorial/7_fonts/arial_math_20.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tutorial/7_fonts/lv_tutorial_fonts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tutorial/7_fonts/lv_tutorial_fonts.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tutorial/7_fonts/lv_tutorial_fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tutorial/7_fonts/lv_tutorial_fonts.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tutorial/7_fonts/lv_tutorial_fonts.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tutorial/7_fonts/lv_tutorial_fonts.mk -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tutorial/8_animations/lv_tutorial_animations.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tutorial/8_animations/lv_tutorial_animations.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tutorial/8_animations/lv_tutorial_animations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tutorial/8_animations/lv_tutorial_animations.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tutorial/8_animations/lv_tutorial_animations.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tutorial/8_animations/lv_tutorial_animations.mk -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tutorial/9_responsive/lv_tutorial_responsive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tutorial/9_responsive/lv_tutorial_responsive.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tutorial/9_responsive/lv_tutorial_responsive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tutorial/9_responsive/lv_tutorial_responsive.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_examples/lv_tutorial/9_responsive/lv_tutorial_responsive.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_examples/lv_tutorial/9_responsive/lv_tutorial_responsive.mk -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_fonts/lv_font_builtin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_fonts/lv_font_builtin.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_fonts/lv_font_builtin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_fonts/lv_font_builtin.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_fonts/lv_font_dejavu_10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_fonts/lv_font_dejavu_10.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_fonts/lv_font_dejavu_10_cyrillic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_fonts/lv_font_dejavu_10_cyrillic.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_fonts/lv_font_dejavu_10_latin_sup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_fonts/lv_font_dejavu_10_latin_sup.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_fonts/lv_font_dejavu_20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_fonts/lv_font_dejavu_20.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_fonts/lv_font_dejavu_20_cyrillic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_fonts/lv_font_dejavu_20_cyrillic.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_fonts/lv_font_dejavu_20_latin_sup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_fonts/lv_font_dejavu_20_latin_sup.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_fonts/lv_font_dejavu_30.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_fonts/lv_font_dejavu_30.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_fonts/lv_font_dejavu_30_cyrillic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_fonts/lv_font_dejavu_30_cyrillic.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_fonts/lv_font_dejavu_30_latin_sup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_fonts/lv_font_dejavu_30_latin_sup.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_fonts/lv_font_dejavu_40.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_fonts/lv_font_dejavu_40.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_fonts/lv_font_dejavu_40_cyrillic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_fonts/lv_font_dejavu_40_cyrillic.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_fonts/lv_font_dejavu_40_latin_sup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_fonts/lv_font_dejavu_40_latin_sup.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_fonts/lv_font_monospace_8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_fonts/lv_font_monospace_8.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_fonts/lv_font_symbol_10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_fonts/lv_font_symbol_10.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_fonts/lv_font_symbol_20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_fonts/lv_font_symbol_20.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_fonts/lv_font_symbol_30.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_fonts/lv_font_symbol_30.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_fonts/lv_font_symbol_40.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_fonts/lv_font_symbol_40.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_fonts/lv_fonts.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_fonts/lv_fonts.mk -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_hal/lv_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_hal/lv_hal.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_hal/lv_hal.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_hal/lv_hal.mk -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_hal/lv_hal_disp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_hal/lv_hal_disp.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_hal/lv_hal_disp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_hal/lv_hal_disp.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_hal/lv_hal_indev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_hal/lv_hal_indev.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_hal/lv_hal_indev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_hal/lv_hal_indev.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_hal/lv_hal_tick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_hal/lv_hal_tick.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_hal/lv_hal_tick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_hal/lv_hal_tick.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_misc/lv_anim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_misc/lv_anim.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_misc/lv_anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_misc/lv_anim.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_misc/lv_area.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_misc/lv_area.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_misc/lv_area.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_misc/lv_area.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_misc/lv_circ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_misc/lv_circ.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_misc/lv_circ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_misc/lv_circ.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_misc/lv_color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_misc/lv_color.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_misc/lv_color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_misc/lv_color.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_misc/lv_font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_misc/lv_font.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_misc/lv_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_misc/lv_font.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_misc/lv_fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_misc/lv_fs.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_misc/lv_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_misc/lv_fs.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_misc/lv_ll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_misc/lv_ll.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_misc/lv_ll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_misc/lv_ll.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_misc/lv_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_misc/lv_log.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_misc/lv_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_misc/lv_log.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_misc/lv_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_misc/lv_math.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_misc/lv_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_misc/lv_math.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_misc/lv_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_misc/lv_mem.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_misc/lv_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_misc/lv_mem.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_misc/lv_misc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_misc/lv_misc.mk -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_misc/lv_symbol_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_misc/lv_symbol_def.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_misc/lv_task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_misc/lv_task.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_misc/lv_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_misc/lv_task.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_misc/lv_templ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_misc/lv_templ.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_misc/lv_templ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_misc/lv_templ.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_misc/lv_txt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_misc/lv_txt.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_misc/lv_txt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_misc/lv_txt.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_misc/lv_ufs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_misc/lv_ufs.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_misc/lv_ufs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_misc/lv_ufs.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_objx/lv_arc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_objx/lv_arc.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_objx/lv_arc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_objx/lv_arc.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_objx/lv_bar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_objx/lv_bar.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_objx/lv_bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_objx/lv_bar.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_objx/lv_btn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_objx/lv_btn.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_objx/lv_btn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_objx/lv_btn.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_objx/lv_btnm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_objx/lv_btnm.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_objx/lv_btnm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_objx/lv_btnm.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_objx/lv_calendar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_objx/lv_calendar.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_objx/lv_calendar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_objx/lv_calendar.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_objx/lv_cb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_objx/lv_cb.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_objx/lv_cb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_objx/lv_cb.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_objx/lv_chart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_objx/lv_chart.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_objx/lv_chart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_objx/lv_chart.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_objx/lv_cont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_objx/lv_cont.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_objx/lv_cont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_objx/lv_cont.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_objx/lv_ddlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_objx/lv_ddlist.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_objx/lv_ddlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_objx/lv_ddlist.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_objx/lv_gauge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_objx/lv_gauge.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_objx/lv_gauge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_objx/lv_gauge.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_objx/lv_img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_objx/lv_img.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_objx/lv_img.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_objx/lv_img.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_objx/lv_imgbtn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_objx/lv_imgbtn.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_objx/lv_imgbtn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_objx/lv_imgbtn.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_objx/lv_kb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_objx/lv_kb.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_objx/lv_kb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_objx/lv_kb.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_objx/lv_label.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_objx/lv_label.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_objx/lv_label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_objx/lv_label.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_objx/lv_led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_objx/lv_led.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_objx/lv_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_objx/lv_led.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_objx/lv_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_objx/lv_line.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_objx/lv_line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_objx/lv_line.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_objx/lv_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_objx/lv_list.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_objx/lv_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_objx/lv_list.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_objx/lv_lmeter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_objx/lv_lmeter.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_objx/lv_lmeter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_objx/lv_lmeter.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_objx/lv_mbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_objx/lv_mbox.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_objx/lv_mbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_objx/lv_mbox.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_objx/lv_objx.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_objx/lv_objx.mk -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_objx/lv_objx_templ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_objx/lv_objx_templ.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_objx/lv_objx_templ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_objx/lv_objx_templ.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_objx/lv_page.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_objx/lv_page.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_objx/lv_page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_objx/lv_page.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_objx/lv_preload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_objx/lv_preload.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_objx/lv_preload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_objx/lv_preload.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_objx/lv_roller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_objx/lv_roller.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_objx/lv_roller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_objx/lv_roller.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_objx/lv_slider.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_objx/lv_slider.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_objx/lv_slider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_objx/lv_slider.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_objx/lv_sw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_objx/lv_sw.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_objx/lv_sw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_objx/lv_sw.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_objx/lv_ta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_objx/lv_ta.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_objx/lv_ta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_objx/lv_ta.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_objx/lv_tabview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_objx/lv_tabview.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_objx/lv_tabview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_objx/lv_tabview.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_objx/lv_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_objx/lv_win.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_objx/lv_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_objx/lv_win.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_themes/lv_theme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_themes/lv_theme.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_themes/lv_theme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_themes/lv_theme.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_themes/lv_theme_alien.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_themes/lv_theme_alien.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_themes/lv_theme_alien.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_themes/lv_theme_alien.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_themes/lv_theme_default.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_themes/lv_theme_default.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_themes/lv_theme_default.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_themes/lv_theme_default.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_themes/lv_theme_material.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_themes/lv_theme_material.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_themes/lv_theme_material.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_themes/lv_theme_material.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_themes/lv_theme_mono.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_themes/lv_theme_mono.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_themes/lv_theme_mono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_themes/lv_theme_mono.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_themes/lv_theme_nemo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_themes/lv_theme_nemo.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_themes/lv_theme_nemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_themes/lv_theme_nemo.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_themes/lv_theme_night.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_themes/lv_theme_night.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_themes/lv_theme_night.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_themes/lv_theme_night.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_themes/lv_theme_templ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_themes/lv_theme_templ.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_themes/lv_theme_templ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_themes/lv_theme_templ.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_themes/lv_theme_zen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_themes/lv_theme_zen.c -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_themes/lv_theme_zen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_themes/lv_theme_zen.h -------------------------------------------------------------------------------- /src/lvgl/lvgl/lv_themes/lv_themes.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lv_themes/lv_themes.mk -------------------------------------------------------------------------------- /src/lvgl/lvgl/lvgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/lvgl/lvgl.h -------------------------------------------------------------------------------- /src/lvgl/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/main.c -------------------------------------------------------------------------------- /src/lvgl/ns2009/mean.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/ns2009/mean.c -------------------------------------------------------------------------------- /src/lvgl/ns2009/mean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/ns2009/mean.h -------------------------------------------------------------------------------- /src/lvgl/ns2009/median.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/ns2009/median.c -------------------------------------------------------------------------------- /src/lvgl/ns2009/median.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/ns2009/median.h -------------------------------------------------------------------------------- /src/lvgl/ns2009/ns2009.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/ns2009/ns2009.c -------------------------------------------------------------------------------- /src/lvgl/ns2009/ns2009.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/ns2009/ns2009.h -------------------------------------------------------------------------------- /src/lvgl/ns2009/tscal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/ns2009/tscal.c -------------------------------------------------------------------------------- /src/lvgl/ns2009/tscal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/ns2009/tscal.h -------------------------------------------------------------------------------- /src/lvgl/ns2009/tsfilter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/ns2009/tsfilter.c -------------------------------------------------------------------------------- /src/lvgl/ns2009/tsfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/lvgl/ns2009/tsfilter.h -------------------------------------------------------------------------------- /src/mic_play/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/mic_play/README.md -------------------------------------------------------------------------------- /src/mic_play/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/mic_play/main.c -------------------------------------------------------------------------------- /src/mic_play/mic_play.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/mic_play/mic_play.bin -------------------------------------------------------------------------------- /src/mnist/board_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/mnist/board_config.h -------------------------------------------------------------------------------- /src/mnist/burn_model.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/mnist/burn_model.sh -------------------------------------------------------------------------------- /src/mnist/flash-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/mnist/flash-list.json -------------------------------------------------------------------------------- /src/mnist/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/mnist/font.h -------------------------------------------------------------------------------- /src/mnist/incbin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/mnist/incbin.h -------------------------------------------------------------------------------- /src/mnist/lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/mnist/lcd.c -------------------------------------------------------------------------------- /src/mnist/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/mnist/lcd.h -------------------------------------------------------------------------------- /src/mnist/m.kmodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/mnist/m.kmodel -------------------------------------------------------------------------------- /src/mnist/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/mnist/main.c -------------------------------------------------------------------------------- /src/mnist/mnist.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/mnist/mnist.bin -------------------------------------------------------------------------------- /src/mnist/nt35310.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/mnist/nt35310.c -------------------------------------------------------------------------------- /src/mnist/nt35310.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/mnist/nt35310.h -------------------------------------------------------------------------------- /src/mnist/ov2640.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/mnist/ov2640.c -------------------------------------------------------------------------------- /src/mnist/ov2640.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/mnist/ov2640.h -------------------------------------------------------------------------------- /src/mnist/pack_model.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/mnist/pack_model.sh -------------------------------------------------------------------------------- /src/mnist/w25qxx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/mnist/w25qxx.c -------------------------------------------------------------------------------- /src/mnist/w25qxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/mnist/w25qxx.h -------------------------------------------------------------------------------- /src/sd_card/board_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/sd_card/board_config.h -------------------------------------------------------------------------------- /src/sd_card/ccsbcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/sd_card/ccsbcs.c -------------------------------------------------------------------------------- /src/sd_card/diskio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/sd_card/diskio.c -------------------------------------------------------------------------------- /src/sd_card/diskio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/sd_card/diskio.h -------------------------------------------------------------------------------- /src/sd_card/ff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/sd_card/ff.c -------------------------------------------------------------------------------- /src/sd_card/ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/sd_card/ff.h -------------------------------------------------------------------------------- /src/sd_card/ffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/sd_card/ffconf.h -------------------------------------------------------------------------------- /src/sd_card/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/sd_card/integer.h -------------------------------------------------------------------------------- /src/sd_card/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/sd_card/main.c -------------------------------------------------------------------------------- /src/sd_card/sd_card.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/sd_card/sd_card.bin -------------------------------------------------------------------------------- /src/sd_card/sdcard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/sd_card/sdcard.c -------------------------------------------------------------------------------- /src/sd_card/sdcard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/sd_card/sdcard.h -------------------------------------------------------------------------------- /src/sd_card/wav_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/sd_card/wav_decode.c -------------------------------------------------------------------------------- /src/sd_card/wav_decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/sd_card/wav_decode.h -------------------------------------------------------------------------------- /src/wav_test/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/wav_test/main.c -------------------------------------------------------------------------------- /src/wav_test/wav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/wav_test/wav.h -------------------------------------------------------------------------------- /src/wav_test/wav_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/wav_test/wav_decode.c -------------------------------------------------------------------------------- /src/wav_test/wav_decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/wav_test/wav_decode.h -------------------------------------------------------------------------------- /src/wav_test/wav_test.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/LicheeDan_K210_examples/HEAD/src/wav_test/wav_test.bin --------------------------------------------------------------------------------