├── .gitignore ├── 1_base_project ├── system_log │ ├── .vscode │ │ └── settings.json │ ├── CMakeLists.txt │ ├── Makefile │ ├── README.md │ ├── main │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── main.c │ │ └── wl_log.h │ └── sdkconfig ├── template-app │ ├── .devcontainer │ │ ├── Dockerfile │ │ └── devcontainer.json │ ├── .gitignore │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── launch.json │ │ ├── settings.json │ │ └── tasks.json │ ├── CMakeLists.txt │ ├── README.md │ └── main │ │ ├── CMakeLists.txt │ │ └── main.c └── wireless_link_project │ ├── .vscode │ └── settings.json │ ├── CMakeLists.txt │ ├── Makefile │ ├── README.md │ ├── main │ ├── CMakeLists.txt │ ├── component.mk │ └── main.c │ └── sdkconfig ├── 2_peripheral ├── 1_led │ ├── .devcontainer │ │ ├── Dockerfile │ │ └── devcontainer.json │ ├── .gitignore │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── launch.json │ │ ├── settings.json │ │ └── tasks.json │ ├── CMakeLists.txt │ ├── README.md │ └── main │ │ ├── CMakeLists.txt │ │ └── main.c ├── 2_uart_console │ ├── .devcontainer │ │ ├── Dockerfile │ │ └── devcontainer.json │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── launch.json │ │ ├── settings.json │ │ └── tasks.json │ ├── CMakeLists.txt │ ├── README.md │ ├── components │ │ └── bsp │ │ │ ├── CMakeLists.txt │ │ │ ├── bsp_led.c │ │ │ ├── bsp_led.h │ │ │ ├── bsp_misc.c │ │ │ ├── bsp_misc.h │ │ │ ├── bsp_wrapper.h │ │ │ └── component.mk │ ├── main │ │ ├── CMakeLists.txt │ │ └── main.c │ └── sdkconfig ├── 3_uart_select │ ├── .devcontainer │ │ ├── Dockerfile │ │ └── devcontainer.json │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── launch.json │ │ ├── settings.json │ │ └── tasks.json │ ├── CMakeLists.txt │ ├── README.md │ ├── components │ │ └── bsp │ │ │ ├── CMakeLists.txt │ │ │ ├── bsp_led.c │ │ │ ├── bsp_led.h │ │ │ ├── bsp_misc.c │ │ │ ├── bsp_misc.h │ │ │ ├── bsp_wrapper.h │ │ │ └── component.mk │ ├── main │ │ ├── CMakeLists.txt │ │ └── main.c │ └── sdkconfig └── 4_pc_control_led │ ├── .devcontainer │ ├── Dockerfile │ └── devcontainer.json │ ├── .vscode │ ├── c_cpp_properties.json │ ├── launch.json │ └── settings.json │ ├── CMakeLists.txt │ ├── README.md │ ├── main │ ├── CMakeLists.txt │ └── uart_debug_json.c │ ├── sdkconfig │ ├── sdkconfig.old │ └── tool │ └── led_control │ ├── .vs │ └── led_control │ │ └── v16 │ │ └── .suo │ ├── led_control.sln │ └── led_control │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Newtonsoft.Json.dll │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── Resources │ ├── 串口关闭.png │ ├── 串口打开.png │ ├── 发送.png │ ├── 蓝灯亮.png │ ├── 蓝灯灭.png │ └── 购买.png │ ├── led_control.csproj │ ├── obj │ └── Debug │ │ ├── .NETFramework,Version=v4.0.AssemblyAttributes.cs │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── TempPE │ │ └── Properties.Resources.Designer.cs.dll │ │ └── led_control.csproj.FileListAbsolute.txt │ └── 硬件.ico ├── 3_lvgl ├── 1_lvgl8_2_porting │ ├── .devcontainer │ │ ├── Dockerfile │ │ └── devcontainer.json │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── launch.json │ │ ├── settings.json │ │ └── tasks.json │ ├── CMakeLists.txt │ ├── README.md │ ├── components │ │ ├── lvgl │ │ │ ├── .codecov.yml │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── LICENCE.txt │ │ │ ├── README.md │ │ │ ├── README_zh.md │ │ │ ├── SConscript │ │ │ ├── component.mk │ │ │ ├── demos │ │ │ │ ├── README.md │ │ │ │ ├── benchmark │ │ │ │ │ ├── README.md │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── img_benchmark_cogwheel_alpha16.c │ │ │ │ │ │ ├── img_benchmark_cogwheel_argb.c │ │ │ │ │ │ ├── img_benchmark_cogwheel_chroma_keyed.c │ │ │ │ │ │ ├── img_benchmark_cogwheel_indexed16.c │ │ │ │ │ │ ├── img_benchmark_cogwheel_rgb.c │ │ │ │ │ │ ├── img_cogwheel_argb.png │ │ │ │ │ │ ├── img_cogwheel_chroma_keyed.png │ │ │ │ │ │ ├── img_cogwheel_indexed16.png │ │ │ │ │ │ ├── img_cogwheel_rgb.png │ │ │ │ │ │ ├── lv_font_bechmark_montserrat_12_compr_az.c.c │ │ │ │ │ │ ├── lv_font_bechmark_montserrat_16_compr_az.c.c │ │ │ │ │ │ └── lv_font_bechmark_montserrat_28_compr_az.c.c │ │ │ │ │ ├── lv_demo_benchmark.c │ │ │ │ │ ├── lv_demo_benchmark.h │ │ │ │ │ ├── screenshot1.png │ │ │ │ │ └── screenshot2.png │ │ │ │ ├── keypad_encoder │ │ │ │ │ ├── README.md │ │ │ │ │ ├── lv_demo_keypad_encoder.c │ │ │ │ │ ├── lv_demo_keypad_encoder.h │ │ │ │ │ ├── screenshot1.gif │ │ │ │ │ └── screenshot1.png │ │ │ │ ├── lv_demos.h │ │ │ │ ├── lv_demos.mk │ │ │ │ ├── music │ │ │ │ │ ├── README.md │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── img_lv_demo_music_btn_corner_large.c │ │ │ │ │ │ ├── img_lv_demo_music_btn_list_pause.c │ │ │ │ │ │ ├── img_lv_demo_music_btn_list_pause_large.c │ │ │ │ │ │ ├── img_lv_demo_music_btn_list_play.c │ │ │ │ │ │ ├── img_lv_demo_music_btn_list_play_large.c │ │ │ │ │ │ ├── img_lv_demo_music_btn_loop.c │ │ │ │ │ │ ├── img_lv_demo_music_btn_loop_large.c │ │ │ │ │ │ ├── img_lv_demo_music_btn_next.c │ │ │ │ │ │ ├── img_lv_demo_music_btn_next_large.c │ │ │ │ │ │ ├── img_lv_demo_music_btn_pause.c │ │ │ │ │ │ ├── img_lv_demo_music_btn_pause_large.c │ │ │ │ │ │ ├── img_lv_demo_music_btn_play.c │ │ │ │ │ │ ├── img_lv_demo_music_btn_play_large.c │ │ │ │ │ │ ├── img_lv_demo_music_btn_prev.c │ │ │ │ │ │ ├── img_lv_demo_music_btn_prev_large.c │ │ │ │ │ │ ├── img_lv_demo_music_btn_rnd.c │ │ │ │ │ │ ├── img_lv_demo_music_btn_rnd_large.c │ │ │ │ │ │ ├── img_lv_demo_music_corner_left.c │ │ │ │ │ │ ├── img_lv_demo_music_corner_left_large.c │ │ │ │ │ │ ├── img_lv_demo_music_corner_right.c │ │ │ │ │ │ ├── img_lv_demo_music_corner_right_large.c │ │ │ │ │ │ ├── img_lv_demo_music_cover_1.c │ │ │ │ │ │ ├── img_lv_demo_music_cover_1_large.c │ │ │ │ │ │ ├── img_lv_demo_music_cover_2.c │ │ │ │ │ │ ├── img_lv_demo_music_cover_2_large.c │ │ │ │ │ │ ├── img_lv_demo_music_cover_3.c │ │ │ │ │ │ ├── img_lv_demo_music_cover_3_large.c │ │ │ │ │ │ ├── img_lv_demo_music_icon_1.c │ │ │ │ │ │ ├── img_lv_demo_music_icon_1_large.c │ │ │ │ │ │ ├── img_lv_demo_music_icon_2.c │ │ │ │ │ │ ├── img_lv_demo_music_icon_2_large.c │ │ │ │ │ │ ├── img_lv_demo_music_icon_3.c │ │ │ │ │ │ ├── img_lv_demo_music_icon_3_large.c │ │ │ │ │ │ ├── img_lv_demo_music_icon_4.c │ │ │ │ │ │ ├── img_lv_demo_music_icon_4_large.c │ │ │ │ │ │ ├── img_lv_demo_music_list_border.c │ │ │ │ │ │ ├── img_lv_demo_music_list_border_large.c │ │ │ │ │ │ ├── img_lv_demo_music_logo.c │ │ │ │ │ │ ├── img_lv_demo_music_slider_knob.c │ │ │ │ │ │ ├── img_lv_demo_music_slider_knob_large.c │ │ │ │ │ │ ├── img_lv_demo_music_wave_bottom.c │ │ │ │ │ │ ├── img_lv_demo_music_wave_bottom_large.c │ │ │ │ │ │ ├── img_lv_demo_music_wave_top.c │ │ │ │ │ │ ├── img_lv_demo_music_wave_top_large.c │ │ │ │ │ │ ├── spectrum.py │ │ │ │ │ │ ├── spectrum_1.h │ │ │ │ │ │ ├── spectrum_2.h │ │ │ │ │ │ └── spectrum_3.h │ │ │ │ │ ├── lv_demo_music.c │ │ │ │ │ ├── lv_demo_music.h │ │ │ │ │ ├── lv_demo_music_list.c │ │ │ │ │ ├── lv_demo_music_list.h │ │ │ │ │ ├── lv_demo_music_main.c │ │ │ │ │ ├── lv_demo_music_main.h │ │ │ │ │ └── screenshot1.gif │ │ │ │ ├── stress │ │ │ │ │ ├── README.md │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── lv_font_montserrat_12_compr_az.c │ │ │ │ │ │ ├── lv_font_montserrat_16_compr_az.c │ │ │ │ │ │ └── lv_font_montserrat_28_compr_az.c │ │ │ │ │ ├── lv_demo_stress.c │ │ │ │ │ ├── lv_demo_stress.h │ │ │ │ │ ├── screenshot1.gif │ │ │ │ │ └── screenshot1.png │ │ │ │ └── widgets │ │ │ │ │ ├── assets │ │ │ │ │ ├── avatar.png │ │ │ │ │ ├── clothes.png │ │ │ │ │ ├── img_clothes.c │ │ │ │ │ ├── img_demo_widgets_avatar.c │ │ │ │ │ ├── img_lvgl_logo.c │ │ │ │ │ └── lvgl_logo.png │ │ │ │ │ ├── lv_demo_widgets.c │ │ │ │ │ ├── lv_demo_widgets.h │ │ │ │ │ ├── lv_demo_widgets.py │ │ │ │ │ ├── screenshot1.gif │ │ │ │ │ └── screenshot1.png │ │ │ ├── docs │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ │ ├── CODING_STYLE.md │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── ROADMAP.md │ │ │ │ ├── _ext │ │ │ │ │ └── lv_example.py │ │ │ │ ├── _static │ │ │ │ │ ├── css │ │ │ │ │ │ ├── custom.css │ │ │ │ │ │ └── fontawesome.min.css │ │ │ │ │ └── img │ │ │ │ │ │ ├── home_1.png │ │ │ │ │ │ ├── home_2.png │ │ │ │ │ │ ├── home_3.png │ │ │ │ │ │ ├── home_4.png │ │ │ │ │ │ ├── home_5.png │ │ │ │ │ │ ├── home_6.png │ │ │ │ │ │ └── home_banner.jpg │ │ │ │ ├── _templates │ │ │ │ │ ├── layout.html │ │ │ │ │ └── page.html │ │ │ │ ├── build.py │ │ │ │ ├── conf.py │ │ │ │ ├── example_list.py │ │ │ │ ├── favicon.png │ │ │ │ ├── get-started │ │ │ │ │ ├── arduino.md │ │ │ │ │ ├── cmake.md │ │ │ │ │ ├── espressif.md │ │ │ │ │ ├── index.md │ │ │ │ │ ├── micropython.md │ │ │ │ │ ├── nuttx.md │ │ │ │ │ ├── nxp.md │ │ │ │ │ ├── pc-simulator.md │ │ │ │ │ ├── quick-overview.md │ │ │ │ │ ├── rt-thread.md │ │ │ │ │ ├── stm32.md │ │ │ │ │ └── tasmota-berry.md │ │ │ │ ├── header.rst │ │ │ │ ├── index.md │ │ │ │ ├── intro │ │ │ │ │ └── index.md │ │ │ │ ├── layouts │ │ │ │ │ ├── flex.md │ │ │ │ │ ├── grid.md │ │ │ │ │ └── index.md │ │ │ │ ├── libs │ │ │ │ │ ├── bmp.md │ │ │ │ │ ├── ffmpeg.md │ │ │ │ │ ├── freetype.md │ │ │ │ │ ├── fsdrv.md │ │ │ │ │ ├── gif.md │ │ │ │ │ ├── index.md │ │ │ │ │ ├── png.md │ │ │ │ │ ├── qrcode.md │ │ │ │ │ ├── rlottie.md │ │ │ │ │ └── sjpg.md │ │ │ │ ├── logo_lvgl.png │ │ │ │ ├── misc │ │ │ │ │ ├── align.png │ │ │ │ │ ├── anim-timeline.png │ │ │ │ │ ├── bidi.png │ │ │ │ │ ├── boxmodel.png │ │ │ │ │ ├── btn_example.png │ │ │ │ │ ├── button_style_example.gif │ │ │ │ │ ├── button_style_example.png │ │ │ │ │ ├── codeblocks.jpg │ │ │ │ │ ├── eclipse.jpg │ │ │ │ │ ├── layers.png │ │ │ │ │ ├── par_child1.png │ │ │ │ │ ├── par_child2.png │ │ │ │ │ ├── par_child3.png │ │ │ │ │ ├── platformio.jpg │ │ │ │ │ ├── qtcreator.jpg │ │ │ │ │ ├── simple_button_example.gif │ │ │ │ │ ├── simple_button_example.png │ │ │ │ │ ├── symbols.png │ │ │ │ │ ├── sys.png │ │ │ │ │ └── visualstudio.jpg │ │ │ │ ├── others │ │ │ │ │ ├── gridnav.md │ │ │ │ │ ├── index.md │ │ │ │ │ ├── monkey.md │ │ │ │ │ └── snapshot.md │ │ │ │ ├── overview │ │ │ │ │ ├── animation.md │ │ │ │ │ ├── color.md │ │ │ │ │ ├── coords.md │ │ │ │ │ ├── display.md │ │ │ │ │ ├── drawing.md │ │ │ │ │ ├── event.md │ │ │ │ │ ├── file-system.md │ │ │ │ │ ├── font.md │ │ │ │ │ ├── image.md │ │ │ │ │ ├── indev.md │ │ │ │ │ ├── index.md │ │ │ │ │ ├── layer.md │ │ │ │ │ ├── new_widget.md │ │ │ │ │ ├── object.md │ │ │ │ │ ├── scroll.md │ │ │ │ │ ├── style-props.md │ │ │ │ │ ├── style.md │ │ │ │ │ └── timer.md │ │ │ │ ├── porting │ │ │ │ │ ├── display.md │ │ │ │ │ ├── gpu.md │ │ │ │ │ ├── indev.md │ │ │ │ │ ├── index.md │ │ │ │ │ ├── log.md │ │ │ │ │ ├── os.md │ │ │ │ │ ├── project.md │ │ │ │ │ ├── sleep.md │ │ │ │ │ ├── task-handler.md │ │ │ │ │ └── tick.md │ │ │ │ ├── requirements.txt │ │ │ │ └── widgets │ │ │ │ │ ├── core │ │ │ │ │ ├── arc.md │ │ │ │ │ ├── bar.md │ │ │ │ │ ├── btn.md │ │ │ │ │ ├── btnmatrix.md │ │ │ │ │ ├── canvas.md │ │ │ │ │ ├── checkbox.md │ │ │ │ │ ├── dropdown.md │ │ │ │ │ ├── img.md │ │ │ │ │ ├── index.md │ │ │ │ │ ├── label.md │ │ │ │ │ ├── line.md │ │ │ │ │ ├── roller.md │ │ │ │ │ ├── slider.md │ │ │ │ │ ├── switch.md │ │ │ │ │ ├── table.md │ │ │ │ │ └── textarea.md │ │ │ │ │ ├── extra │ │ │ │ │ ├── animimg.md │ │ │ │ │ ├── calendar.md │ │ │ │ │ ├── chart.md │ │ │ │ │ ├── colorwheel.md │ │ │ │ │ ├── imgbtn.md │ │ │ │ │ ├── index.md │ │ │ │ │ ├── keyboard.md │ │ │ │ │ ├── led.md │ │ │ │ │ ├── list.md │ │ │ │ │ ├── menu.md │ │ │ │ │ ├── meter.md │ │ │ │ │ ├── msgbox.md │ │ │ │ │ ├── span.md │ │ │ │ │ ├── spinbox.md │ │ │ │ │ ├── spinner.md │ │ │ │ │ ├── tabview.md │ │ │ │ │ ├── tileview.md │ │ │ │ │ └── win.md │ │ │ │ │ ├── index.md │ │ │ │ │ └── obj.md │ │ │ ├── env_support │ │ │ │ ├── cmake │ │ │ │ │ ├── custom.cmake │ │ │ │ │ ├── esp.cmake │ │ │ │ │ ├── micropython.cmake │ │ │ │ │ └── zephyr.cmake │ │ │ │ ├── cmsis-pack │ │ │ │ │ ├── LVGL.lvgl.1.0.0.pack │ │ │ │ │ ├── LVGL.lvgl.pdsc │ │ │ │ │ ├── README.md │ │ │ │ │ ├── gen_pack.sh │ │ │ │ │ ├── lv_cmsis_pack.txt │ │ │ │ │ └── lv_conf_cmsis.h │ │ │ │ ├── rt-thread │ │ │ │ │ ├── SConscript │ │ │ │ │ ├── lv_rt_thread_conf.h │ │ │ │ │ └── lv_rt_thread_port.c │ │ │ │ └── zephyr │ │ │ │ │ └── module.yml │ │ │ ├── examples │ │ │ │ ├── anim │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_anim.h │ │ │ │ │ ├── lv_example_anim_1.c │ │ │ │ │ ├── lv_example_anim_1.py │ │ │ │ │ ├── lv_example_anim_2.c │ │ │ │ │ ├── lv_example_anim_2.py │ │ │ │ │ ├── lv_example_anim_3.c │ │ │ │ │ ├── lv_example_anim_3.py │ │ │ │ │ ├── lv_example_anim_timeline_1.c │ │ │ │ │ └── lv_example_anim_timeline_1.py │ │ │ │ ├── arduino │ │ │ │ │ └── LVGL_Arduino │ │ │ │ │ │ └── LVGL_Arduino.ino │ │ │ │ ├── assets │ │ │ │ │ ├── animimg001.c │ │ │ │ │ ├── animimg001.png │ │ │ │ │ ├── animimg002.c │ │ │ │ │ ├── animimg002.png │ │ │ │ │ ├── animimg003.c │ │ │ │ │ ├── animimg003.png │ │ │ │ │ ├── caret_down.png │ │ │ │ │ ├── font │ │ │ │ │ │ ├── lv_font_simsun_16_cjk.fnt │ │ │ │ │ │ ├── montserrat-16.fnt │ │ │ │ │ │ └── montserrat-22.fnt │ │ │ │ │ ├── img_caret_down.c │ │ │ │ │ ├── img_caret_down.png │ │ │ │ │ ├── img_cogwheel_alpha16.c │ │ │ │ │ ├── img_cogwheel_argb.c │ │ │ │ │ ├── img_cogwheel_argb.png │ │ │ │ │ ├── img_cogwheel_chroma_keyed.c │ │ │ │ │ ├── img_cogwheel_chroma_keyed.png │ │ │ │ │ ├── img_cogwheel_indexed16.c │ │ │ │ │ ├── img_cogwheel_indexed16.png │ │ │ │ │ ├── img_cogwheel_rgb.c │ │ │ │ │ ├── img_cogwheel_rgb.png │ │ │ │ │ ├── img_hand.c │ │ │ │ │ ├── img_hand_hour.png │ │ │ │ │ ├── img_hand_min.png │ │ │ │ │ ├── img_skew_strip.c │ │ │ │ │ ├── img_skew_strip.png │ │ │ │ │ ├── img_skew_strip_80x20_argb8888.fnt │ │ │ │ │ ├── img_star.c │ │ │ │ │ ├── img_star.png │ │ │ │ │ ├── img_strip.png │ │ │ │ │ ├── imgbtn_left.c │ │ │ │ │ ├── imgbtn_left.png │ │ │ │ │ ├── imgbtn_mid.c │ │ │ │ │ ├── imgbtn_mid.png │ │ │ │ │ ├── imgbtn_right.c │ │ │ │ │ └── imgbtn_right.png │ │ │ │ ├── event │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_event.h │ │ │ │ │ ├── lv_example_event_1.c │ │ │ │ │ ├── lv_example_event_1.py │ │ │ │ │ ├── lv_example_event_2.c │ │ │ │ │ ├── lv_example_event_2.py │ │ │ │ │ ├── lv_example_event_3.c │ │ │ │ │ ├── lv_example_event_3.py │ │ │ │ │ └── lv_example_event_4.c │ │ │ │ ├── examples.mk │ │ │ │ ├── get_started │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_get_started.h │ │ │ │ │ ├── lv_example_get_started_1.c │ │ │ │ │ ├── lv_example_get_started_1.py │ │ │ │ │ ├── lv_example_get_started_2.c │ │ │ │ │ ├── lv_example_get_started_2.py │ │ │ │ │ ├── lv_example_get_started_3.c │ │ │ │ │ └── lv_example_get_started_3.py │ │ │ │ ├── header.py │ │ │ │ ├── layouts │ │ │ │ │ ├── flex │ │ │ │ │ │ ├── index.rst │ │ │ │ │ │ ├── lv_example_flex.h │ │ │ │ │ │ ├── lv_example_flex_1.c │ │ │ │ │ │ ├── lv_example_flex_1.py │ │ │ │ │ │ ├── lv_example_flex_2.c │ │ │ │ │ │ ├── lv_example_flex_2.py │ │ │ │ │ │ ├── lv_example_flex_3.c │ │ │ │ │ │ ├── lv_example_flex_3.py │ │ │ │ │ │ ├── lv_example_flex_4.c │ │ │ │ │ │ ├── lv_example_flex_4.py │ │ │ │ │ │ ├── lv_example_flex_5.c │ │ │ │ │ │ ├── lv_example_flex_5.py │ │ │ │ │ │ ├── lv_example_flex_6.c │ │ │ │ │ │ └── lv_example_flex_6.py │ │ │ │ │ ├── grid │ │ │ │ │ │ ├── index.rst │ │ │ │ │ │ ├── lv_example_grid.h │ │ │ │ │ │ ├── lv_example_grid_1.c │ │ │ │ │ │ ├── lv_example_grid_1.py │ │ │ │ │ │ ├── lv_example_grid_2.c │ │ │ │ │ │ ├── lv_example_grid_2.py │ │ │ │ │ │ ├── lv_example_grid_3.c │ │ │ │ │ │ ├── lv_example_grid_3.py │ │ │ │ │ │ ├── lv_example_grid_4.c │ │ │ │ │ │ ├── lv_example_grid_4.py │ │ │ │ │ │ ├── lv_example_grid_5.c │ │ │ │ │ │ ├── lv_example_grid_5.py │ │ │ │ │ │ ├── lv_example_grid_6.c │ │ │ │ │ │ └── lv_example_grid_6.py │ │ │ │ │ └── lv_example_layout.h │ │ │ │ ├── libs │ │ │ │ │ ├── bmp │ │ │ │ │ │ ├── example_16bit.bmp │ │ │ │ │ │ ├── example_24bit.bmp │ │ │ │ │ │ ├── example_32bit.bmp │ │ │ │ │ │ ├── index.rst │ │ │ │ │ │ ├── lv_example_bmp.h │ │ │ │ │ │ ├── lv_example_bmp_1.c │ │ │ │ │ │ └── lv_example_bmp_1.py │ │ │ │ │ ├── ffmpeg │ │ │ │ │ │ ├── birds.mp4 │ │ │ │ │ │ ├── ffmpeg.png │ │ │ │ │ │ ├── index.rst │ │ │ │ │ │ ├── lv_example_ffmpeg.h │ │ │ │ │ │ ├── lv_example_ffmpeg_1.c │ │ │ │ │ │ └── lv_example_ffmpeg_2.c │ │ │ │ │ ├── freetype │ │ │ │ │ │ ├── arial.ttf │ │ │ │ │ │ ├── index.rst │ │ │ │ │ │ ├── lv_example_freetype.h │ │ │ │ │ │ ├── lv_example_freetype_1.c │ │ │ │ │ │ └── lv_example_freetype_1.py │ │ │ │ │ ├── gif │ │ │ │ │ │ ├── bulb.gif │ │ │ │ │ │ ├── img_bulb_gif.c │ │ │ │ │ │ ├── img_bulb_gif.py │ │ │ │ │ │ ├── index.rst │ │ │ │ │ │ ├── lv_example_gif.h │ │ │ │ │ │ ├── lv_example_gif_1.c │ │ │ │ │ │ └── lv_example_gif_1.py │ │ │ │ │ ├── lv_example_libs.h │ │ │ │ │ ├── png │ │ │ │ │ │ ├── img_wink_png.c │ │ │ │ │ │ ├── img_wink_png.py │ │ │ │ │ │ ├── index.rst │ │ │ │ │ │ ├── lv_example_png.h │ │ │ │ │ │ ├── lv_example_png_1.c │ │ │ │ │ │ ├── lv_example_png_1.py │ │ │ │ │ │ └── wink.png │ │ │ │ │ ├── qrcode │ │ │ │ │ │ ├── index.rst │ │ │ │ │ │ ├── lv_example_qrcode.h │ │ │ │ │ │ ├── lv_example_qrcode_1.c │ │ │ │ │ │ └── lv_example_qrcode_1.py │ │ │ │ │ ├── rlottie │ │ │ │ │ │ ├── index.rst │ │ │ │ │ │ ├── lv_example_rlottie.h │ │ │ │ │ │ ├── lv_example_rlottie_1.c │ │ │ │ │ │ ├── lv_example_rlottie_1.py │ │ │ │ │ │ ├── lv_example_rlottie_2.c │ │ │ │ │ │ ├── lv_example_rlottie_2.py │ │ │ │ │ │ ├── lv_example_rlottie_approve.c │ │ │ │ │ │ ├── lv_example_rlottie_approve.json │ │ │ │ │ │ └── lv_example_rlottie_approve.py │ │ │ │ │ └── sjpg │ │ │ │ │ │ ├── index.rst │ │ │ │ │ │ ├── lv_example_sjpg.h │ │ │ │ │ │ ├── lv_example_sjpg_1.c │ │ │ │ │ │ ├── lv_example_sjpg_1.py │ │ │ │ │ │ └── small_image.sjpg │ │ │ │ ├── lv_examples.h │ │ │ │ ├── others │ │ │ │ │ ├── gridnav │ │ │ │ │ │ ├── index.rst │ │ │ │ │ │ ├── lv_example_gridnav.h │ │ │ │ │ │ ├── lv_example_gridnav_1.c │ │ │ │ │ │ ├── lv_example_gridnav_2.c │ │ │ │ │ │ ├── lv_example_gridnav_3.c │ │ │ │ │ │ └── lv_example_gridnav_4.c │ │ │ │ │ ├── lv_example_others.h │ │ │ │ │ ├── monkey │ │ │ │ │ │ ├── index.rst │ │ │ │ │ │ ├── lv_example_monkey.h │ │ │ │ │ │ ├── lv_example_monkey_1.c │ │ │ │ │ │ ├── lv_example_monkey_2.c │ │ │ │ │ │ └── lv_example_monkey_3.c │ │ │ │ │ └── snapshot │ │ │ │ │ │ ├── index.rst │ │ │ │ │ │ ├── lv_example_snapshot.h │ │ │ │ │ │ ├── lv_example_snapshot_1.c │ │ │ │ │ │ └── lv_example_snapshot_1.py │ │ │ │ ├── porting │ │ │ │ │ ├── lv_port_disp_template.c │ │ │ │ │ ├── lv_port_disp_template.h │ │ │ │ │ ├── lv_port_fs_template.c │ │ │ │ │ ├── lv_port_fs_template.h │ │ │ │ │ ├── lv_port_indev_template.c │ │ │ │ │ └── lv_port_indev_template.h │ │ │ │ ├── scroll │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_scroll.h │ │ │ │ │ ├── lv_example_scroll_1.c │ │ │ │ │ ├── lv_example_scroll_1.py │ │ │ │ │ ├── lv_example_scroll_2.c │ │ │ │ │ ├── lv_example_scroll_2.py │ │ │ │ │ ├── lv_example_scroll_3.c │ │ │ │ │ ├── lv_example_scroll_3.py │ │ │ │ │ ├── lv_example_scroll_4.c │ │ │ │ │ ├── lv_example_scroll_4.py │ │ │ │ │ ├── lv_example_scroll_5.c │ │ │ │ │ ├── lv_example_scroll_5.py │ │ │ │ │ ├── lv_example_scroll_6.c │ │ │ │ │ └── lv_example_scroll_6.py │ │ │ │ ├── styles │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_style.h │ │ │ │ │ ├── lv_example_style_1.c │ │ │ │ │ ├── lv_example_style_1.py │ │ │ │ │ ├── lv_example_style_10.c │ │ │ │ │ ├── lv_example_style_10.py │ │ │ │ │ ├── lv_example_style_11.c │ │ │ │ │ ├── lv_example_style_11.py │ │ │ │ │ ├── lv_example_style_12.c │ │ │ │ │ ├── lv_example_style_12.py │ │ │ │ │ ├── lv_example_style_13.c │ │ │ │ │ ├── lv_example_style_13.py │ │ │ │ │ ├── lv_example_style_14.c │ │ │ │ │ ├── lv_example_style_14.py │ │ │ │ │ ├── lv_example_style_2.c │ │ │ │ │ ├── lv_example_style_2.py │ │ │ │ │ ├── lv_example_style_3.c │ │ │ │ │ ├── lv_example_style_3.py │ │ │ │ │ ├── lv_example_style_4.c │ │ │ │ │ ├── lv_example_style_4.py │ │ │ │ │ ├── lv_example_style_5.c │ │ │ │ │ ├── lv_example_style_5.py │ │ │ │ │ ├── lv_example_style_6.c │ │ │ │ │ ├── lv_example_style_6.py │ │ │ │ │ ├── lv_example_style_7.c │ │ │ │ │ ├── lv_example_style_7.py │ │ │ │ │ ├── lv_example_style_8.c │ │ │ │ │ ├── lv_example_style_8.py │ │ │ │ │ ├── lv_example_style_9.c │ │ │ │ │ └── lv_example_style_9.py │ │ │ │ ├── test_ex.sh │ │ │ │ └── widgets │ │ │ │ │ ├── animimg │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_animimg_1.c │ │ │ │ │ └── lv_example_animimg_1.py │ │ │ │ │ ├── arc │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_arc_1.c │ │ │ │ │ ├── lv_example_arc_1.py │ │ │ │ │ ├── lv_example_arc_2.c │ │ │ │ │ └── lv_example_arc_2.py │ │ │ │ │ ├── bar │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_bar_1.c │ │ │ │ │ ├── lv_example_bar_1.py │ │ │ │ │ ├── lv_example_bar_2.c │ │ │ │ │ ├── lv_example_bar_2.py │ │ │ │ │ ├── lv_example_bar_3.c │ │ │ │ │ ├── lv_example_bar_3.py │ │ │ │ │ ├── lv_example_bar_4.c │ │ │ │ │ ├── lv_example_bar_4.py │ │ │ │ │ ├── lv_example_bar_5.c │ │ │ │ │ ├── lv_example_bar_5.py │ │ │ │ │ ├── lv_example_bar_6.c │ │ │ │ │ ├── lv_example_bar_6.py │ │ │ │ │ └── test.py │ │ │ │ │ ├── btn │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_btn_1.c │ │ │ │ │ ├── lv_example_btn_1.py │ │ │ │ │ ├── lv_example_btn_2.c │ │ │ │ │ ├── lv_example_btn_2.py │ │ │ │ │ ├── lv_example_btn_3.c │ │ │ │ │ └── lv_example_btn_3.py │ │ │ │ │ ├── btnmatrix │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_btnmatrix_1.c │ │ │ │ │ ├── lv_example_btnmatrix_1.py │ │ │ │ │ ├── lv_example_btnmatrix_2.c │ │ │ │ │ ├── lv_example_btnmatrix_2.py │ │ │ │ │ ├── lv_example_btnmatrix_3.c │ │ │ │ │ └── lv_example_btnmatrix_3.py │ │ │ │ │ ├── calendar │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_calendar_1.c │ │ │ │ │ └── lv_example_calendar_1.py │ │ │ │ │ ├── canvas │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_canvas_1.c │ │ │ │ │ ├── lv_example_canvas_1.py │ │ │ │ │ ├── lv_example_canvas_2.c │ │ │ │ │ └── lv_example_canvas_2.py │ │ │ │ │ ├── chart │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_chart_1.c │ │ │ │ │ ├── lv_example_chart_1.py │ │ │ │ │ ├── lv_example_chart_2.c │ │ │ │ │ ├── lv_example_chart_2.py │ │ │ │ │ ├── lv_example_chart_3.c │ │ │ │ │ ├── lv_example_chart_3.py │ │ │ │ │ ├── lv_example_chart_4.c │ │ │ │ │ ├── lv_example_chart_4.py │ │ │ │ │ ├── lv_example_chart_5.c │ │ │ │ │ ├── lv_example_chart_5.py │ │ │ │ │ ├── lv_example_chart_6.c │ │ │ │ │ ├── lv_example_chart_6.py │ │ │ │ │ ├── lv_example_chart_7.c │ │ │ │ │ ├── lv_example_chart_7.py │ │ │ │ │ ├── lv_example_chart_8.c │ │ │ │ │ ├── lv_example_chart_8.py │ │ │ │ │ ├── lv_example_chart_9.c │ │ │ │ │ └── lv_example_chart_9.py │ │ │ │ │ ├── checkbox │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_checkbox_1.c │ │ │ │ │ ├── lv_example_checkbox_1.py │ │ │ │ │ └── lv_example_checkbox_2.c │ │ │ │ │ ├── colorwheel │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_colorwheel_1.c │ │ │ │ │ └── lv_example_colorwheel_1.py │ │ │ │ │ ├── dropdown │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_dropdown_1.c │ │ │ │ │ ├── lv_example_dropdown_1.py │ │ │ │ │ ├── lv_example_dropdown_2.c │ │ │ │ │ ├── lv_example_dropdown_2.py │ │ │ │ │ ├── lv_example_dropdown_3.c │ │ │ │ │ └── lv_example_dropdown_3.py │ │ │ │ │ ├── img │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_img_1.c │ │ │ │ │ ├── lv_example_img_1.py │ │ │ │ │ ├── lv_example_img_2.c │ │ │ │ │ ├── lv_example_img_2.py │ │ │ │ │ ├── lv_example_img_3.c │ │ │ │ │ ├── lv_example_img_3.py │ │ │ │ │ ├── lv_example_img_4.c │ │ │ │ │ └── lv_example_img_4.py │ │ │ │ │ ├── imgbtn │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_imgbtn_1.c │ │ │ │ │ └── lv_example_imgbtn_1.py │ │ │ │ │ ├── keyboard │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_keyboard_1.c │ │ │ │ │ └── lv_example_keyboard_1.py │ │ │ │ │ ├── label │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_label_1.c │ │ │ │ │ ├── lv_example_label_1.py │ │ │ │ │ ├── lv_example_label_2.c │ │ │ │ │ ├── lv_example_label_2.py │ │ │ │ │ ├── lv_example_label_3.c │ │ │ │ │ ├── lv_example_label_3.py │ │ │ │ │ └── lv_example_label_4.c │ │ │ │ │ ├── led │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_led_1.c │ │ │ │ │ └── lv_example_led_1.py │ │ │ │ │ ├── line │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_line_1.c │ │ │ │ │ └── lv_example_line_1.py │ │ │ │ │ ├── list │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_list_1.c │ │ │ │ │ ├── lv_example_list_1.py │ │ │ │ │ ├── lv_example_list_2.c │ │ │ │ │ ├── lv_example_list_2.py │ │ │ │ │ └── test.py │ │ │ │ │ ├── lv_example_widgets.h │ │ │ │ │ ├── menu │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_menu_1.c │ │ │ │ │ ├── lv_example_menu_1.py │ │ │ │ │ ├── lv_example_menu_2.c │ │ │ │ │ ├── lv_example_menu_2.py │ │ │ │ │ ├── lv_example_menu_3.c │ │ │ │ │ ├── lv_example_menu_3.py │ │ │ │ │ ├── lv_example_menu_4.c │ │ │ │ │ ├── lv_example_menu_4.py │ │ │ │ │ └── lv_example_menu_5.c │ │ │ │ │ ├── meter │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_meter_1.c │ │ │ │ │ ├── lv_example_meter_1.py │ │ │ │ │ ├── lv_example_meter_2.c │ │ │ │ │ ├── lv_example_meter_2.py │ │ │ │ │ ├── lv_example_meter_3.c │ │ │ │ │ ├── lv_example_meter_3.py │ │ │ │ │ ├── lv_example_meter_4.c │ │ │ │ │ └── lv_example_meter_4.py │ │ │ │ │ ├── msgbox │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_msgbox_1.c │ │ │ │ │ └── lv_example_msgbox_1.py │ │ │ │ │ ├── obj │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_obj_1.c │ │ │ │ │ ├── lv_example_obj_1.py │ │ │ │ │ ├── lv_example_obj_2.c │ │ │ │ │ └── lv_example_obj_2.py │ │ │ │ │ ├── roller │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_roller_1.c │ │ │ │ │ ├── lv_example_roller_1.py │ │ │ │ │ ├── lv_example_roller_2.c │ │ │ │ │ ├── lv_example_roller_2.py │ │ │ │ │ ├── lv_example_roller_3.c │ │ │ │ │ └── lv_example_roller_3.py │ │ │ │ │ ├── slider │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_slider_1.c │ │ │ │ │ ├── lv_example_slider_1.py │ │ │ │ │ ├── lv_example_slider_2.c │ │ │ │ │ ├── lv_example_slider_2.py │ │ │ │ │ ├── lv_example_slider_3.c │ │ │ │ │ └── lv_example_slider_3.py │ │ │ │ │ ├── span │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_span_1.c │ │ │ │ │ └── lv_example_span_1.py │ │ │ │ │ ├── spinbox │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_spinbox_1.c │ │ │ │ │ └── lv_example_spinbox_1.py │ │ │ │ │ ├── spinner │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_spinner_1.c │ │ │ │ │ └── lv_example_spinner_1.py │ │ │ │ │ ├── switch │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_switch_1.c │ │ │ │ │ └── lv_example_switch_1.py │ │ │ │ │ ├── table │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_table_1.c │ │ │ │ │ ├── lv_example_table_1.py │ │ │ │ │ ├── lv_example_table_2.c │ │ │ │ │ └── lv_example_table_2.py │ │ │ │ │ ├── tabview │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_tabview_1.c │ │ │ │ │ ├── lv_example_tabview_1.py │ │ │ │ │ ├── lv_example_tabview_2.c │ │ │ │ │ └── lv_example_tabview_2.py │ │ │ │ │ ├── textarea │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_textarea_1.c │ │ │ │ │ ├── lv_example_textarea_1.py │ │ │ │ │ ├── lv_example_textarea_2.c │ │ │ │ │ ├── lv_example_textarea_2.py │ │ │ │ │ ├── lv_example_textarea_3.c │ │ │ │ │ └── lv_example_textarea_3.py │ │ │ │ │ ├── tileview │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_tileview_1.c │ │ │ │ │ └── lv_example_tileview_1.py │ │ │ │ │ └── win │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_win_1.c │ │ │ │ │ └── lv_example_win_1.py │ │ │ ├── idf_component.yml │ │ │ ├── library.json │ │ │ ├── library.properties │ │ │ ├── lv_conf_template.h │ │ │ ├── lvgl.h │ │ │ ├── lvgl.mk │ │ │ ├── scripts │ │ │ │ ├── .gitignore │ │ │ │ ├── Doxyfile │ │ │ │ ├── build_html_examples.sh │ │ │ │ ├── built_in_font │ │ │ │ │ ├── DejaVuSans.ttf │ │ │ │ │ ├── FontAwesome5-Solid+Brands+Regular.woff │ │ │ │ │ ├── Montserrat-Medium.ttf │ │ │ │ │ ├── SimSun.woff │ │ │ │ │ ├── built_in_font_gen.py │ │ │ │ │ ├── generate_all.py │ │ │ │ │ └── unscii-8.ttf │ │ │ │ ├── changelog-template.hbs │ │ │ │ ├── changelog_gen.sh │ │ │ │ ├── code-format.cfg │ │ │ │ ├── code-format.py │ │ │ │ ├── cppcheck_run.sh │ │ │ │ ├── filetohex.py │ │ │ │ ├── find_version.sh │ │ │ │ ├── genexamplelist.sh │ │ │ │ ├── infer_run.sh │ │ │ │ ├── install-prerequisites.sh │ │ │ │ ├── jpg_to_sjpg.py │ │ │ │ ├── lv_conf_internal_gen.py │ │ │ │ ├── release │ │ │ │ │ ├── com.py │ │ │ │ │ ├── commits.txt │ │ │ │ │ ├── patch.py │ │ │ │ │ └── release.py │ │ │ │ └── style_api_gen.py │ │ │ ├── src │ │ │ │ ├── core │ │ │ │ │ ├── lv_core.mk │ │ │ │ │ ├── lv_disp.c │ │ │ │ │ ├── lv_disp.h │ │ │ │ │ ├── lv_event.c │ │ │ │ │ ├── lv_event.h │ │ │ │ │ ├── lv_group.c │ │ │ │ │ ├── lv_group.h │ │ │ │ │ ├── lv_indev.c │ │ │ │ │ ├── lv_indev.h │ │ │ │ │ ├── lv_indev_scroll.c │ │ │ │ │ ├── lv_indev_scroll.h │ │ │ │ │ ├── lv_obj.c │ │ │ │ │ ├── lv_obj.h │ │ │ │ │ ├── lv_obj_class.c │ │ │ │ │ ├── lv_obj_class.h │ │ │ │ │ ├── lv_obj_draw.c │ │ │ │ │ ├── lv_obj_draw.h │ │ │ │ │ ├── lv_obj_pos.c │ │ │ │ │ ├── lv_obj_pos.h │ │ │ │ │ ├── lv_obj_scroll.c │ │ │ │ │ ├── lv_obj_scroll.h │ │ │ │ │ ├── lv_obj_style.c │ │ │ │ │ ├── lv_obj_style.h │ │ │ │ │ ├── lv_obj_style_gen.c │ │ │ │ │ ├── lv_obj_style_gen.h │ │ │ │ │ ├── lv_obj_tree.c │ │ │ │ │ ├── lv_obj_tree.h │ │ │ │ │ ├── lv_refr.c │ │ │ │ │ ├── lv_refr.h │ │ │ │ │ ├── lv_theme.c │ │ │ │ │ └── lv_theme.h │ │ │ │ ├── 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_mask.c │ │ │ │ │ ├── lv_draw_mask.h │ │ │ │ │ ├── lv_draw_rect.c │ │ │ │ │ ├── lv_draw_rect.h │ │ │ │ │ ├── lv_draw_triangle.c │ │ │ │ │ ├── lv_draw_triangle.h │ │ │ │ │ ├── lv_img_buf.c │ │ │ │ │ ├── lv_img_buf.h │ │ │ │ │ ├── lv_img_cache.c │ │ │ │ │ ├── lv_img_cache.h │ │ │ │ │ ├── lv_img_decoder.c │ │ │ │ │ ├── lv_img_decoder.h │ │ │ │ │ ├── nxp_pxp │ │ │ │ │ │ ├── lv_gpu_nxp_pxp.c │ │ │ │ │ │ ├── lv_gpu_nxp_pxp.h │ │ │ │ │ │ ├── lv_gpu_nxp_pxp_osa.c │ │ │ │ │ │ └── lv_gpu_nxp_pxp_osa.h │ │ │ │ │ ├── nxp_vglite │ │ │ │ │ │ ├── lv_gpu_nxp_vglite.c │ │ │ │ │ │ └── lv_gpu_nxp_vglite.h │ │ │ │ │ ├── sdl │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── lv_draw_sdl.c │ │ │ │ │ │ ├── lv_draw_sdl.h │ │ │ │ │ │ ├── lv_draw_sdl.mk │ │ │ │ │ │ ├── lv_draw_sdl_arc.c │ │ │ │ │ │ ├── lv_draw_sdl_bg.c │ │ │ │ │ │ ├── lv_draw_sdl_composite.c │ │ │ │ │ │ ├── lv_draw_sdl_composite.h │ │ │ │ │ │ ├── lv_draw_sdl_img.c │ │ │ │ │ │ ├── lv_draw_sdl_img.h │ │ │ │ │ │ ├── lv_draw_sdl_label.c │ │ │ │ │ │ ├── lv_draw_sdl_line.c │ │ │ │ │ │ ├── lv_draw_sdl_mask.c │ │ │ │ │ │ ├── lv_draw_sdl_mask.h │ │ │ │ │ │ ├── lv_draw_sdl_polygon.c │ │ │ │ │ │ ├── lv_draw_sdl_priv.h │ │ │ │ │ │ ├── lv_draw_sdl_rect.c │ │ │ │ │ │ ├── lv_draw_sdl_rect.h │ │ │ │ │ │ ├── lv_draw_sdl_stack_blur.c │ │ │ │ │ │ ├── lv_draw_sdl_stack_blur.h │ │ │ │ │ │ ├── lv_draw_sdl_texture_cache.c │ │ │ │ │ │ ├── lv_draw_sdl_texture_cache.h │ │ │ │ │ │ ├── lv_draw_sdl_utils.c │ │ │ │ │ │ └── lv_draw_sdl_utils.h │ │ │ │ │ ├── stm32_dma2d │ │ │ │ │ │ ├── lv_gpu_stm32_dma2d.c │ │ │ │ │ │ └── lv_gpu_stm32_dma2d.h │ │ │ │ │ └── sw │ │ │ │ │ │ ├── lv_draw_sw.c │ │ │ │ │ │ ├── lv_draw_sw.h │ │ │ │ │ │ ├── lv_draw_sw.mk │ │ │ │ │ │ ├── lv_draw_sw_arc.c │ │ │ │ │ │ ├── lv_draw_sw_blend.c │ │ │ │ │ │ ├── lv_draw_sw_blend.h │ │ │ │ │ │ ├── lv_draw_sw_dither.c │ │ │ │ │ │ ├── lv_draw_sw_dither.h │ │ │ │ │ │ ├── lv_draw_sw_gradient.c │ │ │ │ │ │ ├── lv_draw_sw_gradient.h │ │ │ │ │ │ ├── lv_draw_sw_img.c │ │ │ │ │ │ ├── lv_draw_sw_letter.c │ │ │ │ │ │ ├── lv_draw_sw_line.c │ │ │ │ │ │ ├── lv_draw_sw_polygon.c │ │ │ │ │ │ └── lv_draw_sw_rect.c │ │ │ │ ├── extra │ │ │ │ │ ├── README.md │ │ │ │ │ ├── extra.mk │ │ │ │ │ ├── layouts │ │ │ │ │ │ ├── flex │ │ │ │ │ │ │ ├── lv_flex.c │ │ │ │ │ │ │ └── lv_flex.h │ │ │ │ │ │ ├── grid │ │ │ │ │ │ │ ├── lv_grid.c │ │ │ │ │ │ │ └── lv_grid.h │ │ │ │ │ │ └── lv_layouts.h │ │ │ │ │ ├── libs │ │ │ │ │ │ ├── bmp │ │ │ │ │ │ │ ├── lv_bmp.c │ │ │ │ │ │ │ └── lv_bmp.h │ │ │ │ │ │ ├── ffmpeg │ │ │ │ │ │ │ ├── lv_ffmpeg.c │ │ │ │ │ │ │ └── lv_ffmpeg.h │ │ │ │ │ │ ├── freetype │ │ │ │ │ │ │ ├── arial.ttf │ │ │ │ │ │ │ ├── lv_freetype.c │ │ │ │ │ │ │ └── lv_freetype.h │ │ │ │ │ │ ├── fsdrv │ │ │ │ │ │ │ ├── lv_fs_fatfs.c │ │ │ │ │ │ │ ├── lv_fs_posix.c │ │ │ │ │ │ │ ├── lv_fs_stdio.c │ │ │ │ │ │ │ ├── lv_fs_win32.c │ │ │ │ │ │ │ └── lv_fsdrv.h │ │ │ │ │ │ ├── gif │ │ │ │ │ │ │ ├── gifdec.c │ │ │ │ │ │ │ ├── gifdec.h │ │ │ │ │ │ │ ├── lv_gif.c │ │ │ │ │ │ │ └── lv_gif.h │ │ │ │ │ │ ├── lv_libs.h │ │ │ │ │ │ ├── png │ │ │ │ │ │ │ ├── lodepng.c │ │ │ │ │ │ │ ├── lodepng.h │ │ │ │ │ │ │ ├── lv_png.c │ │ │ │ │ │ │ └── lv_png.h │ │ │ │ │ │ ├── qrcode │ │ │ │ │ │ │ ├── lv_qrcode.c │ │ │ │ │ │ │ ├── lv_qrcode.h │ │ │ │ │ │ │ ├── qrcodegen.c │ │ │ │ │ │ │ └── qrcodegen.h │ │ │ │ │ │ ├── rlottie │ │ │ │ │ │ │ ├── lv_rlottie.c │ │ │ │ │ │ │ └── lv_rlottie.h │ │ │ │ │ │ └── sjpg │ │ │ │ │ │ │ ├── lv_sjpg.c │ │ │ │ │ │ │ ├── lv_sjpg.h │ │ │ │ │ │ │ ├── tjpgd.c │ │ │ │ │ │ │ ├── tjpgd.h │ │ │ │ │ │ │ └── tjpgdcnf.h │ │ │ │ │ ├── lv_extra.c │ │ │ │ │ ├── lv_extra.h │ │ │ │ │ ├── others │ │ │ │ │ │ ├── gridnav │ │ │ │ │ │ │ ├── lv_gridnav.c │ │ │ │ │ │ │ └── lv_gridnav.h │ │ │ │ │ │ ├── lv_others.h │ │ │ │ │ │ ├── monkey │ │ │ │ │ │ │ ├── lv_monkey.c │ │ │ │ │ │ │ └── lv_monkey.h │ │ │ │ │ │ └── snapshot │ │ │ │ │ │ │ ├── lv_snapshot.c │ │ │ │ │ │ │ └── lv_snapshot.h │ │ │ │ │ ├── themes │ │ │ │ │ │ ├── basic │ │ │ │ │ │ │ ├── lv_theme_basic.c │ │ │ │ │ │ │ └── lv_theme_basic.h │ │ │ │ │ │ ├── default │ │ │ │ │ │ │ ├── lv_theme_default.c │ │ │ │ │ │ │ └── lv_theme_default.h │ │ │ │ │ │ ├── lv_themes.h │ │ │ │ │ │ └── mono │ │ │ │ │ │ │ ├── lv_theme_mono.c │ │ │ │ │ │ │ └── lv_theme_mono.h │ │ │ │ │ └── widgets │ │ │ │ │ │ ├── animimg │ │ │ │ │ │ ├── lv_animimg.c │ │ │ │ │ │ └── lv_animimg.h │ │ │ │ │ │ ├── calendar │ │ │ │ │ │ ├── lv_calendar.c │ │ │ │ │ │ ├── lv_calendar.h │ │ │ │ │ │ ├── lv_calendar_header_arrow.c │ │ │ │ │ │ ├── lv_calendar_header_arrow.h │ │ │ │ │ │ ├── lv_calendar_header_dropdown.c │ │ │ │ │ │ └── lv_calendar_header_dropdown.h │ │ │ │ │ │ ├── chart │ │ │ │ │ │ ├── lv_chart.c │ │ │ │ │ │ └── lv_chart.h │ │ │ │ │ │ ├── colorwheel │ │ │ │ │ │ ├── lv_colorwheel.c │ │ │ │ │ │ └── lv_colorwheel.h │ │ │ │ │ │ ├── imgbtn │ │ │ │ │ │ ├── lv_imgbtn.c │ │ │ │ │ │ └── lv_imgbtn.h │ │ │ │ │ │ ├── keyboard │ │ │ │ │ │ ├── lv_keyboard.c │ │ │ │ │ │ └── lv_keyboard.h │ │ │ │ │ │ ├── led │ │ │ │ │ │ ├── lv_led.c │ │ │ │ │ │ └── lv_led.h │ │ │ │ │ │ ├── list │ │ │ │ │ │ ├── lv_list.c │ │ │ │ │ │ └── lv_list.h │ │ │ │ │ │ ├── lv_widgets.h │ │ │ │ │ │ ├── menu │ │ │ │ │ │ ├── lv_menu.c │ │ │ │ │ │ └── lv_menu.h │ │ │ │ │ │ ├── meter │ │ │ │ │ │ ├── lv_meter.c │ │ │ │ │ │ └── lv_meter.h │ │ │ │ │ │ ├── msgbox │ │ │ │ │ │ ├── lv_msgbox.c │ │ │ │ │ │ └── lv_msgbox.h │ │ │ │ │ │ ├── span │ │ │ │ │ │ ├── lv_span.c │ │ │ │ │ │ └── lv_span.h │ │ │ │ │ │ ├── spinbox │ │ │ │ │ │ ├── lv_spinbox.c │ │ │ │ │ │ └── lv_spinbox.h │ │ │ │ │ │ ├── spinner │ │ │ │ │ │ ├── lv_spinner.c │ │ │ │ │ │ └── lv_spinner.h │ │ │ │ │ │ ├── tabview │ │ │ │ │ │ ├── lv_tabview.c │ │ │ │ │ │ └── lv_tabview.h │ │ │ │ │ │ ├── tileview │ │ │ │ │ │ ├── lv_tileview.c │ │ │ │ │ │ └── lv_tileview.h │ │ │ │ │ │ └── win │ │ │ │ │ │ ├── lv_win.c │ │ │ │ │ │ └── lv_win.h │ │ │ │ ├── font │ │ │ │ │ ├── korean.ttf │ │ │ │ │ ├── lv_font.c │ │ │ │ │ ├── lv_font.h │ │ │ │ │ ├── lv_font.mk │ │ │ │ │ ├── lv_font_dejavu_16_persian_hebrew.c │ │ │ │ │ ├── lv_font_fmt_txt.c │ │ │ │ │ ├── lv_font_fmt_txt.h │ │ │ │ │ ├── lv_font_loader.c │ │ │ │ │ ├── lv_font_loader.h │ │ │ │ │ ├── lv_font_montserrat_10.c │ │ │ │ │ ├── lv_font_montserrat_12.c │ │ │ │ │ ├── lv_font_montserrat_12_subpx.c │ │ │ │ │ ├── lv_font_montserrat_14.c │ │ │ │ │ ├── lv_font_montserrat_16.c │ │ │ │ │ ├── lv_font_montserrat_18.c │ │ │ │ │ ├── lv_font_montserrat_20.c │ │ │ │ │ ├── lv_font_montserrat_22.c │ │ │ │ │ ├── lv_font_montserrat_24.c │ │ │ │ │ ├── lv_font_montserrat_26.c │ │ │ │ │ ├── lv_font_montserrat_28.c │ │ │ │ │ ├── lv_font_montserrat_28_compressed.c │ │ │ │ │ ├── lv_font_montserrat_30.c │ │ │ │ │ ├── lv_font_montserrat_32.c │ │ │ │ │ ├── lv_font_montserrat_34.c │ │ │ │ │ ├── lv_font_montserrat_36.c │ │ │ │ │ ├── lv_font_montserrat_38.c │ │ │ │ │ ├── lv_font_montserrat_40.c │ │ │ │ │ ├── lv_font_montserrat_42.c │ │ │ │ │ ├── lv_font_montserrat_44.c │ │ │ │ │ ├── lv_font_montserrat_46.c │ │ │ │ │ ├── lv_font_montserrat_48.c │ │ │ │ │ ├── lv_font_montserrat_8.c │ │ │ │ │ ├── lv_font_simsun_16_cjk.c │ │ │ │ │ ├── lv_font_unscii_16.c │ │ │ │ │ ├── lv_font_unscii_8.c │ │ │ │ │ └── lv_symbol_def.h │ │ │ │ ├── gpu │ │ │ │ │ └── lv_gpu.mk │ │ │ │ ├── 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_api_map.h │ │ │ │ ├── lv_conf_internal.h │ │ │ │ ├── lv_conf_kconfig.h │ │ │ │ ├── lvgl.h │ │ │ │ ├── misc │ │ │ │ │ ├── lv_anim.c │ │ │ │ │ ├── lv_anim.h │ │ │ │ │ ├── lv_anim_timeline.c │ │ │ │ │ ├── lv_anim_timeline.h │ │ │ │ │ ├── lv_area.c │ │ │ │ │ ├── lv_area.h │ │ │ │ │ ├── lv_assert.h │ │ │ │ │ ├── lv_async.c │ │ │ │ │ ├── lv_async.h │ │ │ │ │ ├── lv_bidi.c │ │ │ │ │ ├── lv_bidi.h │ │ │ │ │ ├── lv_color.c │ │ │ │ │ ├── lv_color.h │ │ │ │ │ ├── lv_fs.c │ │ │ │ │ ├── lv_fs.h │ │ │ │ │ ├── lv_gc.c │ │ │ │ │ ├── lv_gc.h │ │ │ │ │ ├── lv_ll.c │ │ │ │ │ ├── lv_ll.h │ │ │ │ │ ├── lv_log.c │ │ │ │ │ ├── lv_log.h │ │ │ │ │ ├── lv_lru.c │ │ │ │ │ ├── lv_lru.h │ │ │ │ │ ├── lv_math.c │ │ │ │ │ ├── lv_math.h │ │ │ │ │ ├── lv_mem.c │ │ │ │ │ ├── lv_mem.h │ │ │ │ │ ├── lv_misc.mk │ │ │ │ │ ├── lv_printf.c │ │ │ │ │ ├── lv_printf.h │ │ │ │ │ ├── lv_style.c │ │ │ │ │ ├── lv_style.h │ │ │ │ │ ├── lv_style_gen.c │ │ │ │ │ ├── lv_style_gen.h │ │ │ │ │ ├── lv_templ.c │ │ │ │ │ ├── lv_templ.h │ │ │ │ │ ├── lv_timer.c │ │ │ │ │ ├── lv_timer.h │ │ │ │ │ ├── lv_tlsf.c │ │ │ │ │ ├── lv_tlsf.h │ │ │ │ │ ├── lv_txt.c │ │ │ │ │ ├── lv_txt.h │ │ │ │ │ ├── lv_txt_ap.c │ │ │ │ │ ├── lv_txt_ap.h │ │ │ │ │ ├── lv_types.h │ │ │ │ │ ├── lv_utils.c │ │ │ │ │ └── lv_utils.h │ │ │ │ └── widgets │ │ │ │ │ ├── lv_arc.c │ │ │ │ │ ├── lv_arc.h │ │ │ │ │ ├── lv_bar.c │ │ │ │ │ ├── lv_bar.h │ │ │ │ │ ├── lv_btn.c │ │ │ │ │ ├── lv_btn.h │ │ │ │ │ ├── lv_btnmatrix.c │ │ │ │ │ ├── lv_btnmatrix.h │ │ │ │ │ ├── lv_canvas.c │ │ │ │ │ ├── lv_canvas.h │ │ │ │ │ ├── lv_checkbox.c │ │ │ │ │ ├── lv_checkbox.h │ │ │ │ │ ├── lv_dropdown.c │ │ │ │ │ ├── lv_dropdown.h │ │ │ │ │ ├── lv_img.c │ │ │ │ │ ├── lv_img.h │ │ │ │ │ ├── lv_label.c │ │ │ │ │ ├── lv_label.h │ │ │ │ │ ├── lv_line.c │ │ │ │ │ ├── lv_line.h │ │ │ │ │ ├── lv_objx_templ.c │ │ │ │ │ ├── lv_objx_templ.h │ │ │ │ │ ├── lv_roller.c │ │ │ │ │ ├── lv_roller.h │ │ │ │ │ ├── lv_slider.c │ │ │ │ │ ├── lv_slider.h │ │ │ │ │ ├── lv_switch.c │ │ │ │ │ ├── lv_switch.h │ │ │ │ │ ├── lv_table.c │ │ │ │ │ ├── lv_table.h │ │ │ │ │ ├── lv_textarea.c │ │ │ │ │ ├── lv_textarea.h │ │ │ │ │ └── lv_widgets.mk │ │ │ └── tests │ │ │ │ ├── .gitignore │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── README.md │ │ │ │ ├── config.yml │ │ │ │ ├── main.py │ │ │ │ ├── ref_imgs │ │ │ │ ├── dropdown_1.png │ │ │ │ ├── dropdown_2.png │ │ │ │ └── scr1.png │ │ │ │ ├── src │ │ │ │ ├── lv_test_conf.h │ │ │ │ ├── lv_test_helpers.h │ │ │ │ ├── lv_test_indev.c │ │ │ │ ├── lv_test_indev.h │ │ │ │ ├── lv_test_init.c │ │ │ │ ├── lv_test_init.h │ │ │ │ ├── test_cases │ │ │ │ │ ├── _test_template.c │ │ │ │ │ ├── test_arc.c │ │ │ │ │ ├── test_bar.c │ │ │ │ │ ├── test_checkbox.c │ │ │ │ │ ├── test_config.c │ │ │ │ │ ├── test_demo_stress.c │ │ │ │ │ ├── test_demo_widgets.c │ │ │ │ │ ├── test_dropdown.c │ │ │ │ │ ├── test_event.c │ │ │ │ │ ├── test_font_loader.c │ │ │ │ │ ├── test_obj_tree.c │ │ │ │ │ ├── test_snapshot.c │ │ │ │ │ ├── test_style.c │ │ │ │ │ ├── test_switch.c │ │ │ │ │ └── test_txt.c │ │ │ │ └── test_fonts │ │ │ │ │ ├── font_1.c │ │ │ │ │ ├── font_1.fnt │ │ │ │ │ ├── font_2.c │ │ │ │ │ ├── font_2.fnt │ │ │ │ │ ├── font_3.c │ │ │ │ │ └── font_3.fnt │ │ │ │ └── unity │ │ │ │ ├── generate_test_runner.rb │ │ │ │ ├── run_test.erb │ │ │ │ ├── type_sanitizer.rb │ │ │ │ ├── unity.c │ │ │ │ ├── unity.h │ │ │ │ ├── unity_internals.h │ │ │ │ ├── unity_support.c │ │ │ │ └── unity_support.h │ │ └── lvgl_esp32_drivers │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── CONTRIBUTE_CONTROLLER_SUPPORT.md │ │ │ ├── Kconfig │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── component.mk │ │ │ ├── lvgl_helpers.c │ │ │ ├── lvgl_helpers.h │ │ │ ├── lvgl_i2c │ │ │ ├── Kconfig │ │ │ ├── README.md │ │ │ ├── i2c_manager.c │ │ │ └── i2c_manager.h │ │ │ ├── lvgl_spi_conf.h │ │ │ ├── lvgl_tft │ │ │ ├── EVE.h │ │ │ ├── EVE_commands.c │ │ │ ├── EVE_commands.h │ │ │ ├── EVE_config.h │ │ │ ├── FT81x.c │ │ │ ├── FT81x.h │ │ │ ├── GC9A01.c │ │ │ ├── GC9A01.h │ │ │ ├── Kconfig │ │ │ ├── disp_driver.c │ │ │ ├── disp_driver.h │ │ │ ├── disp_spi.c │ │ │ ├── disp_spi.h │ │ │ ├── esp_lcd_backlight.c │ │ │ ├── esp_lcd_backlight.h │ │ │ ├── hx8357.c │ │ │ ├── hx8357.h │ │ │ ├── il3820.c │ │ │ ├── il3820.h │ │ │ ├── ili9163c.c │ │ │ ├── ili9163c.h │ │ │ ├── ili9341.c │ │ │ ├── ili9341.h │ │ │ ├── ili9481.c │ │ │ ├── ili9481.h │ │ │ ├── ili9486.c │ │ │ ├── ili9486.h │ │ │ ├── ili9488.c │ │ │ ├── ili9488.h │ │ │ ├── jd79653a.c │ │ │ ├── jd79653a.h │ │ │ ├── pcd8544.c │ │ │ ├── pcd8544.h │ │ │ ├── ra8875.c │ │ │ ├── ra8875.h │ │ │ ├── sh1107.c │ │ │ ├── sh1107.h │ │ │ ├── ssd1306.c │ │ │ ├── ssd1306.h │ │ │ ├── st7735s.c │ │ │ ├── st7735s.h │ │ │ ├── st7789.c │ │ │ ├── st7789.h │ │ │ ├── st7796s.c │ │ │ ├── st7796s.h │ │ │ ├── uc8151d.c │ │ │ └── uc8151d.h │ │ │ └── lvgl_touch │ │ │ ├── FT81x.c │ │ │ ├── FT81x.h │ │ │ ├── Kconfig │ │ │ ├── adcraw.c │ │ │ ├── adcraw.h │ │ │ ├── ft6x36.c │ │ │ ├── ft6x36.h │ │ │ ├── gt911.c │ │ │ ├── gt911.h │ │ │ ├── ra8875_touch.c │ │ │ ├── ra8875_touch.h │ │ │ ├── stmpe610.c │ │ │ ├── stmpe610.h │ │ │ ├── touch_driver.c │ │ │ ├── touch_driver.h │ │ │ ├── tp_spi.c │ │ │ ├── tp_spi.h │ │ │ ├── xpt2046.c │ │ │ └── xpt2046.h │ ├── main │ │ ├── CMakeLists.txt │ │ └── main.c │ ├── partitions.csv │ ├── sdkconfig │ └── sdkconfig.old ├── 2_lvgl8_0_porting │ ├── .devcontainer │ │ ├── Dockerfile │ │ └── devcontainer.json │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── launch.json │ │ ├── settings.json │ │ └── tasks.json │ ├── CMakeLists.txt │ ├── README.md │ ├── components │ │ ├── lvgl │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── .gitmodules │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── LICENCE.txt │ │ │ ├── README.md │ │ │ ├── component.mk │ │ │ ├── docs │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ │ ├── CODING_STYLE.md │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── ROADMAP.md │ │ │ │ ├── _ext │ │ │ │ │ └── lv_example.py │ │ │ │ ├── _static │ │ │ │ │ ├── css │ │ │ │ │ │ ├── custom.css │ │ │ │ │ │ └── fontawesome.min.css │ │ │ │ │ └── img │ │ │ │ │ │ ├── home_1.png │ │ │ │ │ │ ├── home_2.png │ │ │ │ │ │ ├── home_3.png │ │ │ │ │ │ ├── home_4.png │ │ │ │ │ │ ├── home_5.png │ │ │ │ │ │ ├── home_6.png │ │ │ │ │ │ └── home_banner.jpg │ │ │ │ ├── _templates │ │ │ │ │ ├── layout.html │ │ │ │ │ └── page.html │ │ │ │ ├── build.py │ │ │ │ ├── conf.py │ │ │ │ ├── favicon.png │ │ │ │ ├── get-started │ │ │ │ │ ├── arduino.md │ │ │ │ │ ├── espressif.md │ │ │ │ │ ├── index.md │ │ │ │ │ ├── micropython.md │ │ │ │ │ ├── nuttx.md │ │ │ │ │ ├── nxp.md │ │ │ │ │ ├── pc-simulator.md │ │ │ │ │ ├── quick-overview.md │ │ │ │ │ └── stm32.md │ │ │ │ ├── header.rst │ │ │ │ ├── index.md │ │ │ │ ├── intro │ │ │ │ │ └── index.md │ │ │ │ ├── layouts │ │ │ │ │ ├── flex.md │ │ │ │ │ ├── grid.md │ │ │ │ │ └── index.md │ │ │ │ ├── logo_lvgl.png │ │ │ │ ├── misc │ │ │ │ │ ├── align.png │ │ │ │ │ ├── bidi.png │ │ │ │ │ ├── boxmodel.png │ │ │ │ │ ├── button_style_example.gif │ │ │ │ │ ├── button_style_example.png │ │ │ │ │ ├── codeblocks.jpg │ │ │ │ │ ├── eclipse.jpg │ │ │ │ │ ├── layers.png │ │ │ │ │ ├── par_child1.png │ │ │ │ │ ├── par_child2.png │ │ │ │ │ ├── par_child3.png │ │ │ │ │ ├── platformio.jpg │ │ │ │ │ ├── qtcreator.jpg │ │ │ │ │ ├── simple_button_example.gif │ │ │ │ │ ├── simple_button_example.png │ │ │ │ │ ├── symbols.png │ │ │ │ │ ├── sys.png │ │ │ │ │ └── visualstudio.jpg │ │ │ │ ├── overview │ │ │ │ │ ├── animation.md │ │ │ │ │ ├── color.md │ │ │ │ │ ├── coords.md │ │ │ │ │ ├── display.md │ │ │ │ │ ├── drawing.md │ │ │ │ │ ├── event.md │ │ │ │ │ ├── file-system.md │ │ │ │ │ ├── font.md │ │ │ │ │ ├── image.md │ │ │ │ │ ├── indev.md │ │ │ │ │ ├── index.md │ │ │ │ │ ├── layer.md │ │ │ │ │ ├── new_widget.md │ │ │ │ │ ├── object.md │ │ │ │ │ ├── scroll.md │ │ │ │ │ ├── style-props.md │ │ │ │ │ ├── style.md │ │ │ │ │ └── timer.md │ │ │ │ ├── porting │ │ │ │ │ ├── display.md │ │ │ │ │ ├── indev.md │ │ │ │ │ ├── index.md │ │ │ │ │ ├── log.md │ │ │ │ │ ├── os.md │ │ │ │ │ ├── project.md │ │ │ │ │ ├── sleep.md │ │ │ │ │ ├── task-handler.md │ │ │ │ │ └── tick.md │ │ │ │ ├── requirements.txt │ │ │ │ └── widgets │ │ │ │ │ ├── core │ │ │ │ │ ├── arc.md │ │ │ │ │ ├── bar.md │ │ │ │ │ ├── btn.md │ │ │ │ │ ├── btnmatrix.md │ │ │ │ │ ├── canvas.md │ │ │ │ │ ├── checkbox.md │ │ │ │ │ ├── dropdown.md │ │ │ │ │ ├── img.md │ │ │ │ │ ├── index.md │ │ │ │ │ ├── label.md │ │ │ │ │ ├── line.md │ │ │ │ │ ├── roller.md │ │ │ │ │ ├── slider.md │ │ │ │ │ ├── switch.md │ │ │ │ │ ├── table.md │ │ │ │ │ └── textarea.md │ │ │ │ │ ├── extra │ │ │ │ │ ├── calendar.md │ │ │ │ │ ├── chart.md │ │ │ │ │ ├── colorwheel.md │ │ │ │ │ ├── imgbtn.md │ │ │ │ │ ├── index.md │ │ │ │ │ ├── keyboard.md │ │ │ │ │ ├── led.md │ │ │ │ │ ├── list.md │ │ │ │ │ ├── meter.md │ │ │ │ │ ├── msgbox.md │ │ │ │ │ ├── span.md │ │ │ │ │ ├── spinbox.md │ │ │ │ │ ├── spinner.md │ │ │ │ │ ├── tabview.md │ │ │ │ │ ├── tileview.md │ │ │ │ │ └── win.md │ │ │ │ │ ├── index.md │ │ │ │ │ └── obj.md │ │ │ ├── examples │ │ │ │ ├── anim │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_anim.h │ │ │ │ │ ├── lv_example_anim_1.c │ │ │ │ │ └── lv_example_anim_2.c │ │ │ │ ├── arduino │ │ │ │ │ └── LVGL_Arduino │ │ │ │ │ │ └── LVGL_Arduino.ino │ │ │ │ ├── assets │ │ │ │ │ ├── animimg001.c │ │ │ │ │ ├── animimg001.png │ │ │ │ │ ├── animimg002.c │ │ │ │ │ ├── animimg002.png │ │ │ │ │ ├── animimg003.c │ │ │ │ │ ├── animimg003.png │ │ │ │ │ ├── caret_down.png │ │ │ │ │ ├── img_caret_down.c │ │ │ │ │ ├── img_cogwheel_alpha16.c │ │ │ │ │ ├── img_cogwheel_argb.c │ │ │ │ │ ├── img_cogwheel_argb.png │ │ │ │ │ ├── img_cogwheel_chroma_keyed.c │ │ │ │ │ ├── img_cogwheel_chroma_keyed.png │ │ │ │ │ ├── img_cogwheel_indexed16.c │ │ │ │ │ ├── img_cogwheel_indexed16.png │ │ │ │ │ ├── img_cogwheel_rgb.c │ │ │ │ │ ├── img_cogwheel_rgb.png │ │ │ │ │ ├── img_hand.c │ │ │ │ │ ├── img_hand_min.png │ │ │ │ │ ├── img_skew_strip.c │ │ │ │ │ ├── img_star.c │ │ │ │ │ ├── imgbtn_left.c │ │ │ │ │ ├── imgbtn_left.png │ │ │ │ │ ├── imgbtn_mid.c │ │ │ │ │ ├── imgbtn_mid.png │ │ │ │ │ ├── imgbtn_right.c │ │ │ │ │ ├── imgbtn_right.png │ │ │ │ │ ├── skew_strip.png │ │ │ │ │ └── star.png │ │ │ │ ├── event │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_event.h │ │ │ │ │ ├── lv_example_event_1.c │ │ │ │ │ ├── lv_example_event_2.c │ │ │ │ │ └── lv_example_event_3.c │ │ │ │ ├── examples.mk │ │ │ │ ├── get_started │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_get_started.h │ │ │ │ │ ├── lv_example_get_started_1.c │ │ │ │ │ ├── lv_example_get_started_2.c │ │ │ │ │ └── lv_example_get_started_3.c │ │ │ │ ├── layouts │ │ │ │ │ ├── flex │ │ │ │ │ │ ├── index.rst │ │ │ │ │ │ ├── lv_example_flex.h │ │ │ │ │ │ ├── lv_example_flex_1.c │ │ │ │ │ │ ├── lv_example_flex_2.c │ │ │ │ │ │ ├── lv_example_flex_3.c │ │ │ │ │ │ ├── lv_example_flex_4.c │ │ │ │ │ │ ├── lv_example_flex_5.c │ │ │ │ │ │ └── lv_example_flex_6.c │ │ │ │ │ ├── grid │ │ │ │ │ │ ├── index.rst │ │ │ │ │ │ ├── lv_example_grid.h │ │ │ │ │ │ ├── lv_example_grid_1.c │ │ │ │ │ │ ├── lv_example_grid_2.c │ │ │ │ │ │ ├── lv_example_grid_3.c │ │ │ │ │ │ ├── lv_example_grid_4.c │ │ │ │ │ │ ├── lv_example_grid_5.c │ │ │ │ │ │ └── lv_example_grid_6.c │ │ │ │ │ └── lv_example_layout.h │ │ │ │ ├── lv_examples.h │ │ │ │ ├── porting │ │ │ │ │ ├── lv_port_disp_template.c │ │ │ │ │ ├── lv_port_disp_template.h │ │ │ │ │ ├── lv_port_fs_template.c │ │ │ │ │ ├── lv_port_fs_template.h │ │ │ │ │ ├── lv_port_indev_template.c │ │ │ │ │ └── lv_port_indev_template.h │ │ │ │ ├── scroll │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_scroll.h │ │ │ │ │ ├── lv_example_scroll_1.c │ │ │ │ │ ├── lv_example_scroll_2.c │ │ │ │ │ ├── lv_example_scroll_3.c │ │ │ │ │ ├── lv_example_scroll_4.c │ │ │ │ │ ├── lv_example_scroll_5.c │ │ │ │ │ └── lv_example_scroll_6.c │ │ │ │ ├── styles │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_style.h │ │ │ │ │ ├── lv_example_style_1.c │ │ │ │ │ ├── lv_example_style_10.c │ │ │ │ │ ├── lv_example_style_11.c │ │ │ │ │ ├── lv_example_style_12.c │ │ │ │ │ ├── lv_example_style_13.c │ │ │ │ │ ├── lv_example_style_14.c │ │ │ │ │ ├── lv_example_style_2.c │ │ │ │ │ ├── lv_example_style_3.c │ │ │ │ │ ├── lv_example_style_4.c │ │ │ │ │ ├── lv_example_style_5.c │ │ │ │ │ ├── lv_example_style_6.c │ │ │ │ │ ├── lv_example_style_7.c │ │ │ │ │ ├── lv_example_style_8.c │ │ │ │ │ └── lv_example_style_9.c │ │ │ │ └── widgets │ │ │ │ │ ├── animimg │ │ │ │ │ └── lv_example_animimg_1.c │ │ │ │ │ ├── arc │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_arc_1.c │ │ │ │ │ ├── lv_example_arc_1.py │ │ │ │ │ ├── lv_example_arc_2.c │ │ │ │ │ └── lv_example_arc_2.py │ │ │ │ │ ├── bar │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_bar_1.c │ │ │ │ │ ├── lv_example_bar_1.py │ │ │ │ │ ├── lv_example_bar_2.c │ │ │ │ │ ├── lv_example_bar_3.c │ │ │ │ │ ├── lv_example_bar_4.c │ │ │ │ │ ├── lv_example_bar_5.c │ │ │ │ │ └── lv_example_bar_6.c │ │ │ │ │ ├── btn │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_btn_1.c │ │ │ │ │ ├── lv_example_btn_1.py │ │ │ │ │ ├── lv_example_btn_2.c │ │ │ │ │ └── lv_example_btn_3.c │ │ │ │ │ ├── btnmatrix │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_btnmatrix_1.c │ │ │ │ │ ├── lv_example_btnmatrix_1.py │ │ │ │ │ ├── lv_example_btnmatrix_2.c │ │ │ │ │ └── lv_example_btnmatrix_3.c │ │ │ │ │ ├── calendar │ │ │ │ │ ├── index.rst │ │ │ │ │ └── lv_example_calendar_1.c │ │ │ │ │ ├── canvas │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_canvas_1.c │ │ │ │ │ ├── lv_example_canvas_1.py │ │ │ │ │ ├── lv_example_canvas_2.c │ │ │ │ │ └── lv_example_canvas_2.py │ │ │ │ │ ├── chart │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_chart_1.c │ │ │ │ │ ├── lv_example_chart_1.py │ │ │ │ │ ├── lv_example_chart_2.c │ │ │ │ │ ├── lv_example_chart_3.c │ │ │ │ │ ├── lv_example_chart_4.c │ │ │ │ │ ├── lv_example_chart_5.c │ │ │ │ │ ├── lv_example_chart_6.c │ │ │ │ │ └── lv_example_chart_7.c │ │ │ │ │ ├── checkbox │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_checkbox_1.c │ │ │ │ │ └── lv_example_checkbox_1.py │ │ │ │ │ ├── colorwheel │ │ │ │ │ ├── index.rst │ │ │ │ │ └── lv_example_colorwheel_1.c │ │ │ │ │ ├── dropdown │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_dropdown_1.c │ │ │ │ │ ├── lv_example_dropdown_1.py │ │ │ │ │ ├── lv_example_dropdown_2.c │ │ │ │ │ ├── lv_example_dropdown_2.py │ │ │ │ │ └── lv_example_dropdown_3.c │ │ │ │ │ ├── img │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_img_1.c │ │ │ │ │ ├── lv_example_img_1.py │ │ │ │ │ ├── lv_example_img_2.c │ │ │ │ │ ├── lv_example_img_3.c │ │ │ │ │ └── lv_example_img_4.c │ │ │ │ │ ├── imgbtn │ │ │ │ │ ├── index.rst │ │ │ │ │ └── lv_example_imgbtn_1.c │ │ │ │ │ ├── keyboard │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_keyboard_1.c │ │ │ │ │ └── lv_example_keyboard_1.py │ │ │ │ │ ├── label │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_label_1.c │ │ │ │ │ ├── lv_example_label_1.py │ │ │ │ │ ├── lv_example_label_2.c │ │ │ │ │ ├── lv_example_label_2.py │ │ │ │ │ └── lv_example_label_3.c │ │ │ │ │ ├── led │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_led_1.c │ │ │ │ │ └── lv_example_led_1.py │ │ │ │ │ ├── line │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_line_1.c │ │ │ │ │ └── lv_example_line_1.py │ │ │ │ │ ├── list │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_list_1.c │ │ │ │ │ └── lv_example_list_1.py │ │ │ │ │ ├── lv_example_widgets.h │ │ │ │ │ ├── meter │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_meter_1.c │ │ │ │ │ ├── lv_example_meter_2.c │ │ │ │ │ ├── lv_example_meter_3.c │ │ │ │ │ └── lv_example_meter_4.c │ │ │ │ │ ├── msgbox │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_msgbox_1.c │ │ │ │ │ ├── lv_example_msgbox_1.py │ │ │ │ │ └── lv_example_msgbox_2.py │ │ │ │ │ ├── obj │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_obj_1.c │ │ │ │ │ ├── lv_example_obj_1.py │ │ │ │ │ └── lv_example_obj_2.c │ │ │ │ │ ├── roller │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_roller_1.c │ │ │ │ │ ├── lv_example_roller_1.py │ │ │ │ │ ├── lv_example_roller_2.c │ │ │ │ │ └── lv_example_roller_3.c │ │ │ │ │ ├── slider │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_slider_1.c │ │ │ │ │ ├── lv_example_slider_1.py │ │ │ │ │ ├── lv_example_slider_2.c │ │ │ │ │ ├── lv_example_slider_2.py │ │ │ │ │ └── lv_example_slider_3.c │ │ │ │ │ ├── span │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_span_1.c │ │ │ │ │ └── lv_example_span_1.py │ │ │ │ │ ├── spinbox │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_spinbox_1.c │ │ │ │ │ └── lv_example_spinbox_1.py │ │ │ │ │ ├── spinner │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_spinner_1.c │ │ │ │ │ └── lv_example_spinner_1.py │ │ │ │ │ ├── switch │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_switch_1.c │ │ │ │ │ └── lv_example_switch_1.py │ │ │ │ │ ├── table │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_table_1.c │ │ │ │ │ ├── lv_example_table_1.py │ │ │ │ │ └── lv_example_table_2.c │ │ │ │ │ ├── tabview │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_tabview_1.c │ │ │ │ │ ├── lv_example_tabview_1.py │ │ │ │ │ └── lv_example_tabview_2.c │ │ │ │ │ ├── textarea │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_textarea_1.c │ │ │ │ │ ├── lv_example_textarea_1.py │ │ │ │ │ ├── lv_example_textarea_2.c │ │ │ │ │ ├── lv_example_textarea_2.py │ │ │ │ │ └── lv_example_textarea_3.c │ │ │ │ │ ├── tileview │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_tileview_1.c │ │ │ │ │ └── lv_example_tileview_1.py │ │ │ │ │ └── win │ │ │ │ │ ├── index.rst │ │ │ │ │ └── lv_example_win_1.c │ │ │ ├── library.json │ │ │ ├── library.properties │ │ │ ├── lv_conf_template.h │ │ │ ├── lvgl.h │ │ │ ├── lvgl.mk │ │ │ ├── scripts │ │ │ │ ├── Doxyfile │ │ │ │ ├── build_html_examples.sh │ │ │ │ ├── built_in_font │ │ │ │ │ ├── DejaVuSans.ttf │ │ │ │ │ ├── FontAwesome5-Solid+Brands+Regular.woff │ │ │ │ │ ├── Montserrat-Medium.ttf │ │ │ │ │ ├── SimSun.woff │ │ │ │ │ ├── built_in_font_gen.py │ │ │ │ │ ├── generate_all.py │ │ │ │ │ └── unscii-8.ttf │ │ │ │ ├── code-format.cfg │ │ │ │ ├── code-format.sh │ │ │ │ ├── cppcheck_run.sh │ │ │ │ ├── find_version.sh │ │ │ │ ├── genexamplelist.sh │ │ │ │ ├── infer_run.sh │ │ │ │ ├── lv_conf_internal_gen.py │ │ │ │ ├── release │ │ │ │ │ ├── patch.py │ │ │ │ │ └── release.py │ │ │ │ └── style_api_gen.py │ │ │ ├── src │ │ │ │ ├── core │ │ │ │ │ ├── lv_core.mk │ │ │ │ │ ├── lv_disp.c │ │ │ │ │ ├── lv_disp.h │ │ │ │ │ ├── lv_event.c │ │ │ │ │ ├── lv_event.h │ │ │ │ │ ├── lv_group.c │ │ │ │ │ ├── lv_group.h │ │ │ │ │ ├── lv_indev.c │ │ │ │ │ ├── lv_indev.h │ │ │ │ │ ├── lv_indev_scroll.c │ │ │ │ │ ├── lv_indev_scroll.h │ │ │ │ │ ├── lv_obj.c │ │ │ │ │ ├── lv_obj.h │ │ │ │ │ ├── lv_obj_class.c │ │ │ │ │ ├── lv_obj_class.h │ │ │ │ │ ├── lv_obj_draw.c │ │ │ │ │ ├── lv_obj_draw.h │ │ │ │ │ ├── lv_obj_pos.c │ │ │ │ │ ├── lv_obj_pos.h │ │ │ │ │ ├── lv_obj_scroll.c │ │ │ │ │ ├── lv_obj_scroll.h │ │ │ │ │ ├── lv_obj_style.c │ │ │ │ │ ├── lv_obj_style.h │ │ │ │ │ ├── lv_obj_style_gen.c │ │ │ │ │ ├── lv_obj_style_gen.h │ │ │ │ │ ├── lv_obj_tree.c │ │ │ │ │ ├── lv_obj_tree.h │ │ │ │ │ ├── lv_refr.c │ │ │ │ │ ├── lv_refr.h │ │ │ │ │ ├── lv_theme.c │ │ │ │ │ └── lv_theme.h │ │ │ │ ├── draw │ │ │ │ │ ├── lv_draw.h │ │ │ │ │ ├── lv_draw.mk │ │ │ │ │ ├── lv_draw_arc.c │ │ │ │ │ ├── lv_draw_arc.h │ │ │ │ │ ├── lv_draw_blend.c │ │ │ │ │ ├── lv_draw_blend.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_mask.c │ │ │ │ │ ├── lv_draw_mask.h │ │ │ │ │ ├── lv_draw_rect.c │ │ │ │ │ ├── lv_draw_rect.h │ │ │ │ │ ├── lv_draw_triangle.c │ │ │ │ │ ├── lv_draw_triangle.h │ │ │ │ │ ├── lv_img_buf.c │ │ │ │ │ ├── lv_img_buf.h │ │ │ │ │ ├── lv_img_cache.c │ │ │ │ │ ├── lv_img_cache.h │ │ │ │ │ ├── lv_img_decoder.c │ │ │ │ │ └── lv_img_decoder.h │ │ │ │ ├── extra │ │ │ │ │ ├── extra.mk │ │ │ │ │ ├── layouts │ │ │ │ │ │ ├── flex │ │ │ │ │ │ │ ├── lv_flex.c │ │ │ │ │ │ │ └── lv_flex.h │ │ │ │ │ │ ├── grid │ │ │ │ │ │ │ ├── lv_grid.c │ │ │ │ │ │ │ └── lv_grid.h │ │ │ │ │ │ └── lv_layouts.h │ │ │ │ │ ├── lv_extra.c │ │ │ │ │ ├── lv_extra.h │ │ │ │ │ ├── themes │ │ │ │ │ │ ├── basic │ │ │ │ │ │ │ ├── lv_theme_basic.c │ │ │ │ │ │ │ └── lv_theme_basic.h │ │ │ │ │ │ ├── default │ │ │ │ │ │ │ ├── lv_theme_default.c │ │ │ │ │ │ │ └── lv_theme_default.h │ │ │ │ │ │ ├── lv_themes.h │ │ │ │ │ │ └── mono │ │ │ │ │ │ │ ├── lv_theme_mono.c │ │ │ │ │ │ │ └── lv_theme_mono.h │ │ │ │ │ └── widgets │ │ │ │ │ │ ├── animimg │ │ │ │ │ │ ├── lv_animimg.c │ │ │ │ │ │ └── lv_animimg.h │ │ │ │ │ │ ├── calendar │ │ │ │ │ │ ├── lv_calendar.c │ │ │ │ │ │ ├── lv_calendar.h │ │ │ │ │ │ ├── lv_calendar_header_arrow.c │ │ │ │ │ │ ├── lv_calendar_header_arrow.h │ │ │ │ │ │ ├── lv_calendar_header_dropdown.c │ │ │ │ │ │ └── lv_calendar_header_dropdown.h │ │ │ │ │ │ ├── chart │ │ │ │ │ │ ├── lv_chart.c │ │ │ │ │ │ └── lv_chart.h │ │ │ │ │ │ ├── colorwheel │ │ │ │ │ │ ├── lv_colorwheel.c │ │ │ │ │ │ └── lv_colorwheel.h │ │ │ │ │ │ ├── imgbtn │ │ │ │ │ │ ├── lv_imgbtn.c │ │ │ │ │ │ └── lv_imgbtn.h │ │ │ │ │ │ ├── keyboard │ │ │ │ │ │ ├── lv_keyboard.c │ │ │ │ │ │ └── lv_keyboard.h │ │ │ │ │ │ ├── led │ │ │ │ │ │ ├── lv_led.c │ │ │ │ │ │ └── lv_led.h │ │ │ │ │ │ ├── list │ │ │ │ │ │ ├── lv_list.c │ │ │ │ │ │ └── lv_list.h │ │ │ │ │ │ ├── lv_widgets.h │ │ │ │ │ │ ├── meter │ │ │ │ │ │ ├── lv_meter.c │ │ │ │ │ │ └── lv_meter.h │ │ │ │ │ │ ├── msgbox │ │ │ │ │ │ ├── lv_msgbox.c │ │ │ │ │ │ └── lv_msgbox.h │ │ │ │ │ │ ├── span │ │ │ │ │ │ ├── lv_span.c │ │ │ │ │ │ └── lv_span.h │ │ │ │ │ │ ├── spinbox │ │ │ │ │ │ ├── lv_spinbox.c │ │ │ │ │ │ └── lv_spinbox.h │ │ │ │ │ │ ├── spinner │ │ │ │ │ │ ├── lv_spinner.c │ │ │ │ │ │ └── lv_spinner.h │ │ │ │ │ │ ├── tabview │ │ │ │ │ │ ├── lv_tabview.c │ │ │ │ │ │ └── lv_tabview.h │ │ │ │ │ │ ├── tileview │ │ │ │ │ │ ├── lv_tileview.c │ │ │ │ │ │ └── lv_tileview.h │ │ │ │ │ │ └── win │ │ │ │ │ │ ├── lv_win.c │ │ │ │ │ │ └── lv_win.h │ │ │ │ ├── font │ │ │ │ │ ├── korean.ttf │ │ │ │ │ ├── lv_font.c │ │ │ │ │ ├── lv_font.h │ │ │ │ │ ├── lv_font.mk │ │ │ │ │ ├── lv_font_dejavu_16_persian_hebrew.c │ │ │ │ │ ├── lv_font_fmt_txt.c │ │ │ │ │ ├── lv_font_fmt_txt.h │ │ │ │ │ ├── lv_font_loader.c │ │ │ │ │ ├── lv_font_loader.h │ │ │ │ │ ├── lv_font_montserrat_10.c │ │ │ │ │ ├── lv_font_montserrat_12.c │ │ │ │ │ ├── lv_font_montserrat_12_subpx.c │ │ │ │ │ ├── lv_font_montserrat_14.c │ │ │ │ │ ├── lv_font_montserrat_16.c │ │ │ │ │ ├── lv_font_montserrat_18.c │ │ │ │ │ ├── lv_font_montserrat_20.c │ │ │ │ │ ├── lv_font_montserrat_22.c │ │ │ │ │ ├── lv_font_montserrat_24.c │ │ │ │ │ ├── lv_font_montserrat_26.c │ │ │ │ │ ├── lv_font_montserrat_28.c │ │ │ │ │ ├── lv_font_montserrat_28_compressed.c │ │ │ │ │ ├── lv_font_montserrat_30.c │ │ │ │ │ ├── lv_font_montserrat_32.c │ │ │ │ │ ├── lv_font_montserrat_34.c │ │ │ │ │ ├── lv_font_montserrat_36.c │ │ │ │ │ ├── lv_font_montserrat_38.c │ │ │ │ │ ├── lv_font_montserrat_40.c │ │ │ │ │ ├── lv_font_montserrat_42.c │ │ │ │ │ ├── lv_font_montserrat_44.c │ │ │ │ │ ├── lv_font_montserrat_46.c │ │ │ │ │ ├── lv_font_montserrat_48.c │ │ │ │ │ ├── lv_font_montserrat_8.c │ │ │ │ │ ├── lv_font_simsun_16_cjk.c │ │ │ │ │ ├── lv_font_unscii_16.c │ │ │ │ │ ├── lv_font_unscii_8.c │ │ │ │ │ └── lv_symbol_def.h │ │ │ │ ├── gpu │ │ │ │ │ ├── lv_gpu.mk │ │ │ │ │ ├── lv_gpu_nxp_pxp.c │ │ │ │ │ ├── lv_gpu_nxp_pxp.h │ │ │ │ │ ├── lv_gpu_nxp_pxp_osa.c │ │ │ │ │ ├── lv_gpu_nxp_pxp_osa.h │ │ │ │ │ ├── lv_gpu_nxp_vglite.c │ │ │ │ │ ├── lv_gpu_nxp_vglite.h │ │ │ │ │ ├── lv_gpu_stm32_dma2d.c │ │ │ │ │ └── lv_gpu_stm32_dma2d.h │ │ │ │ ├── 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_api_map.h │ │ │ │ ├── lv_conf_internal.h │ │ │ │ ├── lv_conf_kconfig.h │ │ │ │ ├── lvgl.h │ │ │ │ ├── misc │ │ │ │ │ ├── lv_anim.c │ │ │ │ │ ├── lv_anim.h │ │ │ │ │ ├── lv_area.c │ │ │ │ │ ├── lv_area.h │ │ │ │ │ ├── lv_assert.h │ │ │ │ │ ├── lv_async.c │ │ │ │ │ ├── lv_async.h │ │ │ │ │ ├── lv_bidi.c │ │ │ │ │ ├── lv_bidi.h │ │ │ │ │ ├── lv_color.c │ │ │ │ │ ├── lv_color.h │ │ │ │ │ ├── lv_fs.c │ │ │ │ │ ├── lv_fs.h │ │ │ │ │ ├── lv_gc.c │ │ │ │ │ ├── lv_gc.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_printf.c │ │ │ │ │ ├── lv_printf.h │ │ │ │ │ ├── lv_style.c │ │ │ │ │ ├── lv_style.h │ │ │ │ │ ├── lv_style_gen.c │ │ │ │ │ ├── lv_style_gen.h │ │ │ │ │ ├── lv_templ.c │ │ │ │ │ ├── lv_templ.h │ │ │ │ │ ├── lv_timer.c │ │ │ │ │ ├── lv_timer.h │ │ │ │ │ ├── lv_tlsf.c │ │ │ │ │ ├── lv_tlsf.h │ │ │ │ │ ├── lv_txt.c │ │ │ │ │ ├── lv_txt.h │ │ │ │ │ ├── lv_txt_ap.c │ │ │ │ │ ├── lv_txt_ap.h │ │ │ │ │ ├── lv_types.h │ │ │ │ │ ├── lv_utils.c │ │ │ │ │ └── lv_utils.h │ │ │ │ └── widgets │ │ │ │ │ ├── lv_arc.c │ │ │ │ │ ├── lv_arc.h │ │ │ │ │ ├── lv_bar.c │ │ │ │ │ ├── lv_bar.h │ │ │ │ │ ├── lv_btn.c │ │ │ │ │ ├── lv_btn.h │ │ │ │ │ ├── lv_btnmatrix.c │ │ │ │ │ ├── lv_btnmatrix.h │ │ │ │ │ ├── lv_canvas.c │ │ │ │ │ ├── lv_canvas.h │ │ │ │ │ ├── lv_checkbox.c │ │ │ │ │ ├── lv_checkbox.h │ │ │ │ │ ├── lv_dropdown.c │ │ │ │ │ ├── lv_dropdown.h │ │ │ │ │ ├── lv_img.c │ │ │ │ │ ├── lv_img.h │ │ │ │ │ ├── lv_label.c │ │ │ │ │ ├── lv_label.h │ │ │ │ │ ├── lv_line.c │ │ │ │ │ ├── lv_line.h │ │ │ │ │ ├── lv_objx_templ.c │ │ │ │ │ ├── lv_objx_templ.h │ │ │ │ │ ├── lv_roller.c │ │ │ │ │ ├── lv_roller.h │ │ │ │ │ ├── lv_slider.c │ │ │ │ │ ├── lv_slider.h │ │ │ │ │ ├── lv_switch.c │ │ │ │ │ ├── lv_switch.h │ │ │ │ │ ├── lv_table.c │ │ │ │ │ ├── lv_table.h │ │ │ │ │ ├── lv_textarea.c │ │ │ │ │ ├── lv_textarea.h │ │ │ │ │ └── lv_widgets.mk │ │ │ ├── tests │ │ │ │ ├── Makefile │ │ │ │ ├── build.py │ │ │ │ ├── font_1.fnt │ │ │ │ ├── font_2.fnt │ │ │ │ ├── font_3.fnt │ │ │ │ ├── icon.png │ │ │ │ ├── icon2.png │ │ │ │ ├── lv_test_assert.c │ │ │ │ ├── lv_test_assert.h │ │ │ │ ├── lv_test_conf.h │ │ │ │ ├── lv_test_core │ │ │ │ │ ├── lv_test_core.c │ │ │ │ │ ├── lv_test_core.h │ │ │ │ │ ├── lv_test_font_loader.c │ │ │ │ │ ├── lv_test_font_loader.h │ │ │ │ │ ├── lv_test_obj.c │ │ │ │ │ ├── lv_test_obj.h │ │ │ │ │ ├── lv_test_style.c │ │ │ │ │ └── lv_test_style.h │ │ │ │ ├── lv_test_fonts │ │ │ │ │ ├── font_1.c │ │ │ │ │ ├── font_2.c │ │ │ │ │ └── font_3.c │ │ │ │ ├── lv_test_main.c │ │ │ │ ├── lv_test_ref_imgs │ │ │ │ │ └── lv_test_img32_label_1.png │ │ │ │ └── lv_test_widgets │ │ │ │ │ ├── lv_test_label.c │ │ │ │ │ └── lv_test_label.h │ │ │ └── zephyr │ │ │ │ └── module.yml │ │ └── lvgl_esp32_drivers │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── CONTRIBUTE_CONTROLLER_SUPPORT.md │ │ │ ├── Kconfig │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── component.mk │ │ │ ├── lvgl_helpers.c │ │ │ ├── lvgl_helpers.h │ │ │ ├── lvgl_i2c │ │ │ ├── Kconfig │ │ │ ├── README.md │ │ │ ├── i2c_manager.c │ │ │ └── i2c_manager.h │ │ │ ├── lvgl_spi_conf.h │ │ │ ├── lvgl_tft │ │ │ ├── EVE.h │ │ │ ├── EVE_commands.c │ │ │ ├── EVE_commands.h │ │ │ ├── EVE_config.h │ │ │ ├── FT81x.c │ │ │ ├── FT81x.h │ │ │ ├── GC9A01.c │ │ │ ├── GC9A01.h │ │ │ ├── Kconfig │ │ │ ├── disp_driver.c │ │ │ ├── disp_driver.h │ │ │ ├── disp_spi.c │ │ │ ├── disp_spi.h │ │ │ ├── esp_lcd_backlight.c │ │ │ ├── esp_lcd_backlight.h │ │ │ ├── hx8357.c │ │ │ ├── hx8357.h │ │ │ ├── il3820.c │ │ │ ├── il3820.h │ │ │ ├── ili9163c.c │ │ │ ├── ili9163c.h │ │ │ ├── ili9341.c │ │ │ ├── ili9341.h │ │ │ ├── ili9481.c │ │ │ ├── ili9481.h │ │ │ ├── ili9486.c │ │ │ ├── ili9486.h │ │ │ ├── ili9488.c │ │ │ ├── ili9488.h │ │ │ ├── jd79653a.c │ │ │ ├── jd79653a.h │ │ │ ├── pcd8544.c │ │ │ ├── pcd8544.h │ │ │ ├── ra8875.c │ │ │ ├── ra8875.h │ │ │ ├── sh1107.c │ │ │ ├── sh1107.h │ │ │ ├── ssd1306.c │ │ │ ├── ssd1306.h │ │ │ ├── st7735s.c │ │ │ ├── st7735s.h │ │ │ ├── st7789.c │ │ │ ├── st7789.h │ │ │ ├── st7796s.c │ │ │ ├── st7796s.h │ │ │ ├── uc8151d.c │ │ │ └── uc8151d.h │ │ │ └── lvgl_touch │ │ │ ├── FT81x.c │ │ │ ├── FT81x.h │ │ │ ├── Kconfig │ │ │ ├── adcraw.c │ │ │ ├── adcraw.h │ │ │ ├── ft6x36.c │ │ │ ├── ft6x36.h │ │ │ ├── gt911.c │ │ │ ├── gt911.h │ │ │ ├── ra8875_touch.c │ │ │ ├── ra8875_touch.h │ │ │ ├── stmpe610.c │ │ │ ├── stmpe610.h │ │ │ ├── touch_driver.c │ │ │ ├── touch_driver.h │ │ │ ├── tp_spi.c │ │ │ ├── tp_spi.h │ │ │ ├── xpt2046.c │ │ │ └── xpt2046.h │ ├── main │ │ ├── CMakeLists.txt │ │ └── main.c │ ├── partitions.csv │ ├── sdkconfig │ └── sdkconfig.old └── 3_lvgl7_10_porting │ ├── .devcontainer │ ├── Dockerfile │ └── devcontainer.json │ ├── .vscode │ ├── c_cpp_properties.json │ ├── launch.json │ ├── settings.json │ └── tasks.json │ ├── CMakeLists.txt │ ├── README.md │ ├── components │ ├── lvgl │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .gitmodules │ │ ├── CHANGELOG.md │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── LICENCE.txt │ │ ├── README.md │ │ ├── component.mk │ │ ├── docs │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── CODING_STYLE.md │ │ │ ├── CONTRIBUTING.md │ │ │ └── ROADMAP.md │ │ ├── examples │ │ │ ├── LVGL_Arduino.ino │ │ │ └── porting │ │ │ │ ├── lv_port_disp_template.c │ │ │ │ ├── lv_port_disp_template.h │ │ │ │ ├── lv_port_fs_template.c │ │ │ │ ├── lv_port_fs_template.h │ │ │ │ ├── lv_port_indev_template.c │ │ │ │ └── lv_port_indev_template.h │ │ ├── library.json │ │ ├── library.properties │ │ ├── lv_conf_template.h │ │ ├── lvgl.h │ │ ├── lvgl.mk │ │ ├── scripts │ │ │ ├── Doxyfile │ │ │ ├── built_in_font │ │ │ │ ├── DejaVuSans.ttf │ │ │ │ ├── FontAwesome5-Solid+Brands+Regular.woff │ │ │ │ ├── Montserrat-Medium.ttf │ │ │ │ ├── SimSun.woff │ │ │ │ ├── built_in_font_gen.py │ │ │ │ └── generate_all.py │ │ │ ├── code-format.cfg │ │ │ ├── code-format.sh │ │ │ ├── cppcheck_run.sh │ │ │ ├── infer_run.sh │ │ │ ├── lv_conf_checker.py │ │ │ └── release │ │ │ │ ├── com.py │ │ │ │ ├── dev.py │ │ │ │ ├── main.py │ │ │ │ ├── proj.py │ │ │ │ └── release.py │ │ ├── src │ │ │ ├── lv_api_map.h │ │ │ ├── lv_conf_internal.h │ │ │ ├── lv_conf_kconfig.h │ │ │ ├── lv_core │ │ │ │ ├── lv_core.mk │ │ │ │ ├── lv_disp.c │ │ │ │ ├── lv_disp.h │ │ │ │ ├── lv_group.c │ │ │ │ ├── lv_group.h │ │ │ │ ├── lv_indev.c │ │ │ │ ├── lv_indev.h │ │ │ │ ├── lv_obj.c │ │ │ │ ├── lv_obj.h │ │ │ │ ├── lv_obj_style_dec.h │ │ │ │ ├── lv_refr.c │ │ │ │ ├── lv_refr.h │ │ │ │ ├── lv_style.c │ │ │ │ └── lv_style.h │ │ │ ├── lv_draw │ │ │ │ ├── lv_draw.h │ │ │ │ ├── lv_draw.mk │ │ │ │ ├── lv_draw_arc.c │ │ │ │ ├── lv_draw_arc.h │ │ │ │ ├── lv_draw_blend.c │ │ │ │ ├── lv_draw_blend.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_mask.c │ │ │ │ ├── lv_draw_mask.h │ │ │ │ ├── lv_draw_rect.c │ │ │ │ ├── lv_draw_rect.h │ │ │ │ ├── lv_draw_triangle.c │ │ │ │ ├── lv_draw_triangle.h │ │ │ │ ├── lv_img_buf.c │ │ │ │ ├── lv_img_buf.h │ │ │ │ ├── lv_img_cache.c │ │ │ │ ├── lv_img_cache.h │ │ │ │ ├── lv_img_decoder.c │ │ │ │ └── lv_img_decoder.h │ │ │ ├── lv_font │ │ │ │ ├── lv_font.c │ │ │ │ ├── lv_font.h │ │ │ │ ├── lv_font.mk │ │ │ │ ├── lv_font_dejavu_16_persian_hebrew.c │ │ │ │ ├── lv_font_fmt_txt.c │ │ │ │ ├── lv_font_fmt_txt.h │ │ │ │ ├── lv_font_loader.c │ │ │ │ ├── lv_font_loader.h │ │ │ │ ├── lv_font_montserrat_10.c │ │ │ │ ├── lv_font_montserrat_12.c │ │ │ │ ├── lv_font_montserrat_12_subpx.c │ │ │ │ ├── lv_font_montserrat_14.c │ │ │ │ ├── lv_font_montserrat_16.c │ │ │ │ ├── lv_font_montserrat_18.c │ │ │ │ ├── lv_font_montserrat_20.c │ │ │ │ ├── lv_font_montserrat_22.c │ │ │ │ ├── lv_font_montserrat_24.c │ │ │ │ ├── lv_font_montserrat_26.c │ │ │ │ ├── lv_font_montserrat_28.c │ │ │ │ ├── lv_font_montserrat_28_compressed.c │ │ │ │ ├── lv_font_montserrat_30.c │ │ │ │ ├── lv_font_montserrat_32.c │ │ │ │ ├── lv_font_montserrat_34.c │ │ │ │ ├── lv_font_montserrat_36.c │ │ │ │ ├── lv_font_montserrat_38.c │ │ │ │ ├── lv_font_montserrat_40.c │ │ │ │ ├── lv_font_montserrat_42.c │ │ │ │ ├── lv_font_montserrat_44.c │ │ │ │ ├── lv_font_montserrat_46.c │ │ │ │ ├── lv_font_montserrat_48.c │ │ │ │ ├── lv_font_montserrat_8.c │ │ │ │ ├── lv_font_simsun_16_cjk.c │ │ │ │ ├── lv_font_unscii_16.c │ │ │ │ ├── lv_font_unscii_8.c │ │ │ │ └── lv_symbol_def.h │ │ │ ├── lv_gpu │ │ │ │ ├── lv_gpu.mk │ │ │ │ ├── lv_gpu_nxp_pxp.c │ │ │ │ ├── lv_gpu_nxp_pxp.h │ │ │ │ ├── lv_gpu_nxp_pxp_osa.c │ │ │ │ ├── lv_gpu_nxp_pxp_osa.h │ │ │ │ ├── lv_gpu_nxp_vglite.c │ │ │ │ ├── lv_gpu_nxp_vglite.h │ │ │ │ ├── lv_gpu_stm32_dma2d.c │ │ │ │ └── lv_gpu_stm32_dma2d.h │ │ │ ├── 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_async.c │ │ │ │ ├── lv_async.h │ │ │ │ ├── lv_bidi.c │ │ │ │ ├── lv_bidi.h │ │ │ │ ├── lv_color.c │ │ │ │ ├── lv_color.h │ │ │ │ ├── lv_debug.c │ │ │ │ ├── lv_debug.h │ │ │ │ ├── lv_fs.c │ │ │ │ ├── lv_fs.h │ │ │ │ ├── lv_gc.c │ │ │ │ ├── lv_gc.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_printf.c │ │ │ │ ├── lv_printf.h │ │ │ │ ├── lv_task.c │ │ │ │ ├── lv_task.h │ │ │ │ ├── lv_templ.c │ │ │ │ ├── lv_templ.h │ │ │ │ ├── lv_txt.c │ │ │ │ ├── lv_txt.h │ │ │ │ ├── lv_txt_ap.c │ │ │ │ ├── lv_txt_ap.h │ │ │ │ ├── lv_types.h │ │ │ │ ├── lv_utils.c │ │ │ │ └── lv_utils.h │ │ │ ├── lv_themes │ │ │ │ ├── lv_theme.c │ │ │ │ ├── lv_theme.h │ │ │ │ ├── lv_theme_empty.c │ │ │ │ ├── lv_theme_empty.h │ │ │ │ ├── lv_theme_material.c │ │ │ │ ├── lv_theme_material.h │ │ │ │ ├── lv_theme_mono.c │ │ │ │ ├── lv_theme_mono.h │ │ │ │ ├── lv_theme_template.c │ │ │ │ ├── lv_theme_template.h │ │ │ │ └── lv_themes.mk │ │ │ ├── lv_widgets │ │ │ │ ├── lv_arc.c │ │ │ │ ├── lv_arc.h │ │ │ │ ├── lv_bar.c │ │ │ │ ├── lv_bar.h │ │ │ │ ├── lv_btn.c │ │ │ │ ├── lv_btn.h │ │ │ │ ├── lv_btnmatrix.c │ │ │ │ ├── lv_btnmatrix.h │ │ │ │ ├── lv_calendar.c │ │ │ │ ├── lv_calendar.h │ │ │ │ ├── lv_canvas.c │ │ │ │ ├── lv_canvas.h │ │ │ │ ├── lv_chart.c │ │ │ │ ├── lv_chart.h │ │ │ │ ├── lv_checkbox.c │ │ │ │ ├── lv_checkbox.h │ │ │ │ ├── lv_cont.c │ │ │ │ ├── lv_cont.h │ │ │ │ ├── lv_cpicker.c │ │ │ │ ├── lv_cpicker.h │ │ │ │ ├── lv_dropdown.c │ │ │ │ ├── lv_dropdown.h │ │ │ │ ├── lv_gauge.c │ │ │ │ ├── lv_gauge.h │ │ │ │ ├── lv_img.c │ │ │ │ ├── lv_img.h │ │ │ │ ├── lv_imgbtn.c │ │ │ │ ├── lv_imgbtn.h │ │ │ │ ├── lv_keyboard.c │ │ │ │ ├── lv_keyboard.h │ │ │ │ ├── lv_label.c │ │ │ │ ├── lv_label.h │ │ │ │ ├── lv_led.c │ │ │ │ ├── lv_led.h │ │ │ │ ├── lv_line.c │ │ │ │ ├── lv_line.h │ │ │ │ ├── lv_linemeter.c │ │ │ │ ├── lv_linemeter.h │ │ │ │ ├── lv_list.c │ │ │ │ ├── lv_list.h │ │ │ │ ├── lv_msgbox.c │ │ │ │ ├── lv_msgbox.h │ │ │ │ ├── lv_objmask.c │ │ │ │ ├── lv_objmask.h │ │ │ │ ├── lv_objx_templ.c │ │ │ │ ├── lv_objx_templ.h │ │ │ │ ├── lv_page.c │ │ │ │ ├── lv_page.h │ │ │ │ ├── lv_roller.c │ │ │ │ ├── lv_roller.h │ │ │ │ ├── lv_slider.c │ │ │ │ ├── lv_slider.h │ │ │ │ ├── lv_spinbox.c │ │ │ │ ├── lv_spinbox.h │ │ │ │ ├── lv_spinner.c │ │ │ │ ├── lv_spinner.h │ │ │ │ ├── lv_switch.c │ │ │ │ ├── lv_switch.h │ │ │ │ ├── lv_table.c │ │ │ │ ├── lv_table.h │ │ │ │ ├── lv_tabview.c │ │ │ │ ├── lv_tabview.h │ │ │ │ ├── lv_textarea.c │ │ │ │ ├── lv_textarea.h │ │ │ │ ├── lv_tileview.c │ │ │ │ ├── lv_tileview.h │ │ │ │ ├── lv_widgets.mk │ │ │ │ ├── lv_win.c │ │ │ │ └── lv_win.h │ │ │ └── lvgl.h │ │ ├── tests │ │ │ ├── Makefile │ │ │ ├── build.py │ │ │ ├── font_1.fnt │ │ │ ├── font_2.fnt │ │ │ ├── font_3.fnt │ │ │ ├── icon.png │ │ │ ├── icon2.png │ │ │ ├── lv_test_assert.c │ │ │ ├── lv_test_assert.h │ │ │ ├── lv_test_conf.h │ │ │ ├── lv_test_core │ │ │ │ ├── lv_test_core.c │ │ │ │ ├── lv_test_core.h │ │ │ │ ├── lv_test_font_loader.c │ │ │ │ ├── lv_test_font_loader.h │ │ │ │ ├── lv_test_obj.c │ │ │ │ ├── lv_test_obj.h │ │ │ │ ├── lv_test_style.c │ │ │ │ └── lv_test_style.h │ │ │ ├── lv_test_fonts │ │ │ │ ├── font_1.c │ │ │ │ ├── font_2.c │ │ │ │ └── font_3.c │ │ │ ├── lv_test_main.c │ │ │ ├── lv_test_ref_imgs │ │ │ │ └── lv_test_img32_label_1.png │ │ │ └── lv_test_widgets │ │ │ │ ├── lv_test_label.c │ │ │ │ └── lv_test_label.h │ │ └── zephyr │ │ │ └── module.yml │ └── lvgl_esp32_drivers │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── CONTRIBUTE_CONTROLLER_SUPPORT.md │ │ ├── Kconfig │ │ ├── LICENSE │ │ ├── README.md │ │ ├── component.mk │ │ ├── lvgl_helpers.c │ │ ├── lvgl_helpers.h │ │ ├── lvgl_i2c │ │ ├── Kconfig │ │ ├── README.md │ │ ├── i2c_manager.c │ │ └── i2c_manager.h │ │ ├── lvgl_spi_conf.h │ │ ├── lvgl_tft │ │ ├── EVE.h │ │ ├── EVE_commands.c │ │ ├── EVE_commands.h │ │ ├── EVE_config.h │ │ ├── FT81x.c │ │ ├── FT81x.h │ │ ├── GC9A01.c │ │ ├── GC9A01.h │ │ ├── Kconfig │ │ ├── disp_driver.c │ │ ├── disp_driver.h │ │ ├── disp_spi.c │ │ ├── disp_spi.h │ │ ├── esp_lcd_backlight.c │ │ ├── esp_lcd_backlight.h │ │ ├── hx8357.c │ │ ├── hx8357.h │ │ ├── il3820.c │ │ ├── il3820.h │ │ ├── ili9163c.c │ │ ├── ili9163c.h │ │ ├── ili9341.c │ │ ├── ili9341.h │ │ ├── ili9481.c │ │ ├── ili9481.h │ │ ├── ili9486.c │ │ ├── ili9486.h │ │ ├── ili9488.c │ │ ├── ili9488.h │ │ ├── jd79653a.c │ │ ├── jd79653a.h │ │ ├── pcd8544.c │ │ ├── pcd8544.h │ │ ├── ra8875.c │ │ ├── ra8875.h │ │ ├── sh1107.c │ │ ├── sh1107.h │ │ ├── ssd1306.c │ │ ├── ssd1306.h │ │ ├── st7735s.c │ │ ├── st7735s.h │ │ ├── st7789.c │ │ ├── st7789.h │ │ ├── st7796s.c │ │ ├── st7796s.h │ │ ├── uc8151d.c │ │ └── uc8151d.h │ │ └── lvgl_touch │ │ ├── FT81x.c │ │ ├── FT81x.h │ │ ├── Kconfig │ │ ├── adcraw.c │ │ ├── adcraw.h │ │ ├── ft6x36.c │ │ ├── ft6x36.h │ │ ├── gt911.c │ │ ├── gt911.h │ │ ├── ra8875_touch.c │ │ ├── ra8875_touch.h │ │ ├── stmpe610.c │ │ ├── stmpe610.h │ │ ├── touch_driver.c │ │ ├── touch_driver.h │ │ ├── tp_spi.c │ │ ├── tp_spi.h │ │ ├── xpt2046.c │ │ └── xpt2046.h │ ├── debug.log │ ├── main │ ├── CMakeLists.txt │ ├── lvgl_widgets_test.c │ ├── lvgl_widgets_test.h │ └── main.c │ ├── partitions.csv │ ├── sdkconfig │ └── sdkconfig.old ├── 4_bluetooth ├── 1_vhci_ble_adv │ ├── .devcontainer │ │ ├── Dockerfile │ │ └── devcontainer.json │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── launch.json │ │ ├── settings.json │ │ └── tasks.json │ ├── CMakeLists.txt │ ├── README.md │ ├── main │ │ ├── CMakeLists.txt │ │ └── main.c │ ├── sdkconfig │ └── sdkconfig.old ├── 2_vhci_ble_scan │ ├── .devcontainer │ │ ├── Dockerfile │ │ └── devcontainer.json │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── launch.json │ │ ├── settings.json │ │ └── tasks.json │ ├── CMakeLists.txt │ ├── README.md │ ├── main │ │ ├── CMakeLists.txt │ │ ├── bt_hci_common.c │ │ ├── bt_hci_common.h │ │ └── main.c │ ├── sdkconfig │ └── sdkconfig.old ├── 3_vhci_classical_scan_mode │ ├── .devcontainer │ │ ├── Dockerfile │ │ └── devcontainer.json │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── launch.json │ │ ├── settings.json │ │ └── tasks.json │ ├── CMakeLists.txt │ ├── README.md │ ├── main │ │ ├── CMakeLists.txt │ │ ├── bt_hci_common.c │ │ ├── bt_hci_common.h │ │ └── main.c │ ├── sdkconfig │ └── sdkconfig.old ├── 4_controller_hci_uart_esp32 │ ├── .devcontainer │ │ ├── Dockerfile │ │ └── devcontainer.json │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── launch.json │ │ └── settings.json │ ├── CMakeLists.txt │ ├── README.md │ ├── main │ │ ├── CMakeLists.txt │ │ └── controller_hci_uart_demo.c │ ├── sdkconfig │ ├── sdkconfig.defaults │ └── sdkconfig.old └── 5_ble_mesh_onoff_server │ ├── .devcontainer │ ├── Dockerfile │ └── devcontainer.json │ ├── .vscode │ ├── c_cpp_properties.json │ ├── launch.json │ └── settings.json │ ├── CMakeLists.txt │ ├── README.md │ ├── dependencies.lock │ ├── main │ ├── CMakeLists.txt │ ├── Kconfig.projbuild │ ├── board.c │ ├── board.h │ ├── idf_component.yml │ └── main.c │ ├── sdkconfig │ ├── sdkconfig.ci.adv │ ├── sdkconfig.ci.bluedroid │ ├── sdkconfig.ci.bluedroid_deinit │ ├── sdkconfig.ci.bluedroid_log │ ├── sdkconfig.ci.model │ ├── sdkconfig.ci.nimble │ ├── sdkconfig.ci.nimble_deinit │ ├── sdkconfig.ci.nimble_log │ ├── sdkconfig.ci.scan │ ├── sdkconfig.defaults │ ├── sdkconfig.defaults.esp32 │ ├── sdkconfig.defaults.esp32c3 │ ├── sdkconfig.defaults.esp32c6 │ ├── sdkconfig.defaults.esp32h2 │ ├── sdkconfig.defaults.esp32s3 │ └── tutorial │ └── BLE_Mesh_Node_OnOff_Server_Example_Walkthrough.md ├── 5_wifi ├── 1_station │ ├── .devcontainer │ │ ├── Dockerfile │ │ └── devcontainer.json │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── launch.json │ │ ├── settings.json │ │ └── tasks.json │ ├── CMakeLists.txt │ ├── README.md │ ├── main │ │ ├── CMakeLists.txt │ │ └── main.c │ └── sdkconfig └── 2_ap │ ├── .devcontainer │ ├── Dockerfile │ └── devcontainer.json │ ├── .vscode │ ├── c_cpp_properties.json │ ├── launch.json │ ├── settings.json │ └── tasks.json │ ├── CMakeLists.txt │ ├── README.md │ ├── main │ ├── CMakeLists.txt │ └── main.c │ └── sdkconfig ├── 6_freeRTOS ├── 1_msg_queue │ ├── .devcontainer │ │ ├── Dockerfile │ │ └── devcontainer.json │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── launch.json │ │ ├── settings.json │ │ └── tasks.json │ ├── CMakeLists.txt │ ├── README.md │ ├── main │ │ ├── CMakeLists.txt │ │ └── main.c │ └── sdkconfig └── 2_event_group │ ├── .devcontainer │ ├── Dockerfile │ └── devcontainer.json │ ├── .vscode │ ├── c_cpp_properties.json │ ├── launch.json │ ├── settings.json │ └── tasks.json │ ├── CMakeLists.txt │ ├── README.md │ ├── main │ ├── CMakeLists.txt │ └── main.c │ └── sdkconfig ├── CHANGELOG.md ├── README.md └── TODO.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/.gitignore -------------------------------------------------------------------------------- /1_base_project/system_log/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/1_base_project/system_log/.vscode/settings.json -------------------------------------------------------------------------------- /1_base_project/system_log/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/1_base_project/system_log/CMakeLists.txt -------------------------------------------------------------------------------- /1_base_project/system_log/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/1_base_project/system_log/Makefile -------------------------------------------------------------------------------- /1_base_project/system_log/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/1_base_project/system_log/README.md -------------------------------------------------------------------------------- /1_base_project/system_log/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/1_base_project/system_log/main/CMakeLists.txt -------------------------------------------------------------------------------- /1_base_project/system_log/main/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/1_base_project/system_log/main/component.mk -------------------------------------------------------------------------------- /1_base_project/system_log/main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/1_base_project/system_log/main/main.c -------------------------------------------------------------------------------- /1_base_project/system_log/main/wl_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/1_base_project/system_log/main/wl_log.h -------------------------------------------------------------------------------- /1_base_project/system_log/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/1_base_project/system_log/sdkconfig -------------------------------------------------------------------------------- /1_base_project/template-app/.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/1_base_project/template-app/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /1_base_project/template-app/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/1_base_project/template-app/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /1_base_project/template-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/1_base_project/template-app/.gitignore -------------------------------------------------------------------------------- /1_base_project/template-app/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/1_base_project/template-app/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /1_base_project/template-app/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/1_base_project/template-app/.vscode/launch.json -------------------------------------------------------------------------------- /1_base_project/template-app/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/1_base_project/template-app/.vscode/settings.json -------------------------------------------------------------------------------- /1_base_project/template-app/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/1_base_project/template-app/.vscode/tasks.json -------------------------------------------------------------------------------- /1_base_project/template-app/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/1_base_project/template-app/CMakeLists.txt -------------------------------------------------------------------------------- /1_base_project/template-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/1_base_project/template-app/README.md -------------------------------------------------------------------------------- /1_base_project/template-app/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/1_base_project/template-app/main/CMakeLists.txt -------------------------------------------------------------------------------- /1_base_project/template-app/main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/1_base_project/template-app/main/main.c -------------------------------------------------------------------------------- /1_base_project/wireless_link_project/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "idf.portWin": "COM5" 3 | } -------------------------------------------------------------------------------- /1_base_project/wireless_link_project/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/1_base_project/wireless_link_project/CMakeLists.txt -------------------------------------------------------------------------------- /1_base_project/wireless_link_project/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/1_base_project/wireless_link_project/Makefile -------------------------------------------------------------------------------- /1_base_project/wireless_link_project/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/1_base_project/wireless_link_project/README.md -------------------------------------------------------------------------------- /1_base_project/wireless_link_project/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/1_base_project/wireless_link_project/main/CMakeLists.txt -------------------------------------------------------------------------------- /1_base_project/wireless_link_project/main/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/1_base_project/wireless_link_project/main/component.mk -------------------------------------------------------------------------------- /1_base_project/wireless_link_project/main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/1_base_project/wireless_link_project/main/main.c -------------------------------------------------------------------------------- /1_base_project/wireless_link_project/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/1_base_project/wireless_link_project/sdkconfig -------------------------------------------------------------------------------- /2_peripheral/1_led/.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/2_peripheral/1_led/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /2_peripheral/1_led/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/2_peripheral/1_led/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /2_peripheral/1_led/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/2_peripheral/1_led/.gitignore -------------------------------------------------------------------------------- /2_peripheral/1_led/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/2_peripheral/1_led/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /2_peripheral/1_led/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/2_peripheral/1_led/.vscode/launch.json -------------------------------------------------------------------------------- /2_peripheral/1_led/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/2_peripheral/1_led/.vscode/settings.json -------------------------------------------------------------------------------- /2_peripheral/1_led/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/2_peripheral/1_led/.vscode/tasks.json -------------------------------------------------------------------------------- /2_peripheral/1_led/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/2_peripheral/1_led/CMakeLists.txt -------------------------------------------------------------------------------- /2_peripheral/1_led/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/2_peripheral/1_led/README.md -------------------------------------------------------------------------------- /2_peripheral/1_led/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/2_peripheral/1_led/main/CMakeLists.txt -------------------------------------------------------------------------------- /2_peripheral/1_led/main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/2_peripheral/1_led/main/main.c -------------------------------------------------------------------------------- /2_peripheral/2_uart_console/.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/2_peripheral/2_uart_console/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /2_peripheral/2_uart_console/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/2_peripheral/2_uart_console/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /2_peripheral/2_uart_console/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/2_peripheral/2_uart_console/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /2_peripheral/2_uart_console/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/2_peripheral/2_uart_console/.vscode/launch.json -------------------------------------------------------------------------------- /2_peripheral/2_uart_console/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/2_peripheral/2_uart_console/.vscode/settings.json -------------------------------------------------------------------------------- /2_peripheral/2_uart_console/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/2_peripheral/2_uart_console/.vscode/tasks.json -------------------------------------------------------------------------------- /2_peripheral/2_uart_console/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/2_peripheral/2_uart_console/CMakeLists.txt -------------------------------------------------------------------------------- /2_peripheral/2_uart_console/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/2_peripheral/2_uart_console/README.md -------------------------------------------------------------------------------- /2_peripheral/2_uart_console/components/bsp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/2_peripheral/2_uart_console/components/bsp/CMakeLists.txt -------------------------------------------------------------------------------- /2_peripheral/2_uart_console/components/bsp/bsp_led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/2_peripheral/2_uart_console/components/bsp/bsp_led.c -------------------------------------------------------------------------------- /2_peripheral/2_uart_console/components/bsp/bsp_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/2_peripheral/2_uart_console/components/bsp/bsp_led.h -------------------------------------------------------------------------------- /2_peripheral/2_uart_console/components/bsp/bsp_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/2_peripheral/2_uart_console/components/bsp/bsp_misc.c -------------------------------------------------------------------------------- /2_peripheral/2_uart_console/components/bsp/bsp_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/2_peripheral/2_uart_console/components/bsp/bsp_misc.h -------------------------------------------------------------------------------- /2_peripheral/2_uart_console/components/bsp/bsp_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/2_peripheral/2_uart_console/components/bsp/bsp_wrapper.h -------------------------------------------------------------------------------- /2_peripheral/2_uart_console/components/bsp/component.mk: -------------------------------------------------------------------------------- 1 | COMPONENT_ADD_INCLUDEDIRS := . 2 | -------------------------------------------------------------------------------- /2_peripheral/2_uart_console/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/2_peripheral/2_uart_console/main/CMakeLists.txt -------------------------------------------------------------------------------- /2_peripheral/2_uart_console/main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/2_peripheral/2_uart_console/main/main.c -------------------------------------------------------------------------------- /2_peripheral/2_uart_console/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/2_peripheral/2_uart_console/sdkconfig -------------------------------------------------------------------------------- /2_peripheral/3_uart_select/.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/2_peripheral/3_uart_select/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /2_peripheral/3_uart_select/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/2_peripheral/3_uart_select/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /2_peripheral/3_uart_select/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/2_peripheral/3_uart_select/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /2_peripheral/3_uart_select/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/2_peripheral/3_uart_select/.vscode/launch.json -------------------------------------------------------------------------------- /2_peripheral/3_uart_select/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/2_peripheral/3_uart_select/.vscode/settings.json -------------------------------------------------------------------------------- /2_peripheral/3_uart_select/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/2_peripheral/3_uart_select/.vscode/tasks.json -------------------------------------------------------------------------------- /2_peripheral/3_uart_select/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/2_peripheral/3_uart_select/CMakeLists.txt -------------------------------------------------------------------------------- /2_peripheral/3_uart_select/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/2_peripheral/3_uart_select/README.md -------------------------------------------------------------------------------- /2_peripheral/3_uart_select/components/bsp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/2_peripheral/3_uart_select/components/bsp/CMakeLists.txt -------------------------------------------------------------------------------- /2_peripheral/3_uart_select/components/bsp/bsp_led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/2_peripheral/3_uart_select/components/bsp/bsp_led.c -------------------------------------------------------------------------------- /2_peripheral/3_uart_select/components/bsp/bsp_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/2_peripheral/3_uart_select/components/bsp/bsp_led.h -------------------------------------------------------------------------------- /2_peripheral/3_uart_select/components/bsp/bsp_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/2_peripheral/3_uart_select/components/bsp/bsp_misc.c -------------------------------------------------------------------------------- /2_peripheral/3_uart_select/components/bsp/bsp_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/2_peripheral/3_uart_select/components/bsp/bsp_misc.h -------------------------------------------------------------------------------- /2_peripheral/3_uart_select/components/bsp/bsp_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/2_peripheral/3_uart_select/components/bsp/bsp_wrapper.h -------------------------------------------------------------------------------- /2_peripheral/3_uart_select/components/bsp/component.mk: -------------------------------------------------------------------------------- 1 | COMPONENT_ADD_INCLUDEDIRS := . 2 | -------------------------------------------------------------------------------- /2_peripheral/3_uart_select/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/2_peripheral/3_uart_select/main/CMakeLists.txt -------------------------------------------------------------------------------- /2_peripheral/3_uart_select/main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/2_peripheral/3_uart_select/main/main.c -------------------------------------------------------------------------------- /2_peripheral/3_uart_select/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/2_peripheral/3_uart_select/sdkconfig -------------------------------------------------------------------------------- /2_peripheral/4_pc_control_led/.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/2_peripheral/4_pc_control_led/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /2_peripheral/4_pc_control_led/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/2_peripheral/4_pc_control_led/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /2_peripheral/4_pc_control_led/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/2_peripheral/4_pc_control_led/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /2_peripheral/4_pc_control_led/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/2_peripheral/4_pc_control_led/.vscode/launch.json -------------------------------------------------------------------------------- /2_peripheral/4_pc_control_led/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/2_peripheral/4_pc_control_led/.vscode/settings.json -------------------------------------------------------------------------------- /2_peripheral/4_pc_control_led/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/2_peripheral/4_pc_control_led/CMakeLists.txt -------------------------------------------------------------------------------- /2_peripheral/4_pc_control_led/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/2_peripheral/4_pc_control_led/README.md -------------------------------------------------------------------------------- /2_peripheral/4_pc_control_led/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/2_peripheral/4_pc_control_led/main/CMakeLists.txt -------------------------------------------------------------------------------- /2_peripheral/4_pc_control_led/main/uart_debug_json.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/2_peripheral/4_pc_control_led/main/uart_debug_json.c -------------------------------------------------------------------------------- /2_peripheral/4_pc_control_led/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/2_peripheral/4_pc_control_led/sdkconfig -------------------------------------------------------------------------------- /2_peripheral/4_pc_control_led/sdkconfig.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/2_peripheral/4_pc_control_led/sdkconfig.old -------------------------------------------------------------------------------- /2_peripheral/4_pc_control_led/tool/led_control/led_control.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/2_peripheral/4_pc_control_led/tool/led_control/led_control.sln -------------------------------------------------------------------------------- /2_peripheral/4_pc_control_led/tool/led_control/led_control/obj/Debug/led_control.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2_peripheral/4_pc_control_led/tool/led_control/led_control/硬件.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/2_peripheral/4_pc_control_led/tool/led_control/led_control/硬件.ico -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/.vscode/launch.json -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/.vscode/settings.json -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/.vscode/tasks.json -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/CMakeLists.txt -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/README.md -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/.codecov.yml -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/.editorconfig -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/.gitignore -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/CMakeLists.txt -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/Kconfig -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/LICENCE.txt -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/README.md -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/README_zh.md -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/SConscript -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/component.mk -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/demos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/demos/README.md -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/demos/benchmark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/demos/benchmark/README.md -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/demos/lv_demos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/demos/lv_demos.h -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/demos/lv_demos.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/demos/lv_demos.mk -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/demos/music/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/demos/music/README.md -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/demos/stress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/demos/stress/README.md -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/CHANGELOG.md -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/CODING_STYLE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/CODING_STYLE.md -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/ROADMAP.md -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/_ext/lv_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/_ext/lv_example.py -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/_templates/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/_templates/page.html -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/build.py -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/conf.py -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/example_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/example_list.py -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/favicon.png -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/get-started/cmake.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/get-started/cmake.md -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/get-started/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/get-started/index.md -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/get-started/nuttx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/get-started/nuttx.md -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/get-started/nxp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/get-started/nxp.md -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/get-started/stm32.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/get-started/stm32.md -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/header.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/header.rst -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/index.md -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/intro/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/intro/index.md -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/layouts/flex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/layouts/flex.md -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/layouts/grid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/layouts/grid.md -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/layouts/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/layouts/index.md -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/libs/bmp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/libs/bmp.md -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/libs/ffmpeg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/libs/ffmpeg.md -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/libs/freetype.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/libs/freetype.md -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/libs/fsdrv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/libs/fsdrv.md -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/libs/gif.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/libs/gif.md -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/libs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/libs/index.md -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/libs/png.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/libs/png.md -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/libs/qrcode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/libs/qrcode.md -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/libs/rlottie.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/libs/rlottie.md -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/libs/sjpg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/libs/sjpg.md -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/logo_lvgl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/logo_lvgl.png -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/misc/align.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/misc/align.png -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/misc/bidi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/misc/bidi.png -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/misc/boxmodel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/misc/boxmodel.png -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/misc/btn_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/misc/btn_example.png -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/misc/codeblocks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/misc/codeblocks.jpg -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/misc/eclipse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/misc/eclipse.jpg -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/misc/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/misc/layers.png -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/misc/par_child1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/misc/par_child1.png -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/misc/par_child2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/misc/par_child2.png -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/misc/par_child3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/misc/par_child3.png -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/misc/platformio.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/misc/platformio.jpg -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/misc/qtcreator.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/misc/qtcreator.jpg -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/misc/symbols.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/misc/symbols.png -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/misc/sys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/misc/sys.png -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/others/gridnav.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/others/gridnav.md -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/others/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/others/index.md -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/others/monkey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/others/monkey.md -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/others/snapshot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/others/snapshot.md -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/overview/color.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/overview/color.md -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/overview/coords.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/overview/coords.md -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/overview/display.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/overview/display.md -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/overview/drawing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/overview/drawing.md -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/overview/event.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/overview/event.md -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/overview/font.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/overview/font.md -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/overview/image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/overview/image.md -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/overview/indev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/overview/indev.md -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/overview/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/overview/index.md -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/overview/layer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/overview/layer.md -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/overview/object.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/overview/object.md -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/overview/scroll.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/overview/scroll.md -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/overview/style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/overview/style.md -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/overview/timer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/overview/timer.md -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/porting/display.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/porting/display.md -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/porting/gpu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/porting/gpu.md -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/porting/indev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/porting/indev.md -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/porting/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/porting/index.md -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/porting/log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/porting/log.md -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/porting/os.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/porting/os.md -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/porting/project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/porting/project.md -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/porting/sleep.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/porting/sleep.md -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/porting/tick.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/porting/tick.md -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/requirements.txt -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/widgets/core/arc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/widgets/core/arc.md -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/widgets/core/bar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/widgets/core/bar.md -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/widgets/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/widgets/index.md -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/widgets/obj.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/docs/widgets/obj.md -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/env_support/zephyr/module.yml: -------------------------------------------------------------------------------- 1 | build: 2 | cmake: . 3 | -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/examples/examples.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/examples/examples.mk -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/examples/header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/examples/header.py -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/examples/lv_examples.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/examples/lv_examples.h -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/examples/test_ex.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/examples/test_ex.sh -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/idf_component.yml -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/library.json -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/library.properties -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/lv_conf_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/lv_conf_template.h -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/lvgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/lvgl.h -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/lvgl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/lvgl.mk -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/scripts/.gitignore: -------------------------------------------------------------------------------- 1 | CHANGELOG_LAST.md 2 | -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/scripts/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/scripts/Doxyfile -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/scripts/code-format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/scripts/code-format.py -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/scripts/filetohex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/scripts/filetohex.py -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/scripts/infer_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/scripts/infer_run.sh -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/scripts/jpg_to_sjpg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/scripts/jpg_to_sjpg.py -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/scripts/release/com.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/scripts/release/com.py -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/scripts/release/commits.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/core/lv_core.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/core/lv_core.mk -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/core/lv_disp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/core/lv_disp.c -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/core/lv_disp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/core/lv_disp.h -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/core/lv_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/core/lv_event.c -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/core/lv_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/core/lv_event.h -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/core/lv_group.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/core/lv_group.c -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/core/lv_group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/core/lv_group.h -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/core/lv_indev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/core/lv_indev.c -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/core/lv_indev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/core/lv_indev.h -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/core/lv_obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/core/lv_obj.c -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/core/lv_obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/core/lv_obj.h -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/core/lv_obj_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/core/lv_obj_draw.c -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/core/lv_obj_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/core/lv_obj_draw.h -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/core/lv_obj_pos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/core/lv_obj_pos.c -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/core/lv_obj_pos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/core/lv_obj_pos.h -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/core/lv_obj_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/core/lv_obj_tree.c -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/core/lv_obj_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/core/lv_obj_tree.h -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/core/lv_refr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/core/lv_refr.c -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/core/lv_refr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/core/lv_refr.h -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/core/lv_theme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/core/lv_theme.c -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/core/lv_theme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/core/lv_theme.h -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/draw/lv_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/draw/lv_draw.c -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/draw/lv_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/draw/lv_draw.h -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/draw/lv_draw.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/draw/lv_draw.mk -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/draw/lv_draw_arc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/draw/lv_draw_arc.c -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/draw/lv_draw_arc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/draw/lv_draw_arc.h -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/draw/lv_draw_img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/draw/lv_draw_img.c -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/draw/lv_draw_img.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/draw/lv_draw_img.h -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/draw/lv_img_buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/draw/lv_img_buf.c -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/draw/lv_img_buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/draw/lv_img_buf.h -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/draw/sdl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/draw/sdl/README.md -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/extra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/extra/README.md -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/extra/extra.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/extra/extra.mk -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/extra/lv_extra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/extra/lv_extra.c -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/extra/lv_extra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/extra/lv_extra.h -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/font/korean.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/font/korean.ttf -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/font/lv_font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/font/lv_font.c -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/font/lv_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/font/lv_font.h -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/font/lv_font.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/font/lv_font.mk -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/gpu/lv_gpu.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/gpu/lv_gpu.mk -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/hal/lv_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/hal/lv_hal.h -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/hal/lv_hal.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/hal/lv_hal.mk -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/hal/lv_hal_disp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/hal/lv_hal_disp.c -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/hal/lv_hal_disp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/hal/lv_hal_disp.h -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/hal/lv_hal_indev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/hal/lv_hal_indev.c -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/hal/lv_hal_indev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/hal/lv_hal_indev.h -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/hal/lv_hal_tick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/hal/lv_hal_tick.c -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/hal/lv_hal_tick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/hal/lv_hal_tick.h -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/lv_api_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/lv_api_map.h -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/lv_conf_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/lv_conf_internal.h -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/lv_conf_kconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/lv_conf_kconfig.h -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/lvgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/lvgl.h -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_anim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_anim.c -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_anim.h -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_area.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_area.c -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_area.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_area.h -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_assert.h -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_async.c -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_async.h -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_bidi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_bidi.c -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_bidi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_bidi.h -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_color.c -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_color.h -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_fs.c -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_fs.h -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_gc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_gc.c -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_gc.h -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_ll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_ll.c -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_ll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_ll.h -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_log.c -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_log.h -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_lru.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_lru.c -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_lru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_lru.h -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_math.c -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_math.h -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_mem.c -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_mem.h -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_misc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_misc.mk -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_printf.c -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_printf.h -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_style.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_style.c -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_style.h -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_templ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_templ.c -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_templ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_templ.h -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_timer.c -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_timer.h -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_tlsf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_tlsf.c -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_tlsf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_tlsf.h -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_txt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_txt.c -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_txt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_txt.h -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_txt_ap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_txt_ap.c -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_txt_ap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_txt_ap.h -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_types.h -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_utils.c -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/misc/lv_utils.h -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/widgets/lv_arc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/widgets/lv_arc.c -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/widgets/lv_arc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/widgets/lv_arc.h -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/widgets/lv_bar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/widgets/lv_bar.c -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/widgets/lv_bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/widgets/lv_bar.h -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/widgets/lv_btn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/widgets/lv_btn.c -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/widgets/lv_btn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/widgets/lv_btn.h -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/widgets/lv_img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/widgets/lv_img.c -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/widgets/lv_img.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/widgets/lv_img.h -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/widgets/lv_label.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/widgets/lv_label.c -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/widgets/lv_label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/widgets/lv_label.h -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/widgets/lv_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/widgets/lv_line.c -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/widgets/lv_line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/widgets/lv_line.h -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/widgets/lv_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/widgets/lv_table.c -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/src/widgets/lv_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/src/widgets/lv_table.h -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/tests/.gitignore: -------------------------------------------------------------------------------- 1 | *.out 2 | *_Runner.c 3 | -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/tests/CMakeLists.txt -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/tests/README.md -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/tests/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/tests/config.yml -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/tests/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/tests/main.py -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/tests/unity/unity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/tests/unity/unity.c -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl/tests/unity/unity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl/tests/unity/unity.h -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl_esp32_drivers/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl_esp32_drivers/Kconfig -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/components/lvgl_esp32_drivers/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/components/lvgl_esp32_drivers/LICENSE -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/main/CMakeLists.txt -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/main/main.c -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/partitions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/partitions.csv -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/sdkconfig -------------------------------------------------------------------------------- /3_lvgl/1_lvgl8_2_porting/sdkconfig.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/1_lvgl8_2_porting/sdkconfig.old -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/.vscode/launch.json -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/.vscode/settings.json -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/.vscode/tasks.json -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/CMakeLists.txt -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/README.md -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/.editorconfig -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/.gitignore -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/CMakeLists.txt -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/Kconfig -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/LICENCE.txt -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/README.md -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/component.mk -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/CHANGELOG.md -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/CODING_STYLE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/CODING_STYLE.md -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/ROADMAP.md -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/build.py -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/conf.py -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/favicon.png -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/header.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/header.rst -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/index.md -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/intro/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/intro/index.md -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/layouts/flex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/layouts/flex.md -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/layouts/grid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/layouts/grid.md -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/layouts/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/layouts/index.md -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/logo_lvgl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/logo_lvgl.png -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/misc/align.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/misc/align.png -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/misc/bidi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/misc/bidi.png -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/misc/boxmodel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/misc/boxmodel.png -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/misc/eclipse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/misc/eclipse.jpg -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/misc/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/misc/layers.png -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/misc/symbols.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/misc/symbols.png -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/misc/sys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/misc/sys.png -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/overview/color.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/overview/color.md -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/overview/event.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/overview/event.md -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/overview/font.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/overview/font.md -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/overview/image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/overview/image.md -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/overview/indev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/overview/indev.md -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/overview/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/overview/index.md -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/overview/layer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/overview/layer.md -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/overview/style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/overview/style.md -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/overview/timer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/overview/timer.md -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/porting/indev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/porting/indev.md -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/porting/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/porting/index.md -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/porting/log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/porting/log.md -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/porting/os.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/porting/os.md -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/porting/sleep.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/porting/sleep.md -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/porting/tick.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/porting/tick.md -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/requirements.txt -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/widgets/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/widgets/index.md -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/widgets/obj.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/docs/widgets/obj.md -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/examples/examples.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/examples/examples.mk -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/examples/lv_examples.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/examples/lv_examples.h -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/examples/widgets/span/lv_example_span_1.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/library.json -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/library.properties -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/lv_conf_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/lv_conf_template.h -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/lvgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/lvgl.h -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/lvgl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/lvgl.mk -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/scripts/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/scripts/Doxyfile -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/scripts/code-format.sh: -------------------------------------------------------------------------------- 1 | astyle --options=code-format.cfg "../src/*.c,*.h" 2 | -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/scripts/infer_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/scripts/infer_run.sh -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/core/lv_core.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/core/lv_core.mk -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/core/lv_disp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/core/lv_disp.c -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/core/lv_disp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/core/lv_disp.h -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/core/lv_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/core/lv_event.c -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/core/lv_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/core/lv_event.h -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/core/lv_group.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/core/lv_group.c -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/core/lv_group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/core/lv_group.h -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/core/lv_indev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/core/lv_indev.c -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/core/lv_indev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/core/lv_indev.h -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/core/lv_obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/core/lv_obj.c -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/core/lv_obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/core/lv_obj.h -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/core/lv_obj_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/core/lv_obj_draw.c -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/core/lv_obj_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/core/lv_obj_draw.h -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/core/lv_obj_pos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/core/lv_obj_pos.c -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/core/lv_obj_pos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/core/lv_obj_pos.h -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/core/lv_obj_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/core/lv_obj_tree.c -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/core/lv_obj_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/core/lv_obj_tree.h -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/core/lv_refr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/core/lv_refr.c -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/core/lv_refr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/core/lv_refr.h -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/core/lv_theme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/core/lv_theme.c -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/core/lv_theme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/core/lv_theme.h -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/draw/lv_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/draw/lv_draw.h -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/draw/lv_draw.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/draw/lv_draw.mk -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/draw/lv_draw_arc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/draw/lv_draw_arc.c -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/draw/lv_draw_arc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/draw/lv_draw_arc.h -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/draw/lv_draw_img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/draw/lv_draw_img.c -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/draw/lv_draw_img.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/draw/lv_draw_img.h -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/draw/lv_img_buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/draw/lv_img_buf.c -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/draw/lv_img_buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/draw/lv_img_buf.h -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/extra/extra.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/extra/extra.mk -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/extra/lv_extra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/extra/lv_extra.c -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/extra/lv_extra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/extra/lv_extra.h -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/font/korean.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/font/korean.ttf -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/font/lv_font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/font/lv_font.c -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/font/lv_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/font/lv_font.h -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/font/lv_font.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/font/lv_font.mk -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/gpu/lv_gpu.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/gpu/lv_gpu.mk -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/hal/lv_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/hal/lv_hal.h -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/hal/lv_hal.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/hal/lv_hal.mk -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/hal/lv_hal_disp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/hal/lv_hal_disp.c -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/hal/lv_hal_disp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/hal/lv_hal_disp.h -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/hal/lv_hal_indev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/hal/lv_hal_indev.c -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/hal/lv_hal_indev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/hal/lv_hal_indev.h -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/hal/lv_hal_tick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/hal/lv_hal_tick.c -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/hal/lv_hal_tick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/hal/lv_hal_tick.h -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/lv_api_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/lv_api_map.h -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/lv_conf_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/lv_conf_internal.h -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/lv_conf_kconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/lv_conf_kconfig.h -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/lvgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/lvgl.h -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_anim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_anim.c -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_anim.h -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_area.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_area.c -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_area.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_area.h -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_assert.h -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_async.c -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_async.h -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_bidi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_bidi.c -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_bidi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_bidi.h -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_color.c -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_color.h -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_fs.c -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_fs.h -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_gc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_gc.c -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_gc.h -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_ll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_ll.c -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_ll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_ll.h -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_log.c -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_log.h -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_math.c -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_math.h -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_mem.c -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_mem.h -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_misc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_misc.mk -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_printf.c -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_printf.h -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_style.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_style.c -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_style.h -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_templ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_templ.c -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_templ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_templ.h -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_timer.c -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_timer.h -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_tlsf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_tlsf.c -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_tlsf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_tlsf.h -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_txt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_txt.c -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_txt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_txt.h -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_txt_ap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_txt_ap.c -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_txt_ap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_txt_ap.h -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_types.h -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_utils.c -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/misc/lv_utils.h -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/widgets/lv_arc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/widgets/lv_arc.c -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/widgets/lv_arc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/widgets/lv_arc.h -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/widgets/lv_bar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/widgets/lv_bar.c -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/widgets/lv_bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/widgets/lv_bar.h -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/widgets/lv_btn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/widgets/lv_btn.c -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/widgets/lv_btn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/widgets/lv_btn.h -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/widgets/lv_img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/widgets/lv_img.c -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/widgets/lv_img.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/widgets/lv_img.h -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/widgets/lv_label.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/widgets/lv_label.c -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/widgets/lv_label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/widgets/lv_label.h -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/widgets/lv_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/widgets/lv_line.c -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/widgets/lv_line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/widgets/lv_line.h -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/widgets/lv_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/widgets/lv_table.c -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/src/widgets/lv_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/src/widgets/lv_table.h -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/tests/Makefile -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/tests/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/tests/build.py -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/tests/font_1.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/tests/font_1.fnt -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/tests/font_2.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/tests/font_2.fnt -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/tests/font_3.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/tests/font_3.fnt -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/tests/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/tests/icon.png -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/tests/icon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/tests/icon2.png -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/tests/lv_test_assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/tests/lv_test_assert.c -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/tests/lv_test_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/tests/lv_test_assert.h -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/tests/lv_test_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/tests/lv_test_conf.h -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/tests/lv_test_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl/tests/lv_test_main.c -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl/zephyr/module.yml: -------------------------------------------------------------------------------- 1 | build: 2 | cmake: . 3 | -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl_esp32_drivers/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl_esp32_drivers/Kconfig -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/components/lvgl_esp32_drivers/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/components/lvgl_esp32_drivers/LICENSE -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/main/CMakeLists.txt -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/main/main.c -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/partitions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/partitions.csv -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/sdkconfig -------------------------------------------------------------------------------- /3_lvgl/2_lvgl8_0_porting/sdkconfig.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/2_lvgl8_0_porting/sdkconfig.old -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/.vscode/launch.json -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/.vscode/settings.json -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/.vscode/tasks.json -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/CMakeLists.txt -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/README.md -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/components/lvgl/.editorconfig -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/components/lvgl/.gitignore -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl/.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/components/lvgl/CHANGELOG.md -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/components/lvgl/CMakeLists.txt -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/components/lvgl/Kconfig -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl/LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/components/lvgl/LICENCE.txt -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/components/lvgl/README.md -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/components/lvgl/component.mk -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl/docs/CODING_STYLE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/components/lvgl/docs/CODING_STYLE.md -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl/docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/components/lvgl/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl/docs/ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/components/lvgl/docs/ROADMAP.md -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/components/lvgl/library.json -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/components/lvgl/library.properties -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl/lv_conf_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/components/lvgl/lv_conf_template.h -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl/lvgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/components/lvgl/lvgl.h -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl/lvgl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/components/lvgl/lvgl.mk -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl/scripts/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/components/lvgl/scripts/Doxyfile -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl/scripts/code-format.sh: -------------------------------------------------------------------------------- 1 | astyle --options=code-format.cfg "../src/*.c,*.h" 2 | -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl/scripts/infer_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/components/lvgl/scripts/infer_run.sh -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_api_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_api_map.h -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_conf_kconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_conf_kconfig.h -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_core/lv_disp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_core/lv_disp.c -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_core/lv_disp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_core/lv_disp.h -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_core/lv_obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_core/lv_obj.c -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_core/lv_obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_core/lv_obj.h -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_core/lv_refr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_core/lv_refr.c -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_core/lv_refr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_core/lv_refr.h -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_draw/lv_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_draw/lv_draw.h -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_font/lv_font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_font/lv_font.c -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_font/lv_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_font/lv_font.h -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_gpu/lv_gpu.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_gpu/lv_gpu.mk -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_hal/lv_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_hal/lv_hal.h -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_hal/lv_hal.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_hal/lv_hal.mk -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_misc/lv_anim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_misc/lv_anim.c -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_misc/lv_anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_misc/lv_anim.h -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_misc/lv_area.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_misc/lv_area.c -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_misc/lv_area.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_misc/lv_area.h -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_misc/lv_bidi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_misc/lv_bidi.c -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_misc/lv_bidi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_misc/lv_bidi.h -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_misc/lv_fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_misc/lv_fs.c -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_misc/lv_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_misc/lv_fs.h -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_misc/lv_gc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_misc/lv_gc.c -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_misc/lv_gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_misc/lv_gc.h -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_misc/lv_ll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_misc/lv_ll.c -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_misc/lv_ll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_misc/lv_ll.h -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_misc/lv_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_misc/lv_log.c -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_misc/lv_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_misc/lv_log.h -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_misc/lv_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_misc/lv_math.c -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_misc/lv_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_misc/lv_math.h -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_misc/lv_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_misc/lv_mem.c -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_misc/lv_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_misc/lv_mem.h -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_misc/lv_task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_misc/lv_task.c -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_misc/lv_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_misc/lv_task.h -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_misc/lv_txt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_misc/lv_txt.c -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_misc/lv_txt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lv_misc/lv_txt.h -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lvgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/components/lvgl/src/lvgl.h -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/components/lvgl/tests/Makefile -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl/tests/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/components/lvgl/tests/build.py -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl/tests/font_1.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/components/lvgl/tests/font_1.fnt -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl/tests/font_2.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/components/lvgl/tests/font_2.fnt -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl/tests/font_3.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/components/lvgl/tests/font_3.fnt -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl/tests/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/components/lvgl/tests/icon.png -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl/tests/icon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/components/lvgl/tests/icon2.png -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl/tests/lv_test_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/components/lvgl/tests/lv_test_conf.h -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl/tests/lv_test_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/components/lvgl/tests/lv_test_main.c -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl/zephyr/module.yml: -------------------------------------------------------------------------------- 1 | build: 2 | cmake: . 3 | -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl_esp32_drivers/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/components/lvgl_esp32_drivers/Kconfig -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/components/lvgl_esp32_drivers/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/components/lvgl_esp32_drivers/LICENSE -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/debug.log -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/main/CMakeLists.txt -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/main/lvgl_widgets_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/main/lvgl_widgets_test.c -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/main/lvgl_widgets_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/main/lvgl_widgets_test.h -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/main/main.c -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/partitions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/partitions.csv -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/sdkconfig -------------------------------------------------------------------------------- /3_lvgl/3_lvgl7_10_porting/sdkconfig.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/3_lvgl/3_lvgl7_10_porting/sdkconfig.old -------------------------------------------------------------------------------- /4_bluetooth/1_vhci_ble_adv/.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/1_vhci_ble_adv/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /4_bluetooth/1_vhci_ble_adv/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/1_vhci_ble_adv/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /4_bluetooth/1_vhci_ble_adv/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/1_vhci_ble_adv/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /4_bluetooth/1_vhci_ble_adv/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/1_vhci_ble_adv/.vscode/launch.json -------------------------------------------------------------------------------- /4_bluetooth/1_vhci_ble_adv/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/1_vhci_ble_adv/.vscode/settings.json -------------------------------------------------------------------------------- /4_bluetooth/1_vhci_ble_adv/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/1_vhci_ble_adv/.vscode/tasks.json -------------------------------------------------------------------------------- /4_bluetooth/1_vhci_ble_adv/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/1_vhci_ble_adv/CMakeLists.txt -------------------------------------------------------------------------------- /4_bluetooth/1_vhci_ble_adv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/1_vhci_ble_adv/README.md -------------------------------------------------------------------------------- /4_bluetooth/1_vhci_ble_adv/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/1_vhci_ble_adv/main/CMakeLists.txt -------------------------------------------------------------------------------- /4_bluetooth/1_vhci_ble_adv/main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/1_vhci_ble_adv/main/main.c -------------------------------------------------------------------------------- /4_bluetooth/1_vhci_ble_adv/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/1_vhci_ble_adv/sdkconfig -------------------------------------------------------------------------------- /4_bluetooth/1_vhci_ble_adv/sdkconfig.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/1_vhci_ble_adv/sdkconfig.old -------------------------------------------------------------------------------- /4_bluetooth/2_vhci_ble_scan/.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/2_vhci_ble_scan/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /4_bluetooth/2_vhci_ble_scan/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/2_vhci_ble_scan/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /4_bluetooth/2_vhci_ble_scan/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/2_vhci_ble_scan/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /4_bluetooth/2_vhci_ble_scan/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/2_vhci_ble_scan/.vscode/launch.json -------------------------------------------------------------------------------- /4_bluetooth/2_vhci_ble_scan/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/2_vhci_ble_scan/.vscode/settings.json -------------------------------------------------------------------------------- /4_bluetooth/2_vhci_ble_scan/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/2_vhci_ble_scan/.vscode/tasks.json -------------------------------------------------------------------------------- /4_bluetooth/2_vhci_ble_scan/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/2_vhci_ble_scan/CMakeLists.txt -------------------------------------------------------------------------------- /4_bluetooth/2_vhci_ble_scan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/2_vhci_ble_scan/README.md -------------------------------------------------------------------------------- /4_bluetooth/2_vhci_ble_scan/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/2_vhci_ble_scan/main/CMakeLists.txt -------------------------------------------------------------------------------- /4_bluetooth/2_vhci_ble_scan/main/bt_hci_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/2_vhci_ble_scan/main/bt_hci_common.c -------------------------------------------------------------------------------- /4_bluetooth/2_vhci_ble_scan/main/bt_hci_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/2_vhci_ble_scan/main/bt_hci_common.h -------------------------------------------------------------------------------- /4_bluetooth/2_vhci_ble_scan/main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/2_vhci_ble_scan/main/main.c -------------------------------------------------------------------------------- /4_bluetooth/2_vhci_ble_scan/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/2_vhci_ble_scan/sdkconfig -------------------------------------------------------------------------------- /4_bluetooth/2_vhci_ble_scan/sdkconfig.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/2_vhci_ble_scan/sdkconfig.old -------------------------------------------------------------------------------- /4_bluetooth/3_vhci_classical_scan_mode/.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/3_vhci_classical_scan_mode/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /4_bluetooth/3_vhci_classical_scan_mode/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/3_vhci_classical_scan_mode/.vscode/launch.json -------------------------------------------------------------------------------- /4_bluetooth/3_vhci_classical_scan_mode/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/3_vhci_classical_scan_mode/.vscode/settings.json -------------------------------------------------------------------------------- /4_bluetooth/3_vhci_classical_scan_mode/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/3_vhci_classical_scan_mode/.vscode/tasks.json -------------------------------------------------------------------------------- /4_bluetooth/3_vhci_classical_scan_mode/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/3_vhci_classical_scan_mode/CMakeLists.txt -------------------------------------------------------------------------------- /4_bluetooth/3_vhci_classical_scan_mode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/3_vhci_classical_scan_mode/README.md -------------------------------------------------------------------------------- /4_bluetooth/3_vhci_classical_scan_mode/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/3_vhci_classical_scan_mode/main/CMakeLists.txt -------------------------------------------------------------------------------- /4_bluetooth/3_vhci_classical_scan_mode/main/bt_hci_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/3_vhci_classical_scan_mode/main/bt_hci_common.c -------------------------------------------------------------------------------- /4_bluetooth/3_vhci_classical_scan_mode/main/bt_hci_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/3_vhci_classical_scan_mode/main/bt_hci_common.h -------------------------------------------------------------------------------- /4_bluetooth/3_vhci_classical_scan_mode/main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/3_vhci_classical_scan_mode/main/main.c -------------------------------------------------------------------------------- /4_bluetooth/3_vhci_classical_scan_mode/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/3_vhci_classical_scan_mode/sdkconfig -------------------------------------------------------------------------------- /4_bluetooth/3_vhci_classical_scan_mode/sdkconfig.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/3_vhci_classical_scan_mode/sdkconfig.old -------------------------------------------------------------------------------- /4_bluetooth/4_controller_hci_uart_esp32/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/4_controller_hci_uart_esp32/.vscode/launch.json -------------------------------------------------------------------------------- /4_bluetooth/4_controller_hci_uart_esp32/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/4_controller_hci_uart_esp32/.vscode/settings.json -------------------------------------------------------------------------------- /4_bluetooth/4_controller_hci_uart_esp32/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/4_controller_hci_uart_esp32/CMakeLists.txt -------------------------------------------------------------------------------- /4_bluetooth/4_controller_hci_uart_esp32/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/4_controller_hci_uart_esp32/README.md -------------------------------------------------------------------------------- /4_bluetooth/4_controller_hci_uart_esp32/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/4_controller_hci_uart_esp32/main/CMakeLists.txt -------------------------------------------------------------------------------- /4_bluetooth/4_controller_hci_uart_esp32/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/4_controller_hci_uart_esp32/sdkconfig -------------------------------------------------------------------------------- /4_bluetooth/4_controller_hci_uart_esp32/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/4_controller_hci_uart_esp32/sdkconfig.defaults -------------------------------------------------------------------------------- /4_bluetooth/4_controller_hci_uart_esp32/sdkconfig.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/4_controller_hci_uart_esp32/sdkconfig.old -------------------------------------------------------------------------------- /4_bluetooth/5_ble_mesh_onoff_server/.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/5_ble_mesh_onoff_server/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /4_bluetooth/5_ble_mesh_onoff_server/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/5_ble_mesh_onoff_server/.vscode/launch.json -------------------------------------------------------------------------------- /4_bluetooth/5_ble_mesh_onoff_server/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/5_ble_mesh_onoff_server/.vscode/settings.json -------------------------------------------------------------------------------- /4_bluetooth/5_ble_mesh_onoff_server/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/5_ble_mesh_onoff_server/CMakeLists.txt -------------------------------------------------------------------------------- /4_bluetooth/5_ble_mesh_onoff_server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/5_ble_mesh_onoff_server/README.md -------------------------------------------------------------------------------- /4_bluetooth/5_ble_mesh_onoff_server/dependencies.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/5_ble_mesh_onoff_server/dependencies.lock -------------------------------------------------------------------------------- /4_bluetooth/5_ble_mesh_onoff_server/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/5_ble_mesh_onoff_server/main/CMakeLists.txt -------------------------------------------------------------------------------- /4_bluetooth/5_ble_mesh_onoff_server/main/Kconfig.projbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/5_ble_mesh_onoff_server/main/Kconfig.projbuild -------------------------------------------------------------------------------- /4_bluetooth/5_ble_mesh_onoff_server/main/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/5_ble_mesh_onoff_server/main/board.c -------------------------------------------------------------------------------- /4_bluetooth/5_ble_mesh_onoff_server/main/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/5_ble_mesh_onoff_server/main/board.h -------------------------------------------------------------------------------- /4_bluetooth/5_ble_mesh_onoff_server/main/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/5_ble_mesh_onoff_server/main/idf_component.yml -------------------------------------------------------------------------------- /4_bluetooth/5_ble_mesh_onoff_server/main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/5_ble_mesh_onoff_server/main/main.c -------------------------------------------------------------------------------- /4_bluetooth/5_ble_mesh_onoff_server/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/5_ble_mesh_onoff_server/sdkconfig -------------------------------------------------------------------------------- /4_bluetooth/5_ble_mesh_onoff_server/sdkconfig.ci.adv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/5_ble_mesh_onoff_server/sdkconfig.ci.adv -------------------------------------------------------------------------------- /4_bluetooth/5_ble_mesh_onoff_server/sdkconfig.ci.bluedroid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/5_ble_mesh_onoff_server/sdkconfig.ci.bluedroid -------------------------------------------------------------------------------- /4_bluetooth/5_ble_mesh_onoff_server/sdkconfig.ci.bluedroid_log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/5_ble_mesh_onoff_server/sdkconfig.ci.bluedroid_log -------------------------------------------------------------------------------- /4_bluetooth/5_ble_mesh_onoff_server/sdkconfig.ci.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/5_ble_mesh_onoff_server/sdkconfig.ci.model -------------------------------------------------------------------------------- /4_bluetooth/5_ble_mesh_onoff_server/sdkconfig.ci.nimble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/5_ble_mesh_onoff_server/sdkconfig.ci.nimble -------------------------------------------------------------------------------- /4_bluetooth/5_ble_mesh_onoff_server/sdkconfig.ci.nimble_deinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/5_ble_mesh_onoff_server/sdkconfig.ci.nimble_deinit -------------------------------------------------------------------------------- /4_bluetooth/5_ble_mesh_onoff_server/sdkconfig.ci.nimble_log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/5_ble_mesh_onoff_server/sdkconfig.ci.nimble_log -------------------------------------------------------------------------------- /4_bluetooth/5_ble_mesh_onoff_server/sdkconfig.ci.scan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/5_ble_mesh_onoff_server/sdkconfig.ci.scan -------------------------------------------------------------------------------- /4_bluetooth/5_ble_mesh_onoff_server/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/5_ble_mesh_onoff_server/sdkconfig.defaults -------------------------------------------------------------------------------- /4_bluetooth/5_ble_mesh_onoff_server/sdkconfig.defaults.esp32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/5_ble_mesh_onoff_server/sdkconfig.defaults.esp32 -------------------------------------------------------------------------------- /4_bluetooth/5_ble_mesh_onoff_server/sdkconfig.defaults.esp32c3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/5_ble_mesh_onoff_server/sdkconfig.defaults.esp32c3 -------------------------------------------------------------------------------- /4_bluetooth/5_ble_mesh_onoff_server/sdkconfig.defaults.esp32c6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/5_ble_mesh_onoff_server/sdkconfig.defaults.esp32c6 -------------------------------------------------------------------------------- /4_bluetooth/5_ble_mesh_onoff_server/sdkconfig.defaults.esp32h2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/5_ble_mesh_onoff_server/sdkconfig.defaults.esp32h2 -------------------------------------------------------------------------------- /4_bluetooth/5_ble_mesh_onoff_server/sdkconfig.defaults.esp32s3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/4_bluetooth/5_ble_mesh_onoff_server/sdkconfig.defaults.esp32s3 -------------------------------------------------------------------------------- /5_wifi/1_station/.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/5_wifi/1_station/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /5_wifi/1_station/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/5_wifi/1_station/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /5_wifi/1_station/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/5_wifi/1_station/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /5_wifi/1_station/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/5_wifi/1_station/.vscode/launch.json -------------------------------------------------------------------------------- /5_wifi/1_station/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/5_wifi/1_station/.vscode/settings.json -------------------------------------------------------------------------------- /5_wifi/1_station/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/5_wifi/1_station/.vscode/tasks.json -------------------------------------------------------------------------------- /5_wifi/1_station/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/5_wifi/1_station/CMakeLists.txt -------------------------------------------------------------------------------- /5_wifi/1_station/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/5_wifi/1_station/README.md -------------------------------------------------------------------------------- /5_wifi/1_station/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/5_wifi/1_station/main/CMakeLists.txt -------------------------------------------------------------------------------- /5_wifi/1_station/main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/5_wifi/1_station/main/main.c -------------------------------------------------------------------------------- /5_wifi/1_station/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/5_wifi/1_station/sdkconfig -------------------------------------------------------------------------------- /5_wifi/2_ap/.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/5_wifi/2_ap/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /5_wifi/2_ap/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/5_wifi/2_ap/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /5_wifi/2_ap/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/5_wifi/2_ap/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /5_wifi/2_ap/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/5_wifi/2_ap/.vscode/launch.json -------------------------------------------------------------------------------- /5_wifi/2_ap/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/5_wifi/2_ap/.vscode/settings.json -------------------------------------------------------------------------------- /5_wifi/2_ap/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/5_wifi/2_ap/.vscode/tasks.json -------------------------------------------------------------------------------- /5_wifi/2_ap/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/5_wifi/2_ap/CMakeLists.txt -------------------------------------------------------------------------------- /5_wifi/2_ap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/5_wifi/2_ap/README.md -------------------------------------------------------------------------------- /5_wifi/2_ap/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/5_wifi/2_ap/main/CMakeLists.txt -------------------------------------------------------------------------------- /5_wifi/2_ap/main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/5_wifi/2_ap/main/main.c -------------------------------------------------------------------------------- /5_wifi/2_ap/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/5_wifi/2_ap/sdkconfig -------------------------------------------------------------------------------- /6_freeRTOS/1_msg_queue/.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/6_freeRTOS/1_msg_queue/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /6_freeRTOS/1_msg_queue/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/6_freeRTOS/1_msg_queue/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /6_freeRTOS/1_msg_queue/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/6_freeRTOS/1_msg_queue/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /6_freeRTOS/1_msg_queue/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/6_freeRTOS/1_msg_queue/.vscode/launch.json -------------------------------------------------------------------------------- /6_freeRTOS/1_msg_queue/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/6_freeRTOS/1_msg_queue/.vscode/settings.json -------------------------------------------------------------------------------- /6_freeRTOS/1_msg_queue/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/6_freeRTOS/1_msg_queue/.vscode/tasks.json -------------------------------------------------------------------------------- /6_freeRTOS/1_msg_queue/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/6_freeRTOS/1_msg_queue/CMakeLists.txt -------------------------------------------------------------------------------- /6_freeRTOS/1_msg_queue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/6_freeRTOS/1_msg_queue/README.md -------------------------------------------------------------------------------- /6_freeRTOS/1_msg_queue/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/6_freeRTOS/1_msg_queue/main/CMakeLists.txt -------------------------------------------------------------------------------- /6_freeRTOS/1_msg_queue/main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/6_freeRTOS/1_msg_queue/main/main.c -------------------------------------------------------------------------------- /6_freeRTOS/1_msg_queue/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/6_freeRTOS/1_msg_queue/sdkconfig -------------------------------------------------------------------------------- /6_freeRTOS/2_event_group/.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/6_freeRTOS/2_event_group/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /6_freeRTOS/2_event_group/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/6_freeRTOS/2_event_group/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /6_freeRTOS/2_event_group/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/6_freeRTOS/2_event_group/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /6_freeRTOS/2_event_group/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/6_freeRTOS/2_event_group/.vscode/launch.json -------------------------------------------------------------------------------- /6_freeRTOS/2_event_group/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/6_freeRTOS/2_event_group/.vscode/settings.json -------------------------------------------------------------------------------- /6_freeRTOS/2_event_group/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/6_freeRTOS/2_event_group/.vscode/tasks.json -------------------------------------------------------------------------------- /6_freeRTOS/2_event_group/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/6_freeRTOS/2_event_group/CMakeLists.txt -------------------------------------------------------------------------------- /6_freeRTOS/2_event_group/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/6_freeRTOS/2_event_group/README.md -------------------------------------------------------------------------------- /6_freeRTOS/2_event_group/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/6_freeRTOS/2_event_group/main/CMakeLists.txt -------------------------------------------------------------------------------- /6_freeRTOS/2_event_group/main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/6_freeRTOS/2_event_group/main/main.c -------------------------------------------------------------------------------- /6_freeRTOS/2_event_group/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/6_freeRTOS/2_event_group/sdkconfig -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj15712795029/esp32_study/HEAD/TODO.md --------------------------------------------------------------------------------