├── GTM ├── 1.png ├── 2.png └── 3.png ├── README.md └── doc ├── ESP32_Agent_DevKit_Base_case_3D_file.step ├── Esp32AgentDevKitDriverCode.zip ├── Esp32AgentDevKitFirmware_V1.2.0.bin ├── Esp32AgentDevKit_Manual.pdf ├── Esp32AgentDevKit_Specification.pdf └── Schematic ├── Esp32AgentDevKit_FPC_ Schematic_Diagram.pdf ├── Esp32AgentDevKit_Motherboard_Schematic_Diagram.pdf ├── Esp32AgentDevKit_V1.0_Layer .pdf ├── Sensors ├── MK-PB2016PS-A01E.pdf └── MK-TP2016IRC-010F(10-940).pdf └── examples └── Esp32AgentDevKit ├── .vscode └── settings.json ├── CMakeLists.txt ├── README_CN.md ├── components ├── QM-Y1091-4832 │ ├── CMakeLists.txt │ ├── qmsd_board.c │ ├── qmsd_board.h │ ├── qmsd_board_def.h │ ├── qmsd_board_pin.h │ └── qmsd_screen_driver.c ├── VolcEngineRTCLite │ ├── CMakeLists.txt │ ├── idf_component.yml │ ├── include │ │ └── VolcEngineRTCLite.h │ └── libs │ │ └── esp32s3 │ │ └── libVolcEngineRTCLite.a ├── board_to_adf │ ├── CMakeLists.txt │ ├── board.c │ ├── board.h │ ├── board_def.h │ └── board_pins_config.c ├── es8311 │ ├── CMakeLists.txt │ ├── es8311.c │ └── es8311.h ├── esp_peripherals │ ├── CMakeLists.txt │ ├── component.mk │ ├── driver │ │ └── i2c_bus │ │ │ ├── i2c_bus.c │ │ │ └── i2c_bus.h │ ├── esp_peripherals.c │ ├── include │ │ ├── esp_peripherals.h │ │ ├── periph_adc_button.h │ │ ├── periph_aw2013.h │ │ ├── periph_button.h │ │ ├── periph_console.h │ │ ├── periph_gpio_isr.h │ │ ├── periph_is31fl3216.h │ │ ├── periph_lcd.h │ │ ├── periph_led.h │ │ ├── periph_sdcard.h │ │ ├── periph_spiffs.h │ │ ├── periph_touch.h │ │ ├── periph_wifi.h │ │ └── periph_ws2812.h │ ├── lib │ │ ├── IS31FL3216 │ │ │ ├── IS31FL3216.c │ │ │ └── IS31FL3216.h │ │ ├── adc_button │ │ │ ├── adc_button.c │ │ │ └── adc_button.h │ │ ├── aw2013 │ │ │ ├── aw2013.c │ │ │ └── aw2013.h │ │ ├── blufi │ │ │ ├── blufi_security.c │ │ │ ├── blufi_security.h │ │ │ ├── wifibleconfig.c │ │ │ └── wifibleconfig.h │ │ ├── button │ │ │ ├── button.c │ │ │ └── button.h │ │ ├── gpio_isr │ │ │ ├── gpio_isr.c │ │ │ └── gpio_isr.h │ │ ├── sdcard │ │ │ ├── sdcard.c │ │ │ └── sdcard.h │ │ ├── tca9554 │ │ │ ├── tca9554.c │ │ │ └── tca9554.h │ │ └── touch │ │ │ ├── touch.c │ │ │ └── touch.h │ ├── periph_adc_button.c │ ├── periph_aw2013.c │ ├── periph_button.c │ ├── periph_console.c │ ├── periph_gpio_isr.c │ ├── periph_is31fl3216.c │ ├── periph_lcd.c │ ├── periph_led.c │ ├── periph_sdcard.c │ ├── periph_spiffs.c │ ├── periph_touch.c │ ├── periph_wifi.c │ ├── periph_ws2812.c │ └── test │ │ ├── component.mk │ │ └── esp_peripherals_test.c └── mk2016 │ ├── CMakeLists.txt │ ├── mkpb2016.c │ └── mkpb2016.h ├── main ├── AudioPipeline.c ├── AudioPipeline.h ├── CMakeLists.txt ├── KeyHandle.c ├── VolcRTCDemo.c ├── VolcRTCDemo.h ├── WifiConfig.c ├── config.h ├── idf_component.yml ├── lv_img_icon.c ├── main.c ├── main_back.c ├── opus_frames.h ├── spiffs_amr_resample_example.c ├── start_bot │ ├── start_bot.c │ └── start_bot.h ├── test_ui.c └── ui_code │ ├── CMakeLists.txt │ ├── components │ └── ui_comp_hook.c │ ├── filelist.txt │ ├── fonts │ ├── ui_font_Big.c │ ├── ui_font_Font22.c │ ├── ui_font_Font32.c │ ├── ui_font_Medium.c │ ├── ui_font_Number.c │ └── ui_font_Small.c │ ├── images │ └── ui_img_daobai_icon_png.c │ ├── screens │ ├── ui_Screen1.c │ └── ui_configwifi.c │ ├── ui.c │ ├── ui.h │ ├── ui_events.h │ ├── ui_helpers.c │ └── ui_helpers.h ├── partitions.csv ├── qmsd-esp32-bsp ├── .clang-format ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── README_CN.md ├── component.cmake ├── components-ext │ ├── qmsd_audio │ │ ├── CMakeLists.txt │ │ ├── libhelix-mp3 │ │ │ ├── CMakeLists.txt │ │ │ ├── LICENSE.txt │ │ │ ├── RCSL.txt │ │ │ ├── RPSL.txt │ │ │ ├── Umakefil │ │ │ ├── docs │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── RCSL.txt │ │ │ │ ├── RPSL.txt │ │ │ │ ├── cpuusage.xls │ │ │ │ └── memory.xls │ │ │ ├── mp3dec.c │ │ │ ├── mp3tabs.c │ │ │ ├── pub │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── RCSL.txt │ │ │ │ ├── RPSL.txt │ │ │ │ ├── mp3common.h │ │ │ │ ├── mp3dec.h │ │ │ │ ├── mpadecobjfixpt.h │ │ │ │ └── statname.h │ │ │ ├── readme.txt │ │ │ ├── real │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── RCSL.txt │ │ │ │ ├── RPSL.txt │ │ │ │ ├── arm │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── RCSL.txt │ │ │ │ │ ├── RPSL.txt │ │ │ │ │ ├── asmmisc.s │ │ │ │ │ ├── asmpoly.s │ │ │ │ │ └── asmpoly_gcc.S │ │ │ │ ├── assembly.h │ │ │ │ ├── bitstream.c │ │ │ │ ├── buffers.c │ │ │ │ ├── coder.h │ │ │ │ ├── dct32.c │ │ │ │ ├── dequant.c │ │ │ │ ├── dqchan.c │ │ │ │ ├── huffman.c │ │ │ │ ├── hufftabs.c │ │ │ │ ├── imdct.c │ │ │ │ ├── polyphase.c │ │ │ │ ├── projects │ │ │ │ │ ├── armads │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── RCSL.txt │ │ │ │ │ │ ├── RPSL.txt │ │ │ │ │ │ ├── mp3dec.mcp │ │ │ │ │ │ └── testwrap.mcp │ │ │ │ │ ├── armwince │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── RCSL.txt │ │ │ │ │ │ ├── RPSL.txt │ │ │ │ │ │ ├── mp3dec.vcp │ │ │ │ │ │ ├── mp3dec.vcw │ │ │ │ │ │ └── testwrap.vcp │ │ │ │ │ └── visualc │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── RCSL.txt │ │ │ │ │ │ ├── RPSL.txt │ │ │ │ │ │ ├── mp3dec.dsp │ │ │ │ │ │ ├── mp3dec.dsw │ │ │ │ │ │ └── testwrap.dsp │ │ │ │ ├── scalfact.c │ │ │ │ ├── stproc.c │ │ │ │ ├── subband.c │ │ │ │ └── trigtabs.c │ │ │ └── testwrap │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── RCSL.txt │ │ │ │ ├── RPSL.txt │ │ │ │ ├── Umakefil │ │ │ │ ├── debug.c │ │ │ │ ├── debug.h │ │ │ │ ├── main.c │ │ │ │ ├── timing.c │ │ │ │ ├── timing.h │ │ │ │ └── winmain.cpp │ │ └── mp3player │ │ │ ├── example │ │ │ ├── CMakeLists.txt │ │ │ ├── main.c │ │ │ └── test.mp3 │ │ │ ├── mp3_player.c │ │ │ └── mp3_player.h │ ├── qmsd_button │ │ ├── CMakeLists.txt │ │ ├── example │ │ │ └── main.c │ │ ├── qmsd_button.c │ │ ├── qmsd_button.h │ │ ├── qmsd_button_adc.c │ │ └── qmsd_button_gpio.c │ ├── qmsd_middleware_8ms │ │ ├── CMakeLists.txt │ │ ├── qmsd_api.h │ │ ├── qmsd_ctrl.h │ │ ├── qmsd_gui_init.h │ │ ├── qmsd_lang.h │ │ ├── qmsd_middleware_8ms.c │ │ ├── qmsd_middleware_8ms.h │ │ └── qmsd_type.h │ └── qmsd_sensor │ │ ├── aht20 │ │ ├── CMakeLists.txt │ │ ├── aht20.c │ │ └── aht20.h │ │ ├── al01 │ │ ├── CMakeLists.txt │ │ ├── al01.c │ │ └── al01.h │ │ ├── aw9523 │ │ ├── CMakeLists.txt │ │ ├── aw9523.c │ │ └── aw9523.h │ │ ├── encoder_ab │ │ ├── CMakeLists.txt │ │ ├── encoder_ab.c │ │ └── encoder_ab.h │ │ ├── ltr303als01 │ │ ├── CMakeLists.txt │ │ ├── ltr303.c │ │ └── ltr303.h │ │ ├── sht20 │ │ ├── CMakeLists.txt │ │ ├── sht20.c │ │ └── sht20.h │ │ └── tm1629a │ │ ├── CMakeLists.txt │ │ ├── example │ │ └── main.c │ │ ├── tm1629a.c │ │ └── tm1629a.h ├── components-third-party │ ├── bus │ │ ├── 8080_lcd_esp32s3.c │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── i2s_lcd_esp32_driver.c │ │ ├── i2s_lcd_esp32s2_driver.c │ │ ├── iic_bus.c │ │ ├── include │ │ │ ├── i2s_lcd_driver.h │ │ │ ├── iic_bus.h │ │ │ └── spi_bus.h │ │ ├── spi_bus.c │ │ └── test │ │ │ ├── CMakeLists.txt │ │ │ └── test_spi_bus.c │ ├── i2c_bus │ │ ├── CMakeLists.txt │ │ ├── i2c_device.c │ │ ├── i2c_device.h │ │ ├── i2c_hal │ │ │ ├── i2c_device_hal.c │ │ │ └── i2c_device_hal.h │ │ └── i2c_hal_master │ │ │ ├── i2c_device_hal.c │ │ │ └── i2c_device_hal.h │ ├── led_strip │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── component.mk │ │ ├── include │ │ │ └── led_strip.h │ │ └── led_strip_rmt_ws2812.c │ ├── screen │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── component.mk │ │ ├── controller_driver │ │ │ ├── gc9307 │ │ │ │ ├── gc9307.c │ │ │ │ └── gc9307.h │ │ │ ├── gc9a01 │ │ │ │ ├── gc9a01.c │ │ │ │ └── gc9a01.h │ │ │ ├── ili9340 │ │ │ │ ├── ili9340.c │ │ │ │ └── ili9340.h │ │ │ ├── ili9341 │ │ │ │ ├── ili9341.c │ │ │ │ └── ili9341.h │ │ │ ├── ili9342 │ │ │ │ ├── ili9342.c │ │ │ │ └── ili9342.h │ │ │ ├── ili9486 │ │ │ │ ├── ili9486.c │ │ │ │ └── ili9486.h │ │ │ ├── ili9488 │ │ │ │ ├── ili9488.c │ │ │ │ └── ili9488.h │ │ │ ├── ili9806 │ │ │ │ ├── ili9806.c │ │ │ │ └── ili9806.h │ │ │ ├── nt35510 │ │ │ │ ├── nt35510.c │ │ │ │ └── nt35510.h │ │ │ ├── nv3041a │ │ │ │ ├── nv3041a.c │ │ │ │ └── nv3041a.h │ │ │ ├── rm68120 │ │ │ │ ├── rm68120.c │ │ │ │ └── rm68120.h │ │ │ ├── ssd1306 │ │ │ │ ├── ssd1306.c │ │ │ │ └── ssd1306.h │ │ │ ├── ssd1307 │ │ │ │ ├── ssd1307.c │ │ │ │ └── ssd1307.h │ │ │ ├── ssd1322 │ │ │ │ ├── ssd1322.c │ │ │ │ └── ssd1322.h │ │ │ ├── ssd1351 │ │ │ │ ├── ssd1351.c │ │ │ │ └── ssd1351.h │ │ │ ├── ssd1963 │ │ │ │ ├── ssd1963.c │ │ │ │ └── ssd1963.h │ │ │ ├── st7789 │ │ │ │ ├── st7789.c │ │ │ │ └── st7789.h │ │ │ └── st7796 │ │ │ │ ├── st7796.c │ │ │ │ └── st7796.h │ │ ├── interface_driver │ │ │ ├── scr_interface_driver.c │ │ │ └── scr_interface_driver.h │ │ ├── screen_driver.c │ │ ├── screen_driver.h │ │ ├── screen_utility │ │ │ ├── interface_drv_def.h │ │ │ ├── screen_utility.c │ │ │ └── screen_utility.h │ │ └── test │ │ │ ├── CMakeLists.txt │ │ │ ├── component.mk │ │ │ ├── lcd_color_test.c │ │ │ └── lcd_mono_test.c │ └── ui_engine │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── lvgl7 │ │ └── lvgl │ │ │ ├── CHANGELOG.md │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── LICENCE.txt │ │ │ ├── README.md │ │ │ ├── component.mk │ │ │ ├── library.json │ │ │ ├── library.properties │ │ │ ├── lv_conf.h │ │ │ ├── lvgl.h │ │ │ ├── lvgl.mk │ │ │ └── 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 │ │ └── lvgl8 │ │ └── lvgl │ │ ├── .codecov.yml │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .pre-commit-config.yaml │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── LICENCE.txt │ │ ├── README.md │ │ ├── README_pt_BR.md │ │ ├── README_zh.md │ │ ├── SConscript │ │ ├── component.mk │ │ ├── env_support │ │ ├── cmake │ │ │ ├── custom.cmake │ │ │ ├── esp.cmake │ │ │ ├── micropython.cmake │ │ │ └── zephyr.cmake │ │ ├── cmsis-pack │ │ │ ├── LVGL.lvgl.1.0.6.pack │ │ │ ├── LVGL.lvgl.pdsc │ │ │ ├── LVGL.pidx │ │ │ ├── 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 │ │ ├── idf_component.yml │ │ ├── library.json │ │ ├── library.properties │ │ ├── lv_conf.h │ │ ├── lvgl.h │ │ ├── lvgl.mk │ │ └── 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 │ │ ├── arm2d │ │ │ ├── lv_draw_arm2d.mk │ │ │ ├── lv_gpu_arm2d.c │ │ │ └── lv_gpu_arm2d.h │ │ ├── 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_layer.c │ │ ├── lv_draw_layer.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_transform.c │ │ ├── lv_draw_transform.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 │ │ │ ├── lv_draw_nxp.mk │ │ │ ├── lv_gpu_nxp.c │ │ │ ├── lv_gpu_nxp.h │ │ │ ├── pxp │ │ │ │ ├── lv_draw_nxp_pxp.mk │ │ │ │ ├── lv_draw_pxp_blend.c │ │ │ │ ├── lv_draw_pxp_blend.h │ │ │ │ ├── lv_gpu_nxp_pxp.c │ │ │ │ ├── lv_gpu_nxp_pxp.h │ │ │ │ ├── lv_gpu_nxp_pxp_osa.c │ │ │ │ └── lv_gpu_nxp_pxp_osa.h │ │ │ └── vglite │ │ │ │ ├── lv_draw_nxp_vglite.mk │ │ │ │ ├── lv_draw_vglite_arc.c │ │ │ │ ├── lv_draw_vglite_arc.h │ │ │ │ ├── lv_draw_vglite_blend.c │ │ │ │ ├── lv_draw_vglite_blend.h │ │ │ │ ├── lv_draw_vglite_rect.c │ │ │ │ ├── lv_draw_vglite_rect.h │ │ │ │ ├── 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_layer.c │ │ │ ├── lv_draw_sdl_layer.h │ │ │ ├── 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_draw_stm32_dma2d.mk │ │ │ ├── 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_layer.c │ │ │ ├── lv_draw_sw_letter.c │ │ │ ├── lv_draw_sw_line.c │ │ │ ├── lv_draw_sw_polygon.c │ │ │ ├── lv_draw_sw_rect.c │ │ │ └── lv_draw_sw_transform.c │ │ └── swm341_dma2d │ │ │ ├── lv_draw_swm341_dma2d.mk │ │ │ ├── lv_gpu_swm341_dma2d.c │ │ │ └── lv_gpu_swm341_dma2d.h │ │ ├── extra │ │ ├── README.md │ │ ├── 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 │ │ ├── lv_extra.mk │ │ ├── others │ │ │ ├── fragment │ │ │ │ ├── README.md │ │ │ │ ├── lv_fragment.c │ │ │ │ ├── lv_fragment.h │ │ │ │ └── lv_fragment_manager.c │ │ │ ├── gridnav │ │ │ │ ├── lv_gridnav.c │ │ │ │ └── lv_gridnav.h │ │ │ ├── ime │ │ │ │ ├── lv_ime_pinyin.c │ │ │ │ └── lv_ime_pinyin.h │ │ │ ├── imgfont │ │ │ │ ├── lv_imgfont.c │ │ │ │ └── lv_imgfont.h │ │ │ ├── lv_others.h │ │ │ ├── monkey │ │ │ │ ├── lv_monkey.c │ │ │ │ └── lv_monkey.h │ │ │ ├── msg │ │ │ │ ├── lv_msg.c │ │ │ │ └── lv_msg.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 │ │ ├── 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 ├── components │ ├── qmsd_board │ │ ├── CMakeLists.txt │ │ ├── Kconfig.projbuild │ │ ├── board │ │ │ └── esp32-s3 │ │ │ │ ├── ZX2D10CE01S-4848 │ │ │ │ ├── qmsd_board.c │ │ │ │ ├── qmsd_board.h │ │ │ │ ├── qmsd_board_def.h │ │ │ │ ├── qmsd_board_pin.h │ │ │ │ ├── qmsd_screen_rgb.c │ │ │ │ ├── qmsd_screen_rgb_spi.c │ │ │ │ └── sdkconfig.defaults │ │ │ │ ├── ZX2D10GE01R-V-4848 │ │ │ │ ├── qmsd_board.c │ │ │ │ ├── qmsd_board.h │ │ │ │ ├── qmsd_board_def.h │ │ │ │ ├── qmsd_board_pin.h │ │ │ │ ├── qmsd_screen_rgb.c │ │ │ │ ├── qmsd_screen_rgb_spi.c │ │ │ │ └── sdkconfig.defaults │ │ │ │ ├── ZX2D80CECOF-2432 │ │ │ │ ├── qmsd_board.c │ │ │ │ ├── qmsd_board.h │ │ │ │ ├── qmsd_board_def.h │ │ │ │ ├── qmsd_board_pin.h │ │ │ │ ├── qmsd_screen_driver.c │ │ │ │ └── sdkconfig.defaults │ │ │ │ ├── ZX3D50CE02S-USRC-4832 │ │ │ │ ├── qmsd_board.c │ │ │ │ ├── qmsd_board.h │ │ │ │ ├── qmsd_board_def.h │ │ │ │ ├── qmsd_board_pin.h │ │ │ │ ├── qmsd_screen_driver.c │ │ │ │ └── sdkconfig.defaults │ │ │ │ ├── ZX3D95CE01S-AR-4848 │ │ │ │ ├── qmsd_board.c │ │ │ │ ├── qmsd_board.h │ │ │ │ ├── qmsd_board_def.h │ │ │ │ ├── qmsd_board_pin.h │ │ │ │ ├── qmsd_screen_rgb.c │ │ │ │ ├── qmsd_screen_rgb_spi.c │ │ │ │ └── sdkconfig.defaults │ │ │ │ ├── ZX3D95CE01S-TR-4848 │ │ │ │ ├── qmsd_board.c │ │ │ │ ├── qmsd_board.h │ │ │ │ ├── qmsd_board_def.h │ │ │ │ ├── qmsd_board_pin.h │ │ │ │ ├── qmsd_screen_rgb.c │ │ │ │ ├── qmsd_screen_rgb_spi.c │ │ │ │ └── sdkconfig.defaults │ │ │ │ ├── ZX3D95CE01S-UR-4848 │ │ │ │ ├── qmsd_board.c │ │ │ │ ├── qmsd_board.h │ │ │ │ ├── qmsd_board_def.h │ │ │ │ ├── qmsd_board_pin.h │ │ │ │ ├── qmsd_screen_rgb.c │ │ │ │ ├── qmsd_screen_rgb_spi.c │ │ │ │ └── sdkconfig.defaults │ │ │ │ ├── ZX4D30CE08S-4827 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── qmsd_board.c │ │ │ │ ├── qmsd_board.h │ │ │ │ ├── qmsd_board_def.h │ │ │ │ ├── qmsd_board_pin.h │ │ │ │ ├── qmsd_screen_driver.c │ │ │ │ └── sdkconfig.defaults │ │ │ │ ├── ZX4D30NE01S-UR-4827 │ │ │ │ ├── qmsd_board.c │ │ │ │ ├── qmsd_board.h │ │ │ │ ├── qmsd_board_def.h │ │ │ │ ├── qmsd_board_pin.h │ │ │ │ ├── qmsd_screen_rgb.c │ │ │ │ └── sdkconfig.defaults │ │ │ │ └── ZX7D00CE01S-8048 │ │ │ │ ├── qmsd_board.c │ │ │ │ ├── qmsd_board.h │ │ │ │ ├── qmsd_board_def.h │ │ │ │ ├── qmsd_board_pin.h │ │ │ │ ├── qmsd_screen_rgb.c │ │ │ │ └── sdkconfig.defaults │ │ └── board_utility │ │ │ ├── qmsd_board_config.h │ │ │ ├── qmsd_board_utils.c │ │ │ └── qmsd_board_utils.h │ ├── qmsd_gui │ │ ├── CMakeLists.txt │ │ ├── qmsd_gui.h │ │ ├── qmsd_gui_lvgl_v7.c │ │ └── qmsd_gui_lvgl_v8.c │ ├── qmsd_screen │ │ ├── CMakeLists.txt │ │ ├── lcd_panel │ │ │ ├── qmsd_lcd_wrapper.c │ │ │ └── qmsd_lcd_wrapper.h │ │ └── rgb_panel │ │ │ ├── esp_lcd_common.h │ │ │ ├── qmsd_lcd_panel_rgb.c │ │ │ └── qmsd_lcd_panel_rgb.h │ ├── qmsd_touch │ │ ├── CMakeLists.txt │ │ ├── chsc6540 │ │ │ └── chsc6540.c │ │ ├── cst3240 │ │ │ └── cst3240.c │ │ ├── cst328 │ │ │ └── cst328.c │ │ ├── cst816t │ │ │ └── cst816t.c │ │ ├── ft5x06 │ │ │ ├── ft5x06.c │ │ │ └── ft5x06_def.h │ │ ├── gt2863 │ │ │ └── gt2863.c │ │ ├── gt911 │ │ │ └── gt911.c │ │ ├── qmsd_touch.c │ │ ├── qmsd_touch.h │ │ └── sp2010 │ │ │ └── sp2010.c │ └── qmsd_utils │ │ ├── CMakeLists.txt │ │ ├── qmsd_crc16.c │ │ ├── qmsd_err.h │ │ ├── qmsd_utils.c │ │ └── qmsd_utils.h ├── example │ ├── custom-board │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── README_CN.md │ │ ├── components │ │ │ └── custom_board │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── qmsd_board.c │ │ │ │ ├── qmsd_board.h │ │ │ │ ├── qmsd_board_def.h │ │ │ │ ├── qmsd_board_pin.h │ │ │ │ └── qmsd_screen_driver.c │ │ ├── main │ │ │ ├── CMakeLists.txt │ │ │ └── main.c │ │ └── sdkconfig.defaults │ ├── get-start │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── README_CN.md │ │ ├── main │ │ │ ├── CMakeLists.txt │ │ │ └── main.c │ │ └── sdkconfig.defaults │ ├── lvgl-demo │ │ ├── CMakeLists.txt │ │ ├── components │ │ │ └── lvgl_widgets_demo │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── img_clothes.c │ │ │ │ ├── img_demo_widgets_avatar.c │ │ │ │ ├── img_lvgl_logo.c │ │ │ │ ├── lv_demo_widgets.c │ │ │ │ └── lv_demo_widgets.h │ │ ├── main │ │ │ ├── CMakeLists.txt │ │ │ └── main.c │ │ ├── sdkconfig.defaults │ │ └── sdkconfig.lvgl │ ├── lvgl-from-8ms │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── README_CN.md │ │ ├── components │ │ │ └── zx_ui_lvgl │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── user_logic │ │ │ │ ├── screen_main_logic.c │ │ │ │ ├── zx_screen_logic.c │ │ │ │ └── zx_screen_logic.h │ │ │ │ └── zx_ui │ │ │ │ ├── components │ │ │ │ └── driver_base │ │ │ │ │ ├── zx_ui_base_driver.c │ │ │ │ │ └── zx_ui_base_driver.h │ │ │ │ ├── res │ │ │ │ ├── font │ │ │ │ │ ├── montserrat_14.c │ │ │ │ │ └── zx_fonts.h │ │ │ │ ├── image │ │ │ │ │ └── zx_images.h │ │ │ │ └── zx_res.h │ │ │ │ ├── screen │ │ │ │ ├── screen_2.c │ │ │ │ ├── screen_fg.c │ │ │ │ ├── screen_main.c │ │ │ │ └── zx_screens.h │ │ │ │ ├── zx_ui.h │ │ │ │ ├── zx_ui_entry.c │ │ │ │ └── zx_ui_entry.h │ │ ├── main │ │ │ ├── CMakeLists.txt │ │ │ ├── main.c │ │ │ └── user_logic │ │ │ │ ├── screen_fg_logic.c │ │ │ │ ├── screen_main_logic.c │ │ │ │ ├── zx_screen_logic.c │ │ │ │ └── zx_screen_logic.h │ │ └── sdkconfig.defaults │ ├── lvgl-from-squareline │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── README_CN.md │ │ ├── components │ │ │ └── squareline │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── squareline_ui │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── components │ │ │ │ └── ui_comp_hook.c │ │ │ │ ├── filelist.txt │ │ │ │ ├── screens │ │ │ │ └── ui_Screen1.c │ │ │ │ ├── ui.c │ │ │ │ ├── ui.h │ │ │ │ ├── ui_events.h │ │ │ │ ├── ui_helpers.c │ │ │ │ └── ui_helpers.h │ │ ├── main │ │ │ ├── CMakeLists.txt │ │ │ └── main.c │ │ └── sdkconfig.defaults │ └── rs485-demo │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── README_CN.md │ │ ├── main │ │ ├── CMakeLists.txt │ │ ├── main.c │ │ └── rs485_demo.c │ │ └── sdkconfig.defaults └── tools │ ├── generate_firmware.py │ ├── load_board.py │ ├── load_ui_code.py │ ├── qmsd_cmake │ └── CMakeLists.txt │ └── release_components.py ├── readme.md ├── sdkconfig ├── sdkconfig.defaults └── sdkconfig.old /GTM/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/GTM/1.png -------------------------------------------------------------------------------- /GTM/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/GTM/2.png -------------------------------------------------------------------------------- /GTM/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/GTM/3.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/README.md -------------------------------------------------------------------------------- /doc/ESP32_Agent_DevKit_Base_case_3D_file.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/ESP32_Agent_DevKit_Base_case_3D_file.step -------------------------------------------------------------------------------- /doc/Esp32AgentDevKitDriverCode.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Esp32AgentDevKitDriverCode.zip -------------------------------------------------------------------------------- /doc/Esp32AgentDevKitFirmware_V1.2.0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Esp32AgentDevKitFirmware_V1.2.0.bin -------------------------------------------------------------------------------- /doc/Esp32AgentDevKit_Manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Esp32AgentDevKit_Manual.pdf -------------------------------------------------------------------------------- /doc/Esp32AgentDevKit_Specification.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Esp32AgentDevKit_Specification.pdf -------------------------------------------------------------------------------- /doc/Schematic/Esp32AgentDevKit_FPC_ Schematic_Diagram.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/Esp32AgentDevKit_FPC_ Schematic_Diagram.pdf -------------------------------------------------------------------------------- /doc/Schematic/Esp32AgentDevKit_Motherboard_Schematic_Diagram.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/Esp32AgentDevKit_Motherboard_Schematic_Diagram.pdf -------------------------------------------------------------------------------- /doc/Schematic/Esp32AgentDevKit_V1.0_Layer .pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/Esp32AgentDevKit_V1.0_Layer .pdf -------------------------------------------------------------------------------- /doc/Schematic/Sensors/MK-PB2016PS-A01E.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/Sensors/MK-PB2016PS-A01E.pdf -------------------------------------------------------------------------------- /doc/Schematic/Sensors/MK-TP2016IRC-010F(10-940).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/Sensors/MK-TP2016IRC-010F(10-940).pdf -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/.vscode/settings.json -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/README_CN.md -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/QM-Y1091-4832/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/QM-Y1091-4832/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/QM-Y1091-4832/qmsd_board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/QM-Y1091-4832/qmsd_board.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/QM-Y1091-4832/qmsd_board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/QM-Y1091-4832/qmsd_board.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/QM-Y1091-4832/qmsd_board_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/QM-Y1091-4832/qmsd_board_def.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/QM-Y1091-4832/qmsd_board_pin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/QM-Y1091-4832/qmsd_board_pin.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/QM-Y1091-4832/qmsd_screen_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/QM-Y1091-4832/qmsd_screen_driver.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/VolcEngineRTCLite/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/VolcEngineRTCLite/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/VolcEngineRTCLite/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/VolcEngineRTCLite/idf_component.yml -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/VolcEngineRTCLite/include/VolcEngineRTCLite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/VolcEngineRTCLite/include/VolcEngineRTCLite.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/VolcEngineRTCLite/libs/esp32s3/libVolcEngineRTCLite.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/VolcEngineRTCLite/libs/esp32s3/libVolcEngineRTCLite.a -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/board_to_adf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/board_to_adf/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/board_to_adf/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/board_to_adf/board.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/board_to_adf/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/board_to_adf/board.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/board_to_adf/board_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/board_to_adf/board_def.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/board_to_adf/board_pins_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/board_to_adf/board_pins_config.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/es8311/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/es8311/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/es8311/es8311.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/es8311/es8311.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/es8311/es8311.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/es8311/es8311.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/component.mk -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/driver/i2c_bus/i2c_bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/driver/i2c_bus/i2c_bus.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/driver/i2c_bus/i2c_bus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/driver/i2c_bus/i2c_bus.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/esp_peripherals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/esp_peripherals.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/include/esp_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/include/esp_peripherals.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/include/periph_adc_button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/include/periph_adc_button.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/include/periph_aw2013.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/include/periph_aw2013.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/include/periph_button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/include/periph_button.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/include/periph_console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/include/periph_console.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/include/periph_gpio_isr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/include/periph_gpio_isr.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/include/periph_is31fl3216.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/include/periph_is31fl3216.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/include/periph_lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/include/periph_lcd.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/include/periph_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/include/periph_led.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/include/periph_sdcard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/include/periph_sdcard.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/include/periph_spiffs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/include/periph_spiffs.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/include/periph_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/include/periph_touch.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/include/periph_wifi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/include/periph_wifi.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/include/periph_ws2812.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/include/periph_ws2812.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/lib/IS31FL3216/IS31FL3216.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/lib/IS31FL3216/IS31FL3216.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/lib/IS31FL3216/IS31FL3216.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/lib/IS31FL3216/IS31FL3216.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/lib/adc_button/adc_button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/lib/adc_button/adc_button.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/lib/adc_button/adc_button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/lib/adc_button/adc_button.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/lib/aw2013/aw2013.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/lib/aw2013/aw2013.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/lib/aw2013/aw2013.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/lib/aw2013/aw2013.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/lib/blufi/blufi_security.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/lib/blufi/blufi_security.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/lib/blufi/blufi_security.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/lib/blufi/blufi_security.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/lib/blufi/wifibleconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/lib/blufi/wifibleconfig.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/lib/blufi/wifibleconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/lib/blufi/wifibleconfig.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/lib/button/button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/lib/button/button.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/lib/button/button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/lib/button/button.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/lib/gpio_isr/gpio_isr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/lib/gpio_isr/gpio_isr.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/lib/gpio_isr/gpio_isr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/lib/gpio_isr/gpio_isr.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/lib/sdcard/sdcard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/lib/sdcard/sdcard.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/lib/sdcard/sdcard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/lib/sdcard/sdcard.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/lib/tca9554/tca9554.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/lib/tca9554/tca9554.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/lib/tca9554/tca9554.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/lib/tca9554/tca9554.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/lib/touch/touch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/lib/touch/touch.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/lib/touch/touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/lib/touch/touch.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/periph_adc_button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/periph_adc_button.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/periph_aw2013.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/periph_aw2013.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/periph_button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/periph_button.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/periph_console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/periph_console.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/periph_gpio_isr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/periph_gpio_isr.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/periph_is31fl3216.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/periph_is31fl3216.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/periph_lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/periph_lcd.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/periph_led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/periph_led.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/periph_sdcard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/periph_sdcard.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/periph_spiffs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/periph_spiffs.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/periph_touch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/periph_touch.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/periph_wifi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/periph_wifi.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/periph_ws2812.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/periph_ws2812.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/test/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/test/component.mk -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/test/esp_peripherals_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/esp_peripherals/test/esp_peripherals_test.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/mk2016/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/mk2016/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/mk2016/mkpb2016.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/mk2016/mkpb2016.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/components/mk2016/mkpb2016.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/components/mk2016/mkpb2016.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/main/AudioPipeline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/main/AudioPipeline.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/main/AudioPipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/main/AudioPipeline.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/main/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/main/KeyHandle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/main/KeyHandle.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/main/VolcRTCDemo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/main/VolcRTCDemo.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/main/VolcRTCDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/main/VolcRTCDemo.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/main/WifiConfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/main/WifiConfig.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/main/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/main/config.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/main/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/main/idf_component.yml -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/main/lv_img_icon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/main/lv_img_icon.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/main/main.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/main/main_back.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/main/main_back.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/main/opus_frames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/main/opus_frames.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/main/spiffs_amr_resample_example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/main/spiffs_amr_resample_example.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/main/start_bot/start_bot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/main/start_bot/start_bot.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/main/start_bot/start_bot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/main/start_bot/start_bot.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/main/test_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/main/test_ui.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/main/ui_code/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/main/ui_code/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/main/ui_code/components/ui_comp_hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/main/ui_code/components/ui_comp_hook.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/main/ui_code/filelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/main/ui_code/filelist.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/main/ui_code/fonts/ui_font_Big.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/main/ui_code/fonts/ui_font_Big.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/main/ui_code/fonts/ui_font_Font22.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/main/ui_code/fonts/ui_font_Font22.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/main/ui_code/fonts/ui_font_Font32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/main/ui_code/fonts/ui_font_Font32.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/main/ui_code/fonts/ui_font_Medium.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/main/ui_code/fonts/ui_font_Medium.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/main/ui_code/fonts/ui_font_Number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/main/ui_code/fonts/ui_font_Number.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/main/ui_code/fonts/ui_font_Small.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/main/ui_code/fonts/ui_font_Small.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/main/ui_code/images/ui_img_daobai_icon_png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/main/ui_code/images/ui_img_daobai_icon_png.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/main/ui_code/screens/ui_Screen1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/main/ui_code/screens/ui_Screen1.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/main/ui_code/screens/ui_configwifi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/main/ui_code/screens/ui_configwifi.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/main/ui_code/ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/main/ui_code/ui.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/main/ui_code/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/main/ui_code/ui.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/main/ui_code/ui_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/main/ui_code/ui_events.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/main/ui_code/ui_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/main/ui_code/ui_helpers.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/main/ui_code/ui_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/main/ui_code/ui_helpers.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/partitions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/partitions.csv -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/.clang-format -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/.gitignore -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/LICENSE -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/README.md -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/README_CN.md -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/component.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/component.cmake -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/LICENSE.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/RCSL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/RCSL.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/RPSL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/RPSL.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/Umakefil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/Umakefil -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/docs/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/docs/LICENSE.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/docs/RCSL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/docs/RCSL.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/docs/RPSL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/docs/RPSL.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/docs/cpuusage.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/docs/cpuusage.xls -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/docs/memory.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/docs/memory.xls -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/mp3dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/mp3dec.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/mp3tabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/mp3tabs.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/pub/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/pub/LICENSE.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/pub/RCSL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/pub/RCSL.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/pub/RPSL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/pub/RPSL.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/pub/mp3common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/pub/mp3common.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/pub/mp3dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/pub/mp3dec.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/pub/mpadecobjfixpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/pub/mpadecobjfixpt.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/pub/statname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/pub/statname.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/readme.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/real/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/real/LICENSE.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/real/RCSL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/real/RCSL.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/real/RPSL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/real/RPSL.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/real/arm/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/real/arm/LICENSE.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/real/arm/RCSL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/real/arm/RCSL.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/real/arm/RPSL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/real/arm/RPSL.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/real/arm/asmmisc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/real/arm/asmmisc.s -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/real/arm/asmpoly.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/real/arm/asmpoly.s -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/real/arm/asmpoly_gcc.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/real/arm/asmpoly_gcc.S -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/real/assembly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/real/assembly.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/real/bitstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/real/bitstream.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/real/buffers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/real/buffers.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/real/coder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/real/coder.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/real/dct32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/real/dct32.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/real/dequant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/real/dequant.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/real/dqchan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/real/dqchan.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/real/huffman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/real/huffman.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/real/hufftabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/real/hufftabs.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/real/imdct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/real/imdct.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/real/polyphase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/real/polyphase.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/real/scalfact.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/real/scalfact.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/real/stproc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/real/stproc.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/real/subband.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/real/subband.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/real/trigtabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/real/trigtabs.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/testwrap/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/testwrap/LICENSE.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/testwrap/RCSL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/testwrap/RCSL.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/testwrap/RPSL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/testwrap/RPSL.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/testwrap/Umakefil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/testwrap/Umakefil -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/testwrap/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/testwrap/debug.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/testwrap/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/testwrap/debug.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/testwrap/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/testwrap/main.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/testwrap/timing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/testwrap/timing.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/testwrap/timing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/testwrap/timing.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/testwrap/winmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/libhelix-mp3/testwrap/winmain.cpp -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/mp3player/example/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/mp3player/example/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/mp3player/example/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/mp3player/example/main.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/mp3player/example/test.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/mp3player/example/test.mp3 -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/mp3player/mp3_player.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/mp3player/mp3_player.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/mp3player/mp3_player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_audio/mp3player/mp3_player.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_button/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_button/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_button/example/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_button/example/main.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_button/qmsd_button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_button/qmsd_button.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_button/qmsd_button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_button/qmsd_button.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_button/qmsd_button_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_button/qmsd_button_adc.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_button/qmsd_button_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_button/qmsd_button_gpio.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_middleware_8ms/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_middleware_8ms/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_middleware_8ms/qmsd_api.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_middleware_8ms/qmsd_ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_middleware_8ms/qmsd_ctrl.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_middleware_8ms/qmsd_gui_init.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_middleware_8ms/qmsd_lang.h: -------------------------------------------------------------------------------- 1 | #include "qmsd_middleware_8ms.h" 2 | -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_middleware_8ms/qmsd_middleware_8ms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_middleware_8ms/qmsd_middleware_8ms.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_middleware_8ms/qmsd_middleware_8ms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_middleware_8ms/qmsd_middleware_8ms.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_middleware_8ms/qmsd_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_middleware_8ms/qmsd_type.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_sensor/aht20/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_sensor/aht20/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_sensor/aht20/aht20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_sensor/aht20/aht20.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_sensor/aht20/aht20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_sensor/aht20/aht20.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_sensor/al01/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_sensor/al01/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_sensor/al01/al01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_sensor/al01/al01.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_sensor/al01/al01.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_sensor/al01/al01.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_sensor/aw9523/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_sensor/aw9523/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_sensor/aw9523/aw9523.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_sensor/aw9523/aw9523.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_sensor/aw9523/aw9523.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_sensor/aw9523/aw9523.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_sensor/encoder_ab/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_sensor/encoder_ab/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_sensor/encoder_ab/encoder_ab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_sensor/encoder_ab/encoder_ab.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_sensor/encoder_ab/encoder_ab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_sensor/encoder_ab/encoder_ab.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_sensor/ltr303als01/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_sensor/ltr303als01/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_sensor/ltr303als01/ltr303.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_sensor/ltr303als01/ltr303.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_sensor/ltr303als01/ltr303.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_sensor/ltr303als01/ltr303.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_sensor/sht20/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_sensor/sht20/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_sensor/sht20/sht20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_sensor/sht20/sht20.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_sensor/sht20/sht20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_sensor/sht20/sht20.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_sensor/tm1629a/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_sensor/tm1629a/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_sensor/tm1629a/example/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_sensor/tm1629a/example/main.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_sensor/tm1629a/tm1629a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_sensor/tm1629a/tm1629a.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_sensor/tm1629a/tm1629a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-ext/qmsd_sensor/tm1629a/tm1629a.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/bus/8080_lcd_esp32s3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/bus/8080_lcd_esp32s3.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/bus/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/bus/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/bus/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/bus/component.mk -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/bus/i2s_lcd_esp32_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/bus/i2s_lcd_esp32_driver.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/bus/i2s_lcd_esp32s2_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/bus/i2s_lcd_esp32s2_driver.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/bus/iic_bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/bus/iic_bus.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/bus/include/i2s_lcd_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/bus/include/i2s_lcd_driver.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/bus/include/iic_bus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/bus/include/iic_bus.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/bus/include/spi_bus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/bus/include/spi_bus.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/bus/spi_bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/bus/spi_bus.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/bus/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/bus/test/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/bus/test/test_spi_bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/bus/test/test_spi_bus.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/i2c_bus/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/i2c_bus/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/i2c_bus/i2c_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/i2c_bus/i2c_device.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/i2c_bus/i2c_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/i2c_bus/i2c_device.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/i2c_bus/i2c_hal/i2c_device_hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/i2c_bus/i2c_hal/i2c_device_hal.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/i2c_bus/i2c_hal/i2c_device_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/i2c_bus/i2c_hal/i2c_device_hal.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/i2c_bus/i2c_hal_master/i2c_device_hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/i2c_bus/i2c_hal_master/i2c_device_hal.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/i2c_bus/i2c_hal_master/i2c_device_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/i2c_bus/i2c_hal_master/i2c_device_hal.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/led_strip/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/led_strip/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/led_strip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/led_strip/README.md -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/led_strip/component.mk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/led_strip/include/led_strip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/led_strip/include/led_strip.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/led_strip/led_strip_rmt_ws2812.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/led_strip/led_strip_rmt_ws2812.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/Kconfig -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/component.mk -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/gc9307/gc9307.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/gc9307/gc9307.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/gc9307/gc9307.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/gc9307/gc9307.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/gc9a01/gc9a01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/gc9a01/gc9a01.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/gc9a01/gc9a01.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/gc9a01/gc9a01.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/ili9340/ili9340.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/ili9340/ili9340.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/ili9340/ili9340.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/ili9340/ili9340.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/ili9341/ili9341.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/ili9341/ili9341.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/ili9341/ili9341.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/ili9341/ili9341.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/ili9342/ili9342.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/ili9342/ili9342.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/ili9342/ili9342.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/ili9342/ili9342.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/ili9486/ili9486.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/ili9486/ili9486.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/ili9486/ili9486.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/ili9486/ili9486.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/ili9488/ili9488.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/ili9488/ili9488.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/ili9488/ili9488.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/ili9488/ili9488.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/ili9806/ili9806.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/ili9806/ili9806.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/ili9806/ili9806.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/ili9806/ili9806.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/nt35510/nt35510.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/nt35510/nt35510.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/nt35510/nt35510.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/nt35510/nt35510.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/nv3041a/nv3041a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/nv3041a/nv3041a.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/nv3041a/nv3041a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/nv3041a/nv3041a.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/rm68120/rm68120.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/rm68120/rm68120.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/rm68120/rm68120.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/rm68120/rm68120.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/ssd1306/ssd1306.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/ssd1306/ssd1306.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/ssd1306/ssd1306.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/ssd1306/ssd1306.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/ssd1307/ssd1307.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/ssd1307/ssd1307.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/ssd1307/ssd1307.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/ssd1307/ssd1307.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/ssd1322/ssd1322.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/ssd1322/ssd1322.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/ssd1322/ssd1322.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/ssd1322/ssd1322.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/ssd1351/ssd1351.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/ssd1351/ssd1351.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/ssd1351/ssd1351.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/ssd1351/ssd1351.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/ssd1963/ssd1963.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/ssd1963/ssd1963.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/ssd1963/ssd1963.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/ssd1963/ssd1963.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/st7789/st7789.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/st7789/st7789.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/st7789/st7789.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/st7789/st7789.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/st7796/st7796.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/st7796/st7796.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/st7796/st7796.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/controller_driver/st7796/st7796.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/screen_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/screen_driver.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/screen_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/screen_driver.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/screen_utility/interface_drv_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/screen_utility/interface_drv_def.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/screen_utility/screen_utility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/screen_utility/screen_utility.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/screen_utility/screen_utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/screen_utility/screen_utility.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/test/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/test/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/test/component.mk -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/test/lcd_color_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/test/lcd_color_test.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/test/lcd_mono_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/screen/test/lcd_mono_test.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/Kconfig -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/CHANGELOG.md -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/Kconfig -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/LICENCE.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/README.md -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/component.mk -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/library.json -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/library.properties -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/lv_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/lv_conf.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/lvgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/lvgl.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/lvgl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/lvgl.mk -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_api_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_api_map.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_conf_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_conf_internal.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_conf_kconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_conf_kconfig.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_core/lv_core.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_core/lv_core.mk -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_core/lv_disp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_core/lv_disp.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_core/lv_disp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_core/lv_disp.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_core/lv_group.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_core/lv_group.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_core/lv_group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_core/lv_group.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_core/lv_indev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_core/lv_indev.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_core/lv_indev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_core/lv_indev.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_core/lv_obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_core/lv_obj.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_core/lv_obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_core/lv_obj.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_core/lv_refr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_core/lv_refr.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_core/lv_refr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_core/lv_refr.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_core/lv_style.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_core/lv_style.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_core/lv_style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_core/lv_style.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_draw/lv_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_draw/lv_draw.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_draw/lv_draw.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_draw/lv_draw.mk -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_font/lv_font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_font/lv_font.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_font/lv_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_font/lv_font.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_font/lv_font.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_font/lv_font.mk -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_gpu/lv_gpu.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_gpu/lv_gpu.mk -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_hal/lv_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_hal/lv_hal.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_hal/lv_hal.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_hal/lv_hal.mk -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_misc/lv_anim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_misc/lv_anim.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_misc/lv_anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_misc/lv_anim.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_misc/lv_area.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_misc/lv_area.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_misc/lv_area.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_misc/lv_area.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_misc/lv_async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_misc/lv_async.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_misc/lv_async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_misc/lv_async.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_misc/lv_bidi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_misc/lv_bidi.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_misc/lv_bidi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_misc/lv_bidi.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_misc/lv_color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_misc/lv_color.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_misc/lv_color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_misc/lv_color.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_misc/lv_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_misc/lv_debug.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_misc/lv_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_misc/lv_debug.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_misc/lv_fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_misc/lv_fs.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_misc/lv_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_misc/lv_fs.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_misc/lv_gc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_misc/lv_gc.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_misc/lv_gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_misc/lv_gc.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_misc/lv_ll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_misc/lv_ll.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_misc/lv_ll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_misc/lv_ll.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_misc/lv_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_misc/lv_log.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_misc/lv_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_misc/lv_log.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_misc/lv_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_misc/lv_math.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_misc/lv_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_misc/lv_math.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_misc/lv_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_misc/lv_mem.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_misc/lv_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_misc/lv_mem.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_misc/lv_misc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_misc/lv_misc.mk -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_misc/lv_task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_misc/lv_task.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_misc/lv_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_misc/lv_task.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_misc/lv_templ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_misc/lv_templ.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_misc/lv_templ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_misc/lv_templ.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_misc/lv_txt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_misc/lv_txt.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_misc/lv_txt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_misc/lv_txt.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_misc/lv_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_misc/lv_types.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_misc/lv_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_misc/lv_utils.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_misc/lv_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lv_misc/lv_utils.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lvgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl7/lvgl/src/lvgl.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/.codecov.yml -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/.editorconfig -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/.gitignore -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/Kconfig -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/LICENCE.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/README.md -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/README_pt_BR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/README_pt_BR.md -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/README_zh.md -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/SConscript -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/component.mk -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/env_support/zephyr/module.yml: -------------------------------------------------------------------------------- 1 | build: 2 | cmake: . 3 | -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/idf_component.yml -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/library.json -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/library.properties -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/lv_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/lv_conf.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/lvgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/lvgl.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/lvgl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/lvgl.mk -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/core/lv_core.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/core/lv_core.mk -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/core/lv_disp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/core/lv_disp.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/core/lv_disp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/core/lv_disp.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/core/lv_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/core/lv_event.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/core/lv_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/core/lv_event.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/core/lv_group.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/core/lv_group.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/core/lv_group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/core/lv_group.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/core/lv_indev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/core/lv_indev.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/core/lv_indev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/core/lv_indev.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/core/lv_obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/core/lv_obj.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/core/lv_obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/core/lv_obj.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/core/lv_obj_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/core/lv_obj_draw.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/core/lv_obj_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/core/lv_obj_draw.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/core/lv_obj_pos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/core/lv_obj_pos.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/core/lv_obj_pos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/core/lv_obj_pos.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/core/lv_obj_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/core/lv_obj_tree.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/core/lv_obj_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/core/lv_obj_tree.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/core/lv_refr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/core/lv_refr.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/core/lv_refr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/core/lv_refr.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/core/lv_theme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/core/lv_theme.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/core/lv_theme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/core/lv_theme.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/draw/lv_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/draw/lv_draw.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/draw/lv_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/draw/lv_draw.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/draw/lv_draw.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/draw/lv_draw.mk -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/draw/lv_draw_arc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/draw/lv_draw_arc.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/draw/lv_draw_arc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/draw/lv_draw_arc.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/draw/lv_draw_img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/draw/lv_draw_img.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/draw/lv_draw_img.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/draw/lv_draw_img.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/draw/lv_img_buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/draw/lv_img_buf.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/draw/lv_img_buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/draw/lv_img_buf.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/draw/sdl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/draw/sdl/README.md -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/extra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/extra/README.md -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/extra/lv_extra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/extra/lv_extra.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/extra/lv_extra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/extra/lv_extra.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/extra/lv_extra.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/extra/lv_extra.mk -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/extra/others/fragment/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/font/korean.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/font/korean.ttf -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/font/lv_font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/font/lv_font.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/font/lv_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/font/lv_font.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/font/lv_font.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/font/lv_font.mk -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/hal/lv_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/hal/lv_hal.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/hal/lv_hal.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/hal/lv_hal.mk -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/hal/lv_hal_disp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/hal/lv_hal_disp.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/hal/lv_hal_disp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/hal/lv_hal_disp.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/hal/lv_hal_indev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/hal/lv_hal_indev.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/hal/lv_hal_indev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/hal/lv_hal_indev.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/hal/lv_hal_tick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/hal/lv_hal_tick.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/hal/lv_hal_tick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/hal/lv_hal_tick.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/lv_api_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/lv_api_map.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/lv_conf_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/lv_conf_internal.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/lv_conf_kconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/lv_conf_kconfig.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/lvgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/lvgl.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_anim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_anim.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_anim.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_area.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_area.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_area.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_area.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_assert.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_async.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_async.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_bidi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_bidi.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_bidi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_bidi.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_color.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_color.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_fs.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_fs.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_gc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_gc.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_gc.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_ll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_ll.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_ll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_ll.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_log.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_log.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_lru.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_lru.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_lru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_lru.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_math.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_math.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_mem.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_mem.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_misc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_misc.mk -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_printf.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_printf.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_style.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_style.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_style.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_templ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_templ.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_templ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_templ.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_timer.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_timer.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_tlsf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_tlsf.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_tlsf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_tlsf.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_txt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_txt.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_txt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_txt.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_txt_ap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_txt_ap.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_txt_ap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_txt_ap.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_types.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_utils.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/misc/lv_utils.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/widgets/lv_arc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components-third-party/ui_engine/lvgl8/lvgl/src/widgets/lv_arc.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components/qmsd_board/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components/qmsd_board/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components/qmsd_board/Kconfig.projbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components/qmsd_board/Kconfig.projbuild -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components/qmsd_board/board_utility/qmsd_board_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components/qmsd_board/board_utility/qmsd_board_config.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components/qmsd_board/board_utility/qmsd_board_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components/qmsd_board/board_utility/qmsd_board_utils.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components/qmsd_board/board_utility/qmsd_board_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components/qmsd_board/board_utility/qmsd_board_utils.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components/qmsd_gui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components/qmsd_gui/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components/qmsd_gui/qmsd_gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components/qmsd_gui/qmsd_gui.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components/qmsd_gui/qmsd_gui_lvgl_v7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components/qmsd_gui/qmsd_gui_lvgl_v7.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components/qmsd_gui/qmsd_gui_lvgl_v8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components/qmsd_gui/qmsd_gui_lvgl_v8.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components/qmsd_screen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components/qmsd_screen/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components/qmsd_screen/lcd_panel/qmsd_lcd_wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components/qmsd_screen/lcd_panel/qmsd_lcd_wrapper.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components/qmsd_screen/lcd_panel/qmsd_lcd_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components/qmsd_screen/lcd_panel/qmsd_lcd_wrapper.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components/qmsd_screen/rgb_panel/esp_lcd_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components/qmsd_screen/rgb_panel/esp_lcd_common.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components/qmsd_screen/rgb_panel/qmsd_lcd_panel_rgb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components/qmsd_screen/rgb_panel/qmsd_lcd_panel_rgb.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components/qmsd_screen/rgb_panel/qmsd_lcd_panel_rgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components/qmsd_screen/rgb_panel/qmsd_lcd_panel_rgb.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components/qmsd_touch/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components/qmsd_touch/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components/qmsd_touch/chsc6540/chsc6540.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components/qmsd_touch/chsc6540/chsc6540.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components/qmsd_touch/cst3240/cst3240.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components/qmsd_touch/cst3240/cst3240.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components/qmsd_touch/cst328/cst328.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components/qmsd_touch/cst328/cst328.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components/qmsd_touch/cst816t/cst816t.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components/qmsd_touch/cst816t/cst816t.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components/qmsd_touch/ft5x06/ft5x06.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components/qmsd_touch/ft5x06/ft5x06.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components/qmsd_touch/ft5x06/ft5x06_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components/qmsd_touch/ft5x06/ft5x06_def.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components/qmsd_touch/gt2863/gt2863.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components/qmsd_touch/gt2863/gt2863.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components/qmsd_touch/gt911/gt911.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components/qmsd_touch/gt911/gt911.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components/qmsd_touch/qmsd_touch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components/qmsd_touch/qmsd_touch.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components/qmsd_touch/qmsd_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components/qmsd_touch/qmsd_touch.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components/qmsd_touch/sp2010/sp2010.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components/qmsd_touch/sp2010/sp2010.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components/qmsd_utils/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components/qmsd_utils/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components/qmsd_utils/qmsd_crc16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components/qmsd_utils/qmsd_crc16.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components/qmsd_utils/qmsd_err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components/qmsd_utils/qmsd_err.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components/qmsd_utils/qmsd_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components/qmsd_utils/qmsd_utils.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components/qmsd_utils/qmsd_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/components/qmsd_utils/qmsd_utils.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/custom-board/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/custom-board/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/custom-board/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/custom-board/README.md -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/custom-board/README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/custom-board/README_CN.md -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/custom-board/components/custom_board/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/custom-board/components/custom_board/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/custom-board/components/custom_board/qmsd_board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/custom-board/components/custom_board/qmsd_board.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/custom-board/components/custom_board/qmsd_board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/custom-board/components/custom_board/qmsd_board.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/custom-board/components/custom_board/qmsd_board_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/custom-board/components/custom_board/qmsd_board_def.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/custom-board/components/custom_board/qmsd_board_pin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/custom-board/components/custom_board/qmsd_board_pin.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/custom-board/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/custom-board/main/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/custom-board/main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/custom-board/main/main.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/custom-board/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/custom-board/sdkconfig.defaults -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/get-start/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/get-start/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/get-start/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/get-start/README.md -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/get-start/README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/get-start/README_CN.md -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/get-start/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/get-start/main/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/get-start/main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/get-start/main/main.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/get-start/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/get-start/sdkconfig.defaults -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/lvgl-demo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/lvgl-demo/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/lvgl-demo/components/lvgl_widgets_demo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/lvgl-demo/components/lvgl_widgets_demo/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/lvgl-demo/components/lvgl_widgets_demo/img_clothes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/lvgl-demo/components/lvgl_widgets_demo/img_clothes.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/lvgl-demo/components/lvgl_widgets_demo/img_lvgl_logo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/lvgl-demo/components/lvgl_widgets_demo/img_lvgl_logo.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/lvgl-demo/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/lvgl-demo/main/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/lvgl-demo/main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/lvgl-demo/main/main.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/lvgl-demo/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/lvgl-demo/sdkconfig.defaults -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/lvgl-demo/sdkconfig.lvgl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/lvgl-demo/sdkconfig.lvgl -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/lvgl-from-8ms/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/lvgl-from-8ms/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/lvgl-from-8ms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/lvgl-from-8ms/README.md -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/lvgl-from-8ms/README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/lvgl-from-8ms/README_CN.md -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/lvgl-from-8ms/components/zx_ui_lvgl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/lvgl-from-8ms/components/zx_ui_lvgl/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/lvgl-from-8ms/components/zx_ui_lvgl/zx_ui/res/zx_res.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/lvgl-from-8ms/components/zx_ui_lvgl/zx_ui/res/zx_res.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/lvgl-from-8ms/components/zx_ui_lvgl/zx_ui/zx_ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/lvgl-from-8ms/components/zx_ui_lvgl/zx_ui/zx_ui.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/lvgl-from-8ms/components/zx_ui_lvgl/zx_ui/zx_ui_entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/lvgl-from-8ms/components/zx_ui_lvgl/zx_ui/zx_ui_entry.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/lvgl-from-8ms/components/zx_ui_lvgl/zx_ui/zx_ui_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/lvgl-from-8ms/components/zx_ui_lvgl/zx_ui/zx_ui_entry.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/lvgl-from-8ms/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/lvgl-from-8ms/main/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/lvgl-from-8ms/main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/lvgl-from-8ms/main/main.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/lvgl-from-8ms/main/user_logic/screen_fg_logic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/lvgl-from-8ms/main/user_logic/screen_fg_logic.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/lvgl-from-8ms/main/user_logic/screen_main_logic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/lvgl-from-8ms/main/user_logic/screen_main_logic.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/lvgl-from-8ms/main/user_logic/zx_screen_logic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/lvgl-from-8ms/main/user_logic/zx_screen_logic.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/lvgl-from-8ms/main/user_logic/zx_screen_logic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/lvgl-from-8ms/main/user_logic/zx_screen_logic.h -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/lvgl-from-8ms/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/lvgl-from-8ms/sdkconfig.defaults -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/lvgl-from-squareline/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/lvgl-from-squareline/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/lvgl-from-squareline/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/lvgl-from-squareline/README.md -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/lvgl-from-squareline/README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/lvgl-from-squareline/README_CN.md -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/lvgl-from-squareline/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/lvgl-from-squareline/main/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/lvgl-from-squareline/main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/lvgl-from-squareline/main/main.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/lvgl-from-squareline/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/lvgl-from-squareline/sdkconfig.defaults -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/rs485-demo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/rs485-demo/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/rs485-demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/rs485-demo/README.md -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/rs485-demo/README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/rs485-demo/README_CN.md -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/rs485-demo/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/rs485-demo/main/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/rs485-demo/main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/rs485-demo/main/main.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/rs485-demo/main/rs485_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/rs485-demo/main/rs485_demo.c -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/rs485-demo/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/example/rs485-demo/sdkconfig.defaults -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/tools/generate_firmware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/tools/generate_firmware.py -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/tools/load_board.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/tools/load_board.py -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/tools/load_ui_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/tools/load_ui_code.py -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/tools/qmsd_cmake/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/tools/qmsd_cmake/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/tools/release_components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/qmsd-esp32-bsp/tools/release_components.py -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/readme.md -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/sdkconfig -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/sdkconfig.defaults -------------------------------------------------------------------------------- /doc/Schematic/examples/Esp32AgentDevKit/sdkconfig.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireless-tag-com/GTM/HEAD/doc/Schematic/examples/Esp32AgentDevKit/sdkconfig.old --------------------------------------------------------------------------------