├── .clang-format ├── .github ├── ISSUE_TEMPLATE │ └── bug-report.yml └── workflows │ └── clang-format-check.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── app ├── app.cpp ├── app.h ├── apps │ ├── app_generator.py │ ├── app_installer.h │ ├── app_launcher │ │ ├── app_launcher.cpp │ │ ├── app_launcher.h │ │ └── view │ │ │ ├── panel_camera.cpp │ │ │ ├── panel_com_monitor.cpp │ │ │ ├── panel_dual_mic.cpp │ │ │ ├── panel_gpio.cpp │ │ │ ├── panel_headphone.cpp │ │ │ ├── panel_i2c_scan.cpp │ │ │ ├── panel_imu.cpp │ │ │ ├── panel_lcd_backlight.cpp │ │ │ ├── panel_music.cpp │ │ │ ├── panel_power.cpp │ │ │ ├── panel_power_monitor.cpp │ │ │ ├── panel_rtc.cpp │ │ │ ├── panel_sd_card.cpp │ │ │ ├── panel_spk_volume.cpp │ │ │ ├── panel_switches.cpp │ │ │ ├── view.cpp │ │ │ └── view.h │ ├── app_startup_anim │ │ ├── app_startup_anim.cpp │ │ └── app_startup_anim.h │ ├── app_template │ │ ├── app_template.cpp │ │ └── app_template.h │ └── utils │ │ ├── audio │ │ ├── audio.cpp │ │ └── audio.h │ │ ├── math │ │ └── math.h │ │ └── ui │ │ ├── toast.cpp │ │ ├── toast.h │ │ ├── window.cpp │ │ └── window.h ├── assets │ ├── assets.h │ └── images │ │ ├── arrow_state_on.c │ │ ├── chg_arrow_down.c │ │ ├── chg_arrow_up.c │ │ ├── internal_i2c_dev_chart.c │ │ ├── launcher_bg.c │ │ ├── logo_5.c │ │ ├── logo_tab.c │ │ ├── mouse_cursor.c │ │ ├── porta_i2c_dev_chart.c │ │ ├── porta_i2c_ext5v_on.c │ │ ├── sw_chg_off.c │ │ ├── sw_chg_on.c │ │ ├── sw_off.c │ │ ├── sw_on.c │ │ ├── sw_qc_off.c │ │ ├── sw_qc_on.c │ │ ├── sw_rf_h.c │ │ └── sw_rf_l.c ├── hal │ ├── hal.cpp │ └── hal.h └── shared │ ├── shared.cpp │ └── shared.h ├── fetch_repos.py ├── lv_conf.h ├── platforms ├── desktop │ ├── .gitignore │ ├── CMakeLists.txt │ ├── hal │ │ ├── components │ │ │ ├── hal_audio.cpp │ │ │ └── hal_lvgl.cpp │ │ ├── hal_config.h │ │ ├── hal_desktop.cpp │ │ └── hal_desktop.h │ └── main.cpp └── tab5 │ ├── .gitignore │ ├── CMakeLists.txt │ ├── audio │ ├── canon_in_d.mp3 │ ├── shutdown_sfx.mp3 │ └── startup_sfx.mp3 │ ├── components │ ├── esp_cam_sensor │ │ ├── CHANGELOG.md │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── LICENSE │ │ ├── README.md │ │ ├── idf_component.yml │ │ ├── include │ │ │ ├── esp_cam_sensor.h │ │ │ ├── esp_cam_sensor_detect.h │ │ │ └── esp_cam_sensor_types.h │ │ ├── linker.lf │ │ ├── project_include.cmake │ │ ├── sensors │ │ │ ├── bf3925 │ │ │ │ ├── Kconfig.bf3925 │ │ │ │ ├── bf3925.c │ │ │ │ ├── include │ │ │ │ │ ├── bf3925.h │ │ │ │ │ └── bf3925_types.h │ │ │ │ └── private_include │ │ │ │ │ ├── bf3925_regs.h │ │ │ │ │ └── bf3925_settings.h │ │ │ ├── gc0308 │ │ │ │ ├── Kconfig.gc0308 │ │ │ │ ├── gc0308.c │ │ │ │ ├── include │ │ │ │ │ ├── gc0308.h │ │ │ │ │ └── gc0308_types.h │ │ │ │ └── private_include │ │ │ │ │ ├── gc0308_regs.h │ │ │ │ │ └── gc0308_settings.h │ │ │ ├── gc2145 │ │ │ │ ├── Kconfig.gc2145 │ │ │ │ ├── gc2145.c │ │ │ │ ├── include │ │ │ │ │ ├── gc2145.h │ │ │ │ │ └── gc2145_types.h │ │ │ │ └── private_include │ │ │ │ │ ├── gc2145_regs.h │ │ │ │ │ └── gc2145_settings.h │ │ │ ├── ov2640 │ │ │ │ ├── Kconfig.ov2640 │ │ │ │ ├── include │ │ │ │ │ ├── ov2640.h │ │ │ │ │ └── ov2640_types.h │ │ │ │ ├── ov2640.c │ │ │ │ └── private_include │ │ │ │ │ ├── ov2640_regs.h │ │ │ │ │ └── ov2640_settings.h │ │ │ ├── ov2710 │ │ │ │ ├── Kconfig.ov2710 │ │ │ │ ├── cfg │ │ │ │ │ └── ov2710_default.json │ │ │ │ ├── include │ │ │ │ │ ├── ov2710.h │ │ │ │ │ └── ov2710_types.h │ │ │ │ ├── ov2710.c │ │ │ │ └── private_include │ │ │ │ │ ├── ov2710_regs.h │ │ │ │ │ └── ov2710_settings.h │ │ │ ├── ov5645 │ │ │ │ ├── Kconfig.ov5645 │ │ │ │ ├── include │ │ │ │ │ ├── ov5645.h │ │ │ │ │ └── ov5645_types.h │ │ │ │ ├── ov5645.c │ │ │ │ └── private_include │ │ │ │ │ ├── ov5645_regs.h │ │ │ │ │ └── ov5645_settings.h │ │ │ ├── ov5647 │ │ │ │ ├── Kconfig.ov5647 │ │ │ │ ├── cfg │ │ │ │ │ └── ov5647_default.json │ │ │ │ ├── include │ │ │ │ │ ├── ov5647.h │ │ │ │ │ └── ov5647_types.h │ │ │ │ ├── ov5647.c │ │ │ │ └── private_include │ │ │ │ │ ├── ov5647_regs.h │ │ │ │ │ └── ov5647_settings.h │ │ │ ├── sc030iot │ │ │ │ ├── Kconfig.sc030iot │ │ │ │ ├── include │ │ │ │ │ ├── sc030iot.h │ │ │ │ │ └── sc030iot_types.h │ │ │ │ ├── private_include │ │ │ │ │ ├── sc030iot_regs.h │ │ │ │ │ └── sc030iot_settings.h │ │ │ │ └── sc030iot.c │ │ │ ├── sc035hgs │ │ │ │ ├── Kconfig.sc035hgs │ │ │ │ ├── include │ │ │ │ │ ├── sc035hgs.h │ │ │ │ │ └── sc035hgs_types.h │ │ │ │ ├── private_include │ │ │ │ │ ├── sc035hgs_regs.h │ │ │ │ │ └── sc035hgs_settings.h │ │ │ │ └── sc035hgs.c │ │ │ ├── sc101iot │ │ │ │ ├── Kconfig.sc101iot │ │ │ │ ├── include │ │ │ │ │ ├── sc101iot.h │ │ │ │ │ └── sc101iot_types.h │ │ │ │ ├── private_include │ │ │ │ │ ├── sc101iot_regs.h │ │ │ │ │ └── sc101iot_settings.h │ │ │ │ └── sc101iot.c │ │ │ ├── sc202cs │ │ │ │ ├── Kconfig.sc202cs │ │ │ │ ├── include │ │ │ │ │ ├── sc202cs.h │ │ │ │ │ └── sc202cs_types.h │ │ │ │ ├── private_include │ │ │ │ │ ├── sc202cs_regs.h │ │ │ │ │ └── sc202cs_settings.h │ │ │ │ └── sc202cs.c │ │ │ └── sc2336 │ │ │ │ ├── Kconfig.sc2336 │ │ │ │ ├── cfg │ │ │ │ └── sc2336_default.json │ │ │ │ ├── include │ │ │ │ ├── sc2336.h │ │ │ │ └── sc2336_types.h │ │ │ │ ├── private_include │ │ │ │ ├── sc2336_regs.h │ │ │ │ └── sc2336_settings.h │ │ │ │ └── sc2336.c │ │ ├── src │ │ │ └── esp_cam_sensor.c │ │ └── test_apps │ │ │ └── detect │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── main │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig.projbuild │ │ │ ├── idf_component.yml │ │ │ └── test_cam_sensor_detect.c │ │ │ ├── sdkconfig.ci.all_cameras │ │ │ ├── sdkconfig.defaults │ │ │ └── sdkconfig.defaults.esp32p4 │ ├── esp_ipa │ │ ├── CHANGELOG.md │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── LICENSE │ │ ├── README.md │ │ ├── idf_component.yml │ │ ├── include │ │ │ ├── esp_ipa.h │ │ │ ├── esp_ipa_detect.h │ │ │ ├── esp_ipa_types.h │ │ │ └── esp_ipa_version.h │ │ ├── lib │ │ │ └── esp32p4 │ │ │ │ ├── libesp_ipa.a │ │ │ │ └── version │ │ ├── linker.lf │ │ ├── src │ │ │ └── version.c │ │ └── test_apps │ │ │ └── dummy │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── main │ │ │ ├── CMakeLists.txt │ │ │ ├── app_main.c │ │ │ └── idf_component.yml │ │ │ └── sdkconfig.defaults │ ├── esp_sccb_intf │ │ ├── CHANGELOG.md │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── LICENSE │ │ ├── README.md │ │ ├── idf_component.yml │ │ ├── include │ │ │ ├── esp_sccb_intf.h │ │ │ └── esp_sccb_types.h │ │ ├── interface │ │ │ └── esp_sccb_io_interface.h │ │ ├── sccb_i2c │ │ │ ├── include │ │ │ │ └── esp_sccb_i2c.h │ │ │ └── src │ │ │ │ ├── sccb_i2c.c │ │ │ │ └── sccb_i2c_internal.h │ │ ├── src │ │ │ └── sccb.c │ │ └── test_apps │ │ │ └── dummy │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── main │ │ │ ├── CMakeLists.txt │ │ │ ├── idf_component.yml │ │ │ ├── test_app_main.c │ │ │ └── test_interface.c │ │ │ └── sdkconfig.defaults │ ├── esp_video │ │ ├── CHANGELOG.md │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── LICENSE │ │ ├── README.md │ │ ├── examples │ │ │ ├── capture_stream │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── README.md │ │ │ │ ├── main │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Kconfig.projbuild │ │ │ │ │ ├── capture_stream_main.c │ │ │ │ │ └── idf_component.yml │ │ │ │ ├── sdkconfig.ci.disable_isp_video_device │ │ │ │ ├── sdkconfig.ci.driver_buf │ │ │ │ ├── sdkconfig.ci.user_buf │ │ │ │ └── sdkconfig.defaults │ │ │ ├── simple_video_server │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── README.md │ │ │ │ ├── main │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Kconfig.projbuild │ │ │ │ │ ├── idf_component.yml │ │ │ │ │ └── simple_video_server_example.c │ │ │ │ └── sdkconfig.defaults │ │ │ ├── uvc │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── README.md │ │ │ │ ├── main │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Kconfig.projbuild │ │ │ │ │ ├── idf_component.yml │ │ │ │ │ └── uvc_example.c │ │ │ │ ├── sdkconfig.defaults │ │ │ │ └── sdkconfig.defaults.esp32p4 │ │ │ └── video_custom_format │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── README.md │ │ │ │ ├── main │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig.projbuild │ │ │ │ ├── app_main.c │ │ │ │ ├── app_sc2336_custom_settings.h │ │ │ │ └── idf_component.yml │ │ │ │ └── sdkconfig.defaults │ │ ├── idf_component.yml │ │ ├── include │ │ │ ├── esp_video_device.h │ │ │ ├── esp_video_init.h │ │ │ ├── esp_video_ioctl.h │ │ │ ├── esp_video_isp_ioctl.h │ │ │ ├── linux │ │ │ │ ├── const.h │ │ │ │ ├── ioctl.h │ │ │ │ ├── types.h │ │ │ │ ├── v4l2-common.h │ │ │ │ ├── v4l2-controls.h │ │ │ │ └── videodev2.h │ │ │ └── sys │ │ │ │ └── mman.h │ │ ├── private_include │ │ │ ├── esp_video.h │ │ │ ├── esp_video_buffer.h │ │ │ ├── esp_video_device_internal.h │ │ │ ├── esp_video_internal.h │ │ │ ├── esp_video_ioctl_internal.h │ │ │ ├── esp_video_pipeline_isp.h │ │ │ ├── esp_video_sensor.h │ │ │ └── esp_video_vfs.h │ │ └── src │ │ │ ├── device │ │ │ ├── esp_video_csi_device.c │ │ │ ├── esp_video_dvp_device.c │ │ │ ├── esp_video_h264_device.c │ │ │ ├── esp_video_isp_device.c │ │ │ └── esp_video_jpeg_device.c │ │ │ ├── esp_video.c │ │ │ ├── esp_video_buffer.c │ │ │ ├── esp_video_init.c │ │ │ ├── esp_video_ioctl.c │ │ │ ├── esp_video_isp_pipeline.c │ │ │ ├── esp_video_mman.c │ │ │ ├── esp_video_sensor.c │ │ │ └── esp_video_vfs.c │ ├── espressif__esp_lvgl_port │ │ ├── .component_hash │ │ ├── CHANGELOG.md │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── docs │ │ │ ├── frame_buffer_settings.png │ │ │ └── performance.md │ │ ├── examples │ │ │ ├── i2c_oled │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── README.md │ │ │ │ ├── main │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Kconfig.projbuild │ │ │ │ │ ├── i2c_oled_example_main.c │ │ │ │ │ ├── idf_component.yml │ │ │ │ │ └── lvgl_demo_ui.c │ │ │ │ └── sdkconfig.defaults │ │ │ ├── rgb_lcd │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── README.md │ │ │ │ ├── main │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── idf_component.yml │ │ │ │ │ ├── images │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ └── esp_logo.png │ │ │ │ │ └── main.c │ │ │ │ ├── partitions.csv │ │ │ │ └── sdkconfig.defaults │ │ │ └── touchscreen │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── README.md │ │ │ │ ├── main │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── idf_component.yml │ │ │ │ ├── images │ │ │ │ │ ├── .gitignore │ │ │ │ │ └── esp_logo.png │ │ │ │ └── main.c │ │ │ │ └── sdkconfig.defaults │ │ ├── idf_component.yml │ │ ├── images │ │ │ ├── img_cursor.png │ │ │ ├── img_cursor_20px.png │ │ │ ├── lvgl8 │ │ │ │ └── img_cursor.c │ │ │ └── lvgl9 │ │ │ │ └── img_cursor.c │ │ ├── include │ │ │ ├── esp_lvgl_port.h │ │ │ ├── esp_lvgl_port_button.h │ │ │ ├── esp_lvgl_port_compatibility.h │ │ │ ├── esp_lvgl_port_disp.h │ │ │ ├── esp_lvgl_port_knob.h │ │ │ ├── esp_lvgl_port_lv_blend.h │ │ │ ├── esp_lvgl_port_touch.h │ │ │ └── esp_lvgl_port_usbhid.h │ │ ├── license.txt │ │ ├── priv_include │ │ │ └── esp_lvgl_port_priv.h │ │ ├── project_include.cmake │ │ ├── src │ │ │ ├── lvgl8 │ │ │ │ ├── esp_lvgl_port.c │ │ │ │ ├── esp_lvgl_port_button.c │ │ │ │ ├── esp_lvgl_port_disp.c │ │ │ │ ├── esp_lvgl_port_knob.c │ │ │ │ ├── esp_lvgl_port_touch.c │ │ │ │ └── esp_lvgl_port_usbhid.c │ │ │ └── lvgl9 │ │ │ │ ├── esp_lvgl_port.c │ │ │ │ ├── esp_lvgl_port_button.c │ │ │ │ ├── esp_lvgl_port_disp.c │ │ │ │ ├── esp_lvgl_port_knob.c │ │ │ │ ├── esp_lvgl_port_touch.c │ │ │ │ ├── esp_lvgl_port_usbhid.c │ │ │ │ └── simd │ │ │ │ ├── lv_color_blend_to_argb8888_esp32.S │ │ │ │ ├── lv_color_blend_to_argb8888_esp32s3.S │ │ │ │ ├── lv_color_blend_to_rgb565_esp32.S │ │ │ │ ├── lv_color_blend_to_rgb565_esp32s3.S │ │ │ │ ├── lv_color_blend_to_rgb888_esp32.S │ │ │ │ ├── lv_color_blend_to_rgb888_esp32s3.S │ │ │ │ ├── lv_macro_memcpy.S │ │ │ │ ├── lv_rgb565_blend_normal_to_rgb565_esp32.S │ │ │ │ └── lv_rgb565_blend_normal_to_rgb565_esp32s3.S │ │ └── test_apps │ │ │ ├── lvgl_port │ │ │ ├── CMakeLists.txt │ │ │ ├── main │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── idf_component.yml │ │ │ │ └── test.c │ │ │ ├── sdkconfig.ci.asm_render │ │ │ └── sdkconfig.defaults │ │ │ └── simd │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── main │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig.projbuild │ │ │ ├── lv_blend │ │ │ │ ├── include │ │ │ │ │ ├── lv_assert.h │ │ │ │ │ ├── lv_color.h │ │ │ │ │ ├── lv_color_op.h │ │ │ │ │ ├── lv_draw_sw_blend.h │ │ │ │ │ ├── lv_draw_sw_blend_to_argb8888.h │ │ │ │ │ ├── lv_draw_sw_blend_to_rgb565.h │ │ │ │ │ ├── lv_draw_sw_blend_to_rgb888.h │ │ │ │ │ ├── lv_log.h │ │ │ │ │ ├── lv_math.h │ │ │ │ │ ├── lv_string.h │ │ │ │ │ ├── lv_style.h │ │ │ │ │ └── lv_types.h │ │ │ │ └── src │ │ │ │ │ ├── lv_color.c │ │ │ │ │ ├── lv_draw_sw_blend_to_argb8888.c │ │ │ │ │ ├── lv_draw_sw_blend_to_rgb565.c │ │ │ │ │ ├── lv_draw_sw_blend_to_rgb888.c │ │ │ │ │ └── lv_string_builtin.c │ │ │ ├── lv_fill_common.h │ │ │ ├── lv_image_common.h │ │ │ ├── test_app_main.c │ │ │ ├── test_lv_fill_benchmark.c │ │ │ ├── test_lv_fill_functionality.c │ │ │ ├── test_lv_image_benchmark.c │ │ │ └── test_lv_image_functionality.c │ │ │ └── sdkconfig.defaults │ ├── imlib │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ ├── fmath.h │ │ │ ├── font.h │ │ │ ├── imlib.h │ │ │ └── utils.h │ │ ├── src │ │ │ ├── draw.c │ │ │ ├── fmath.c │ │ │ ├── font.c │ │ │ ├── imlib.c │ │ │ └── utils.c │ │ └── unicode_font16x16.bin │ ├── keypad_scanner_tca8418 │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ ├── keypad_scanner_tca8418.h │ │ │ └── keypad_scanner_tca8418_reg.h │ │ └── src │ │ │ └── keypad_scanner_tca8418.c │ ├── m5stack_tab5 │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── LICENSE │ │ ├── README.md │ │ ├── esp_lcd_st7123.c │ │ ├── idf_component.yml │ │ ├── include │ │ │ └── bsp │ │ │ │ ├── config.h │ │ │ │ ├── display.h │ │ │ │ ├── esp-bsp.h │ │ │ │ ├── ili9881_init_data.c │ │ │ │ ├── m5stack_tab5.h │ │ │ │ └── touch.h │ │ ├── m5stack_tab5.c │ │ └── priv_include │ │ │ ├── bsp_err_check.h │ │ │ └── esp_lcd_st7123.h │ ├── power_monitor_ina226 │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── ina226.hpp │ │ └── src │ │ │ └── ina226.cpp │ ├── sensor_bmi270 │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ ├── accel_gyro_bmi270.h │ │ │ ├── bmi2.h │ │ │ ├── bmi270.h │ │ │ ├── bmi270_context.h │ │ │ ├── bmi270_legacy.h │ │ │ ├── bmi270_maximum_fifo.h │ │ │ ├── bmi2_defs.h │ │ │ └── bmi2_ois.h │ │ └── src │ │ │ ├── accel_gyro_bmi270.c │ │ │ ├── bmi2.c │ │ │ ├── bmi270.c │ │ │ ├── bmi270_context.c │ │ │ ├── bmi270_legacy.c │ │ │ ├── bmi270_maximum_fifo.c │ │ │ └── bmi2_ois.c │ └── sensor_icm20602 │ │ ├── CMakeLists.txt │ │ ├── include │ │ └── accel_gyro_sensor_icm20602.h │ │ └── src │ │ └── accel_gyro_sensor_icm20602.c │ ├── dependencies.lock │ ├── main │ ├── CMakeLists.txt │ ├── app_main.cpp │ ├── hal │ │ ├── components │ │ │ ├── hal_audio.cpp │ │ │ ├── hal_camera.cpp │ │ │ ├── hal_imu.cpp │ │ │ ├── hal_power.cpp │ │ │ ├── hal_rs485.cpp │ │ │ ├── hal_usb.cpp │ │ │ └── hal_wifi.cpp │ │ ├── hal_esp32.cpp │ │ ├── hal_esp32.h │ │ └── utils │ │ │ ├── rx8130 │ │ │ ├── rx8130.cpp │ │ │ └── rx8130.h │ │ │ └── task_controller │ │ │ └── task_controller.h │ └── idf_component.yml │ ├── partitions.csv │ ├── sdkconfig │ ├── sdkconfig.defaults │ └── wifi_c6_fw │ ├── ESP32C6-WiFi-SDIO-Interface-V1.4.1-96bea3a_0x0.bin │ └── flash.sh └── repos.json /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/workflows/clang-format-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/.github/workflows/clang-format-check.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .cache 2 | .vscode 3 | build 4 | dependencies 5 | .DS_Store 6 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/README.md -------------------------------------------------------------------------------- /app/app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/app/app.cpp -------------------------------------------------------------------------------- /app/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/app/app.h -------------------------------------------------------------------------------- /app/apps/app_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/app/apps/app_generator.py -------------------------------------------------------------------------------- /app/apps/app_installer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/app/apps/app_installer.h -------------------------------------------------------------------------------- /app/apps/app_launcher/app_launcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/app/apps/app_launcher/app_launcher.cpp -------------------------------------------------------------------------------- /app/apps/app_launcher/app_launcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/app/apps/app_launcher/app_launcher.h -------------------------------------------------------------------------------- /app/apps/app_launcher/view/panel_camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/app/apps/app_launcher/view/panel_camera.cpp -------------------------------------------------------------------------------- /app/apps/app_launcher/view/panel_com_monitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/app/apps/app_launcher/view/panel_com_monitor.cpp -------------------------------------------------------------------------------- /app/apps/app_launcher/view/panel_dual_mic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/app/apps/app_launcher/view/panel_dual_mic.cpp -------------------------------------------------------------------------------- /app/apps/app_launcher/view/panel_gpio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/app/apps/app_launcher/view/panel_gpio.cpp -------------------------------------------------------------------------------- /app/apps/app_launcher/view/panel_headphone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/app/apps/app_launcher/view/panel_headphone.cpp -------------------------------------------------------------------------------- /app/apps/app_launcher/view/panel_i2c_scan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/app/apps/app_launcher/view/panel_i2c_scan.cpp -------------------------------------------------------------------------------- /app/apps/app_launcher/view/panel_imu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/app/apps/app_launcher/view/panel_imu.cpp -------------------------------------------------------------------------------- /app/apps/app_launcher/view/panel_lcd_backlight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/app/apps/app_launcher/view/panel_lcd_backlight.cpp -------------------------------------------------------------------------------- /app/apps/app_launcher/view/panel_music.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/app/apps/app_launcher/view/panel_music.cpp -------------------------------------------------------------------------------- /app/apps/app_launcher/view/panel_power.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/app/apps/app_launcher/view/panel_power.cpp -------------------------------------------------------------------------------- /app/apps/app_launcher/view/panel_power_monitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/app/apps/app_launcher/view/panel_power_monitor.cpp -------------------------------------------------------------------------------- /app/apps/app_launcher/view/panel_rtc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/app/apps/app_launcher/view/panel_rtc.cpp -------------------------------------------------------------------------------- /app/apps/app_launcher/view/panel_sd_card.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/app/apps/app_launcher/view/panel_sd_card.cpp -------------------------------------------------------------------------------- /app/apps/app_launcher/view/panel_spk_volume.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/app/apps/app_launcher/view/panel_spk_volume.cpp -------------------------------------------------------------------------------- /app/apps/app_launcher/view/panel_switches.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/app/apps/app_launcher/view/panel_switches.cpp -------------------------------------------------------------------------------- /app/apps/app_launcher/view/view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/app/apps/app_launcher/view/view.cpp -------------------------------------------------------------------------------- /app/apps/app_launcher/view/view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/app/apps/app_launcher/view/view.h -------------------------------------------------------------------------------- /app/apps/app_startup_anim/app_startup_anim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/app/apps/app_startup_anim/app_startup_anim.cpp -------------------------------------------------------------------------------- /app/apps/app_startup_anim/app_startup_anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/app/apps/app_startup_anim/app_startup_anim.h -------------------------------------------------------------------------------- /app/apps/app_template/app_template.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/app/apps/app_template/app_template.cpp -------------------------------------------------------------------------------- /app/apps/app_template/app_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/app/apps/app_template/app_template.h -------------------------------------------------------------------------------- /app/apps/utils/audio/audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/app/apps/utils/audio/audio.cpp -------------------------------------------------------------------------------- /app/apps/utils/audio/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/app/apps/utils/audio/audio.h -------------------------------------------------------------------------------- /app/apps/utils/math/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/app/apps/utils/math/math.h -------------------------------------------------------------------------------- /app/apps/utils/ui/toast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/app/apps/utils/ui/toast.cpp -------------------------------------------------------------------------------- /app/apps/utils/ui/toast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/app/apps/utils/ui/toast.h -------------------------------------------------------------------------------- /app/apps/utils/ui/window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/app/apps/utils/ui/window.cpp -------------------------------------------------------------------------------- /app/apps/utils/ui/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/app/apps/utils/ui/window.h -------------------------------------------------------------------------------- /app/assets/assets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/app/assets/assets.h -------------------------------------------------------------------------------- /app/assets/images/arrow_state_on.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/app/assets/images/arrow_state_on.c -------------------------------------------------------------------------------- /app/assets/images/chg_arrow_down.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/app/assets/images/chg_arrow_down.c -------------------------------------------------------------------------------- /app/assets/images/chg_arrow_up.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/app/assets/images/chg_arrow_up.c -------------------------------------------------------------------------------- /app/assets/images/internal_i2c_dev_chart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/app/assets/images/internal_i2c_dev_chart.c -------------------------------------------------------------------------------- /app/assets/images/launcher_bg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/app/assets/images/launcher_bg.c -------------------------------------------------------------------------------- /app/assets/images/logo_5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/app/assets/images/logo_5.c -------------------------------------------------------------------------------- /app/assets/images/logo_tab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/app/assets/images/logo_tab.c -------------------------------------------------------------------------------- /app/assets/images/mouse_cursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/app/assets/images/mouse_cursor.c -------------------------------------------------------------------------------- /app/assets/images/porta_i2c_dev_chart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/app/assets/images/porta_i2c_dev_chart.c -------------------------------------------------------------------------------- /app/assets/images/porta_i2c_ext5v_on.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/app/assets/images/porta_i2c_ext5v_on.c -------------------------------------------------------------------------------- /app/assets/images/sw_chg_off.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/app/assets/images/sw_chg_off.c -------------------------------------------------------------------------------- /app/assets/images/sw_chg_on.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/app/assets/images/sw_chg_on.c -------------------------------------------------------------------------------- /app/assets/images/sw_off.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/app/assets/images/sw_off.c -------------------------------------------------------------------------------- /app/assets/images/sw_on.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/app/assets/images/sw_on.c -------------------------------------------------------------------------------- /app/assets/images/sw_qc_off.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/app/assets/images/sw_qc_off.c -------------------------------------------------------------------------------- /app/assets/images/sw_qc_on.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/app/assets/images/sw_qc_on.c -------------------------------------------------------------------------------- /app/assets/images/sw_rf_h.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/app/assets/images/sw_rf_h.c -------------------------------------------------------------------------------- /app/assets/images/sw_rf_l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/app/assets/images/sw_rf_l.c -------------------------------------------------------------------------------- /app/hal/hal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/app/hal/hal.cpp -------------------------------------------------------------------------------- /app/hal/hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/app/hal/hal.h -------------------------------------------------------------------------------- /app/shared/shared.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/app/shared/shared.cpp -------------------------------------------------------------------------------- /app/shared/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/app/shared/shared.h -------------------------------------------------------------------------------- /fetch_repos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/fetch_repos.py -------------------------------------------------------------------------------- /lv_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/lv_conf.h -------------------------------------------------------------------------------- /platforms/desktop/.gitignore: -------------------------------------------------------------------------------- 1 | .cache 2 | build 3 | -------------------------------------------------------------------------------- /platforms/desktop/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/desktop/CMakeLists.txt -------------------------------------------------------------------------------- /platforms/desktop/hal/components/hal_audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/desktop/hal/components/hal_audio.cpp -------------------------------------------------------------------------------- /platforms/desktop/hal/components/hal_lvgl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/desktop/hal/components/hal_lvgl.cpp -------------------------------------------------------------------------------- /platforms/desktop/hal/hal_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/desktop/hal/hal_config.h -------------------------------------------------------------------------------- /platforms/desktop/hal/hal_desktop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/desktop/hal/hal_desktop.cpp -------------------------------------------------------------------------------- /platforms/desktop/hal/hal_desktop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/desktop/hal/hal_desktop.h -------------------------------------------------------------------------------- /platforms/desktop/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/desktop/main.cpp -------------------------------------------------------------------------------- /platforms/tab5/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/.gitignore -------------------------------------------------------------------------------- /platforms/tab5/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/CMakeLists.txt -------------------------------------------------------------------------------- /platforms/tab5/audio/canon_in_d.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/audio/canon_in_d.mp3 -------------------------------------------------------------------------------- /platforms/tab5/audio/shutdown_sfx.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/audio/shutdown_sfx.mp3 -------------------------------------------------------------------------------- /platforms/tab5/audio/startup_sfx.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/audio/startup_sfx.mp3 -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/CHANGELOG.md -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/CMakeLists.txt -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/Kconfig -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/LICENSE -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/README.md -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/idf_component.yml -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/include/esp_cam_sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/include/esp_cam_sensor.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/include/esp_cam_sensor_detect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/include/esp_cam_sensor_detect.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/include/esp_cam_sensor_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/include/esp_cam_sensor_types.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/linker.lf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/linker.lf -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/project_include.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/project_include.cmake -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/bf3925/Kconfig.bf3925: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/bf3925/Kconfig.bf3925 -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/bf3925/bf3925.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/bf3925/bf3925.c -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/bf3925/include/bf3925.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/bf3925/include/bf3925.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/bf3925/include/bf3925_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/bf3925/include/bf3925_types.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/bf3925/private_include/bf3925_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/bf3925/private_include/bf3925_regs.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/bf3925/private_include/bf3925_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/bf3925/private_include/bf3925_settings.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/gc0308/Kconfig.gc0308: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/gc0308/Kconfig.gc0308 -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/gc0308/gc0308.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/gc0308/gc0308.c -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/gc0308/include/gc0308.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/gc0308/include/gc0308.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/gc0308/include/gc0308_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/gc0308/include/gc0308_types.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/gc0308/private_include/gc0308_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/gc0308/private_include/gc0308_regs.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/gc0308/private_include/gc0308_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/gc0308/private_include/gc0308_settings.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/gc2145/Kconfig.gc2145: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/gc2145/Kconfig.gc2145 -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/gc2145/gc2145.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/gc2145/gc2145.c -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/gc2145/include/gc2145.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/gc2145/include/gc2145.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/gc2145/include/gc2145_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/gc2145/include/gc2145_types.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/gc2145/private_include/gc2145_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/gc2145/private_include/gc2145_regs.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/gc2145/private_include/gc2145_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/gc2145/private_include/gc2145_settings.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/ov2640/Kconfig.ov2640: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/ov2640/Kconfig.ov2640 -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/ov2640/include/ov2640.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/ov2640/include/ov2640.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/ov2640/include/ov2640_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/ov2640/include/ov2640_types.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/ov2640/ov2640.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/ov2640/ov2640.c -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/ov2640/private_include/ov2640_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/ov2640/private_include/ov2640_regs.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/ov2640/private_include/ov2640_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/ov2640/private_include/ov2640_settings.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/ov2710/Kconfig.ov2710: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/ov2710/Kconfig.ov2710 -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/ov2710/cfg/ov2710_default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/ov2710/cfg/ov2710_default.json -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/ov2710/include/ov2710.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/ov2710/include/ov2710.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/ov2710/include/ov2710_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/ov2710/include/ov2710_types.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/ov2710/ov2710.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/ov2710/ov2710.c -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/ov2710/private_include/ov2710_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/ov2710/private_include/ov2710_regs.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/ov2710/private_include/ov2710_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/ov2710/private_include/ov2710_settings.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/ov5645/Kconfig.ov5645: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/ov5645/Kconfig.ov5645 -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/ov5645/include/ov5645.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/ov5645/include/ov5645.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/ov5645/include/ov5645_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/ov5645/include/ov5645_types.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/ov5645/ov5645.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/ov5645/ov5645.c -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/ov5645/private_include/ov5645_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/ov5645/private_include/ov5645_regs.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/ov5645/private_include/ov5645_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/ov5645/private_include/ov5645_settings.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/ov5647/Kconfig.ov5647: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/ov5647/Kconfig.ov5647 -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/ov5647/cfg/ov5647_default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/ov5647/cfg/ov5647_default.json -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/ov5647/include/ov5647.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/ov5647/include/ov5647.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/ov5647/include/ov5647_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/ov5647/include/ov5647_types.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/ov5647/ov5647.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/ov5647/ov5647.c -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/ov5647/private_include/ov5647_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/ov5647/private_include/ov5647_regs.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/ov5647/private_include/ov5647_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/ov5647/private_include/ov5647_settings.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/sc030iot/Kconfig.sc030iot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/sc030iot/Kconfig.sc030iot -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/sc030iot/include/sc030iot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/sc030iot/include/sc030iot.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/sc030iot/include/sc030iot_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/sc030iot/include/sc030iot_types.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/sc030iot/private_include/sc030iot_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/sc030iot/private_include/sc030iot_regs.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/sc030iot/private_include/sc030iot_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/sc030iot/private_include/sc030iot_settings.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/sc030iot/sc030iot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/sc030iot/sc030iot.c -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/sc035hgs/Kconfig.sc035hgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/sc035hgs/Kconfig.sc035hgs -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/sc035hgs/include/sc035hgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/sc035hgs/include/sc035hgs.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/sc035hgs/include/sc035hgs_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/sc035hgs/include/sc035hgs_types.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/sc035hgs/private_include/sc035hgs_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/sc035hgs/private_include/sc035hgs_regs.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/sc035hgs/private_include/sc035hgs_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/sc035hgs/private_include/sc035hgs_settings.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/sc035hgs/sc035hgs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/sc035hgs/sc035hgs.c -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/sc101iot/Kconfig.sc101iot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/sc101iot/Kconfig.sc101iot -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/sc101iot/include/sc101iot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/sc101iot/include/sc101iot.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/sc101iot/include/sc101iot_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/sc101iot/include/sc101iot_types.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/sc101iot/private_include/sc101iot_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/sc101iot/private_include/sc101iot_regs.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/sc101iot/private_include/sc101iot_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/sc101iot/private_include/sc101iot_settings.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/sc101iot/sc101iot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/sc101iot/sc101iot.c -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/sc202cs/Kconfig.sc202cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/sc202cs/Kconfig.sc202cs -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/sc202cs/include/sc202cs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/sc202cs/include/sc202cs.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/sc202cs/include/sc202cs_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/sc202cs/include/sc202cs_types.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/sc202cs/private_include/sc202cs_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/sc202cs/private_include/sc202cs_regs.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/sc202cs/private_include/sc202cs_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/sc202cs/private_include/sc202cs_settings.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/sc202cs/sc202cs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/sc202cs/sc202cs.c -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/sc2336/Kconfig.sc2336: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/sc2336/Kconfig.sc2336 -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/sc2336/cfg/sc2336_default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/sc2336/cfg/sc2336_default.json -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/sc2336/include/sc2336.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/sc2336/include/sc2336.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/sc2336/include/sc2336_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/sc2336/include/sc2336_types.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/sc2336/private_include/sc2336_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/sc2336/private_include/sc2336_regs.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/sc2336/private_include/sc2336_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/sc2336/private_include/sc2336_settings.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/sensors/sc2336/sc2336.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/sensors/sc2336/sc2336.c -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/src/esp_cam_sensor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/src/esp_cam_sensor.c -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/test_apps/detect/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/test_apps/detect/CMakeLists.txt -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/test_apps/detect/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/test_apps/detect/README.md -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/test_apps/detect/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/test_apps/detect/main/CMakeLists.txt -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/test_apps/detect/main/Kconfig.projbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/test_apps/detect/main/Kconfig.projbuild -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/test_apps/detect/main/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/test_apps/detect/main/idf_component.yml -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/test_apps/detect/main/test_cam_sensor_detect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/test_apps/detect/main/test_cam_sensor_detect.c -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/test_apps/detect/sdkconfig.ci.all_cameras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/test_apps/detect/sdkconfig.ci.all_cameras -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/test_apps/detect/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/test_apps/detect/sdkconfig.defaults -------------------------------------------------------------------------------- /platforms/tab5/components/esp_cam_sensor/test_apps/detect/sdkconfig.defaults.esp32p4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_cam_sensor/test_apps/detect/sdkconfig.defaults.esp32p4 -------------------------------------------------------------------------------- /platforms/tab5/components/esp_ipa/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_ipa/CHANGELOG.md -------------------------------------------------------------------------------- /platforms/tab5/components/esp_ipa/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_ipa/CMakeLists.txt -------------------------------------------------------------------------------- /platforms/tab5/components/esp_ipa/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_ipa/Kconfig -------------------------------------------------------------------------------- /platforms/tab5/components/esp_ipa/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_ipa/LICENSE -------------------------------------------------------------------------------- /platforms/tab5/components/esp_ipa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_ipa/README.md -------------------------------------------------------------------------------- /platforms/tab5/components/esp_ipa/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_ipa/idf_component.yml -------------------------------------------------------------------------------- /platforms/tab5/components/esp_ipa/include/esp_ipa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_ipa/include/esp_ipa.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_ipa/include/esp_ipa_detect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_ipa/include/esp_ipa_detect.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_ipa/include/esp_ipa_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_ipa/include/esp_ipa_types.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_ipa/include/esp_ipa_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_ipa/include/esp_ipa_version.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_ipa/lib/esp32p4/libesp_ipa.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_ipa/lib/esp32p4/libesp_ipa.a -------------------------------------------------------------------------------- /platforms/tab5/components/esp_ipa/lib/esp32p4/version: -------------------------------------------------------------------------------- 1 | libesp_ipa.a: 4709a22 2 | -------------------------------------------------------------------------------- /platforms/tab5/components/esp_ipa/linker.lf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_ipa/linker.lf -------------------------------------------------------------------------------- /platforms/tab5/components/esp_ipa/src/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_ipa/src/version.c -------------------------------------------------------------------------------- /platforms/tab5/components/esp_ipa/test_apps/dummy/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_ipa/test_apps/dummy/CMakeLists.txt -------------------------------------------------------------------------------- /platforms/tab5/components/esp_ipa/test_apps/dummy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_ipa/test_apps/dummy/README.md -------------------------------------------------------------------------------- /platforms/tab5/components/esp_ipa/test_apps/dummy/main/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | set(srcs app_main.c) 2 | 3 | idf_component_register(SRCS ${srcs} PRIV_REQUIRES unity) 4 | -------------------------------------------------------------------------------- /platforms/tab5/components/esp_ipa/test_apps/dummy/main/app_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_ipa/test_apps/dummy/main/app_main.c -------------------------------------------------------------------------------- /platforms/tab5/components/esp_ipa/test_apps/dummy/main/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_ipa/test_apps/dummy/main/idf_component.yml -------------------------------------------------------------------------------- /platforms/tab5/components/esp_ipa/test_apps/dummy/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_ipa/test_apps/dummy/sdkconfig.defaults -------------------------------------------------------------------------------- /platforms/tab5/components/esp_sccb_intf/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_sccb_intf/CHANGELOG.md -------------------------------------------------------------------------------- /platforms/tab5/components/esp_sccb_intf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_sccb_intf/CMakeLists.txt -------------------------------------------------------------------------------- /platforms/tab5/components/esp_sccb_intf/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_sccb_intf/Kconfig -------------------------------------------------------------------------------- /platforms/tab5/components/esp_sccb_intf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_sccb_intf/LICENSE -------------------------------------------------------------------------------- /platforms/tab5/components/esp_sccb_intf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_sccb_intf/README.md -------------------------------------------------------------------------------- /platforms/tab5/components/esp_sccb_intf/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_sccb_intf/idf_component.yml -------------------------------------------------------------------------------- /platforms/tab5/components/esp_sccb_intf/include/esp_sccb_intf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_sccb_intf/include/esp_sccb_intf.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_sccb_intf/include/esp_sccb_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_sccb_intf/include/esp_sccb_types.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_sccb_intf/interface/esp_sccb_io_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_sccb_intf/interface/esp_sccb_io_interface.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_sccb_intf/sccb_i2c/include/esp_sccb_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_sccb_intf/sccb_i2c/include/esp_sccb_i2c.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_sccb_intf/sccb_i2c/src/sccb_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_sccb_intf/sccb_i2c/src/sccb_i2c.c -------------------------------------------------------------------------------- /platforms/tab5/components/esp_sccb_intf/sccb_i2c/src/sccb_i2c_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_sccb_intf/sccb_i2c/src/sccb_i2c_internal.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_sccb_intf/src/sccb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_sccb_intf/src/sccb.c -------------------------------------------------------------------------------- /platforms/tab5/components/esp_sccb_intf/test_apps/dummy/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_sccb_intf/test_apps/dummy/CMakeLists.txt -------------------------------------------------------------------------------- /platforms/tab5/components/esp_sccb_intf/test_apps/dummy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_sccb_intf/test_apps/dummy/README.md -------------------------------------------------------------------------------- /platforms/tab5/components/esp_sccb_intf/test_apps/dummy/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_sccb_intf/test_apps/dummy/main/CMakeLists.txt -------------------------------------------------------------------------------- /platforms/tab5/components/esp_sccb_intf/test_apps/dummy/main/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_sccb_intf/test_apps/dummy/main/idf_component.yml -------------------------------------------------------------------------------- /platforms/tab5/components/esp_sccb_intf/test_apps/dummy/main/test_app_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_sccb_intf/test_apps/dummy/main/test_app_main.c -------------------------------------------------------------------------------- /platforms/tab5/components/esp_sccb_intf/test_apps/dummy/main/test_interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_sccb_intf/test_apps/dummy/main/test_interface.c -------------------------------------------------------------------------------- /platforms/tab5/components/esp_sccb_intf/test_apps/dummy/sdkconfig.defaults: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/CHANGELOG.md -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/CMakeLists.txt -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/Kconfig -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/LICENSE -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/README.md -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/examples/capture_stream/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/examples/capture_stream/CMakeLists.txt -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/examples/capture_stream/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/examples/capture_stream/README.md -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/examples/capture_stream/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/examples/capture_stream/main/CMakeLists.txt -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/examples/capture_stream/main/Kconfig.projbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/examples/capture_stream/main/Kconfig.projbuild -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/examples/capture_stream/main/capture_stream_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/examples/capture_stream/main/capture_stream_main.c -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/examples/capture_stream/main/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/examples/capture_stream/main/idf_component.yml -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/examples/capture_stream/sdkconfig.ci.disable_isp_video_device: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/examples/capture_stream/sdkconfig.ci.disable_isp_video_device -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/examples/capture_stream/sdkconfig.ci.driver_buf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/examples/capture_stream/sdkconfig.ci.driver_buf -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/examples/capture_stream/sdkconfig.ci.user_buf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/examples/capture_stream/sdkconfig.ci.user_buf -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/examples/capture_stream/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/examples/capture_stream/sdkconfig.defaults -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/examples/simple_video_server/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/examples/simple_video_server/CMakeLists.txt -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/examples/simple_video_server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/examples/simple_video_server/README.md -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/examples/simple_video_server/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/examples/simple_video_server/main/CMakeLists.txt -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/examples/simple_video_server/main/Kconfig.projbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/examples/simple_video_server/main/Kconfig.projbuild -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/examples/simple_video_server/main/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/examples/simple_video_server/main/idf_component.yml -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/examples/simple_video_server/main/simple_video_server_example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/examples/simple_video_server/main/simple_video_server_example.c -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/examples/simple_video_server/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/examples/simple_video_server/sdkconfig.defaults -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/examples/uvc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/examples/uvc/CMakeLists.txt -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/examples/uvc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/examples/uvc/README.md -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/examples/uvc/main/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | idf_component_register(SRCS "uvc_example.c") 2 | -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/examples/uvc/main/Kconfig.projbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/examples/uvc/main/Kconfig.projbuild -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/examples/uvc/main/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/examples/uvc/main/idf_component.yml -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/examples/uvc/main/uvc_example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/examples/uvc/main/uvc_example.c -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/examples/uvc/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/examples/uvc/sdkconfig.defaults -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/examples/uvc/sdkconfig.defaults.esp32p4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/examples/uvc/sdkconfig.defaults.esp32p4 -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/examples/video_custom_format/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/examples/video_custom_format/CMakeLists.txt -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/examples/video_custom_format/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/examples/video_custom_format/README.md -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/examples/video_custom_format/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/examples/video_custom_format/main/CMakeLists.txt -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/examples/video_custom_format/main/Kconfig.projbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/examples/video_custom_format/main/Kconfig.projbuild -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/examples/video_custom_format/main/app_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/examples/video_custom_format/main/app_main.c -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/examples/video_custom_format/main/app_sc2336_custom_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/examples/video_custom_format/main/app_sc2336_custom_settings.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/examples/video_custom_format/main/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/examples/video_custom_format/main/idf_component.yml -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/examples/video_custom_format/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/examples/video_custom_format/sdkconfig.defaults -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/idf_component.yml -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/include/esp_video_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/include/esp_video_device.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/include/esp_video_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/include/esp_video_init.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/include/esp_video_ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/include/esp_video_ioctl.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/include/esp_video_isp_ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/include/esp_video_isp_ioctl.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/include/linux/const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/include/linux/const.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/include/linux/ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/include/linux/ioctl.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/include/linux/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/include/linux/types.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/include/linux/v4l2-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/include/linux/v4l2-common.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/include/linux/v4l2-controls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/include/linux/v4l2-controls.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/include/linux/videodev2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/include/linux/videodev2.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/include/sys/mman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/include/sys/mman.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/private_include/esp_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/private_include/esp_video.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/private_include/esp_video_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/private_include/esp_video_buffer.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/private_include/esp_video_device_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/private_include/esp_video_device_internal.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/private_include/esp_video_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/private_include/esp_video_internal.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/private_include/esp_video_ioctl_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/private_include/esp_video_ioctl_internal.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/private_include/esp_video_pipeline_isp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/private_include/esp_video_pipeline_isp.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/private_include/esp_video_sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/private_include/esp_video_sensor.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/private_include/esp_video_vfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/private_include/esp_video_vfs.h -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/src/device/esp_video_csi_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/src/device/esp_video_csi_device.c -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/src/device/esp_video_dvp_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/src/device/esp_video_dvp_device.c -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/src/device/esp_video_h264_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/src/device/esp_video_h264_device.c -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/src/device/esp_video_isp_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/src/device/esp_video_isp_device.c -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/src/device/esp_video_jpeg_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/src/device/esp_video_jpeg_device.c -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/src/esp_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/src/esp_video.c -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/src/esp_video_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/src/esp_video_buffer.c -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/src/esp_video_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/src/esp_video_init.c -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/src/esp_video_ioctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/src/esp_video_ioctl.c -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/src/esp_video_isp_pipeline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/src/esp_video_isp_pipeline.c -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/src/esp_video_mman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/src/esp_video_mman.c -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/src/esp_video_sensor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/src/esp_video_sensor.c -------------------------------------------------------------------------------- /platforms/tab5/components/esp_video/src/esp_video_vfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/esp_video/src/esp_video_vfs.c -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/.component_hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/.component_hash -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/CHANGELOG.md -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/CMakeLists.txt -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/README.md -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/docs/frame_buffer_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/docs/frame_buffer_settings.png -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/docs/performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/docs/performance.md -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/examples/i2c_oled/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/examples/i2c_oled/CMakeLists.txt -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/examples/i2c_oled/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/examples/i2c_oled/README.md -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/examples/i2c_oled/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/examples/i2c_oled/main/CMakeLists.txt -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/examples/i2c_oled/main/Kconfig.projbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/examples/i2c_oled/main/Kconfig.projbuild -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/examples/i2c_oled/main/i2c_oled_example_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/examples/i2c_oled/main/i2c_oled_example_main.c -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/examples/i2c_oled/main/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/examples/i2c_oled/main/idf_component.yml -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/examples/i2c_oled/main/lvgl_demo_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/examples/i2c_oled/main/lvgl_demo_ui.c -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/examples/i2c_oled/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/examples/i2c_oled/sdkconfig.defaults -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/examples/rgb_lcd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/examples/rgb_lcd/CMakeLists.txt -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/examples/rgb_lcd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/examples/rgb_lcd/README.md -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/examples/rgb_lcd/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/examples/rgb_lcd/main/CMakeLists.txt -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/examples/rgb_lcd/main/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/examples/rgb_lcd/main/idf_component.yml -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/examples/rgb_lcd/main/images/.gitignore: -------------------------------------------------------------------------------- 1 | *.c 2 | -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/examples/rgb_lcd/main/images/esp_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/examples/rgb_lcd/main/images/esp_logo.png -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/examples/rgb_lcd/main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/examples/rgb_lcd/main/main.c -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/examples/rgb_lcd/partitions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/examples/rgb_lcd/partitions.csv -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/examples/rgb_lcd/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/examples/rgb_lcd/sdkconfig.defaults -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/examples/touchscreen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/examples/touchscreen/CMakeLists.txt -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/examples/touchscreen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/examples/touchscreen/README.md -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/examples/touchscreen/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/examples/touchscreen/main/CMakeLists.txt -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/examples/touchscreen/main/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/examples/touchscreen/main/idf_component.yml -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/examples/touchscreen/main/images/.gitignore: -------------------------------------------------------------------------------- 1 | *.c 2 | -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/examples/touchscreen/main/images/esp_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/examples/touchscreen/main/images/esp_logo.png -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/examples/touchscreen/main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/examples/touchscreen/main/main.c -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/examples/touchscreen/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/examples/touchscreen/sdkconfig.defaults -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/idf_component.yml -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/images/img_cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/images/img_cursor.png -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/images/img_cursor_20px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/images/img_cursor_20px.png -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/images/lvgl8/img_cursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/images/lvgl8/img_cursor.c -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/images/lvgl9/img_cursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/images/lvgl9/img_cursor.c -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/include/esp_lvgl_port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/include/esp_lvgl_port.h -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/include/esp_lvgl_port_button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/include/esp_lvgl_port_button.h -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/include/esp_lvgl_port_compatibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/include/esp_lvgl_port_compatibility.h -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/include/esp_lvgl_port_disp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/include/esp_lvgl_port_disp.h -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/include/esp_lvgl_port_knob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/include/esp_lvgl_port_knob.h -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/include/esp_lvgl_port_lv_blend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/include/esp_lvgl_port_lv_blend.h -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/include/esp_lvgl_port_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/include/esp_lvgl_port_touch.h -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/include/esp_lvgl_port_usbhid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/include/esp_lvgl_port_usbhid.h -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/license.txt -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/priv_include/esp_lvgl_port_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/priv_include/esp_lvgl_port_priv.h -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/project_include.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/project_include.cmake -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/src/lvgl8/esp_lvgl_port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/src/lvgl8/esp_lvgl_port.c -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/src/lvgl8/esp_lvgl_port_button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/src/lvgl8/esp_lvgl_port_button.c -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/src/lvgl8/esp_lvgl_port_disp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/src/lvgl8/esp_lvgl_port_disp.c -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/src/lvgl8/esp_lvgl_port_knob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/src/lvgl8/esp_lvgl_port_knob.c -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/src/lvgl8/esp_lvgl_port_touch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/src/lvgl8/esp_lvgl_port_touch.c -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/src/lvgl8/esp_lvgl_port_usbhid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/src/lvgl8/esp_lvgl_port_usbhid.c -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/src/lvgl9/esp_lvgl_port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/src/lvgl9/esp_lvgl_port.c -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/src/lvgl9/esp_lvgl_port_button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/src/lvgl9/esp_lvgl_port_button.c -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/src/lvgl9/esp_lvgl_port_disp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/src/lvgl9/esp_lvgl_port_disp.c -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/src/lvgl9/esp_lvgl_port_knob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/src/lvgl9/esp_lvgl_port_knob.c -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/src/lvgl9/esp_lvgl_port_touch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/src/lvgl9/esp_lvgl_port_touch.c -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/src/lvgl9/esp_lvgl_port_usbhid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/src/lvgl9/esp_lvgl_port_usbhid.c -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/src/lvgl9/simd/lv_color_blend_to_argb8888_esp32.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/src/lvgl9/simd/lv_color_blend_to_argb8888_esp32.S -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/src/lvgl9/simd/lv_color_blend_to_argb8888_esp32s3.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/src/lvgl9/simd/lv_color_blend_to_argb8888_esp32s3.S -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/src/lvgl9/simd/lv_color_blend_to_rgb565_esp32.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/src/lvgl9/simd/lv_color_blend_to_rgb565_esp32.S -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/src/lvgl9/simd/lv_color_blend_to_rgb565_esp32s3.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/src/lvgl9/simd/lv_color_blend_to_rgb565_esp32s3.S -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/src/lvgl9/simd/lv_color_blend_to_rgb888_esp32.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/src/lvgl9/simd/lv_color_blend_to_rgb888_esp32.S -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/src/lvgl9/simd/lv_color_blend_to_rgb888_esp32s3.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/src/lvgl9/simd/lv_color_blend_to_rgb888_esp32s3.S -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/src/lvgl9/simd/lv_macro_memcpy.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/src/lvgl9/simd/lv_macro_memcpy.S -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/src/lvgl9/simd/lv_rgb565_blend_normal_to_rgb565_esp32.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/src/lvgl9/simd/lv_rgb565_blend_normal_to_rgb565_esp32.S -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/src/lvgl9/simd/lv_rgb565_blend_normal_to_rgb565_esp32s3.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/src/lvgl9/simd/lv_rgb565_blend_normal_to_rgb565_esp32s3.S -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/test_apps/lvgl_port/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/test_apps/lvgl_port/CMakeLists.txt -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/test_apps/lvgl_port/main/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | idf_component_register(SRCS "test.c") 2 | -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/test_apps/lvgl_port/main/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/test_apps/lvgl_port/main/idf_component.yml -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/test_apps/lvgl_port/main/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/test_apps/lvgl_port/main/test.c -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/test_apps/lvgl_port/sdkconfig.ci.asm_render: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/test_apps/lvgl_port/sdkconfig.ci.asm_render -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/test_apps/lvgl_port/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/test_apps/lvgl_port/sdkconfig.defaults -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/test_apps/simd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/test_apps/simd/CMakeLists.txt -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/test_apps/simd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/test_apps/simd/README.md -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/test_apps/simd/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/test_apps/simd/main/CMakeLists.txt -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/test_apps/simd/main/Kconfig.projbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/test_apps/simd/main/Kconfig.projbuild -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/test_apps/simd/main/lv_blend/include/lv_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/test_apps/simd/main/lv_blend/include/lv_assert.h -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/test_apps/simd/main/lv_blend/include/lv_color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/test_apps/simd/main/lv_blend/include/lv_color.h -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/test_apps/simd/main/lv_blend/include/lv_color_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/test_apps/simd/main/lv_blend/include/lv_color_op.h -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/test_apps/simd/main/lv_blend/include/lv_draw_sw_blend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/test_apps/simd/main/lv_blend/include/lv_draw_sw_blend.h -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/test_apps/simd/main/lv_blend/include/lv_draw_sw_blend_to_argb8888.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/test_apps/simd/main/lv_blend/include/lv_draw_sw_blend_to_argb8888.h -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/test_apps/simd/main/lv_blend/include/lv_draw_sw_blend_to_rgb565.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/test_apps/simd/main/lv_blend/include/lv_draw_sw_blend_to_rgb565.h -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/test_apps/simd/main/lv_blend/include/lv_draw_sw_blend_to_rgb888.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/test_apps/simd/main/lv_blend/include/lv_draw_sw_blend_to_rgb888.h -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/test_apps/simd/main/lv_blend/include/lv_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/test_apps/simd/main/lv_blend/include/lv_log.h -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/test_apps/simd/main/lv_blend/include/lv_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/test_apps/simd/main/lv_blend/include/lv_math.h -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/test_apps/simd/main/lv_blend/include/lv_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/test_apps/simd/main/lv_blend/include/lv_string.h -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/test_apps/simd/main/lv_blend/include/lv_style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/test_apps/simd/main/lv_blend/include/lv_style.h -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/test_apps/simd/main/lv_blend/include/lv_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/test_apps/simd/main/lv_blend/include/lv_types.h -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/test_apps/simd/main/lv_blend/src/lv_color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/test_apps/simd/main/lv_blend/src/lv_color.c -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/test_apps/simd/main/lv_blend/src/lv_draw_sw_blend_to_argb8888.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/test_apps/simd/main/lv_blend/src/lv_draw_sw_blend_to_argb8888.c -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/test_apps/simd/main/lv_blend/src/lv_draw_sw_blend_to_rgb565.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/test_apps/simd/main/lv_blend/src/lv_draw_sw_blend_to_rgb565.c -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/test_apps/simd/main/lv_blend/src/lv_draw_sw_blend_to_rgb888.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/test_apps/simd/main/lv_blend/src/lv_draw_sw_blend_to_rgb888.c -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/test_apps/simd/main/lv_blend/src/lv_string_builtin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/test_apps/simd/main/lv_blend/src/lv_string_builtin.c -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/test_apps/simd/main/lv_fill_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/test_apps/simd/main/lv_fill_common.h -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/test_apps/simd/main/lv_image_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/test_apps/simd/main/lv_image_common.h -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/test_apps/simd/main/test_app_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/test_apps/simd/main/test_app_main.c -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/test_apps/simd/main/test_lv_fill_benchmark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/test_apps/simd/main/test_lv_fill_benchmark.c -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/test_apps/simd/main/test_lv_fill_functionality.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/test_apps/simd/main/test_lv_fill_functionality.c -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/test_apps/simd/main/test_lv_image_benchmark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/test_apps/simd/main/test_lv_image_benchmark.c -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/test_apps/simd/main/test_lv_image_functionality.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/test_apps/simd/main/test_lv_image_functionality.c -------------------------------------------------------------------------------- /platforms/tab5/components/espressif__esp_lvgl_port/test_apps/simd/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/espressif__esp_lvgl_port/test_apps/simd/sdkconfig.defaults -------------------------------------------------------------------------------- /platforms/tab5/components/imlib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/imlib/CMakeLists.txt -------------------------------------------------------------------------------- /platforms/tab5/components/imlib/include/fmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/imlib/include/fmath.h -------------------------------------------------------------------------------- /platforms/tab5/components/imlib/include/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/imlib/include/font.h -------------------------------------------------------------------------------- /platforms/tab5/components/imlib/include/imlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/imlib/include/imlib.h -------------------------------------------------------------------------------- /platforms/tab5/components/imlib/include/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/imlib/include/utils.h -------------------------------------------------------------------------------- /platforms/tab5/components/imlib/src/draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/imlib/src/draw.c -------------------------------------------------------------------------------- /platforms/tab5/components/imlib/src/fmath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/imlib/src/fmath.c -------------------------------------------------------------------------------- /platforms/tab5/components/imlib/src/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/imlib/src/font.c -------------------------------------------------------------------------------- /platforms/tab5/components/imlib/src/imlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/imlib/src/imlib.c -------------------------------------------------------------------------------- /platforms/tab5/components/imlib/src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/imlib/src/utils.c -------------------------------------------------------------------------------- /platforms/tab5/components/imlib/unicode_font16x16.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/imlib/unicode_font16x16.bin -------------------------------------------------------------------------------- /platforms/tab5/components/keypad_scanner_tca8418/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/keypad_scanner_tca8418/CMakeLists.txt -------------------------------------------------------------------------------- /platforms/tab5/components/keypad_scanner_tca8418/include/keypad_scanner_tca8418.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/keypad_scanner_tca8418/include/keypad_scanner_tca8418.h -------------------------------------------------------------------------------- /platforms/tab5/components/keypad_scanner_tca8418/include/keypad_scanner_tca8418_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/keypad_scanner_tca8418/include/keypad_scanner_tca8418_reg.h -------------------------------------------------------------------------------- /platforms/tab5/components/keypad_scanner_tca8418/src/keypad_scanner_tca8418.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/keypad_scanner_tca8418/src/keypad_scanner_tca8418.c -------------------------------------------------------------------------------- /platforms/tab5/components/m5stack_tab5/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/m5stack_tab5/CMakeLists.txt -------------------------------------------------------------------------------- /platforms/tab5/components/m5stack_tab5/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/m5stack_tab5/Kconfig -------------------------------------------------------------------------------- /platforms/tab5/components/m5stack_tab5/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/m5stack_tab5/LICENSE -------------------------------------------------------------------------------- /platforms/tab5/components/m5stack_tab5/README.md: -------------------------------------------------------------------------------- 1 | # BSP: M5STACK_TAB5 2 | -------------------------------------------------------------------------------- /platforms/tab5/components/m5stack_tab5/esp_lcd_st7123.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/m5stack_tab5/esp_lcd_st7123.c -------------------------------------------------------------------------------- /platforms/tab5/components/m5stack_tab5/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/m5stack_tab5/idf_component.yml -------------------------------------------------------------------------------- /platforms/tab5/components/m5stack_tab5/include/bsp/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/m5stack_tab5/include/bsp/config.h -------------------------------------------------------------------------------- /platforms/tab5/components/m5stack_tab5/include/bsp/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/m5stack_tab5/include/bsp/display.h -------------------------------------------------------------------------------- /platforms/tab5/components/m5stack_tab5/include/bsp/esp-bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/m5stack_tab5/include/bsp/esp-bsp.h -------------------------------------------------------------------------------- /platforms/tab5/components/m5stack_tab5/include/bsp/ili9881_init_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/m5stack_tab5/include/bsp/ili9881_init_data.c -------------------------------------------------------------------------------- /platforms/tab5/components/m5stack_tab5/include/bsp/m5stack_tab5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/m5stack_tab5/include/bsp/m5stack_tab5.h -------------------------------------------------------------------------------- /platforms/tab5/components/m5stack_tab5/include/bsp/touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/m5stack_tab5/include/bsp/touch.h -------------------------------------------------------------------------------- /platforms/tab5/components/m5stack_tab5/m5stack_tab5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/m5stack_tab5/m5stack_tab5.c -------------------------------------------------------------------------------- /platforms/tab5/components/m5stack_tab5/priv_include/bsp_err_check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/m5stack_tab5/priv_include/bsp_err_check.h -------------------------------------------------------------------------------- /platforms/tab5/components/m5stack_tab5/priv_include/esp_lcd_st7123.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/m5stack_tab5/priv_include/esp_lcd_st7123.h -------------------------------------------------------------------------------- /platforms/tab5/components/power_monitor_ina226/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/power_monitor_ina226/CMakeLists.txt -------------------------------------------------------------------------------- /platforms/tab5/components/power_monitor_ina226/include/ina226.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/power_monitor_ina226/include/ina226.hpp -------------------------------------------------------------------------------- /platforms/tab5/components/power_monitor_ina226/src/ina226.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/power_monitor_ina226/src/ina226.cpp -------------------------------------------------------------------------------- /platforms/tab5/components/sensor_bmi270/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/sensor_bmi270/CMakeLists.txt -------------------------------------------------------------------------------- /platforms/tab5/components/sensor_bmi270/include/accel_gyro_bmi270.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/sensor_bmi270/include/accel_gyro_bmi270.h -------------------------------------------------------------------------------- /platforms/tab5/components/sensor_bmi270/include/bmi2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/sensor_bmi270/include/bmi2.h -------------------------------------------------------------------------------- /platforms/tab5/components/sensor_bmi270/include/bmi270.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/sensor_bmi270/include/bmi270.h -------------------------------------------------------------------------------- /platforms/tab5/components/sensor_bmi270/include/bmi270_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/sensor_bmi270/include/bmi270_context.h -------------------------------------------------------------------------------- /platforms/tab5/components/sensor_bmi270/include/bmi270_legacy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/sensor_bmi270/include/bmi270_legacy.h -------------------------------------------------------------------------------- /platforms/tab5/components/sensor_bmi270/include/bmi270_maximum_fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/sensor_bmi270/include/bmi270_maximum_fifo.h -------------------------------------------------------------------------------- /platforms/tab5/components/sensor_bmi270/include/bmi2_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/sensor_bmi270/include/bmi2_defs.h -------------------------------------------------------------------------------- /platforms/tab5/components/sensor_bmi270/include/bmi2_ois.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/sensor_bmi270/include/bmi2_ois.h -------------------------------------------------------------------------------- /platforms/tab5/components/sensor_bmi270/src/accel_gyro_bmi270.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/sensor_bmi270/src/accel_gyro_bmi270.c -------------------------------------------------------------------------------- /platforms/tab5/components/sensor_bmi270/src/bmi2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/sensor_bmi270/src/bmi2.c -------------------------------------------------------------------------------- /platforms/tab5/components/sensor_bmi270/src/bmi270.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/sensor_bmi270/src/bmi270.c -------------------------------------------------------------------------------- /platforms/tab5/components/sensor_bmi270/src/bmi270_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/sensor_bmi270/src/bmi270_context.c -------------------------------------------------------------------------------- /platforms/tab5/components/sensor_bmi270/src/bmi270_legacy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/sensor_bmi270/src/bmi270_legacy.c -------------------------------------------------------------------------------- /platforms/tab5/components/sensor_bmi270/src/bmi270_maximum_fifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/sensor_bmi270/src/bmi270_maximum_fifo.c -------------------------------------------------------------------------------- /platforms/tab5/components/sensor_bmi270/src/bmi2_ois.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/sensor_bmi270/src/bmi2_ois.c -------------------------------------------------------------------------------- /platforms/tab5/components/sensor_icm20602/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/sensor_icm20602/CMakeLists.txt -------------------------------------------------------------------------------- /platforms/tab5/components/sensor_icm20602/include/accel_gyro_sensor_icm20602.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/sensor_icm20602/include/accel_gyro_sensor_icm20602.h -------------------------------------------------------------------------------- /platforms/tab5/components/sensor_icm20602/src/accel_gyro_sensor_icm20602.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/components/sensor_icm20602/src/accel_gyro_sensor_icm20602.c -------------------------------------------------------------------------------- /platforms/tab5/dependencies.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/dependencies.lock -------------------------------------------------------------------------------- /platforms/tab5/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/main/CMakeLists.txt -------------------------------------------------------------------------------- /platforms/tab5/main/app_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/main/app_main.cpp -------------------------------------------------------------------------------- /platforms/tab5/main/hal/components/hal_audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/main/hal/components/hal_audio.cpp -------------------------------------------------------------------------------- /platforms/tab5/main/hal/components/hal_camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/main/hal/components/hal_camera.cpp -------------------------------------------------------------------------------- /platforms/tab5/main/hal/components/hal_imu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/main/hal/components/hal_imu.cpp -------------------------------------------------------------------------------- /platforms/tab5/main/hal/components/hal_power.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/main/hal/components/hal_power.cpp -------------------------------------------------------------------------------- /platforms/tab5/main/hal/components/hal_rs485.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/main/hal/components/hal_rs485.cpp -------------------------------------------------------------------------------- /platforms/tab5/main/hal/components/hal_usb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/main/hal/components/hal_usb.cpp -------------------------------------------------------------------------------- /platforms/tab5/main/hal/components/hal_wifi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/main/hal/components/hal_wifi.cpp -------------------------------------------------------------------------------- /platforms/tab5/main/hal/hal_esp32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/main/hal/hal_esp32.cpp -------------------------------------------------------------------------------- /platforms/tab5/main/hal/hal_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/main/hal/hal_esp32.h -------------------------------------------------------------------------------- /platforms/tab5/main/hal/utils/rx8130/rx8130.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/main/hal/utils/rx8130/rx8130.cpp -------------------------------------------------------------------------------- /platforms/tab5/main/hal/utils/rx8130/rx8130.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/main/hal/utils/rx8130/rx8130.h -------------------------------------------------------------------------------- /platforms/tab5/main/hal/utils/task_controller/task_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/main/hal/utils/task_controller/task_controller.h -------------------------------------------------------------------------------- /platforms/tab5/main/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/main/idf_component.yml -------------------------------------------------------------------------------- /platforms/tab5/partitions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/partitions.csv -------------------------------------------------------------------------------- /platforms/tab5/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/sdkconfig -------------------------------------------------------------------------------- /platforms/tab5/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/sdkconfig.defaults -------------------------------------------------------------------------------- /platforms/tab5/wifi_c6_fw/ESP32C6-WiFi-SDIO-Interface-V1.4.1-96bea3a_0x0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/platforms/tab5/wifi_c6_fw/ESP32C6-WiFi-SDIO-Interface-V1.4.1-96bea3a_0x0.bin -------------------------------------------------------------------------------- /platforms/tab5/wifi_c6_fw/flash.sh: -------------------------------------------------------------------------------- 1 | esptool.py write_flash 0x0 ESP32C6-WiFi-SDIO-Interface-V1.4.1-96bea3a_0x0.bin -------------------------------------------------------------------------------- /repos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Tab5-UserDemo/HEAD/repos.json --------------------------------------------------------------------------------