├── Docs └── images │ ├── dashboard.png │ ├── open-esp-idf.png │ ├── pc-ip.png │ ├── robot.png │ ├── server-ip.png │ └── wifi-cfg.png ├── Firmware ├── esp32WifiWebpageServer │ ├── CMakeLists.txt │ ├── build │ │ ├── .bin_timestamp │ │ ├── .ninja_deps │ │ ├── .ninja_log │ │ ├── CMakeCache.txt │ │ ├── CMakeFiles │ │ │ ├── 3.24.0 │ │ │ │ ├── CMakeASMCompiler.cmake │ │ │ │ ├── CMakeCCompiler.cmake │ │ │ │ ├── CMakeCXXCompiler.cmake │ │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ │ ├── CMakeSystem.cmake │ │ │ │ ├── CompilerIdC │ │ │ │ │ ├── CMakeCCompilerId.c │ │ │ │ │ └── a.out │ │ │ │ └── CompilerIdCXX │ │ │ │ │ ├── CMakeCXXCompilerId.cpp │ │ │ │ │ └── a.out │ │ │ ├── CMakeOutput.log │ │ │ ├── CheckTypeSize │ │ │ │ ├── TIME_T_SIZE.bin │ │ │ │ └── TIME_T_SIZE.c │ │ │ ├── QT3WebPageServer.elf.dir │ │ │ │ └── project_elf_src_esp32.c.obj │ │ │ ├── TargetDirectories.txt │ │ │ ├── bootloader-complete │ │ │ ├── bootloader.dir │ │ │ │ ├── Labels.json │ │ │ │ └── Labels.txt │ │ │ ├── clean_additional.cmake │ │ │ ├── cmake.check_cache │ │ │ ├── git-data │ │ │ │ ├── HEAD │ │ │ │ ├── grabRef.cmake │ │ │ │ └── head-ref │ │ │ └── rules.ninja │ │ ├── QT3WebPageServer.bin │ │ ├── QT3WebPageServer.elf │ │ ├── QT3WebPageServer.map │ │ ├── app-flash_args │ │ ├── bootloader-flash_args │ │ ├── bootloader-prefix │ │ │ ├── src │ │ │ │ └── bootloader-stamp │ │ │ │ │ ├── bootloader-configure │ │ │ │ │ ├── bootloader-done │ │ │ │ │ ├── bootloader-download │ │ │ │ │ ├── bootloader-install │ │ │ │ │ ├── bootloader-mkdir │ │ │ │ │ ├── bootloader-patch │ │ │ │ │ ├── bootloader-source_dirinfo.txt │ │ │ │ │ └── bootloader-update │ │ │ └── tmp │ │ │ │ ├── bootloader-cfgcmd.txt │ │ │ │ └── bootloader-mkdirs.cmake │ │ ├── bootloader │ │ │ ├── .bin_timestamp │ │ │ ├── .ninja_deps │ │ │ ├── .ninja_log │ │ │ ├── CMakeCache.txt │ │ │ ├── CMakeFiles │ │ │ │ ├── 3.24.0 │ │ │ │ │ ├── CMakeASMCompiler.cmake │ │ │ │ │ ├── CMakeCCompiler.cmake │ │ │ │ │ ├── CMakeCXXCompiler.cmake │ │ │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ │ │ ├── CMakeSystem.cmake │ │ │ │ │ ├── CompilerIdC │ │ │ │ │ │ ├── CMakeCCompilerId.c │ │ │ │ │ │ └── a.out │ │ │ │ │ └── CompilerIdCXX │ │ │ │ │ │ ├── CMakeCXXCompilerId.cpp │ │ │ │ │ │ └── a.out │ │ │ │ ├── CMakeOutput.log │ │ │ │ ├── CheckTypeSize │ │ │ │ │ ├── TIME_T_SIZE.bin │ │ │ │ │ └── TIME_T_SIZE.c │ │ │ │ ├── TargetDirectories.txt │ │ │ │ ├── bootloader.elf.dir │ │ │ │ │ └── project_elf_src_esp32.c.obj │ │ │ │ ├── clean_additional.cmake │ │ │ │ ├── cmake.check_cache │ │ │ │ ├── git-data │ │ │ │ │ ├── HEAD │ │ │ │ │ ├── grabRef.cmake │ │ │ │ │ └── head-ref │ │ │ │ └── rules.ninja │ │ │ ├── bootloader.bin │ │ │ ├── bootloader.elf │ │ │ ├── bootloader.map │ │ │ ├── build.ninja │ │ │ ├── cmake_install.cmake │ │ │ ├── compile_commands.json │ │ │ ├── config.env │ │ │ ├── config │ │ │ │ ├── kconfig_menus.json │ │ │ │ ├── sdkconfig.cmake │ │ │ │ ├── sdkconfig.h │ │ │ │ └── sdkconfig.json │ │ │ ├── esp-idf │ │ │ │ ├── bootloader │ │ │ │ │ └── cmake_install.cmake │ │ │ │ ├── bootloader_support │ │ │ │ │ ├── CMakeFiles │ │ │ │ │ │ └── __idf_bootloader_support.dir │ │ │ │ │ │ │ ├── bootloader_flash │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ ├── bootloader_flash.c.obj │ │ │ │ │ │ │ │ ├── bootloader_flash_config_esp32.c.obj │ │ │ │ │ │ │ │ └── flash_qio_mode.c.obj │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── bootloader_clock_init.c.obj │ │ │ │ │ │ │ ├── bootloader_clock_loader.c.obj │ │ │ │ │ │ │ ├── bootloader_common.c.obj │ │ │ │ │ │ │ ├── bootloader_common_loader.c.obj │ │ │ │ │ │ │ ├── bootloader_console.c.obj │ │ │ │ │ │ │ ├── bootloader_console_loader.c.obj │ │ │ │ │ │ │ ├── bootloader_efuse.c.obj │ │ │ │ │ │ │ ├── bootloader_init.c.obj │ │ │ │ │ │ │ ├── bootloader_mem.c.obj │ │ │ │ │ │ │ ├── bootloader_panic.c.obj │ │ │ │ │ │ │ ├── bootloader_random.c.obj │ │ │ │ │ │ │ ├── bootloader_random_esp32.c.obj │ │ │ │ │ │ │ ├── bootloader_utility.c.obj │ │ │ │ │ │ │ ├── esp32 │ │ │ │ │ │ │ ├── bootloader_esp32.c.obj │ │ │ │ │ │ │ ├── bootloader_sha.c.obj │ │ │ │ │ │ │ └── bootloader_soc.c.obj │ │ │ │ │ │ │ ├── esp_image_format.c.obj │ │ │ │ │ │ │ ├── flash_encrypt.c.obj │ │ │ │ │ │ │ ├── flash_partitions.c.obj │ │ │ │ │ │ │ └── secure_boot.c.obj │ │ │ │ │ ├── cmake_install.cmake │ │ │ │ │ └── libbootloader_support.a │ │ │ │ ├── cmake_install.cmake │ │ │ │ ├── efuse │ │ │ │ │ ├── CMakeFiles │ │ │ │ │ │ └── __idf_efuse.dir │ │ │ │ │ │ │ ├── esp32 │ │ │ │ │ │ │ ├── esp_efuse_fields.c.obj │ │ │ │ │ │ │ ├── esp_efuse_table.c.obj │ │ │ │ │ │ │ └── esp_efuse_utility.c.obj │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── efuse_controller │ │ │ │ │ │ │ └── keys │ │ │ │ │ │ │ │ └── without_key_purposes │ │ │ │ │ │ │ │ └── three_key_blocks │ │ │ │ │ │ │ │ └── esp_efuse_api_key.c.obj │ │ │ │ │ │ │ ├── esp_efuse_api.c.obj │ │ │ │ │ │ │ ├── esp_efuse_fields.c.obj │ │ │ │ │ │ │ └── esp_efuse_utility.c.obj │ │ │ │ │ ├── cmake_install.cmake │ │ │ │ │ └── libefuse.a │ │ │ │ ├── esp_app_format │ │ │ │ │ ├── CMakeFiles │ │ │ │ │ │ └── __idf_esp_app_format.dir │ │ │ │ │ │ │ └── esp_app_desc.c.obj │ │ │ │ │ ├── cmake_install.cmake │ │ │ │ │ └── libesp_app_format.a │ │ │ │ ├── esp_common │ │ │ │ │ ├── CMakeFiles │ │ │ │ │ │ └── __idf_esp_common.dir │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── esp_err_to_name.c.obj │ │ │ │ │ ├── cmake_install.cmake │ │ │ │ │ └── libesp_common.a │ │ │ │ ├── esp_hw_support │ │ │ │ │ ├── CMakeFiles │ │ │ │ │ │ └── __idf_esp_hw_support.dir │ │ │ │ │ │ │ ├── cpu.c.obj │ │ │ │ │ │ │ ├── esp_memory_utils.c.obj │ │ │ │ │ │ │ └── port │ │ │ │ │ │ │ └── esp32 │ │ │ │ │ │ │ ├── chip_info.c.obj │ │ │ │ │ │ │ ├── cpu_region_protect.c.obj │ │ │ │ │ │ │ ├── rtc_clk.c.obj │ │ │ │ │ │ │ ├── rtc_clk_init.c.obj │ │ │ │ │ │ │ ├── rtc_init.c.obj │ │ │ │ │ │ │ ├── rtc_sleep.c.obj │ │ │ │ │ │ │ └── rtc_time.c.obj │ │ │ │ │ ├── cmake_install.cmake │ │ │ │ │ ├── libesp_hw_support.a │ │ │ │ │ └── port │ │ │ │ │ │ └── esp32 │ │ │ │ │ │ └── cmake_install.cmake │ │ │ │ ├── esp_rom │ │ │ │ │ ├── CMakeFiles │ │ │ │ │ │ └── __idf_esp_rom.dir │ │ │ │ │ │ │ └── patches │ │ │ │ │ │ │ ├── esp_rom_crc.c.obj │ │ │ │ │ │ │ ├── esp_rom_efuse.c.obj │ │ │ │ │ │ │ ├── esp_rom_longjmp.S.obj │ │ │ │ │ │ │ ├── esp_rom_spiflash.c.obj │ │ │ │ │ │ │ ├── esp_rom_sys.c.obj │ │ │ │ │ │ │ └── esp_rom_uart.c.obj │ │ │ │ │ ├── cmake_install.cmake │ │ │ │ │ └── libesp_rom.a │ │ │ │ ├── esp_system │ │ │ │ │ ├── CMakeFiles │ │ │ │ │ │ └── __idf_esp_system.dir │ │ │ │ │ │ │ └── esp_err.c.obj │ │ │ │ │ ├── cmake_install.cmake │ │ │ │ │ └── libesp_system.a │ │ │ │ ├── esptool_py │ │ │ │ │ └── cmake_install.cmake │ │ │ │ ├── freertos │ │ │ │ │ └── cmake_install.cmake │ │ │ │ ├── hal │ │ │ │ │ ├── CMakeFiles │ │ │ │ │ │ └── __idf_hal.dir │ │ │ │ │ │ │ ├── efuse_hal.c.obj │ │ │ │ │ │ │ ├── esp32 │ │ │ │ │ │ │ └── efuse_hal.c.obj │ │ │ │ │ │ │ ├── mmu_hal.c.obj │ │ │ │ │ │ │ ├── mpu_hal.c.obj │ │ │ │ │ │ │ └── wdt_hal_iram.c.obj │ │ │ │ │ ├── cmake_install.cmake │ │ │ │ │ └── libhal.a │ │ │ │ ├── log │ │ │ │ │ ├── CMakeFiles │ │ │ │ │ │ └── __idf_log.dir │ │ │ │ │ │ │ ├── log.c.obj │ │ │ │ │ │ │ ├── log_buffers.c.obj │ │ │ │ │ │ │ └── log_noos.c.obj │ │ │ │ │ ├── cmake_install.cmake │ │ │ │ │ └── liblog.a │ │ │ │ ├── main │ │ │ │ │ ├── CMakeFiles │ │ │ │ │ │ └── __idf_main.dir │ │ │ │ │ │ │ └── bootloader_start.c.obj │ │ │ │ │ ├── cmake_install.cmake │ │ │ │ │ └── libmain.a │ │ │ │ ├── micro-ecc │ │ │ │ │ ├── CMakeFiles │ │ │ │ │ │ └── __idf_micro-ecc.dir │ │ │ │ │ │ │ └── uECC_verify_antifault.c.obj │ │ │ │ │ ├── cmake_install.cmake │ │ │ │ │ └── libmicro-ecc.a │ │ │ │ ├── newlib │ │ │ │ │ └── cmake_install.cmake │ │ │ │ ├── partition_table │ │ │ │ │ └── cmake_install.cmake │ │ │ │ ├── soc │ │ │ │ │ ├── CMakeFiles │ │ │ │ │ │ └── __idf_soc.dir │ │ │ │ │ │ │ ├── dport_access_common.c.obj │ │ │ │ │ │ │ ├── esp32 │ │ │ │ │ │ │ ├── adc_periph.c.obj │ │ │ │ │ │ │ ├── dac_periph.c.obj │ │ │ │ │ │ │ ├── dport_access.c.obj │ │ │ │ │ │ │ ├── gpio_periph.c.obj │ │ │ │ │ │ │ ├── i2c_periph.c.obj │ │ │ │ │ │ │ ├── i2s_periph.c.obj │ │ │ │ │ │ │ ├── interrupts.c.obj │ │ │ │ │ │ │ ├── lcd_periph.c.obj │ │ │ │ │ │ │ ├── ledc_periph.c.obj │ │ │ │ │ │ │ ├── mcpwm_periph.c.obj │ │ │ │ │ │ │ ├── pcnt_periph.c.obj │ │ │ │ │ │ │ ├── rmt_periph.c.obj │ │ │ │ │ │ │ ├── rtc_io_periph.c.obj │ │ │ │ │ │ │ ├── sdio_slave_periph.c.obj │ │ │ │ │ │ │ ├── sdm_periph.c.obj │ │ │ │ │ │ │ ├── sdmmc_periph.c.obj │ │ │ │ │ │ │ ├── spi_periph.c.obj │ │ │ │ │ │ │ ├── timer_periph.c.obj │ │ │ │ │ │ │ ├── touch_sensor_periph.c.obj │ │ │ │ │ │ │ ├── twai_periph.c.obj │ │ │ │ │ │ │ └── uart_periph.c.obj │ │ │ │ │ │ │ └── lldesc.c.obj │ │ │ │ │ ├── cmake_install.cmake │ │ │ │ │ └── libsoc.a │ │ │ │ ├── spi_flash │ │ │ │ │ ├── CMakeFiles │ │ │ │ │ │ └── __idf_spi_flash.dir │ │ │ │ │ │ │ └── spi_flash_wrap.c.obj │ │ │ │ │ ├── cmake_install.cmake │ │ │ │ │ └── libspi_flash.a │ │ │ │ └── xtensa │ │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_xtensa.dir │ │ │ │ │ │ ├── eri.c.obj │ │ │ │ │ │ └── xt_trax.c.obj │ │ │ │ │ ├── cmake_install.cmake │ │ │ │ │ └── libxtensa.a │ │ │ ├── kconfigs.in │ │ │ ├── kconfigs_projbuild.in │ │ │ ├── project_description.json │ │ │ └── project_elf_src_esp32.c │ │ ├── build.ninja │ │ ├── cmake_install.cmake │ │ ├── compile_commands.json │ │ ├── config.env │ │ ├── config │ │ │ ├── kconfig_menus.json │ │ │ ├── sdkconfig.cmake │ │ │ ├── sdkconfig.h │ │ │ └── sdkconfig.json │ │ ├── esp-idf │ │ │ ├── app_trace │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_app_trace.dir │ │ │ │ │ │ ├── app_trace.c.obj │ │ │ │ │ │ ├── app_trace_util.c.obj │ │ │ │ │ │ ├── host_file_io.c.obj │ │ │ │ │ │ └── port │ │ │ │ │ │ └── port_uart.c.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── libapp_trace.a │ │ │ ├── app_update │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_app_update.dir │ │ │ │ │ │ ├── esp_ota_app_desc.c.obj │ │ │ │ │ │ └── esp_ota_ops.c.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── libapp_update.a │ │ │ ├── bootloader │ │ │ │ ├── bootloader-flash_args.in │ │ │ │ └── cmake_install.cmake │ │ │ ├── bootloader_support │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_bootloader_support.dir │ │ │ │ │ │ ├── bootloader_flash │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── bootloader_flash.c.obj │ │ │ │ │ │ │ ├── bootloader_flash_config_esp32.c.obj │ │ │ │ │ │ │ └── flash_qio_mode.c.obj │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── bootloader_clock_init.c.obj │ │ │ │ │ │ ├── bootloader_common.c.obj │ │ │ │ │ │ ├── bootloader_common_loader.c.obj │ │ │ │ │ │ ├── bootloader_efuse.c.obj │ │ │ │ │ │ ├── bootloader_mem.c.obj │ │ │ │ │ │ ├── bootloader_random.c.obj │ │ │ │ │ │ ├── bootloader_random_esp32.c.obj │ │ │ │ │ │ ├── bootloader_utility.c.obj │ │ │ │ │ │ ├── esp_image_format.c.obj │ │ │ │ │ │ ├── flash_encrypt.c.obj │ │ │ │ │ │ ├── flash_partitions.c.obj │ │ │ │ │ │ ├── idf │ │ │ │ │ │ └── bootloader_sha.c.obj │ │ │ │ │ │ └── secure_boot.c.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── libbootloader_support.a │ │ │ ├── bt │ │ │ │ └── cmake_install.cmake │ │ │ ├── cmake_install.cmake │ │ │ ├── cmock │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_cmock.dir │ │ │ │ │ │ └── CMock │ │ │ │ │ │ └── src │ │ │ │ │ │ └── cmock.c.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── libcmock.a │ │ │ ├── console │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_console.dir │ │ │ │ │ │ ├── argtable3 │ │ │ │ │ │ ├── arg_cmd.c.obj │ │ │ │ │ │ ├── arg_date.c.obj │ │ │ │ │ │ ├── arg_dbl.c.obj │ │ │ │ │ │ ├── arg_dstr.c.obj │ │ │ │ │ │ ├── arg_end.c.obj │ │ │ │ │ │ ├── arg_file.c.obj │ │ │ │ │ │ ├── arg_hashtable.c.obj │ │ │ │ │ │ ├── arg_int.c.obj │ │ │ │ │ │ ├── arg_lit.c.obj │ │ │ │ │ │ ├── arg_rem.c.obj │ │ │ │ │ │ ├── arg_rex.c.obj │ │ │ │ │ │ ├── arg_str.c.obj │ │ │ │ │ │ ├── arg_utils.c.obj │ │ │ │ │ │ └── argtable3.c.obj │ │ │ │ │ │ ├── commands.c.obj │ │ │ │ │ │ ├── esp_console_repl.c.obj │ │ │ │ │ │ ├── linenoise │ │ │ │ │ │ └── linenoise.c.obj │ │ │ │ │ │ └── split_argv.c.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── libconsole.a │ │ │ ├── cxx │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_cxx.dir │ │ │ │ │ │ ├── cxx_exception_stubs.cpp.obj │ │ │ │ │ │ └── cxx_guards.cpp.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── libcxx.a │ │ │ ├── driver │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_driver.dir │ │ │ │ │ │ ├── dac │ │ │ │ │ │ ├── dac_common.c.obj │ │ │ │ │ │ ├── dac_continuous.c.obj │ │ │ │ │ │ ├── dac_cosine.c.obj │ │ │ │ │ │ ├── dac_oneshot.c.obj │ │ │ │ │ │ └── esp32 │ │ │ │ │ │ │ └── dac_dma.c.obj │ │ │ │ │ │ ├── deprecated │ │ │ │ │ │ ├── adc_dma_legacy.c.obj │ │ │ │ │ │ ├── adc_i2s_deprecated.c.obj │ │ │ │ │ │ ├── adc_legacy.c.obj │ │ │ │ │ │ ├── dac_common_legacy.c.obj │ │ │ │ │ │ ├── esp32 │ │ │ │ │ │ │ └── dac_legacy.c.obj │ │ │ │ │ │ ├── i2s_legacy.c.obj │ │ │ │ │ │ ├── mcpwm_legacy.c.obj │ │ │ │ │ │ ├── pcnt_legacy.c.obj │ │ │ │ │ │ ├── rmt_legacy.c.obj │ │ │ │ │ │ ├── sigma_delta_legacy.c.obj │ │ │ │ │ │ └── timer_legacy.c.obj │ │ │ │ │ │ ├── gpio │ │ │ │ │ │ ├── gpio.c.obj │ │ │ │ │ │ ├── gpio_glitch_filter_ops.c.obj │ │ │ │ │ │ └── rtc_io.c.obj │ │ │ │ │ │ ├── gptimer │ │ │ │ │ │ ├── gptimer.c.obj │ │ │ │ │ │ └── gptimer_priv.c.obj │ │ │ │ │ │ ├── i2c │ │ │ │ │ │ └── i2c.c.obj │ │ │ │ │ │ ├── i2s │ │ │ │ │ │ ├── i2s_common.c.obj │ │ │ │ │ │ ├── i2s_pdm.c.obj │ │ │ │ │ │ └── i2s_std.c.obj │ │ │ │ │ │ ├── ledc │ │ │ │ │ │ └── ledc.c.obj │ │ │ │ │ │ ├── mcpwm │ │ │ │ │ │ ├── mcpwm_cap.c.obj │ │ │ │ │ │ ├── mcpwm_cmpr.c.obj │ │ │ │ │ │ ├── mcpwm_com.c.obj │ │ │ │ │ │ ├── mcpwm_fault.c.obj │ │ │ │ │ │ ├── mcpwm_gen.c.obj │ │ │ │ │ │ ├── mcpwm_oper.c.obj │ │ │ │ │ │ ├── mcpwm_sync.c.obj │ │ │ │ │ │ └── mcpwm_timer.c.obj │ │ │ │ │ │ ├── pcnt │ │ │ │ │ │ └── pulse_cnt.c.obj │ │ │ │ │ │ ├── rmt │ │ │ │ │ │ ├── rmt_common.c.obj │ │ │ │ │ │ ├── rmt_encoder.c.obj │ │ │ │ │ │ ├── rmt_rx.c.obj │ │ │ │ │ │ └── rmt_tx.c.obj │ │ │ │ │ │ ├── sdio_slave │ │ │ │ │ │ └── sdio_slave.c.obj │ │ │ │ │ │ ├── sdmmc │ │ │ │ │ │ ├── sdmmc_host.c.obj │ │ │ │ │ │ └── sdmmc_transaction.c.obj │ │ │ │ │ │ ├── sigma_delta │ │ │ │ │ │ └── sdm.c.obj │ │ │ │ │ │ ├── spi │ │ │ │ │ │ ├── gpspi │ │ │ │ │ │ │ ├── spi_common.c.obj │ │ │ │ │ │ │ ├── spi_master.c.obj │ │ │ │ │ │ │ └── spi_slave.c.obj │ │ │ │ │ │ ├── sdspi │ │ │ │ │ │ │ ├── sdspi_crc.c.obj │ │ │ │ │ │ │ ├── sdspi_host.c.obj │ │ │ │ │ │ │ └── sdspi_transaction.c.obj │ │ │ │ │ │ └── spi_bus_lock.c.obj │ │ │ │ │ │ ├── touch_sensor │ │ │ │ │ │ ├── esp32 │ │ │ │ │ │ │ └── touch_sensor.c.obj │ │ │ │ │ │ └── touch_sensor_common.c.obj │ │ │ │ │ │ ├── twai │ │ │ │ │ │ └── twai.c.obj │ │ │ │ │ │ └── uart │ │ │ │ │ │ └── uart.c.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── libdriver.a │ │ │ ├── efuse │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_efuse.dir │ │ │ │ │ │ ├── esp32 │ │ │ │ │ │ ├── esp_efuse_fields.c.obj │ │ │ │ │ │ ├── esp_efuse_table.c.obj │ │ │ │ │ │ └── esp_efuse_utility.c.obj │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── efuse_controller │ │ │ │ │ │ └── keys │ │ │ │ │ │ │ └── without_key_purposes │ │ │ │ │ │ │ └── three_key_blocks │ │ │ │ │ │ │ └── esp_efuse_api_key.c.obj │ │ │ │ │ │ ├── esp_efuse_api.c.obj │ │ │ │ │ │ ├── esp_efuse_fields.c.obj │ │ │ │ │ │ └── esp_efuse_utility.c.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── libefuse.a │ │ │ ├── esp-tls │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_esp-tls.dir │ │ │ │ │ │ ├── esp-tls-crypto │ │ │ │ │ │ └── esp_tls_crypto.c.obj │ │ │ │ │ │ ├── esp_tls.c.obj │ │ │ │ │ │ ├── esp_tls_error_capture.c.obj │ │ │ │ │ │ └── esp_tls_mbedtls.c.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── libesp-tls.a │ │ │ ├── esp_adc │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_esp_adc.dir │ │ │ │ │ │ ├── adc_cali.c.obj │ │ │ │ │ │ ├── adc_cali_curve_fitting.c.obj │ │ │ │ │ │ ├── adc_common.c.obj │ │ │ │ │ │ ├── adc_continuous.c.obj │ │ │ │ │ │ ├── adc_oneshot.c.obj │ │ │ │ │ │ ├── deprecated │ │ │ │ │ │ ├── esp32 │ │ │ │ │ │ │ └── esp_adc_cal_legacy.c.obj │ │ │ │ │ │ └── esp_adc_cal_common_legacy.c.obj │ │ │ │ │ │ └── esp32 │ │ │ │ │ │ └── adc_cali_line_fitting.c.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── libesp_adc.a │ │ │ ├── esp_app_format │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_esp_app_format.dir │ │ │ │ │ │ └── esp_app_desc.c.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── libesp_app_format.a │ │ │ ├── esp_coex │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_esp_coex.dir │ │ │ │ │ │ └── esp32 │ │ │ │ │ │ └── esp_coex_adapter.c.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── libesp_coex.a │ │ │ ├── esp_common │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_esp_common.dir │ │ │ │ │ │ └── src │ │ │ │ │ │ └── esp_err_to_name.c.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── libesp_common.a │ │ │ ├── esp_eth │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_esp_eth.dir │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── esp_eth.c.obj │ │ │ │ │ │ ├── esp_eth_mac_esp.c.obj │ │ │ │ │ │ ├── esp_eth_netif_glue.c.obj │ │ │ │ │ │ ├── esp_eth_phy_802_3.c.obj │ │ │ │ │ │ ├── esp_eth_phy_dp83848.c.obj │ │ │ │ │ │ ├── esp_eth_phy_ip101.c.obj │ │ │ │ │ │ ├── esp_eth_phy_ksz80xx.c.obj │ │ │ │ │ │ ├── esp_eth_phy_lan87xx.c.obj │ │ │ │ │ │ └── esp_eth_phy_rtl8201.c.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── libesp_eth.a │ │ │ ├── esp_event │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_esp_event.dir │ │ │ │ │ │ ├── default_event_loop.c.obj │ │ │ │ │ │ ├── esp_event.c.obj │ │ │ │ │ │ └── esp_event_private.c.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── libesp_event.a │ │ │ ├── esp_gdbstub │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_esp_gdbstub.dir │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── gdbstub.c.obj │ │ │ │ │ │ ├── gdbstub_transport.c.obj │ │ │ │ │ │ ├── packet.c.obj │ │ │ │ │ │ └── port │ │ │ │ │ │ └── xtensa │ │ │ │ │ │ ├── gdbstub-entry.S.obj │ │ │ │ │ │ ├── gdbstub_xtensa.c.obj │ │ │ │ │ │ └── xt_debugexception.S.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── libesp_gdbstub.a │ │ │ ├── esp_hid │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_esp_hid.dir │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── esp_hid_common.c.obj │ │ │ │ │ │ ├── esp_hidd.c.obj │ │ │ │ │ │ └── esp_hidh.c.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── libesp_hid.a │ │ │ ├── esp_http_client │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_esp_http_client.dir │ │ │ │ │ │ ├── esp_http_client.c.obj │ │ │ │ │ │ └── lib │ │ │ │ │ │ ├── http_auth.c.obj │ │ │ │ │ │ ├── http_header.c.obj │ │ │ │ │ │ └── http_utils.c.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── libesp_http_client.a │ │ │ ├── esp_http_server │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_esp_http_server.dir │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── httpd_main.c.obj │ │ │ │ │ │ ├── httpd_parse.c.obj │ │ │ │ │ │ ├── httpd_sess.c.obj │ │ │ │ │ │ ├── httpd_txrx.c.obj │ │ │ │ │ │ ├── httpd_uri.c.obj │ │ │ │ │ │ ├── httpd_ws.c.obj │ │ │ │ │ │ └── util │ │ │ │ │ │ └── ctrl_sock.c.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── libesp_http_server.a │ │ │ ├── esp_https_ota │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_esp_https_ota.dir │ │ │ │ │ │ └── src │ │ │ │ │ │ └── esp_https_ota.c.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── libesp_https_ota.a │ │ │ ├── esp_https_server │ │ │ │ └── cmake_install.cmake │ │ │ ├── esp_hw_support │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_esp_hw_support.dir │ │ │ │ │ │ ├── adc_share_hw_ctrl.c.obj │ │ │ │ │ │ ├── clk_ctrl_os.c.obj │ │ │ │ │ │ ├── cpu.c.obj │ │ │ │ │ │ ├── esp_clk.c.obj │ │ │ │ │ │ ├── esp_gpio_reserve.c.obj │ │ │ │ │ │ ├── esp_memory_utils.c.obj │ │ │ │ │ │ ├── hw_random.c.obj │ │ │ │ │ │ ├── intr_alloc.c.obj │ │ │ │ │ │ ├── mac_addr.c.obj │ │ │ │ │ │ ├── periph_ctrl.c.obj │ │ │ │ │ │ ├── port │ │ │ │ │ │ ├── esp32 │ │ │ │ │ │ │ ├── cache_sram_mmu.c.obj │ │ │ │ │ │ │ ├── chip_info.c.obj │ │ │ │ │ │ │ ├── cpu_region_protect.c.obj │ │ │ │ │ │ │ ├── esp_clk_tree.c.obj │ │ │ │ │ │ │ ├── io_mux.c.obj │ │ │ │ │ │ │ ├── rtc_clk.c.obj │ │ │ │ │ │ │ ├── rtc_clk_init.c.obj │ │ │ │ │ │ │ ├── rtc_init.c.obj │ │ │ │ │ │ │ ├── rtc_sleep.c.obj │ │ │ │ │ │ │ ├── rtc_time.c.obj │ │ │ │ │ │ │ └── sar_periph_ctrl.c.obj │ │ │ │ │ │ └── esp_clk_tree_common.c.obj │ │ │ │ │ │ ├── regi2c_ctrl.c.obj │ │ │ │ │ │ ├── rtc_module.c.obj │ │ │ │ │ │ ├── rtc_wdt.c.obj │ │ │ │ │ │ ├── sleep_gpio.c.obj │ │ │ │ │ │ ├── sleep_modem.c.obj │ │ │ │ │ │ ├── sleep_modes.c.obj │ │ │ │ │ │ └── sleep_wake_stub.c.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ ├── libesp_hw_support.a │ │ │ │ └── port │ │ │ │ │ └── esp32 │ │ │ │ │ └── cmake_install.cmake │ │ │ ├── esp_lcd │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_esp_lcd.dir │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── esp_lcd_common.c.obj │ │ │ │ │ │ ├── esp_lcd_panel_io.c.obj │ │ │ │ │ │ ├── esp_lcd_panel_io_i2c.c.obj │ │ │ │ │ │ ├── esp_lcd_panel_io_i2s.c.obj │ │ │ │ │ │ ├── esp_lcd_panel_io_spi.c.obj │ │ │ │ │ │ ├── esp_lcd_panel_nt35510.c.obj │ │ │ │ │ │ ├── esp_lcd_panel_ops.c.obj │ │ │ │ │ │ ├── esp_lcd_panel_ssd1306.c.obj │ │ │ │ │ │ └── esp_lcd_panel_st7789.c.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── libesp_lcd.a │ │ │ ├── esp_local_ctrl │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_esp_local_ctrl.dir │ │ │ │ │ │ ├── proto-c │ │ │ │ │ │ └── esp_local_ctrl.pb-c.c.obj │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── esp_local_ctrl.c.obj │ │ │ │ │ │ ├── esp_local_ctrl_handler.c.obj │ │ │ │ │ │ └── esp_local_ctrl_transport_httpd.c.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── libesp_local_ctrl.a │ │ │ ├── esp_mm │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_esp_mm.dir │ │ │ │ │ │ ├── cache_esp32.c.obj │ │ │ │ │ │ ├── esp_cache.c.obj │ │ │ │ │ │ ├── esp_mmu_map.c.obj │ │ │ │ │ │ └── port │ │ │ │ │ │ └── esp32 │ │ │ │ │ │ └── ext_mem_layout.c.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── libesp_mm.a │ │ │ ├── esp_netif │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_esp_netif.dir │ │ │ │ │ │ ├── esp_netif_defaults.c.obj │ │ │ │ │ │ ├── esp_netif_handlers.c.obj │ │ │ │ │ │ ├── esp_netif_objects.c.obj │ │ │ │ │ │ └── lwip │ │ │ │ │ │ ├── esp_netif_lwip.c.obj │ │ │ │ │ │ ├── esp_netif_lwip_defaults.c.obj │ │ │ │ │ │ ├── esp_netif_sntp.c.obj │ │ │ │ │ │ └── netif │ │ │ │ │ │ ├── esp_pbuf_ref.c.obj │ │ │ │ │ │ ├── ethernetif.c.obj │ │ │ │ │ │ └── wlanif.c.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── libesp_netif.a │ │ │ ├── esp_netif_stack │ │ │ │ └── cmake_install.cmake │ │ │ ├── esp_partition │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_esp_partition.dir │ │ │ │ │ │ ├── partition.c.obj │ │ │ │ │ │ └── partition_target.c.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── libesp_partition.a │ │ │ ├── esp_phy │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_esp_phy.dir │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── btbb_init.c.obj │ │ │ │ │ │ ├── lib_printf.c.obj │ │ │ │ │ │ ├── phy_init.c.obj │ │ │ │ │ │ └── phy_override.c.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── libesp_phy.a │ │ │ ├── esp_pm │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_esp_pm.dir │ │ │ │ │ │ ├── pm_impl.c.obj │ │ │ │ │ │ ├── pm_locks.c.obj │ │ │ │ │ │ └── pm_trace.c.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── libesp_pm.a │ │ │ ├── esp_psram │ │ │ │ └── cmake_install.cmake │ │ │ ├── esp_ringbuf │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_esp_ringbuf.dir │ │ │ │ │ │ └── ringbuf.c.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── libesp_ringbuf.a │ │ │ ├── esp_rom │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_esp_rom.dir │ │ │ │ │ │ └── patches │ │ │ │ │ │ ├── esp_rom_crc.c.obj │ │ │ │ │ │ ├── esp_rom_efuse.c.obj │ │ │ │ │ │ ├── esp_rom_longjmp.S.obj │ │ │ │ │ │ ├── esp_rom_spiflash.c.obj │ │ │ │ │ │ ├── esp_rom_sys.c.obj │ │ │ │ │ │ └── esp_rom_uart.c.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── libesp_rom.a │ │ │ ├── esp_system │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_esp_system.dir │ │ │ │ │ │ ├── crosscore_int.c.obj │ │ │ │ │ │ ├── debug_stubs.c.obj │ │ │ │ │ │ ├── esp_err.c.obj │ │ │ │ │ │ ├── esp_ipc.c.obj │ │ │ │ │ │ ├── esp_system.c.obj │ │ │ │ │ │ ├── freertos_hooks.c.obj │ │ │ │ │ │ ├── int_wdt.c.obj │ │ │ │ │ │ ├── panic.c.obj │ │ │ │ │ │ ├── port │ │ │ │ │ │ ├── arch │ │ │ │ │ │ │ └── xtensa │ │ │ │ │ │ │ │ ├── debug_helpers.c.obj │ │ │ │ │ │ │ │ ├── debug_helpers_asm.S.obj │ │ │ │ │ │ │ │ ├── debug_stubs.c.obj │ │ │ │ │ │ │ │ ├── esp_ipc_isr.c.obj │ │ │ │ │ │ │ │ ├── esp_ipc_isr_handler.S.obj │ │ │ │ │ │ │ │ ├── esp_ipc_isr_routines.S.obj │ │ │ │ │ │ │ │ ├── expression_with_stack.c.obj │ │ │ │ │ │ │ │ ├── expression_with_stack_asm.S.obj │ │ │ │ │ │ │ │ ├── panic_arch.c.obj │ │ │ │ │ │ │ │ ├── panic_handler_asm.S.obj │ │ │ │ │ │ │ │ └── trax.c.obj │ │ │ │ │ │ ├── brownout.c.obj │ │ │ │ │ │ ├── cpu_start.c.obj │ │ │ │ │ │ ├── esp_system_chip.c.obj │ │ │ │ │ │ ├── panic_handler.c.obj │ │ │ │ │ │ └── soc │ │ │ │ │ │ │ └── esp32 │ │ │ │ │ │ │ ├── cache_err_int.c.obj │ │ │ │ │ │ │ ├── clk.c.obj │ │ │ │ │ │ │ ├── highint_hdl.S.obj │ │ │ │ │ │ │ ├── reset_reason.c.obj │ │ │ │ │ │ │ └── system_internal.c.obj │ │ │ │ │ │ ├── stack_check.c.obj │ │ │ │ │ │ ├── startup.c.obj │ │ │ │ │ │ ├── system_time.c.obj │ │ │ │ │ │ ├── task_wdt │ │ │ │ │ │ ├── task_wdt.c.obj │ │ │ │ │ │ └── task_wdt_impl_timergroup.c.obj │ │ │ │ │ │ ├── ubsan.c.obj │ │ │ │ │ │ └── xt_wdt.c.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ ├── ld │ │ │ │ │ ├── memory.ld │ │ │ │ │ └── sections.ld │ │ │ │ ├── libesp_system.a │ │ │ │ └── port │ │ │ │ │ ├── cmake_install.cmake │ │ │ │ │ └── soc │ │ │ │ │ └── esp32 │ │ │ │ │ └── cmake_install.cmake │ │ │ ├── esp_timer │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_esp_timer.dir │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── esp_timer.c.obj │ │ │ │ │ │ ├── esp_timer_impl_lac.c.obj │ │ │ │ │ │ ├── ets_timer_legacy.c.obj │ │ │ │ │ │ └── system_time.c.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── libesp_timer.a │ │ │ ├── esp_wifi │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_esp_wifi.dir │ │ │ │ │ │ ├── esp32 │ │ │ │ │ │ └── esp_adapter.c.obj │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── mesh_event.c.obj │ │ │ │ │ │ ├── smartconfig.c.obj │ │ │ │ │ │ ├── smartconfig_ack.c.obj │ │ │ │ │ │ ├── wifi_default.c.obj │ │ │ │ │ │ ├── wifi_default_ap.c.obj │ │ │ │ │ │ ├── wifi_init.c.obj │ │ │ │ │ │ └── wifi_netif.c.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── libesp_wifi.a │ │ │ ├── espcoredump │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_espcoredump.dir │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── core_dump_binary.c.obj │ │ │ │ │ │ ├── core_dump_checksum.c.obj │ │ │ │ │ │ ├── core_dump_common.c.obj │ │ │ │ │ │ ├── core_dump_elf.c.obj │ │ │ │ │ │ ├── core_dump_flash.c.obj │ │ │ │ │ │ ├── core_dump_uart.c.obj │ │ │ │ │ │ └── port │ │ │ │ │ │ └── xtensa │ │ │ │ │ │ └── core_dump_port.c.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── libespcoredump.a │ │ │ ├── esptool_py │ │ │ │ ├── app-flash_args.in │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── flasher_args.json.in │ │ │ ├── fatfs │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_fatfs.dir │ │ │ │ │ │ ├── diskio │ │ │ │ │ │ ├── diskio.c.obj │ │ │ │ │ │ ├── diskio_rawflash.c.obj │ │ │ │ │ │ ├── diskio_sdmmc.c.obj │ │ │ │ │ │ └── diskio_wl.c.obj │ │ │ │ │ │ ├── port │ │ │ │ │ │ └── freertos │ │ │ │ │ │ │ └── ffsystem.c.obj │ │ │ │ │ │ ├── src │ │ │ │ │ │ ├── ff.c.obj │ │ │ │ │ │ └── ffunicode.c.obj │ │ │ │ │ │ └── vfs │ │ │ │ │ │ ├── vfs_fat.c.obj │ │ │ │ │ │ ├── vfs_fat_sdmmc.c.obj │ │ │ │ │ │ └── vfs_fat_spiflash.c.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── libfatfs.a │ │ │ ├── freertos │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_freertos.dir │ │ │ │ │ │ ├── FreeRTOS-Kernel │ │ │ │ │ │ ├── croutine.c.obj │ │ │ │ │ │ ├── event_groups.c.obj │ │ │ │ │ │ ├── list.c.obj │ │ │ │ │ │ ├── portable │ │ │ │ │ │ │ ├── port_systick.c.obj │ │ │ │ │ │ │ └── xtensa │ │ │ │ │ │ │ │ ├── port.c.obj │ │ │ │ │ │ │ │ ├── portasm.S.obj │ │ │ │ │ │ │ │ ├── xtensa_context.S.obj │ │ │ │ │ │ │ │ ├── xtensa_init.c.obj │ │ │ │ │ │ │ │ ├── xtensa_overlay_os_hook.c.obj │ │ │ │ │ │ │ │ └── xtensa_vectors.S.obj │ │ │ │ │ │ ├── queue.c.obj │ │ │ │ │ │ ├── stream_buffer.c.obj │ │ │ │ │ │ ├── tasks.c.obj │ │ │ │ │ │ └── timers.c.obj │ │ │ │ │ │ ├── FreeRTOS-openocd.c.obj │ │ │ │ │ │ ├── app_startup.c.obj │ │ │ │ │ │ ├── esp_additions │ │ │ │ │ │ ├── freertos_v8_compat.c.obj │ │ │ │ │ │ └── idf_additions.c.obj │ │ │ │ │ │ ├── heap_idf.c.obj │ │ │ │ │ │ └── port_common.c.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── libfreertos.a │ │ │ ├── hal │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_hal.dir │ │ │ │ │ │ ├── adc_hal.c.obj │ │ │ │ │ │ ├── adc_hal_common.c.obj │ │ │ │ │ │ ├── adc_oneshot_hal.c.obj │ │ │ │ │ │ ├── aes_hal.c.obj │ │ │ │ │ │ ├── brownout_hal.c.obj │ │ │ │ │ │ ├── efuse_hal.c.obj │ │ │ │ │ │ ├── emac_hal.c.obj │ │ │ │ │ │ ├── esp32 │ │ │ │ │ │ ├── clk_tree_hal.c.obj │ │ │ │ │ │ ├── efuse_hal.c.obj │ │ │ │ │ │ ├── gpio_hal_workaround.c.obj │ │ │ │ │ │ └── touch_sensor_hal.c.obj │ │ │ │ │ │ ├── gpio_hal.c.obj │ │ │ │ │ │ ├── i2c_hal.c.obj │ │ │ │ │ │ ├── i2c_hal_iram.c.obj │ │ │ │ │ │ ├── i2s_hal.c.obj │ │ │ │ │ │ ├── ledc_hal.c.obj │ │ │ │ │ │ ├── ledc_hal_iram.c.obj │ │ │ │ │ │ ├── mcpwm_hal.c.obj │ │ │ │ │ │ ├── mmu_hal.c.obj │ │ │ │ │ │ ├── mpu_hal.c.obj │ │ │ │ │ │ ├── pcnt_hal.c.obj │ │ │ │ │ │ ├── rmt_hal.c.obj │ │ │ │ │ │ ├── rtc_io_hal.c.obj │ │ │ │ │ │ ├── sdio_slave_hal.c.obj │ │ │ │ │ │ ├── sdm_hal.c.obj │ │ │ │ │ │ ├── sha_hal.c.obj │ │ │ │ │ │ ├── spi_flash_encrypt_hal_iram.c.obj │ │ │ │ │ │ ├── spi_flash_hal.c.obj │ │ │ │ │ │ ├── spi_flash_hal_iram.c.obj │ │ │ │ │ │ ├── spi_hal.c.obj │ │ │ │ │ │ ├── spi_hal_iram.c.obj │ │ │ │ │ │ ├── spi_slave_hal.c.obj │ │ │ │ │ │ ├── spi_slave_hal_iram.c.obj │ │ │ │ │ │ ├── timer_hal.c.obj │ │ │ │ │ │ ├── timer_hal_iram.c.obj │ │ │ │ │ │ ├── touch_sensor_hal.c.obj │ │ │ │ │ │ ├── twai_hal.c.obj │ │ │ │ │ │ ├── twai_hal_iram.c.obj │ │ │ │ │ │ ├── uart_hal.c.obj │ │ │ │ │ │ ├── uart_hal_iram.c.obj │ │ │ │ │ │ └── wdt_hal_iram.c.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── libhal.a │ │ │ ├── heap │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_heap.dir │ │ │ │ │ │ ├── heap_caps.c.obj │ │ │ │ │ │ ├── heap_caps_init.c.obj │ │ │ │ │ │ ├── multi_heap.c.obj │ │ │ │ │ │ ├── port │ │ │ │ │ │ ├── esp32 │ │ │ │ │ │ │ └── memory_layout.c.obj │ │ │ │ │ │ └── memory_layout_utils.c.obj │ │ │ │ │ │ └── tlsf │ │ │ │ │ │ └── tlsf.c.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── libheap.a │ │ │ ├── http_parser │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_http_parser.dir │ │ │ │ │ │ └── http_parser.c.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── libhttp_parser.a │ │ │ ├── idf_test │ │ │ │ └── cmake_install.cmake │ │ │ ├── ieee802154 │ │ │ │ └── cmake_install.cmake │ │ │ ├── json │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_json.dir │ │ │ │ │ │ └── cJSON │ │ │ │ │ │ ├── cJSON.c.obj │ │ │ │ │ │ └── cJSON_Utils.c.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── libjson.a │ │ │ ├── log │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_log.dir │ │ │ │ │ │ ├── log.c.obj │ │ │ │ │ │ ├── log_buffers.c.obj │ │ │ │ │ │ └── log_freertos.c.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── liblog.a │ │ │ ├── lwip │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_lwip.dir │ │ │ │ │ │ ├── apps │ │ │ │ │ │ ├── dhcpserver │ │ │ │ │ │ │ └── dhcpserver.c.obj │ │ │ │ │ │ ├── ping │ │ │ │ │ │ │ ├── esp_ping.c.obj │ │ │ │ │ │ │ ├── ping.c.obj │ │ │ │ │ │ │ └── ping_sock.c.obj │ │ │ │ │ │ └── sntp │ │ │ │ │ │ │ └── sntp.c.obj │ │ │ │ │ │ ├── lwip │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ ├── api_lib.c.obj │ │ │ │ │ │ │ ├── api_msg.c.obj │ │ │ │ │ │ │ ├── err.c.obj │ │ │ │ │ │ │ ├── if_api.c.obj │ │ │ │ │ │ │ ├── netbuf.c.obj │ │ │ │ │ │ │ ├── netdb.c.obj │ │ │ │ │ │ │ ├── netifapi.c.obj │ │ │ │ │ │ │ ├── sockets.c.obj │ │ │ │ │ │ │ └── tcpip.c.obj │ │ │ │ │ │ │ ├── apps │ │ │ │ │ │ │ ├── netbiosns │ │ │ │ │ │ │ │ └── netbiosns.c.obj │ │ │ │ │ │ │ └── sntp │ │ │ │ │ │ │ │ └── sntp.c.obj │ │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ ├── def.c.obj │ │ │ │ │ │ │ ├── dns.c.obj │ │ │ │ │ │ │ ├── inet_chksum.c.obj │ │ │ │ │ │ │ ├── init.c.obj │ │ │ │ │ │ │ ├── ip.c.obj │ │ │ │ │ │ │ ├── ipv4 │ │ │ │ │ │ │ │ ├── autoip.c.obj │ │ │ │ │ │ │ │ ├── dhcp.c.obj │ │ │ │ │ │ │ │ ├── etharp.c.obj │ │ │ │ │ │ │ │ ├── icmp.c.obj │ │ │ │ │ │ │ │ ├── igmp.c.obj │ │ │ │ │ │ │ │ ├── ip4.c.obj │ │ │ │ │ │ │ │ ├── ip4_addr.c.obj │ │ │ │ │ │ │ │ ├── ip4_frag.c.obj │ │ │ │ │ │ │ │ └── ip4_napt.c.obj │ │ │ │ │ │ │ ├── ipv6 │ │ │ │ │ │ │ │ ├── dhcp6.c.obj │ │ │ │ │ │ │ │ ├── ethip6.c.obj │ │ │ │ │ │ │ │ ├── icmp6.c.obj │ │ │ │ │ │ │ │ ├── inet6.c.obj │ │ │ │ │ │ │ │ ├── ip6.c.obj │ │ │ │ │ │ │ │ ├── ip6_addr.c.obj │ │ │ │ │ │ │ │ ├── ip6_frag.c.obj │ │ │ │ │ │ │ │ ├── mld6.c.obj │ │ │ │ │ │ │ │ └── nd6.c.obj │ │ │ │ │ │ │ ├── mem.c.obj │ │ │ │ │ │ │ ├── memp.c.obj │ │ │ │ │ │ │ ├── netif.c.obj │ │ │ │ │ │ │ ├── pbuf.c.obj │ │ │ │ │ │ │ ├── raw.c.obj │ │ │ │ │ │ │ ├── stats.c.obj │ │ │ │ │ │ │ ├── sys.c.obj │ │ │ │ │ │ │ ├── tcp.c.obj │ │ │ │ │ │ │ ├── tcp_in.c.obj │ │ │ │ │ │ │ ├── tcp_out.c.obj │ │ │ │ │ │ │ ├── timeouts.c.obj │ │ │ │ │ │ │ └── udp.c.obj │ │ │ │ │ │ │ └── netif │ │ │ │ │ │ │ ├── bridgeif.c.obj │ │ │ │ │ │ │ ├── bridgeif_fdb.c.obj │ │ │ │ │ │ │ ├── ethernet.c.obj │ │ │ │ │ │ │ ├── ppp │ │ │ │ │ │ │ ├── auth.c.obj │ │ │ │ │ │ │ ├── ccp.c.obj │ │ │ │ │ │ │ ├── chap-md5.c.obj │ │ │ │ │ │ │ ├── chap-new.c.obj │ │ │ │ │ │ │ ├── chap_ms.c.obj │ │ │ │ │ │ │ ├── demand.c.obj │ │ │ │ │ │ │ ├── eap.c.obj │ │ │ │ │ │ │ ├── ecp.c.obj │ │ │ │ │ │ │ ├── eui64.c.obj │ │ │ │ │ │ │ ├── fsm.c.obj │ │ │ │ │ │ │ ├── ipcp.c.obj │ │ │ │ │ │ │ ├── ipv6cp.c.obj │ │ │ │ │ │ │ ├── lcp.c.obj │ │ │ │ │ │ │ ├── magic.c.obj │ │ │ │ │ │ │ ├── mppe.c.obj │ │ │ │ │ │ │ ├── multilink.c.obj │ │ │ │ │ │ │ ├── ppp.c.obj │ │ │ │ │ │ │ ├── pppapi.c.obj │ │ │ │ │ │ │ ├── pppcrypt.c.obj │ │ │ │ │ │ │ ├── pppoe.c.obj │ │ │ │ │ │ │ ├── pppol2tp.c.obj │ │ │ │ │ │ │ ├── pppos.c.obj │ │ │ │ │ │ │ ├── upap.c.obj │ │ │ │ │ │ │ ├── utils.c.obj │ │ │ │ │ │ │ └── vj.c.obj │ │ │ │ │ │ │ └── slipif.c.obj │ │ │ │ │ │ └── port │ │ │ │ │ │ ├── debug │ │ │ │ │ │ └── lwip_debug.c.obj │ │ │ │ │ │ ├── esp32xx │ │ │ │ │ │ └── vfs_lwip.c.obj │ │ │ │ │ │ ├── freertos │ │ │ │ │ │ └── sys_arch.c.obj │ │ │ │ │ │ ├── hooks │ │ │ │ │ │ ├── lwip_default_hooks.c.obj │ │ │ │ │ │ └── tcp_isn_default.c.obj │ │ │ │ │ │ └── sockets_ext.c.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── liblwip.a │ │ │ ├── main │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_main.dir │ │ │ │ │ │ ├── Communication │ │ │ │ │ │ ├── CANCtrl.cpp.obj │ │ │ │ │ │ ├── WebPageServer.cpp.obj │ │ │ │ │ │ └── interface_can.cpp.obj │ │ │ │ │ │ ├── Control │ │ │ │ │ │ ├── Motor.cpp.obj │ │ │ │ │ │ └── QT3.cpp.obj │ │ │ │ │ │ ├── LowLevel │ │ │ │ │ │ ├── can.c.obj │ │ │ │ │ │ ├── main.c.obj │ │ │ │ │ │ ├── startServer.c.obj │ │ │ │ │ │ └── startServer.cpp.obj │ │ │ │ │ │ └── UserApp │ │ │ │ │ │ └── main.cpp.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── libmain.a │ │ │ ├── mbedtls │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_mbedtls.dir │ │ │ │ │ │ ├── __ │ │ │ │ │ │ └── __ │ │ │ │ │ │ │ └── x509_crt_bundle.S.obj │ │ │ │ │ │ └── esp_crt_bundle │ │ │ │ │ │ └── esp_crt_bundle.c.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ ├── libmbedtls.a │ │ │ │ ├── mbedtls │ │ │ │ │ ├── 3rdparty │ │ │ │ │ │ └── cmake_install.cmake │ │ │ │ │ ├── cmake_install.cmake │ │ │ │ │ ├── include │ │ │ │ │ │ └── cmake_install.cmake │ │ │ │ │ └── library │ │ │ │ │ │ ├── CMakeFiles │ │ │ │ │ │ ├── mbedcrypto.dir │ │ │ │ │ │ │ ├── 51707a4d8065d28c5a850380c8be9c4a │ │ │ │ │ │ │ │ └── components │ │ │ │ │ │ │ │ │ └── mbedtls │ │ │ │ │ │ │ │ │ └── port │ │ │ │ │ │ │ │ │ └── sha │ │ │ │ │ │ │ │ │ └── parallel_engine │ │ │ │ │ │ │ │ │ └── esp_sha1.c.obj │ │ │ │ │ │ │ ├── 919294a98400d81855935e6de5325c95 │ │ │ │ │ │ │ │ └── mbedtls │ │ │ │ │ │ │ │ │ └── port │ │ │ │ │ │ │ │ │ └── sha │ │ │ │ │ │ │ │ │ └── parallel_engine │ │ │ │ │ │ │ │ │ ├── esp_sha256.c.obj │ │ │ │ │ │ │ │ │ └── esp_sha512.c.obj │ │ │ │ │ │ │ ├── C_ │ │ │ │ │ │ │ │ └── Espressif │ │ │ │ │ │ │ │ │ └── frameworks │ │ │ │ │ │ │ │ │ └── esp-idf-v5.1 │ │ │ │ │ │ │ │ │ └── components │ │ │ │ │ │ │ │ │ └── mbedtls │ │ │ │ │ │ │ │ │ └── port │ │ │ │ │ │ │ │ │ ├── aes │ │ │ │ │ │ │ │ │ ├── block │ │ │ │ │ │ │ │ │ │ └── esp_aes.c.obj │ │ │ │ │ │ │ │ │ ├── esp_aes_common.c.obj │ │ │ │ │ │ │ │ │ ├── esp_aes_gcm.c.obj │ │ │ │ │ │ │ │ │ └── esp_aes_xts.c.obj │ │ │ │ │ │ │ │ │ ├── esp32 │ │ │ │ │ │ │ │ │ └── bignum.c.obj │ │ │ │ │ │ │ │ │ ├── esp_bignum.c.obj │ │ │ │ │ │ │ │ │ ├── esp_hardware.c.obj │ │ │ │ │ │ │ │ │ ├── esp_mem.c.obj │ │ │ │ │ │ │ │ │ ├── esp_timing.c.obj │ │ │ │ │ │ │ │ │ ├── md │ │ │ │ │ │ │ │ │ └── esp_md.c.obj │ │ │ │ │ │ │ │ │ └── sha │ │ │ │ │ │ │ │ │ ├── esp_sha.c.obj │ │ │ │ │ │ │ │ │ └── parallel_engine │ │ │ │ │ │ │ │ │ └── sha.c.obj │ │ │ │ │ │ │ ├── aes.c.obj │ │ │ │ │ │ │ ├── aesce.c.obj │ │ │ │ │ │ │ ├── aesni.c.obj │ │ │ │ │ │ │ ├── aria.c.obj │ │ │ │ │ │ │ ├── asn1parse.c.obj │ │ │ │ │ │ │ ├── asn1write.c.obj │ │ │ │ │ │ │ ├── base64.c.obj │ │ │ │ │ │ │ ├── bignum.c.obj │ │ │ │ │ │ │ ├── bignum_core.c.obj │ │ │ │ │ │ │ ├── bignum_mod.c.obj │ │ │ │ │ │ │ ├── bignum_mod_raw.c.obj │ │ │ │ │ │ │ ├── camellia.c.obj │ │ │ │ │ │ │ ├── ccm.c.obj │ │ │ │ │ │ │ ├── chacha20.c.obj │ │ │ │ │ │ │ ├── chachapoly.c.obj │ │ │ │ │ │ │ ├── cipher.c.obj │ │ │ │ │ │ │ ├── cipher_wrap.c.obj │ │ │ │ │ │ │ ├── cmac.c.obj │ │ │ │ │ │ │ ├── constant_time.c.obj │ │ │ │ │ │ │ ├── ctr_drbg.c.obj │ │ │ │ │ │ │ ├── des.c.obj │ │ │ │ │ │ │ ├── dhm.c.obj │ │ │ │ │ │ │ ├── ecdh.c.obj │ │ │ │ │ │ │ ├── ecdsa.c.obj │ │ │ │ │ │ │ ├── ecjpake.c.obj │ │ │ │ │ │ │ ├── ecp.c.obj │ │ │ │ │ │ │ ├── ecp_curves.c.obj │ │ │ │ │ │ │ ├── entropy.c.obj │ │ │ │ │ │ │ ├── entropy_poll.c.obj │ │ │ │ │ │ │ ├── error.c.obj │ │ │ │ │ │ │ ├── gcm.c.obj │ │ │ │ │ │ │ ├── hash_info.c.obj │ │ │ │ │ │ │ ├── hkdf.c.obj │ │ │ │ │ │ │ ├── hmac_drbg.c.obj │ │ │ │ │ │ │ ├── lmots.c.obj │ │ │ │ │ │ │ ├── lms.c.obj │ │ │ │ │ │ │ ├── md.c.obj │ │ │ │ │ │ │ ├── md5.c.obj │ │ │ │ │ │ │ ├── memory_buffer_alloc.c.obj │ │ │ │ │ │ │ ├── nist_kw.c.obj │ │ │ │ │ │ │ ├── oid.c.obj │ │ │ │ │ │ │ ├── padlock.c.obj │ │ │ │ │ │ │ ├── pem.c.obj │ │ │ │ │ │ │ ├── pk.c.obj │ │ │ │ │ │ │ ├── pk_wrap.c.obj │ │ │ │ │ │ │ ├── pkcs12.c.obj │ │ │ │ │ │ │ ├── pkcs5.c.obj │ │ │ │ │ │ │ ├── pkparse.c.obj │ │ │ │ │ │ │ ├── pkwrite.c.obj │ │ │ │ │ │ │ ├── platform.c.obj │ │ │ │ │ │ │ ├── platform_util.c.obj │ │ │ │ │ │ │ ├── poly1305.c.obj │ │ │ │ │ │ │ ├── psa_crypto.c.obj │ │ │ │ │ │ │ ├── psa_crypto_aead.c.obj │ │ │ │ │ │ │ ├── psa_crypto_cipher.c.obj │ │ │ │ │ │ │ ├── psa_crypto_client.c.obj │ │ │ │ │ │ │ ├── psa_crypto_driver_wrappers.c.obj │ │ │ │ │ │ │ ├── psa_crypto_ecp.c.obj │ │ │ │ │ │ │ ├── psa_crypto_hash.c.obj │ │ │ │ │ │ │ ├── psa_crypto_mac.c.obj │ │ │ │ │ │ │ ├── psa_crypto_pake.c.obj │ │ │ │ │ │ │ ├── psa_crypto_rsa.c.obj │ │ │ │ │ │ │ ├── psa_crypto_se.c.obj │ │ │ │ │ │ │ ├── psa_crypto_slot_management.c.obj │ │ │ │ │ │ │ ├── psa_crypto_storage.c.obj │ │ │ │ │ │ │ ├── psa_its_file.c.obj │ │ │ │ │ │ │ ├── psa_util.c.obj │ │ │ │ │ │ │ ├── ripemd160.c.obj │ │ │ │ │ │ │ ├── rsa.c.obj │ │ │ │ │ │ │ ├── rsa_alt_helpers.c.obj │ │ │ │ │ │ │ ├── sha1.c.obj │ │ │ │ │ │ │ ├── sha256.c.obj │ │ │ │ │ │ │ ├── sha512.c.obj │ │ │ │ │ │ │ ├── threading.c.obj │ │ │ │ │ │ │ ├── timing.c.obj │ │ │ │ │ │ │ ├── version.c.obj │ │ │ │ │ │ │ └── version_features.c.obj │ │ │ │ │ │ ├── mbedtls.dir │ │ │ │ │ │ │ ├── C_ │ │ │ │ │ │ │ │ └── Espressif │ │ │ │ │ │ │ │ │ └── frameworks │ │ │ │ │ │ │ │ │ └── esp-idf-v5.1 │ │ │ │ │ │ │ │ │ └── components │ │ │ │ │ │ │ │ │ └── mbedtls │ │ │ │ │ │ │ │ │ └── port │ │ │ │ │ │ │ │ │ ├── mbedtls_debug.c.obj │ │ │ │ │ │ │ │ │ └── net_sockets.c.obj │ │ │ │ │ │ │ ├── debug.c.obj │ │ │ │ │ │ │ ├── mps_reader.c.obj │ │ │ │ │ │ │ ├── mps_trace.c.obj │ │ │ │ │ │ │ ├── ssl_cache.c.obj │ │ │ │ │ │ │ ├── ssl_ciphersuites.c.obj │ │ │ │ │ │ │ ├── ssl_client.c.obj │ │ │ │ │ │ │ ├── ssl_cookie.c.obj │ │ │ │ │ │ │ ├── ssl_debug_helpers_generated.c.obj │ │ │ │ │ │ │ ├── ssl_msg.c.obj │ │ │ │ │ │ │ ├── ssl_ticket.c.obj │ │ │ │ │ │ │ ├── ssl_tls.c.obj │ │ │ │ │ │ │ ├── ssl_tls12_client.c.obj │ │ │ │ │ │ │ ├── ssl_tls12_server.c.obj │ │ │ │ │ │ │ ├── ssl_tls13_client.c.obj │ │ │ │ │ │ │ ├── ssl_tls13_generic.c.obj │ │ │ │ │ │ │ ├── ssl_tls13_keys.c.obj │ │ │ │ │ │ │ └── ssl_tls13_server.c.obj │ │ │ │ │ │ └── mbedx509.dir │ │ │ │ │ │ │ ├── pkcs7.c.obj │ │ │ │ │ │ │ ├── x509.c.obj │ │ │ │ │ │ │ ├── x509_create.c.obj │ │ │ │ │ │ │ ├── x509_crl.c.obj │ │ │ │ │ │ │ ├── x509_crt.c.obj │ │ │ │ │ │ │ ├── x509_csr.c.obj │ │ │ │ │ │ │ ├── x509write_crt.c.obj │ │ │ │ │ │ │ └── x509write_csr.c.obj │ │ │ │ │ │ ├── cmake_install.cmake │ │ │ │ │ │ ├── error.c │ │ │ │ │ │ ├── libmbedcrypto.a │ │ │ │ │ │ ├── libmbedtls.a │ │ │ │ │ │ ├── libmbedx509.a │ │ │ │ │ │ ├── psa_crypto_driver_wrappers.c │ │ │ │ │ │ ├── ssl_debug_helpers_generated.c │ │ │ │ │ │ └── version_features.c │ │ │ │ └── x509_crt_bundle │ │ │ ├── mqtt │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_mqtt.dir │ │ │ │ │ │ └── esp-mqtt │ │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── mqtt_msg.c.obj │ │ │ │ │ │ ├── mqtt_outbox.c.obj │ │ │ │ │ │ └── platform_esp32_idf.c.obj │ │ │ │ │ │ └── mqtt_client.c.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── libmqtt.a │ │ │ ├── newlib │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_newlib.dir │ │ │ │ │ │ ├── abort.c.obj │ │ │ │ │ │ ├── assert.c.obj │ │ │ │ │ │ ├── heap.c.obj │ │ │ │ │ │ ├── locks.c.obj │ │ │ │ │ │ ├── newlib_init.c.obj │ │ │ │ │ │ ├── poll.c.obj │ │ │ │ │ │ ├── port │ │ │ │ │ │ └── esp_time_impl.c.obj │ │ │ │ │ │ ├── pthread.c.obj │ │ │ │ │ │ ├── random.c.obj │ │ │ │ │ │ ├── realpath.c.obj │ │ │ │ │ │ ├── reent_init.c.obj │ │ │ │ │ │ ├── stdatomic.c.obj │ │ │ │ │ │ ├── syscalls.c.obj │ │ │ │ │ │ ├── sysconf.c.obj │ │ │ │ │ │ ├── termios.c.obj │ │ │ │ │ │ └── time.c.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ ├── libnewlib.a │ │ │ │ └── port │ │ │ │ │ └── cmake_install.cmake │ │ │ ├── nvs_flash │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_nvs_flash.dir │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── nvs_api.cpp.obj │ │ │ │ │ │ ├── nvs_cxx_api.cpp.obj │ │ │ │ │ │ ├── nvs_handle_locked.cpp.obj │ │ │ │ │ │ ├── nvs_handle_simple.cpp.obj │ │ │ │ │ │ ├── nvs_item_hash_list.cpp.obj │ │ │ │ │ │ ├── nvs_page.cpp.obj │ │ │ │ │ │ ├── nvs_pagemanager.cpp.obj │ │ │ │ │ │ ├── nvs_partition.cpp.obj │ │ │ │ │ │ ├── nvs_partition_lookup.cpp.obj │ │ │ │ │ │ ├── nvs_partition_manager.cpp.obj │ │ │ │ │ │ ├── nvs_storage.cpp.obj │ │ │ │ │ │ └── nvs_types.cpp.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── libnvs_flash.a │ │ │ ├── openthread │ │ │ │ └── cmake_install.cmake │ │ │ ├── partition_table │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── partition-table-flash_args.in │ │ │ ├── perfmon │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_perfmon.dir │ │ │ │ │ │ ├── xtensa_perfmon_access.c.obj │ │ │ │ │ │ ├── xtensa_perfmon_apis.c.obj │ │ │ │ │ │ └── xtensa_perfmon_masks.c.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── libperfmon.a │ │ │ ├── protobuf-c │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_protobuf-c.dir │ │ │ │ │ │ └── protobuf-c │ │ │ │ │ │ └── protobuf-c │ │ │ │ │ │ └── protobuf-c.c.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── libprotobuf-c.a │ │ │ ├── protocomm │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_protocomm.dir │ │ │ │ │ │ ├── proto-c │ │ │ │ │ │ ├── constants.pb-c.c.obj │ │ │ │ │ │ ├── sec0.pb-c.c.obj │ │ │ │ │ │ ├── sec1.pb-c.c.obj │ │ │ │ │ │ ├── sec2.pb-c.c.obj │ │ │ │ │ │ └── session.pb-c.c.obj │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── common │ │ │ │ │ │ └── protocomm.c.obj │ │ │ │ │ │ ├── crypto │ │ │ │ │ │ └── srp6a │ │ │ │ │ │ │ ├── esp_srp.c.obj │ │ │ │ │ │ │ └── esp_srp_mpi.c.obj │ │ │ │ │ │ ├── security │ │ │ │ │ │ ├── security0.c.obj │ │ │ │ │ │ ├── security1.c.obj │ │ │ │ │ │ └── security2.c.obj │ │ │ │ │ │ └── transports │ │ │ │ │ │ ├── protocomm_console.c.obj │ │ │ │ │ │ └── protocomm_httpd.c.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── libprotocomm.a │ │ │ ├── pthread │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_pthread.dir │ │ │ │ │ │ ├── pthread.c.obj │ │ │ │ │ │ ├── pthread_cond_var.c.obj │ │ │ │ │ │ ├── pthread_local_storage.c.obj │ │ │ │ │ │ ├── pthread_rwlock.c.obj │ │ │ │ │ │ └── pthread_semaphore.c.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── libpthread.a │ │ │ ├── sdmmc │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_sdmmc.dir │ │ │ │ │ │ ├── sdmmc_cmd.c.obj │ │ │ │ │ │ ├── sdmmc_common.c.obj │ │ │ │ │ │ ├── sdmmc_init.c.obj │ │ │ │ │ │ ├── sdmmc_io.c.obj │ │ │ │ │ │ ├── sdmmc_mmc.c.obj │ │ │ │ │ │ └── sdmmc_sd.c.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── libsdmmc.a │ │ │ ├── soc │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_soc.dir │ │ │ │ │ │ ├── dport_access_common.c.obj │ │ │ │ │ │ ├── esp32 │ │ │ │ │ │ ├── adc_periph.c.obj │ │ │ │ │ │ ├── dac_periph.c.obj │ │ │ │ │ │ ├── dport_access.c.obj │ │ │ │ │ │ ├── gpio_periph.c.obj │ │ │ │ │ │ ├── i2c_periph.c.obj │ │ │ │ │ │ ├── i2s_periph.c.obj │ │ │ │ │ │ ├── interrupts.c.obj │ │ │ │ │ │ ├── lcd_periph.c.obj │ │ │ │ │ │ ├── ledc_periph.c.obj │ │ │ │ │ │ ├── mcpwm_periph.c.obj │ │ │ │ │ │ ├── pcnt_periph.c.obj │ │ │ │ │ │ ├── rmt_periph.c.obj │ │ │ │ │ │ ├── rtc_io_periph.c.obj │ │ │ │ │ │ ├── sdio_slave_periph.c.obj │ │ │ │ │ │ ├── sdm_periph.c.obj │ │ │ │ │ │ ├── sdmmc_periph.c.obj │ │ │ │ │ │ ├── spi_periph.c.obj │ │ │ │ │ │ ├── timer_periph.c.obj │ │ │ │ │ │ ├── touch_sensor_periph.c.obj │ │ │ │ │ │ ├── twai_periph.c.obj │ │ │ │ │ │ └── uart_periph.c.obj │ │ │ │ │ │ └── lldesc.c.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── libsoc.a │ │ │ ├── spi_flash │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_spi_flash.dir │ │ │ │ │ │ ├── cache_utils.c.obj │ │ │ │ │ │ ├── esp_flash_api.c.obj │ │ │ │ │ │ ├── esp_flash_spi_init.c.obj │ │ │ │ │ │ ├── flash_brownout_hook.c.obj │ │ │ │ │ │ ├── flash_mmap.c.obj │ │ │ │ │ │ ├── flash_ops.c.obj │ │ │ │ │ │ ├── memspi_host_driver.c.obj │ │ │ │ │ │ ├── spi_flash_chip_boya.c.obj │ │ │ │ │ │ ├── spi_flash_chip_drivers.c.obj │ │ │ │ │ │ ├── spi_flash_chip_gd.c.obj │ │ │ │ │ │ ├── spi_flash_chip_generic.c.obj │ │ │ │ │ │ ├── spi_flash_chip_issi.c.obj │ │ │ │ │ │ ├── spi_flash_chip_mxic.c.obj │ │ │ │ │ │ ├── spi_flash_chip_mxic_opi.c.obj │ │ │ │ │ │ ├── spi_flash_chip_th.c.obj │ │ │ │ │ │ ├── spi_flash_chip_winbond.c.obj │ │ │ │ │ │ ├── spi_flash_os_func_app.c.obj │ │ │ │ │ │ ├── spi_flash_os_func_noos.c.obj │ │ │ │ │ │ └── spi_flash_wrap.c.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── libspi_flash.a │ │ │ ├── spiffs │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_spiffs.dir │ │ │ │ │ │ ├── esp_spiffs.c.obj │ │ │ │ │ │ ├── spiffs │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── spiffs_cache.c.obj │ │ │ │ │ │ │ ├── spiffs_check.c.obj │ │ │ │ │ │ │ ├── spiffs_gc.c.obj │ │ │ │ │ │ │ ├── spiffs_hydrogen.c.obj │ │ │ │ │ │ │ └── spiffs_nucleus.c.obj │ │ │ │ │ │ └── spiffs_api.c.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── libspiffs.a │ │ │ ├── tcp_transport │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_tcp_transport.dir │ │ │ │ │ │ ├── transport.c.obj │ │ │ │ │ │ ├── transport_internal.c.obj │ │ │ │ │ │ ├── transport_socks_proxy.c.obj │ │ │ │ │ │ ├── transport_ssl.c.obj │ │ │ │ │ │ └── transport_ws.c.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── libtcp_transport.a │ │ │ ├── ulp │ │ │ │ └── cmake_install.cmake │ │ │ ├── unity │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_unity.dir │ │ │ │ │ │ ├── port │ │ │ │ │ │ └── esp │ │ │ │ │ │ │ └── unity_utils_memory_esp.c.obj │ │ │ │ │ │ ├── unity │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── unity.c.obj │ │ │ │ │ │ ├── unity_port_esp32.c.obj │ │ │ │ │ │ ├── unity_runner.c.obj │ │ │ │ │ │ ├── unity_utils_cache.c.obj │ │ │ │ │ │ ├── unity_utils_freertos.c.obj │ │ │ │ │ │ └── unity_utils_memory.c.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── libunity.a │ │ │ ├── usb │ │ │ │ └── cmake_install.cmake │ │ │ ├── vfs │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_vfs.dir │ │ │ │ │ │ ├── vfs.c.obj │ │ │ │ │ │ ├── vfs_console.c.obj │ │ │ │ │ │ ├── vfs_eventfd.c.obj │ │ │ │ │ │ ├── vfs_semihost.c.obj │ │ │ │ │ │ └── vfs_uart.c.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── libvfs.a │ │ │ ├── wear_levelling │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_wear_levelling.dir │ │ │ │ │ │ ├── Partition.cpp.obj │ │ │ │ │ │ ├── SPI_Flash.cpp.obj │ │ │ │ │ │ ├── WL_Ext_Perf.cpp.obj │ │ │ │ │ │ ├── WL_Ext_Safe.cpp.obj │ │ │ │ │ │ ├── WL_Flash.cpp.obj │ │ │ │ │ │ ├── crc32.cpp.obj │ │ │ │ │ │ └── wear_levelling.cpp.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── libwear_levelling.a │ │ │ ├── wifi_provisioning │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_wifi_provisioning.dir │ │ │ │ │ │ ├── proto-c │ │ │ │ │ │ ├── wifi_config.pb-c.c.obj │ │ │ │ │ │ ├── wifi_constants.pb-c.c.obj │ │ │ │ │ │ ├── wifi_ctrl.pb-c.c.obj │ │ │ │ │ │ └── wifi_scan.pb-c.c.obj │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── handlers.c.obj │ │ │ │ │ │ ├── manager.c.obj │ │ │ │ │ │ ├── scheme_console.c.obj │ │ │ │ │ │ ├── scheme_softap.c.obj │ │ │ │ │ │ ├── wifi_config.c.obj │ │ │ │ │ │ ├── wifi_ctrl.c.obj │ │ │ │ │ │ └── wifi_scan.c.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── libwifi_provisioning.a │ │ │ ├── wpa_supplicant │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_wpa_supplicant.dir │ │ │ │ │ │ ├── esp_supplicant │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── crypto │ │ │ │ │ │ │ ├── crypto_mbedtls-bignum.c.obj │ │ │ │ │ │ │ ├── crypto_mbedtls-ec.c.obj │ │ │ │ │ │ │ ├── crypto_mbedtls-rsa.c.obj │ │ │ │ │ │ │ ├── crypto_mbedtls.c.obj │ │ │ │ │ │ │ └── tls_mbedtls.c.obj │ │ │ │ │ │ │ ├── esp_common.c.obj │ │ │ │ │ │ │ ├── esp_hostap.c.obj │ │ │ │ │ │ │ ├── esp_owe.c.obj │ │ │ │ │ │ │ ├── esp_scan.c.obj │ │ │ │ │ │ │ ├── esp_wpa2.c.obj │ │ │ │ │ │ │ ├── esp_wpa3.c.obj │ │ │ │ │ │ │ ├── esp_wpa_main.c.obj │ │ │ │ │ │ │ ├── esp_wpas_glue.c.obj │ │ │ │ │ │ │ └── esp_wps.c.obj │ │ │ │ │ │ ├── port │ │ │ │ │ │ ├── eloop.c.obj │ │ │ │ │ │ └── os_xtensa.c.obj │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── ap │ │ │ │ │ │ ├── ap_config.c.obj │ │ │ │ │ │ ├── comeback_token.c.obj │ │ │ │ │ │ ├── ieee802_11.c.obj │ │ │ │ │ │ ├── ieee802_1x.c.obj │ │ │ │ │ │ ├── pmksa_cache_auth.c.obj │ │ │ │ │ │ ├── sta_info.c.obj │ │ │ │ │ │ ├── wpa_auth.c.obj │ │ │ │ │ │ └── wpa_auth_ie.c.obj │ │ │ │ │ │ ├── common │ │ │ │ │ │ ├── bss.c.obj │ │ │ │ │ │ ├── dragonfly.c.obj │ │ │ │ │ │ ├── ieee802_11_common.c.obj │ │ │ │ │ │ ├── sae.c.obj │ │ │ │ │ │ ├── sae_pk.c.obj │ │ │ │ │ │ ├── scan.c.obj │ │ │ │ │ │ └── wpa_common.c.obj │ │ │ │ │ │ ├── crypto │ │ │ │ │ │ ├── aes-ccm.c.obj │ │ │ │ │ │ ├── aes-gcm.c.obj │ │ │ │ │ │ ├── aes-omac1.c.obj │ │ │ │ │ │ ├── aes-siv.c.obj │ │ │ │ │ │ ├── aes-unwrap.c.obj │ │ │ │ │ │ ├── aes-wrap.c.obj │ │ │ │ │ │ ├── ccmp.c.obj │ │ │ │ │ │ ├── crypto_ops.c.obj │ │ │ │ │ │ ├── des-internal.c.obj │ │ │ │ │ │ ├── dh_group5.c.obj │ │ │ │ │ │ ├── dh_groups.c.obj │ │ │ │ │ │ ├── md4-internal.c.obj │ │ │ │ │ │ ├── ms_funcs.c.obj │ │ │ │ │ │ ├── rc4.c.obj │ │ │ │ │ │ ├── sha1-prf.c.obj │ │ │ │ │ │ ├── sha1-tlsprf.c.obj │ │ │ │ │ │ ├── sha1-tprf.c.obj │ │ │ │ │ │ ├── sha256-kdf.c.obj │ │ │ │ │ │ ├── sha256-prf.c.obj │ │ │ │ │ │ ├── sha256-tlsprf.c.obj │ │ │ │ │ │ ├── sha384-prf.c.obj │ │ │ │ │ │ └── sha384-tlsprf.c.obj │ │ │ │ │ │ ├── eap_common │ │ │ │ │ │ └── eap_wsc_common.c.obj │ │ │ │ │ │ ├── eap_peer │ │ │ │ │ │ ├── chap.c.obj │ │ │ │ │ │ ├── eap.c.obj │ │ │ │ │ │ ├── eap_common.c.obj │ │ │ │ │ │ ├── eap_fast.c.obj │ │ │ │ │ │ ├── eap_fast_common.c.obj │ │ │ │ │ │ ├── eap_fast_pac.c.obj │ │ │ │ │ │ ├── eap_mschapv2.c.obj │ │ │ │ │ │ ├── eap_peap.c.obj │ │ │ │ │ │ ├── eap_peap_common.c.obj │ │ │ │ │ │ ├── eap_tls.c.obj │ │ │ │ │ │ ├── eap_tls_common.c.obj │ │ │ │ │ │ ├── eap_ttls.c.obj │ │ │ │ │ │ └── mschapv2.c.obj │ │ │ │ │ │ ├── rsn_supp │ │ │ │ │ │ ├── pmksa_cache.c.obj │ │ │ │ │ │ ├── wpa.c.obj │ │ │ │ │ │ └── wpa_ie.c.obj │ │ │ │ │ │ ├── utils │ │ │ │ │ │ ├── base64.c.obj │ │ │ │ │ │ ├── bitfield.c.obj │ │ │ │ │ │ ├── common.c.obj │ │ │ │ │ │ ├── ext_password.c.obj │ │ │ │ │ │ ├── json.c.obj │ │ │ │ │ │ ├── uuid.c.obj │ │ │ │ │ │ ├── wpa_debug.c.obj │ │ │ │ │ │ └── wpabuf.c.obj │ │ │ │ │ │ └── wps │ │ │ │ │ │ ├── wps.c.obj │ │ │ │ │ │ ├── wps_attr_build.c.obj │ │ │ │ │ │ ├── wps_attr_parse.c.obj │ │ │ │ │ │ ├── wps_attr_process.c.obj │ │ │ │ │ │ ├── wps_common.c.obj │ │ │ │ │ │ ├── wps_dev_attr.c.obj │ │ │ │ │ │ └── wps_enrollee.c.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── libwpa_supplicant.a │ │ │ └── xtensa │ │ │ │ ├── CMakeFiles │ │ │ │ └── __idf_xtensa.dir │ │ │ │ │ ├── eri.c.obj │ │ │ │ │ ├── xt_trax.c.obj │ │ │ │ │ ├── xtensa_intr.c.obj │ │ │ │ │ └── xtensa_intr_asm.S.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── libxtensa.a │ │ ├── flash_app_args │ │ ├── flash_args │ │ ├── flash_args.in │ │ ├── flash_bootloader_args │ │ ├── flash_project_args │ │ ├── flasher_args.json │ │ ├── kconfigs.in │ │ ├── kconfigs_projbuild.in │ │ ├── ldgen_libraries │ │ ├── ldgen_libraries.in │ │ ├── log │ │ │ ├── idf_py_stderr_output_12948 │ │ │ ├── idf_py_stderr_output_17388 │ │ │ ├── idf_py_stderr_output_18528 │ │ │ ├── idf_py_stderr_output_18544 │ │ │ ├── idf_py_stderr_output_19976 │ │ │ ├── idf_py_stderr_output_20240 │ │ │ ├── idf_py_stderr_output_20464 │ │ │ ├── idf_py_stdout_output_12948 │ │ │ ├── idf_py_stdout_output_17388 │ │ │ ├── idf_py_stdout_output_18528 │ │ │ ├── idf_py_stdout_output_18544 │ │ │ ├── idf_py_stdout_output_19976 │ │ │ ├── idf_py_stdout_output_20240 │ │ │ └── idf_py_stdout_output_20464 │ │ ├── partition-table-flash_args │ │ ├── partition_table │ │ │ └── partition-table.bin │ │ ├── project_description.json │ │ ├── project_elf_src_esp32.c │ │ └── x509_crt_bundle.S │ ├── main │ │ ├── .vscode │ │ │ └── settings.json │ │ ├── CMakeLists.txt │ │ ├── Communication │ │ │ ├── CANCtrl.cpp │ │ │ ├── CANCtrl.h │ │ │ ├── WebPageServer.cpp │ │ │ ├── WebPageServer.h │ │ │ ├── interface_can.cpp │ │ │ ├── interface_can.h │ │ │ ├── web_page_content.h │ │ │ └── web_page_content.h.template │ │ ├── Control │ │ │ ├── Motor.cpp │ │ │ ├── Motor.h │ │ │ ├── QT3.cpp │ │ │ └── QT3.h │ │ ├── Kconfig.projbuild │ │ ├── LowLevel │ │ │ ├── can.c │ │ │ ├── can.h │ │ │ ├── main.c │ │ │ ├── startServer.c │ │ │ ├── startServer.cpp │ │ │ └── startServer.h │ │ └── UserApp │ │ │ ├── common_inc.h │ │ │ └── main.cpp │ ├── sdkconfig │ ├── sdkconfig.old │ └── src │ │ └── CMakeLists.txt └── stm32StepperCtrl │ ├── .cproject │ ├── .gitignore │ ├── .idea │ ├── .gitignore │ ├── .name │ ├── Ctrl-Step-fw.iml │ ├── codeStyles │ │ └── codeStyleConfig.xml │ ├── copyright │ │ ├── ctrl_step.xml │ │ └── profiles_settings.xml │ ├── deployment.xml │ ├── encodings.xml │ ├── inspectionProfiles │ │ └── Project_Default.xml │ ├── misc.xml │ ├── modules.xml │ ├── serialmonitor_settings.xml │ └── vcs.xml │ ├── .mxproject │ ├── .project │ ├── CMakeLists.txt │ ├── CMakeLists_template.txt │ ├── Core │ ├── Inc │ │ ├── adc.h │ │ ├── can.h │ │ ├── dma.h │ │ ├── gpio.h │ │ ├── main.h │ │ ├── spi.h │ │ ├── stm32f1xx_hal_conf.h │ │ ├── stm32f1xx_it.h │ │ ├── tim.h │ │ └── usart.h │ └── Src │ │ ├── adc.c │ │ ├── can.c │ │ ├── dma.c │ │ ├── gpio.c │ │ ├── main.c │ │ ├── spi.c │ │ ├── stm32f1xx_hal_msp.c │ │ ├── stm32f1xx_it.c │ │ ├── syscalls.c │ │ ├── system_stm32f1xx.c │ │ ├── tim.c │ │ └── usart.c │ ├── Ctrl-Step-fw.xml │ ├── Ctrl │ ├── Driver │ │ ├── driver_base.h │ │ ├── sin_map.h │ │ ├── tb67h450_base.cpp │ │ └── tb67h450_base.h │ ├── Motor │ │ ├── motion_planner.cpp │ │ ├── motion_planner.h │ │ ├── motor.cpp │ │ └── motor.h │ ├── Sensor │ │ └── Encoder │ │ │ ├── encoder_base.h │ │ │ ├── encoder_calibrator_base.cpp │ │ │ ├── encoder_calibrator_base.h │ │ │ ├── mt6816_base.cpp │ │ │ └── mt6816_base.h │ └── Signal │ │ ├── button_base.cpp │ │ ├── button_base.h │ │ ├── led_base.cpp │ │ └── led_base.h │ ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F1xx │ │ │ │ └── Include │ │ │ │ ├── stm32f103xb.h │ │ │ │ ├── stm32f1xx.h │ │ │ │ └── system_stm32f1xx.h │ │ └── Include │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armclang.h │ │ │ ├── cmsis_compiler.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── cmsis_iccarm.h │ │ │ ├── cmsis_version.h │ │ │ ├── core_armv8mbl.h │ │ │ ├── core_armv8mml.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm0plus.h │ │ │ ├── core_cm1.h │ │ │ ├── core_cm23.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cm33.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_sc000.h │ │ │ ├── core_sc300.h │ │ │ ├── mpu_armv7.h │ │ │ ├── mpu_armv8.h │ │ │ └── tz_context.h │ └── STM32F1xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f1xx_hal.h │ │ ├── stm32f1xx_hal_adc.h │ │ ├── stm32f1xx_hal_adc_ex.h │ │ ├── stm32f1xx_hal_can.h │ │ ├── stm32f1xx_hal_cortex.h │ │ ├── stm32f1xx_hal_def.h │ │ ├── stm32f1xx_hal_dma.h │ │ ├── stm32f1xx_hal_dma_ex.h │ │ ├── stm32f1xx_hal_exti.h │ │ ├── stm32f1xx_hal_flash.h │ │ ├── stm32f1xx_hal_flash_ex.h │ │ ├── stm32f1xx_hal_gpio.h │ │ ├── stm32f1xx_hal_gpio_ex.h │ │ ├── stm32f1xx_hal_pwr.h │ │ ├── stm32f1xx_hal_rcc.h │ │ ├── stm32f1xx_hal_rcc_ex.h │ │ ├── stm32f1xx_hal_spi.h │ │ ├── stm32f1xx_hal_tim.h │ │ ├── stm32f1xx_hal_tim_ex.h │ │ └── stm32f1xx_hal_uart.h │ │ └── Src │ │ ├── stm32f1xx_hal.c │ │ ├── stm32f1xx_hal_adc.c │ │ ├── stm32f1xx_hal_adc_ex.c │ │ ├── stm32f1xx_hal_can.c │ │ ├── stm32f1xx_hal_cortex.c │ │ ├── stm32f1xx_hal_dma.c │ │ ├── stm32f1xx_hal_exti.c │ │ ├── stm32f1xx_hal_flash.c │ │ ├── stm32f1xx_hal_flash_ex.c │ │ ├── stm32f1xx_hal_gpio.c │ │ ├── stm32f1xx_hal_gpio_ex.c │ │ ├── stm32f1xx_hal_pwr.c │ │ ├── stm32f1xx_hal_rcc.c │ │ ├── stm32f1xx_hal_rcc_ex.c │ │ ├── stm32f1xx_hal_spi.c │ │ ├── stm32f1xx_hal_tim.c │ │ ├── stm32f1xx_hal_tim_ex.c │ │ └── stm32f1xx_hal_uart.c │ ├── Port │ ├── Platform │ │ ├── Memory │ │ │ ├── eeprom_interface.h │ │ │ ├── emulated_eeprom.cpp │ │ │ ├── emulated_eeprom.h │ │ │ ├── stockpile_config.h │ │ │ ├── stockpile_f103cb.c │ │ │ └── stockpile_f103cb.h │ │ ├── Utils │ │ │ ├── st_hardware.c │ │ │ └── st_hardware.h │ │ ├── retarget.c │ │ └── retarget.h │ ├── button_stm32.cpp │ ├── button_stm32.h │ ├── encoder_calibrator_stm32.cpp │ ├── encoder_calibrator_stm32.h │ ├── led_stm32.cpp │ ├── led_stm32.h │ ├── masterSyncer_stm32.cpp │ ├── masterSyncer_stm32.h │ ├── mt6816_stm32.cpp │ ├── mt6816_stm32.h │ ├── tb67h450_stm32.cpp │ └── tb67h450_stm32.h │ ├── README.md │ ├── STM32F103CBTx_FLASH.ld │ ├── UserApp │ ├── common_inc.h │ ├── configurations.h │ ├── main.cpp │ └── protocols │ │ ├── interface_can.cpp │ │ └── interface_uart.cpp │ ├── startup │ └── startup_stm32f103xb.s │ └── stlink.cfg ├── Hardware ├── BaseCtrl │ ├── BaseController.PrjPcb │ ├── BaseController.PrjPcbStructure │ ├── CAN-POWER-B2B.SchDoc │ ├── ESP32.SchDoc │ ├── Ethernet-PHY.SchDoc │ ├── PCB2.PcbDoc │ ├── PcbLib1.PcbLib │ ├── Power.SchDoc │ ├── Project Outputs for BaseController │ │ ├── Design Rule Check - PCB2.drc │ │ ├── Design Rule Check - PCB2.html │ │ ├── PCB2-RoundHoles.TXT │ │ ├── PCB2-SlotHoles.TXT │ │ ├── PCB2-macro.APR_LIB │ │ ├── PCB2.DRR │ │ ├── PCB2.EXTREP │ │ ├── PCB2.G1 │ │ ├── PCB2.G2 │ │ ├── PCB2.GBL │ │ ├── PCB2.GBO │ │ ├── PCB2.GBP │ │ ├── PCB2.GBS │ │ ├── PCB2.GD1 │ │ ├── PCB2.GG1 │ │ ├── PCB2.GKO │ │ ├── PCB2.GM │ │ ├── PCB2.GM1 │ │ ├── PCB2.GM13 │ │ ├── PCB2.GM15 │ │ ├── PCB2.GM16 │ │ ├── PCB2.GM2 │ │ ├── PCB2.GM20 │ │ ├── PCB2.GM21 │ │ ├── PCB2.GM23 │ │ ├── PCB2.GM24 │ │ ├── PCB2.GM5 │ │ ├── PCB2.GPB │ │ ├── PCB2.GPT │ │ ├── PCB2.GTL │ │ ├── PCB2.GTO │ │ ├── PCB2.GTP │ │ ├── PCB2.GTS │ │ ├── PCB2.LDP │ │ ├── PCB2.REP │ │ ├── PCB2.apr │ │ ├── QT3-BaseCtrl.zip │ │ └── Status Report.Txt │ ├── Schlib1.SchLib │ └── USB-PROG-UART.SchDoc └── StepperCtrl │ ├── Drive.SchDoc │ ├── Interface.SchDoc │ ├── MCU.SchDoc │ ├── Motor-42.PcbDoc │ ├── Motor-42.PrjPCB │ ├── Motor-42.PrjPCBStructure │ ├── Port.SchDoc │ ├── Power.SchDoc │ ├── Project Outputs for Motor-42 │ ├── Design Rule Check - Motor-42.drc │ ├── Design Rule Check - Motor-42.html │ ├── Motor-42-macro.APR_LIB │ ├── Motor-42.DRR │ ├── Motor-42.EXTREP │ ├── Motor-42.G1 │ ├── Motor-42.G2 │ ├── Motor-42.GBL │ ├── Motor-42.GBO │ ├── Motor-42.GBP │ ├── Motor-42.GBS │ ├── Motor-42.GD1 │ ├── Motor-42.GG1 │ ├── Motor-42.GKO │ ├── Motor-42.GM │ ├── Motor-42.GM1 │ ├── Motor-42.GM10 │ ├── Motor-42.GM12 │ ├── Motor-42.GM13 │ ├── Motor-42.GM14 │ ├── Motor-42.GM15 │ ├── Motor-42.GM16 │ ├── Motor-42.GM20 │ ├── Motor-42.GM21 │ ├── Motor-42.GM23 │ ├── Motor-42.GM24 │ ├── Motor-42.GM3 │ ├── Motor-42.GM4 │ ├── Motor-42.GM5 │ ├── Motor-42.GPB │ ├── Motor-42.GPT │ ├── Motor-42.GTL │ ├── Motor-42.GTO │ ├── Motor-42.GTP │ ├── Motor-42.GTS │ ├── Motor-42.LDP │ ├── Motor-42.REP │ ├── Motor-42.RUL │ ├── Motor-42.TXT │ ├── Motor-42.apr │ ├── Status Report.Txt │ └── motor-42-v3-gerber.zip │ └── README.md ├── Model └── QT3 v552.f3z ├── README.md ├── Software ├── assets │ └── QT3-v5_mesh_color_v8.obj ├── css │ ├── 3d_viewer.css │ ├── CentralWindow.css │ ├── EndEffectorInfo.css │ ├── KeyframeEditor.css │ ├── LineChart.css │ ├── LinearSlider.css │ ├── ResizableTable.css │ ├── Select.css │ ├── Slider.css │ ├── Tab.css │ ├── TrackballControlsGizmo.css │ ├── UserModeHelper.css │ ├── ViewCube.css │ ├── Window.css │ └── WorkSpaceSphereCtrl.css ├── images │ ├── CALIBRATE.png │ ├── PHY2VIR.png │ ├── VIR.png │ ├── VIR2PHY.png │ └── image-edit.pptx ├── index.html ├── js │ ├── html2canvas │ │ ├── html2canvas.esm.js │ │ ├── html2canvas.esm.js.map │ │ ├── html2canvas.js │ │ ├── html2canvas.js.map │ │ ├── html2canvas.min.js │ │ ├── lib │ │ │ ├── __tests__ │ │ │ │ ├── index.js │ │ │ │ └── index.js.map │ │ │ ├── core │ │ │ │ ├── __mocks__ │ │ │ │ │ ├── cache-storage.js │ │ │ │ │ ├── cache-storage.js.map │ │ │ │ │ ├── context.js │ │ │ │ │ ├── context.js.map │ │ │ │ │ ├── features.js │ │ │ │ │ ├── features.js.map │ │ │ │ │ ├── logger.js │ │ │ │ │ └── logger.js.map │ │ │ │ ├── __tests__ │ │ │ │ │ ├── cache-storage.js │ │ │ │ │ ├── cache-storage.js.map │ │ │ │ │ ├── logger.js │ │ │ │ │ └── logger.js.map │ │ │ │ ├── bitwise.js │ │ │ │ ├── bitwise.js.map │ │ │ │ ├── cache-storage.js │ │ │ │ ├── cache-storage.js.map │ │ │ │ ├── context.js │ │ │ │ ├── context.js.map │ │ │ │ ├── debugger.js │ │ │ │ ├── debugger.js.map │ │ │ │ ├── features.js │ │ │ │ ├── features.js.map │ │ │ │ ├── logger.js │ │ │ │ ├── logger.js.map │ │ │ │ ├── util.js │ │ │ │ └── util.js.map │ │ │ ├── css │ │ │ │ ├── IPropertyDescriptor.js │ │ │ │ ├── IPropertyDescriptor.js.map │ │ │ │ ├── ITypeDescriptor.js │ │ │ │ ├── ITypeDescriptor.js.map │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ ├── layout │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ ├── bounds.js │ │ │ │ │ │ └── bounds.js.map │ │ │ │ │ ├── bounds.js │ │ │ │ │ ├── bounds.js.map │ │ │ │ │ ├── text.js │ │ │ │ │ └── text.js.map │ │ │ │ ├── property-descriptors │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── background-tests.js │ │ │ │ │ │ ├── background-tests.js.map │ │ │ │ │ │ ├── font-family.js │ │ │ │ │ │ ├── font-family.js.map │ │ │ │ │ │ ├── paint-order.js │ │ │ │ │ │ ├── paint-order.js.map │ │ │ │ │ │ ├── text-shadow.js │ │ │ │ │ │ ├── text-shadow.js.map │ │ │ │ │ │ ├── transform-tests.js │ │ │ │ │ │ └── transform-tests.js.map │ │ │ │ │ ├── background-clip.js │ │ │ │ │ ├── background-clip.js.map │ │ │ │ │ ├── background-color.js │ │ │ │ │ ├── background-color.js.map │ │ │ │ │ ├── background-image.js │ │ │ │ │ ├── background-image.js.map │ │ │ │ │ ├── background-origin.js │ │ │ │ │ ├── background-origin.js.map │ │ │ │ │ ├── background-position.js │ │ │ │ │ ├── background-position.js.map │ │ │ │ │ ├── background-repeat.js │ │ │ │ │ ├── background-repeat.js.map │ │ │ │ │ ├── background-size.js │ │ │ │ │ ├── background-size.js.map │ │ │ │ │ ├── border-color.js │ │ │ │ │ ├── border-color.js.map │ │ │ │ │ ├── border-radius.js │ │ │ │ │ ├── border-radius.js.map │ │ │ │ │ ├── border-style.js │ │ │ │ │ ├── border-style.js.map │ │ │ │ │ ├── border-width.js │ │ │ │ │ ├── border-width.js.map │ │ │ │ │ ├── box-shadow.js │ │ │ │ │ ├── box-shadow.js.map │ │ │ │ │ ├── color.js │ │ │ │ │ ├── color.js.map │ │ │ │ │ ├── content.js │ │ │ │ │ ├── content.js.map │ │ │ │ │ ├── counter-increment.js │ │ │ │ │ ├── counter-increment.js.map │ │ │ │ │ ├── counter-reset.js │ │ │ │ │ ├── counter-reset.js.map │ │ │ │ │ ├── direction.js │ │ │ │ │ ├── direction.js.map │ │ │ │ │ ├── display.js │ │ │ │ │ ├── display.js.map │ │ │ │ │ ├── duration.js │ │ │ │ │ ├── duration.js.map │ │ │ │ │ ├── float.js │ │ │ │ │ ├── float.js.map │ │ │ │ │ ├── font-family.js │ │ │ │ │ ├── font-family.js.map │ │ │ │ │ ├── font-size.js │ │ │ │ │ ├── font-size.js.map │ │ │ │ │ ├── font-style.js │ │ │ │ │ ├── font-style.js.map │ │ │ │ │ ├── font-variant.js │ │ │ │ │ ├── font-variant.js.map │ │ │ │ │ ├── font-weight.js │ │ │ │ │ ├── font-weight.js.map │ │ │ │ │ ├── letter-spacing.js │ │ │ │ │ ├── letter-spacing.js.map │ │ │ │ │ ├── line-break.js │ │ │ │ │ ├── line-break.js.map │ │ │ │ │ ├── line-height.js │ │ │ │ │ ├── line-height.js.map │ │ │ │ │ ├── list-style-image.js │ │ │ │ │ ├── list-style-image.js.map │ │ │ │ │ ├── list-style-position.js │ │ │ │ │ ├── list-style-position.js.map │ │ │ │ │ ├── list-style-type.js │ │ │ │ │ ├── list-style-type.js.map │ │ │ │ │ ├── margin.js │ │ │ │ │ ├── margin.js.map │ │ │ │ │ ├── opacity.js │ │ │ │ │ ├── opacity.js.map │ │ │ │ │ ├── overflow-wrap.js │ │ │ │ │ ├── overflow-wrap.js.map │ │ │ │ │ ├── overflow.js │ │ │ │ │ ├── overflow.js.map │ │ │ │ │ ├── padding.js │ │ │ │ │ ├── padding.js.map │ │ │ │ │ ├── paint-order.js │ │ │ │ │ ├── paint-order.js.map │ │ │ │ │ ├── position.js │ │ │ │ │ ├── position.js.map │ │ │ │ │ ├── quotes.js │ │ │ │ │ ├── quotes.js.map │ │ │ │ │ ├── text-align.js │ │ │ │ │ ├── text-align.js.map │ │ │ │ │ ├── text-decoration-color.js │ │ │ │ │ ├── text-decoration-color.js.map │ │ │ │ │ ├── text-decoration-line.js │ │ │ │ │ ├── text-decoration-line.js.map │ │ │ │ │ ├── text-shadow.js │ │ │ │ │ ├── text-shadow.js.map │ │ │ │ │ ├── text-transform.js │ │ │ │ │ ├── text-transform.js.map │ │ │ │ │ ├── transform-origin.js │ │ │ │ │ ├── transform-origin.js.map │ │ │ │ │ ├── transform.js │ │ │ │ │ ├── transform.js.map │ │ │ │ │ ├── visibility.js │ │ │ │ │ ├── visibility.js.map │ │ │ │ │ ├── webkit-text-stroke-color.js │ │ │ │ │ ├── webkit-text-stroke-color.js.map │ │ │ │ │ ├── webkit-text-stroke-width.js │ │ │ │ │ ├── webkit-text-stroke-width.js.map │ │ │ │ │ ├── word-break.js │ │ │ │ │ ├── word-break.js.map │ │ │ │ │ ├── z-index.js │ │ │ │ │ └── z-index.js.map │ │ │ │ ├── syntax │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── tokernizer-tests.js │ │ │ │ │ │ └── tokernizer-tests.js.map │ │ │ │ │ ├── parser.js │ │ │ │ │ ├── parser.js.map │ │ │ │ │ ├── tokenizer.js │ │ │ │ │ └── tokenizer.js.map │ │ │ │ └── types │ │ │ │ │ ├── __tests__ │ │ │ │ │ ├── color-tests.js │ │ │ │ │ ├── color-tests.js.map │ │ │ │ │ ├── image-tests.js │ │ │ │ │ └── image-tests.js.map │ │ │ │ │ ├── angle.js │ │ │ │ │ ├── angle.js.map │ │ │ │ │ ├── color.js │ │ │ │ │ ├── color.js.map │ │ │ │ │ ├── functions │ │ │ │ │ ├── -prefix-linear-gradient.js │ │ │ │ │ ├── -prefix-linear-gradient.js.map │ │ │ │ │ ├── -prefix-radial-gradient.js │ │ │ │ │ ├── -prefix-radial-gradient.js.map │ │ │ │ │ ├── -webkit-gradient.js │ │ │ │ │ ├── -webkit-gradient.js.map │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── radial-gradient.js │ │ │ │ │ │ └── radial-gradient.js.map │ │ │ │ │ ├── counter.js │ │ │ │ │ ├── counter.js.map │ │ │ │ │ ├── gradient.js │ │ │ │ │ ├── gradient.js.map │ │ │ │ │ ├── linear-gradient.js │ │ │ │ │ ├── linear-gradient.js.map │ │ │ │ │ ├── radial-gradient.js │ │ │ │ │ └── radial-gradient.js.map │ │ │ │ │ ├── image.js │ │ │ │ │ ├── image.js.map │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ ├── length-percentage.js │ │ │ │ │ ├── length-percentage.js.map │ │ │ │ │ ├── length.js │ │ │ │ │ ├── length.js.map │ │ │ │ │ ├── time.js │ │ │ │ │ └── time.js.map │ │ │ ├── dom │ │ │ │ ├── __mocks__ │ │ │ │ │ ├── document-cloner.js │ │ │ │ │ └── document-cloner.js.map │ │ │ │ ├── document-cloner.js │ │ │ │ ├── document-cloner.js.map │ │ │ │ ├── element-container.js │ │ │ │ ├── element-container.js.map │ │ │ │ ├── elements │ │ │ │ │ ├── li-element-container.js │ │ │ │ │ ├── li-element-container.js.map │ │ │ │ │ ├── ol-element-container.js │ │ │ │ │ ├── ol-element-container.js.map │ │ │ │ │ ├── select-element-container.js │ │ │ │ │ ├── select-element-container.js.map │ │ │ │ │ ├── textarea-element-container.js │ │ │ │ │ └── textarea-element-container.js.map │ │ │ │ ├── node-parser.js │ │ │ │ ├── node-parser.js.map │ │ │ │ ├── replaced-elements │ │ │ │ │ ├── canvas-element-container.js │ │ │ │ │ ├── canvas-element-container.js.map │ │ │ │ │ ├── iframe-element-container.js │ │ │ │ │ ├── iframe-element-container.js.map │ │ │ │ │ ├── image-element-container.js │ │ │ │ │ ├── image-element-container.js.map │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ ├── input-element-container.js │ │ │ │ │ ├── input-element-container.js.map │ │ │ │ │ ├── pseudo-elements.js │ │ │ │ │ ├── pseudo-elements.js.map │ │ │ │ │ ├── svg-element-container.js │ │ │ │ │ └── svg-element-container.js.map │ │ │ │ ├── text-container.js │ │ │ │ └── text-container.js.map │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ ├── invariant.js │ │ │ ├── invariant.js.map │ │ │ └── render │ │ │ │ ├── background.js │ │ │ │ ├── background.js.map │ │ │ │ ├── bezier-curve.js │ │ │ │ ├── bezier-curve.js.map │ │ │ │ ├── border.js │ │ │ │ ├── border.js.map │ │ │ │ ├── bound-curves.js │ │ │ │ ├── bound-curves.js.map │ │ │ │ ├── box-sizing.js │ │ │ │ ├── box-sizing.js.map │ │ │ │ ├── canvas │ │ │ │ ├── canvas-renderer.js │ │ │ │ ├── canvas-renderer.js.map │ │ │ │ ├── foreignobject-renderer.js │ │ │ │ └── foreignobject-renderer.js.map │ │ │ │ ├── effects.js │ │ │ │ ├── effects.js.map │ │ │ │ ├── font-metrics.js │ │ │ │ ├── font-metrics.js.map │ │ │ │ ├── path.js │ │ │ │ ├── path.js.map │ │ │ │ ├── renderer.js │ │ │ │ ├── renderer.js.map │ │ │ │ ├── stacking-context.js │ │ │ │ ├── stacking-context.js.map │ │ │ │ ├── vector.js │ │ │ │ └── vector.js.map │ │ └── types │ │ │ ├── __tests__ │ │ │ └── index.d.ts │ │ │ ├── core │ │ │ ├── __mocks__ │ │ │ │ ├── cache-storage.d.ts │ │ │ │ ├── context.d.ts │ │ │ │ ├── features.d.ts │ │ │ │ └── logger.d.ts │ │ │ ├── __tests__ │ │ │ │ ├── cache-storage.d.ts │ │ │ │ └── logger.d.ts │ │ │ ├── bitwise.d.ts │ │ │ ├── cache-storage.d.ts │ │ │ ├── context.d.ts │ │ │ ├── debugger.d.ts │ │ │ ├── features.d.ts │ │ │ ├── logger.d.ts │ │ │ └── util.d.ts │ │ │ ├── css │ │ │ ├── IPropertyDescriptor.d.ts │ │ │ ├── ITypeDescriptor.d.ts │ │ │ ├── index.d.ts │ │ │ ├── layout │ │ │ │ ├── __mocks__ │ │ │ │ │ └── bounds.d.ts │ │ │ │ ├── bounds.d.ts │ │ │ │ └── text.d.ts │ │ │ ├── property-descriptors │ │ │ │ ├── __tests__ │ │ │ │ │ ├── background-tests.d.ts │ │ │ │ │ ├── font-family.d.ts │ │ │ │ │ ├── paint-order.d.ts │ │ │ │ │ ├── text-shadow.d.ts │ │ │ │ │ └── transform-tests.d.ts │ │ │ │ ├── background-clip.d.ts │ │ │ │ ├── background-color.d.ts │ │ │ │ ├── background-image.d.ts │ │ │ │ ├── background-origin.d.ts │ │ │ │ ├── background-position.d.ts │ │ │ │ ├── background-repeat.d.ts │ │ │ │ ├── background-size.d.ts │ │ │ │ ├── border-color.d.ts │ │ │ │ ├── border-radius.d.ts │ │ │ │ ├── border-style.d.ts │ │ │ │ ├── border-width.d.ts │ │ │ │ ├── box-shadow.d.ts │ │ │ │ ├── color.d.ts │ │ │ │ ├── content.d.ts │ │ │ │ ├── counter-increment.d.ts │ │ │ │ ├── counter-reset.d.ts │ │ │ │ ├── direction.d.ts │ │ │ │ ├── display.d.ts │ │ │ │ ├── duration.d.ts │ │ │ │ ├── float.d.ts │ │ │ │ ├── font-family.d.ts │ │ │ │ ├── font-size.d.ts │ │ │ │ ├── font-style.d.ts │ │ │ │ ├── font-variant.d.ts │ │ │ │ ├── font-weight.d.ts │ │ │ │ ├── letter-spacing.d.ts │ │ │ │ ├── line-break.d.ts │ │ │ │ ├── line-height.d.ts │ │ │ │ ├── list-style-image.d.ts │ │ │ │ ├── list-style-position.d.ts │ │ │ │ ├── list-style-type.d.ts │ │ │ │ ├── margin.d.ts │ │ │ │ ├── opacity.d.ts │ │ │ │ ├── overflow-wrap.d.ts │ │ │ │ ├── overflow.d.ts │ │ │ │ ├── padding.d.ts │ │ │ │ ├── paint-order.d.ts │ │ │ │ ├── position.d.ts │ │ │ │ ├── quotes.d.ts │ │ │ │ ├── text-align.d.ts │ │ │ │ ├── text-decoration-color.d.ts │ │ │ │ ├── text-decoration-line.d.ts │ │ │ │ ├── text-shadow.d.ts │ │ │ │ ├── text-transform.d.ts │ │ │ │ ├── transform-origin.d.ts │ │ │ │ ├── transform.d.ts │ │ │ │ ├── visibility.d.ts │ │ │ │ ├── webkit-text-stroke-color.d.ts │ │ │ │ ├── webkit-text-stroke-width.d.ts │ │ │ │ ├── word-break.d.ts │ │ │ │ └── z-index.d.ts │ │ │ ├── syntax │ │ │ │ ├── __tests__ │ │ │ │ │ └── tokernizer-tests.d.ts │ │ │ │ ├── parser.d.ts │ │ │ │ └── tokenizer.d.ts │ │ │ └── types │ │ │ │ ├── __tests__ │ │ │ │ ├── color-tests.d.ts │ │ │ │ └── image-tests.d.ts │ │ │ │ ├── angle.d.ts │ │ │ │ ├── color.d.ts │ │ │ │ ├── functions │ │ │ │ ├── -prefix-linear-gradient.d.ts │ │ │ │ ├── -prefix-radial-gradient.d.ts │ │ │ │ ├── -webkit-gradient.d.ts │ │ │ │ ├── __tests__ │ │ │ │ │ └── radial-gradient.d.ts │ │ │ │ ├── counter.d.ts │ │ │ │ ├── gradient.d.ts │ │ │ │ ├── linear-gradient.d.ts │ │ │ │ └── radial-gradient.d.ts │ │ │ │ ├── image.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ ├── length-percentage.d.ts │ │ │ │ ├── length.d.ts │ │ │ │ └── time.d.ts │ │ │ ├── dom │ │ │ ├── __mocks__ │ │ │ │ └── document-cloner.d.ts │ │ │ ├── document-cloner.d.ts │ │ │ ├── element-container.d.ts │ │ │ ├── elements │ │ │ │ ├── li-element-container.d.ts │ │ │ │ ├── ol-element-container.d.ts │ │ │ │ ├── select-element-container.d.ts │ │ │ │ └── textarea-element-container.d.ts │ │ │ ├── node-parser.d.ts │ │ │ ├── replaced-elements │ │ │ │ ├── canvas-element-container.d.ts │ │ │ │ ├── iframe-element-container.d.ts │ │ │ │ ├── image-element-container.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ ├── input-element-container.d.ts │ │ │ │ ├── pseudo-elements.d.ts │ │ │ │ └── svg-element-container.d.ts │ │ │ └── text-container.d.ts │ │ │ ├── index.d.ts │ │ │ ├── invariant.d.ts │ │ │ └── render │ │ │ ├── background.d.ts │ │ │ ├── bezier-curve.d.ts │ │ │ ├── border.d.ts │ │ │ ├── bound-curves.d.ts │ │ │ ├── box-sizing.d.ts │ │ │ ├── canvas │ │ │ ├── canvas-renderer.d.ts │ │ │ └── foreignobject-renderer.d.ts │ │ │ ├── effects.d.ts │ │ │ ├── font-metrics.d.ts │ │ │ ├── path.d.ts │ │ │ ├── renderer.d.ts │ │ │ ├── stacking-context.d.ts │ │ │ └── vector.d.ts │ ├── qt3_lib │ │ ├── ESP32Driver.js │ │ ├── KeyFrameEditor.js │ │ ├── QT3.js │ │ ├── QT3phy.js │ │ ├── QT3vir.js │ │ ├── ResizableTable.js │ │ ├── SliderCtrl.js │ │ ├── TabHelper.js │ │ ├── TransformCtrl.js │ │ ├── Tween.js │ │ ├── UserModeHelper.js │ │ ├── ViewCube.js │ │ ├── WorkSpaceSphereCtrl.js │ │ └── ws_data.js │ └── threejs │ │ ├── build │ │ ├── three.cjs │ │ ├── three.module.js │ │ └── three.module.min.js │ │ └── jsm │ │ ├── controls │ │ ├── OrbitControls.js │ │ ├── TrackballControls.js │ │ └── TransformControls.js │ │ ├── curves │ │ └── CurveExtras.js │ │ ├── libs │ │ ├── lil-gui.module.min.js │ │ ├── stats.module.js │ │ └── tween.module.js │ │ ├── loaders │ │ ├── GLTFLoader.js │ │ └── OBJLoader.js │ │ ├── renderers │ │ └── CSS3DRenderer.js │ │ └── utils │ │ ├── BufferGeometryUtils.js │ │ └── SkeletonUtils.js └── start_server.bat ├── Utils ├── python_http_cors_server.py └── webpage2string.py ├── gitinit.sh ├── monitor_esp32.bat ├── run_esp32.bat └── syncrepo.sh /Docs/images/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Docs/images/dashboard.png -------------------------------------------------------------------------------- /Docs/images/open-esp-idf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Docs/images/open-esp-idf.png -------------------------------------------------------------------------------- /Docs/images/pc-ip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Docs/images/pc-ip.png -------------------------------------------------------------------------------- /Docs/images/robot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Docs/images/robot.png -------------------------------------------------------------------------------- /Docs/images/server-ip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Docs/images/server-ip.png -------------------------------------------------------------------------------- /Docs/images/wifi-cfg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Docs/images/wifi-cfg.png -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/CMakeLists.txt -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/.bin_timestamp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/.bin_timestamp -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/.ninja_deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/.ninja_deps -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/.ninja_log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/.ninja_log -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/CMakeCache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/CMakeCache.txt -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/CMakeFiles/3.24.0/CMakeSystem.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/CMakeFiles/3.24.0/CMakeSystem.cmake -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/CMakeFiles/3.24.0/CompilerIdC/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/CMakeFiles/3.24.0/CompilerIdC/a.out -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/CMakeFiles/CMakeOutput.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/CMakeFiles/CMakeOutput.log -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/CMakeFiles/TargetDirectories.txt -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/CMakeFiles/bootloader-complete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/CMakeFiles/clean_additional.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/CMakeFiles/clean_additional.cmake -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/CMakeFiles/cmake.check_cache -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/CMakeFiles/git-data/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/master 2 | -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/CMakeFiles/git-data/grabRef.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/CMakeFiles/git-data/grabRef.cmake -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/CMakeFiles/git-data/head-ref: -------------------------------------------------------------------------------- 1 | 1e20e1b53f5527d50b891b2f813e0460276f7508 2 | -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/CMakeFiles/rules.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/CMakeFiles/rules.ninja -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/QT3WebPageServer.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/QT3WebPageServer.bin -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/QT3WebPageServer.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/QT3WebPageServer.elf -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/QT3WebPageServer.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/QT3WebPageServer.map -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/app-flash_args: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/app-flash_args -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/bootloader-flash_args: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/bootloader-flash_args -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/bootloader-prefix/src/bootloader-stamp/bootloader-done: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/bootloader-prefix/src/bootloader-stamp/bootloader-download: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/bootloader-prefix/src/bootloader-stamp/bootloader-install: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/bootloader-prefix/src/bootloader-stamp/bootloader-update: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/bootloader/.bin_timestamp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/bootloader/.bin_timestamp -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/bootloader/.ninja_deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/bootloader/.ninja_deps -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/bootloader/.ninja_log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/bootloader/.ninja_log -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/bootloader/CMakeCache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/bootloader/CMakeCache.txt -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/bootloader/CMakeFiles/git-data/HEAD: -------------------------------------------------------------------------------- 1 | cbce221e88d52665523093b2b6dd0ebe3f1243f1 2 | -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/bootloader/CMakeFiles/git-data/head-ref: -------------------------------------------------------------------------------- 1 | cbce221e88d52665523093b2b6dd0ebe3f1243f1 2 | -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/bootloader/CMakeFiles/rules.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/bootloader/CMakeFiles/rules.ninja -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/bootloader/bootloader.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/bootloader/bootloader.bin -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/bootloader/bootloader.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/bootloader/bootloader.elf -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/bootloader/bootloader.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/bootloader/bootloader.map -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/bootloader/build.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/bootloader/build.ninja -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/bootloader/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/bootloader/cmake_install.cmake -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/bootloader/compile_commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/bootloader/compile_commands.json -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/bootloader/config.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/bootloader/config.env -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/bootloader/config/sdkconfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/bootloader/config/sdkconfig.cmake -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/bootloader/config/sdkconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/bootloader/config/sdkconfig.h -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/bootloader/config/sdkconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/bootloader/config/sdkconfig.json -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/bootloader/esp-idf/efuse/libefuse.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/bootloader/esp-idf/efuse/libefuse.a -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/bootloader/esp-idf/hal/libhal.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/bootloader/esp-idf/hal/libhal.a -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/bootloader/esp-idf/log/liblog.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/bootloader/esp-idf/log/liblog.a -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/bootloader/esp-idf/main/libmain.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/bootloader/esp-idf/main/libmain.a -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/bootloader/esp-idf/soc/libsoc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/bootloader/esp-idf/soc/libsoc.a -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/bootloader/kconfigs.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/bootloader/kconfigs.in -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/bootloader/kconfigs_projbuild.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/bootloader/kconfigs_projbuild.in -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/bootloader/project_description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/bootloader/project_description.json -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/bootloader/project_elf_src_esp32.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/build.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/build.ninja -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/cmake_install.cmake -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/compile_commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/compile_commands.json -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/config.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/config.env -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/config/kconfig_menus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/config/kconfig_menus.json -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/config/sdkconfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/config/sdkconfig.cmake -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/config/sdkconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/config/sdkconfig.h -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/config/sdkconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/config/sdkconfig.json -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/app_trace/libapp_trace.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/app_trace/libapp_trace.a -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/app_update/libapp_update.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/app_update/libapp_update.a -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/bt/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/bt/cmake_install.cmake -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/cmake_install.cmake -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/cmock/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/cmock/cmake_install.cmake -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/cmock/libcmock.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/cmock/libcmock.a -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/console/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/console/cmake_install.cmake -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/console/libconsole.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/console/libconsole.a -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/cxx/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/cxx/cmake_install.cmake -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/cxx/libcxx.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/cxx/libcxx.a -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/driver/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/driver/cmake_install.cmake -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/driver/libdriver.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/driver/libdriver.a -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/efuse/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/efuse/cmake_install.cmake -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/efuse/libefuse.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/efuse/libefuse.a -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/esp-tls/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/esp-tls/cmake_install.cmake -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/esp-tls/libesp-tls.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/esp-tls/libesp-tls.a -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/esp_adc/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/esp_adc/cmake_install.cmake -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/esp_adc/libesp_adc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/esp_adc/libesp_adc.a -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/esp_coex/libesp_coex.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/esp_coex/libesp_coex.a -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/esp_common/libesp_common.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/esp_common/libesp_common.a -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/esp_eth/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/esp_eth/cmake_install.cmake -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/esp_eth/libesp_eth.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/esp_eth/libesp_eth.a -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/esp_event/libesp_event.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/esp_event/libesp_event.a -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/esp_hid/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/esp_hid/cmake_install.cmake -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/esp_hid/libesp_hid.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/esp_hid/libesp_hid.a -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/esp_lcd/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/esp_lcd/cmake_install.cmake -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/esp_lcd/libesp_lcd.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/esp_lcd/libesp_lcd.a -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/esp_mm/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/esp_mm/cmake_install.cmake -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/esp_mm/libesp_mm.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/esp_mm/libesp_mm.a -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/esp_netif/libesp_netif.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/esp_netif/libesp_netif.a -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/esp_phy/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/esp_phy/cmake_install.cmake -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/esp_phy/libesp_phy.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/esp_phy/libesp_phy.a -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/esp_pm/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/esp_pm/cmake_install.cmake -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/esp_pm/libesp_pm.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/esp_pm/libesp_pm.a -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/esp_rom/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/esp_rom/cmake_install.cmake -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/esp_rom/libesp_rom.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/esp_rom/libesp_rom.a -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/esp_system/ld/memory.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/esp_system/ld/memory.ld -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/esp_system/ld/sections.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/esp_system/ld/sections.ld -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/esp_system/libesp_system.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/esp_system/libesp_system.a -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/esp_timer/libesp_timer.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/esp_timer/libesp_timer.a -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/esp_wifi/libesp_wifi.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/esp_wifi/libesp_wifi.a -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/fatfs/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/fatfs/cmake_install.cmake -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/fatfs/libfatfs.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/fatfs/libfatfs.a -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/freertos/libfreertos.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/freertos/libfreertos.a -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/hal/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/hal/cmake_install.cmake -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/hal/libhal.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/hal/libhal.a -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/heap/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/heap/cmake_install.cmake -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/heap/libheap.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/heap/libheap.a -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/json/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/json/cmake_install.cmake -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/json/libjson.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/json/libjson.a -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/log/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/log/cmake_install.cmake -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/log/liblog.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/log/liblog.a -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/lwip/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/lwip/cmake_install.cmake -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/lwip/liblwip.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/lwip/liblwip.a -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/main/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/main/cmake_install.cmake -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/main/libmain.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/main/libmain.a -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/mbedtls/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/mbedtls/cmake_install.cmake -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/mbedtls/libmbedtls.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/mbedtls/libmbedtls.a -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/mbedtls/x509_crt_bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/mbedtls/x509_crt_bundle -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/mqtt/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/mqtt/cmake_install.cmake -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/mqtt/libmqtt.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/mqtt/libmqtt.a -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/newlib/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/newlib/cmake_install.cmake -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/newlib/libnewlib.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/newlib/libnewlib.a -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/nvs_flash/libnvs_flash.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/nvs_flash/libnvs_flash.a -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/perfmon/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/perfmon/cmake_install.cmake -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/perfmon/libperfmon.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/perfmon/libperfmon.a -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/protobuf-c/libprotobuf-c.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/protobuf-c/libprotobuf-c.a -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/protocomm/libprotocomm.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/protocomm/libprotocomm.a -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/pthread/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/pthread/cmake_install.cmake -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/pthread/libpthread.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/pthread/libpthread.a -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/sdmmc/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/sdmmc/cmake_install.cmake -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/sdmmc/libsdmmc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/sdmmc/libsdmmc.a -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/soc/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/soc/cmake_install.cmake -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/soc/libsoc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/soc/libsoc.a -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/spi_flash/libspi_flash.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/spi_flash/libspi_flash.a -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/spiffs/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/spiffs/cmake_install.cmake -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/spiffs/libspiffs.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/spiffs/libspiffs.a -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/ulp/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/ulp/cmake_install.cmake -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/unity/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/unity/cmake_install.cmake -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/unity/libunity.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/unity/libunity.a -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/usb/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/usb/cmake_install.cmake -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/vfs/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/vfs/cmake_install.cmake -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/vfs/libvfs.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/vfs/libvfs.a -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/esp-idf/xtensa/libxtensa.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/esp-idf/xtensa/libxtensa.a -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/flash_app_args: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/flash_app_args -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/flash_args: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/flash_args -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/flash_args.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/flash_args.in -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/flash_bootloader_args: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/flash_bootloader_args -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/flash_project_args: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/flash_project_args -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/flasher_args.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/flasher_args.json -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/kconfigs.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/kconfigs.in -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/kconfigs_projbuild.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/kconfigs_projbuild.in -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/ldgen_libraries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/ldgen_libraries -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/ldgen_libraries.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/ldgen_libraries.in -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/log/idf_py_stderr_output_12948: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/log/idf_py_stderr_output_17388: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/log/idf_py_stderr_output_18528: -------------------------------------------------------------------------------- 1 | Compiler supported targets: xtensa-esp32-elf 2 | 3 | -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/log/idf_py_stderr_output_18544: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/log/idf_py_stderr_output_18544 -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/log/idf_py_stderr_output_19976: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/log/idf_py_stderr_output_20240: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/log/idf_py_stderr_output_20464: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/log/idf_py_stdout_output_12948: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/log/idf_py_stdout_output_12948 -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/log/idf_py_stdout_output_17388: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/log/idf_py_stdout_output_17388 -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/log/idf_py_stdout_output_18528: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/log/idf_py_stdout_output_18528 -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/log/idf_py_stdout_output_18544: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/log/idf_py_stdout_output_18544 -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/log/idf_py_stdout_output_19976: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/log/idf_py_stdout_output_20240: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/log/idf_py_stdout_output_20240 -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/log/idf_py_stdout_output_20464: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/log/idf_py_stdout_output_20464 -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/partition-table-flash_args: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/partition-table-flash_args -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/project_description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/project_description.json -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/project_elf_src_esp32.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/build/x509_crt_bundle.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/build/x509_crt_bundle.S -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/main/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/main/.vscode/settings.json -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/main/CMakeLists.txt -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/main/Communication/CANCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/main/Communication/CANCtrl.cpp -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/main/Communication/CANCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/main/Communication/CANCtrl.h -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/main/Communication/WebPageServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/main/Communication/WebPageServer.cpp -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/main/Communication/WebPageServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/main/Communication/WebPageServer.h -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/main/Communication/interface_can.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/main/Communication/interface_can.cpp -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/main/Communication/interface_can.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/main/Communication/interface_can.h -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/main/Communication/web_page_content.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/main/Communication/web_page_content.h -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/main/Control/Motor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/main/Control/Motor.cpp -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/main/Control/Motor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/main/Control/Motor.h -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/main/Control/QT3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/main/Control/QT3.cpp -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/main/Control/QT3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/main/Control/QT3.h -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/main/Kconfig.projbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/main/Kconfig.projbuild -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/main/LowLevel/can.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/main/LowLevel/can.c -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/main/LowLevel/can.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/main/LowLevel/can.h -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/main/LowLevel/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/main/LowLevel/main.c -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/main/LowLevel/startServer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/main/LowLevel/startServer.c -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/main/LowLevel/startServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/main/LowLevel/startServer.cpp -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/main/LowLevel/startServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/main/LowLevel/startServer.h -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/main/UserApp/common_inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/main/UserApp/common_inc.h -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/main/UserApp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/main/UserApp/main.cpp -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/sdkconfig -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/sdkconfig.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/sdkconfig.old -------------------------------------------------------------------------------- /Firmware/esp32WifiWebpageServer/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/esp32WifiWebpageServer/src/CMakeLists.txt -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/.cproject -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/.gitignore: -------------------------------------------------------------------------------- 1 | cmake-build-*/ 2 | -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/.idea/.gitignore -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/.idea/.name: -------------------------------------------------------------------------------- 1 | Ctrl-Step-STM32-fw -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/.idea/Ctrl-Step-fw.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/.idea/Ctrl-Step-fw.iml -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/.idea/copyright/ctrl_step.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/.idea/copyright/ctrl_step.xml -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/.idea/deployment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/.idea/deployment.xml -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/.idea/encodings.xml -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/.idea/misc.xml -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/.idea/modules.xml -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/.idea/serialmonitor_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/.idea/serialmonitor_settings.xml -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/.idea/vcs.xml -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/.mxproject -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/.project -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/CMakeLists.txt -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/CMakeLists_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/CMakeLists_template.txt -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Core/Inc/adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Core/Inc/adc.h -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Core/Inc/can.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Core/Inc/can.h -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Core/Inc/dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Core/Inc/dma.h -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Core/Inc/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Core/Inc/gpio.h -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Core/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Core/Inc/main.h -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Core/Inc/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Core/Inc/spi.h -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Core/Inc/stm32f1xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Core/Inc/stm32f1xx_hal_conf.h -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Core/Inc/stm32f1xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Core/Inc/stm32f1xx_it.h -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Core/Inc/tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Core/Inc/tim.h -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Core/Inc/usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Core/Inc/usart.h -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Core/Src/adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Core/Src/adc.c -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Core/Src/can.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Core/Src/can.c -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Core/Src/dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Core/Src/dma.c -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Core/Src/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Core/Src/gpio.c -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Core/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Core/Src/main.c -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Core/Src/spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Core/Src/spi.c -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Core/Src/stm32f1xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Core/Src/stm32f1xx_hal_msp.c -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Core/Src/stm32f1xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Core/Src/stm32f1xx_it.c -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Core/Src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Core/Src/syscalls.c -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Core/Src/system_stm32f1xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Core/Src/system_stm32f1xx.c -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Core/Src/tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Core/Src/tim.c -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Core/Src/usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Core/Src/usart.c -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Ctrl-Step-fw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Ctrl-Step-fw.xml -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Ctrl/Driver/driver_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Ctrl/Driver/driver_base.h -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Ctrl/Driver/sin_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Ctrl/Driver/sin_map.h -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Ctrl/Driver/tb67h450_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Ctrl/Driver/tb67h450_base.cpp -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Ctrl/Driver/tb67h450_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Ctrl/Driver/tb67h450_base.h -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Ctrl/Motor/motion_planner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Ctrl/Motor/motion_planner.cpp -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Ctrl/Motor/motion_planner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Ctrl/Motor/motion_planner.h -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Ctrl/Motor/motor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Ctrl/Motor/motor.cpp -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Ctrl/Motor/motor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Ctrl/Motor/motor.h -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Ctrl/Sensor/Encoder/encoder_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Ctrl/Sensor/Encoder/encoder_base.h -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Ctrl/Sensor/Encoder/encoder_calibrator_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Ctrl/Sensor/Encoder/encoder_calibrator_base.h -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Ctrl/Sensor/Encoder/mt6816_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Ctrl/Sensor/Encoder/mt6816_base.cpp -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Ctrl/Sensor/Encoder/mt6816_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Ctrl/Sensor/Encoder/mt6816_base.h -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Ctrl/Signal/button_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Ctrl/Signal/button_base.cpp -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Ctrl/Signal/button_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Ctrl/Signal/button_base.h -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Ctrl/Signal/led_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Ctrl/Signal/led_base.cpp -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Ctrl/Signal/led_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Ctrl/Signal/led_base.h -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Drivers/CMSIS/Include/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Drivers/CMSIS/Include/cmsis_armcc.h -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Drivers/CMSIS/Include/cmsis_armclang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Drivers/CMSIS/Include/cmsis_armclang.h -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Drivers/CMSIS/Include/cmsis_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Drivers/CMSIS/Include/cmsis_compiler.h -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Drivers/CMSIS/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Drivers/CMSIS/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Drivers/CMSIS/Include/cmsis_iccarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Drivers/CMSIS/Include/cmsis_iccarm.h -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Drivers/CMSIS/Include/cmsis_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Drivers/CMSIS/Include/cmsis_version.h -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Drivers/CMSIS/Include/core_armv8mbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Drivers/CMSIS/Include/core_armv8mbl.h -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Drivers/CMSIS/Include/core_armv8mml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Drivers/CMSIS/Include/core_armv8mml.h -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Drivers/CMSIS/Include/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Drivers/CMSIS/Include/core_cm0.h -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Drivers/CMSIS/Include/core_cm0plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Drivers/CMSIS/Include/core_cm0plus.h -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Drivers/CMSIS/Include/core_cm1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Drivers/CMSIS/Include/core_cm1.h -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Drivers/CMSIS/Include/core_cm23.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Drivers/CMSIS/Include/core_cm23.h -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Drivers/CMSIS/Include/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Drivers/CMSIS/Include/core_cm3.h -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Drivers/CMSIS/Include/core_cm33.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Drivers/CMSIS/Include/core_cm33.h -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Drivers/CMSIS/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Drivers/CMSIS/Include/core_cm4.h -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Drivers/CMSIS/Include/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Drivers/CMSIS/Include/core_cm7.h -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Drivers/CMSIS/Include/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Drivers/CMSIS/Include/core_sc000.h -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Drivers/CMSIS/Include/core_sc300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Drivers/CMSIS/Include/core_sc300.h -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Drivers/CMSIS/Include/mpu_armv7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Drivers/CMSIS/Include/mpu_armv7.h -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Drivers/CMSIS/Include/mpu_armv8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Drivers/CMSIS/Include/mpu_armv8.h -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Drivers/CMSIS/Include/tz_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Drivers/CMSIS/Include/tz_context.h -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Port/Platform/Memory/eeprom_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Port/Platform/Memory/eeprom_interface.h -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Port/Platform/Memory/emulated_eeprom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Port/Platform/Memory/emulated_eeprom.cpp -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Port/Platform/Memory/emulated_eeprom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Port/Platform/Memory/emulated_eeprom.h -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Port/Platform/Memory/stockpile_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Port/Platform/Memory/stockpile_config.h -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Port/Platform/Memory/stockpile_f103cb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Port/Platform/Memory/stockpile_f103cb.c -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Port/Platform/Memory/stockpile_f103cb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Port/Platform/Memory/stockpile_f103cb.h -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Port/Platform/Utils/st_hardware.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Port/Platform/Utils/st_hardware.c -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Port/Platform/Utils/st_hardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Port/Platform/Utils/st_hardware.h -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Port/Platform/retarget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Port/Platform/retarget.c -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Port/Platform/retarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Port/Platform/retarget.h -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Port/button_stm32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Port/button_stm32.cpp -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Port/button_stm32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Port/button_stm32.h -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Port/encoder_calibrator_stm32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Port/encoder_calibrator_stm32.cpp -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Port/encoder_calibrator_stm32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Port/encoder_calibrator_stm32.h -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Port/led_stm32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Port/led_stm32.cpp -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Port/led_stm32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Port/led_stm32.h -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Port/masterSyncer_stm32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Port/masterSyncer_stm32.cpp -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Port/masterSyncer_stm32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Port/masterSyncer_stm32.h -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Port/mt6816_stm32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Port/mt6816_stm32.cpp -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Port/mt6816_stm32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Port/mt6816_stm32.h -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Port/tb67h450_stm32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Port/tb67h450_stm32.cpp -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/Port/tb67h450_stm32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/Port/tb67h450_stm32.h -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/README.md -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/STM32F103CBTx_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/STM32F103CBTx_FLASH.ld -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/UserApp/common_inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/UserApp/common_inc.h -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/UserApp/configurations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/UserApp/configurations.h -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/UserApp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/UserApp/main.cpp -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/UserApp/protocols/interface_can.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/UserApp/protocols/interface_can.cpp -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/UserApp/protocols/interface_uart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/UserApp/protocols/interface_uart.cpp -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/startup/startup_stm32f103xb.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/startup/startup_stm32f103xb.s -------------------------------------------------------------------------------- /Firmware/stm32StepperCtrl/stlink.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Firmware/stm32StepperCtrl/stlink.cfg -------------------------------------------------------------------------------- /Hardware/BaseCtrl/BaseController.PrjPcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/BaseCtrl/BaseController.PrjPcb -------------------------------------------------------------------------------- /Hardware/BaseCtrl/BaseController.PrjPcbStructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/BaseCtrl/BaseController.PrjPcbStructure -------------------------------------------------------------------------------- /Hardware/BaseCtrl/CAN-POWER-B2B.SchDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/BaseCtrl/CAN-POWER-B2B.SchDoc -------------------------------------------------------------------------------- /Hardware/BaseCtrl/ESP32.SchDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/BaseCtrl/ESP32.SchDoc -------------------------------------------------------------------------------- /Hardware/BaseCtrl/Ethernet-PHY.SchDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/BaseCtrl/Ethernet-PHY.SchDoc -------------------------------------------------------------------------------- /Hardware/BaseCtrl/PCB2.PcbDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/BaseCtrl/PCB2.PcbDoc -------------------------------------------------------------------------------- /Hardware/BaseCtrl/PcbLib1.PcbLib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/BaseCtrl/PcbLib1.PcbLib -------------------------------------------------------------------------------- /Hardware/BaseCtrl/Power.SchDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/BaseCtrl/Power.SchDoc -------------------------------------------------------------------------------- /Hardware/BaseCtrl/Project Outputs for BaseController/PCB2-SlotHoles.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/BaseCtrl/Project Outputs for BaseController/PCB2-SlotHoles.TXT -------------------------------------------------------------------------------- /Hardware/BaseCtrl/Project Outputs for BaseController/PCB2-macro.APR_LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/BaseCtrl/Project Outputs for BaseController/PCB2-macro.APR_LIB -------------------------------------------------------------------------------- /Hardware/BaseCtrl/Project Outputs for BaseController/PCB2.DRR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/BaseCtrl/Project Outputs for BaseController/PCB2.DRR -------------------------------------------------------------------------------- /Hardware/BaseCtrl/Project Outputs for BaseController/PCB2.EXTREP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/BaseCtrl/Project Outputs for BaseController/PCB2.EXTREP -------------------------------------------------------------------------------- /Hardware/BaseCtrl/Project Outputs for BaseController/PCB2.G1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/BaseCtrl/Project Outputs for BaseController/PCB2.G1 -------------------------------------------------------------------------------- /Hardware/BaseCtrl/Project Outputs for BaseController/PCB2.G2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/BaseCtrl/Project Outputs for BaseController/PCB2.G2 -------------------------------------------------------------------------------- /Hardware/BaseCtrl/Project Outputs for BaseController/PCB2.GBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/BaseCtrl/Project Outputs for BaseController/PCB2.GBL -------------------------------------------------------------------------------- /Hardware/BaseCtrl/Project Outputs for BaseController/PCB2.GBO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/BaseCtrl/Project Outputs for BaseController/PCB2.GBO -------------------------------------------------------------------------------- /Hardware/BaseCtrl/Project Outputs for BaseController/PCB2.GBP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/BaseCtrl/Project Outputs for BaseController/PCB2.GBP -------------------------------------------------------------------------------- /Hardware/BaseCtrl/Project Outputs for BaseController/PCB2.GBS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/BaseCtrl/Project Outputs for BaseController/PCB2.GBS -------------------------------------------------------------------------------- /Hardware/BaseCtrl/Project Outputs for BaseController/PCB2.GD1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/BaseCtrl/Project Outputs for BaseController/PCB2.GD1 -------------------------------------------------------------------------------- /Hardware/BaseCtrl/Project Outputs for BaseController/PCB2.GG1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/BaseCtrl/Project Outputs for BaseController/PCB2.GG1 -------------------------------------------------------------------------------- /Hardware/BaseCtrl/Project Outputs for BaseController/PCB2.GKO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/BaseCtrl/Project Outputs for BaseController/PCB2.GKO -------------------------------------------------------------------------------- /Hardware/BaseCtrl/Project Outputs for BaseController/PCB2.GM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/BaseCtrl/Project Outputs for BaseController/PCB2.GM -------------------------------------------------------------------------------- /Hardware/BaseCtrl/Project Outputs for BaseController/PCB2.GM1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/BaseCtrl/Project Outputs for BaseController/PCB2.GM1 -------------------------------------------------------------------------------- /Hardware/BaseCtrl/Project Outputs for BaseController/PCB2.GM13: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/BaseCtrl/Project Outputs for BaseController/PCB2.GM13 -------------------------------------------------------------------------------- /Hardware/BaseCtrl/Project Outputs for BaseController/PCB2.GM15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/BaseCtrl/Project Outputs for BaseController/PCB2.GM15 -------------------------------------------------------------------------------- /Hardware/BaseCtrl/Project Outputs for BaseController/PCB2.GM16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/BaseCtrl/Project Outputs for BaseController/PCB2.GM16 -------------------------------------------------------------------------------- /Hardware/BaseCtrl/Project Outputs for BaseController/PCB2.GM2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/BaseCtrl/Project Outputs for BaseController/PCB2.GM2 -------------------------------------------------------------------------------- /Hardware/BaseCtrl/Project Outputs for BaseController/PCB2.GM20: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/BaseCtrl/Project Outputs for BaseController/PCB2.GM20 -------------------------------------------------------------------------------- /Hardware/BaseCtrl/Project Outputs for BaseController/PCB2.GM21: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/BaseCtrl/Project Outputs for BaseController/PCB2.GM21 -------------------------------------------------------------------------------- /Hardware/BaseCtrl/Project Outputs for BaseController/PCB2.GM23: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/BaseCtrl/Project Outputs for BaseController/PCB2.GM23 -------------------------------------------------------------------------------- /Hardware/BaseCtrl/Project Outputs for BaseController/PCB2.GM24: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/BaseCtrl/Project Outputs for BaseController/PCB2.GM24 -------------------------------------------------------------------------------- /Hardware/BaseCtrl/Project Outputs for BaseController/PCB2.GM5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/BaseCtrl/Project Outputs for BaseController/PCB2.GM5 -------------------------------------------------------------------------------- /Hardware/BaseCtrl/Project Outputs for BaseController/PCB2.GPB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/BaseCtrl/Project Outputs for BaseController/PCB2.GPB -------------------------------------------------------------------------------- /Hardware/BaseCtrl/Project Outputs for BaseController/PCB2.GPT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/BaseCtrl/Project Outputs for BaseController/PCB2.GPT -------------------------------------------------------------------------------- /Hardware/BaseCtrl/Project Outputs for BaseController/PCB2.GTL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/BaseCtrl/Project Outputs for BaseController/PCB2.GTL -------------------------------------------------------------------------------- /Hardware/BaseCtrl/Project Outputs for BaseController/PCB2.GTO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/BaseCtrl/Project Outputs for BaseController/PCB2.GTO -------------------------------------------------------------------------------- /Hardware/BaseCtrl/Project Outputs for BaseController/PCB2.GTP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/BaseCtrl/Project Outputs for BaseController/PCB2.GTP -------------------------------------------------------------------------------- /Hardware/BaseCtrl/Project Outputs for BaseController/PCB2.GTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/BaseCtrl/Project Outputs for BaseController/PCB2.GTS -------------------------------------------------------------------------------- /Hardware/BaseCtrl/Project Outputs for BaseController/PCB2.LDP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/BaseCtrl/Project Outputs for BaseController/PCB2.LDP -------------------------------------------------------------------------------- /Hardware/BaseCtrl/Project Outputs for BaseController/PCB2.REP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/BaseCtrl/Project Outputs for BaseController/PCB2.REP -------------------------------------------------------------------------------- /Hardware/BaseCtrl/Project Outputs for BaseController/PCB2.apr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/BaseCtrl/Project Outputs for BaseController/PCB2.apr -------------------------------------------------------------------------------- /Hardware/BaseCtrl/Project Outputs for BaseController/QT3-BaseCtrl.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/BaseCtrl/Project Outputs for BaseController/QT3-BaseCtrl.zip -------------------------------------------------------------------------------- /Hardware/BaseCtrl/Project Outputs for BaseController/Status Report.Txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/BaseCtrl/Project Outputs for BaseController/Status Report.Txt -------------------------------------------------------------------------------- /Hardware/BaseCtrl/Schlib1.SchLib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/BaseCtrl/Schlib1.SchLib -------------------------------------------------------------------------------- /Hardware/BaseCtrl/USB-PROG-UART.SchDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/BaseCtrl/USB-PROG-UART.SchDoc -------------------------------------------------------------------------------- /Hardware/StepperCtrl/Drive.SchDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/StepperCtrl/Drive.SchDoc -------------------------------------------------------------------------------- /Hardware/StepperCtrl/Interface.SchDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/StepperCtrl/Interface.SchDoc -------------------------------------------------------------------------------- /Hardware/StepperCtrl/MCU.SchDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/StepperCtrl/MCU.SchDoc -------------------------------------------------------------------------------- /Hardware/StepperCtrl/Motor-42.PcbDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/StepperCtrl/Motor-42.PcbDoc -------------------------------------------------------------------------------- /Hardware/StepperCtrl/Motor-42.PrjPCB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/StepperCtrl/Motor-42.PrjPCB -------------------------------------------------------------------------------- /Hardware/StepperCtrl/Motor-42.PrjPCBStructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/StepperCtrl/Motor-42.PrjPCBStructure -------------------------------------------------------------------------------- /Hardware/StepperCtrl/Port.SchDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/StepperCtrl/Port.SchDoc -------------------------------------------------------------------------------- /Hardware/StepperCtrl/Power.SchDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/StepperCtrl/Power.SchDoc -------------------------------------------------------------------------------- /Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.DRR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.DRR -------------------------------------------------------------------------------- /Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.EXTREP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.EXTREP -------------------------------------------------------------------------------- /Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.G1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.G1 -------------------------------------------------------------------------------- /Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.G2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.G2 -------------------------------------------------------------------------------- /Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.GBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.GBL -------------------------------------------------------------------------------- /Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.GBO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.GBO -------------------------------------------------------------------------------- /Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.GBP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.GBP -------------------------------------------------------------------------------- /Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.GBS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.GBS -------------------------------------------------------------------------------- /Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.GD1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.GD1 -------------------------------------------------------------------------------- /Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.GG1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.GG1 -------------------------------------------------------------------------------- /Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.GKO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.GKO -------------------------------------------------------------------------------- /Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.GM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.GM -------------------------------------------------------------------------------- /Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.GM1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.GM1 -------------------------------------------------------------------------------- /Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.GM10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.GM10 -------------------------------------------------------------------------------- /Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.GM12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.GM12 -------------------------------------------------------------------------------- /Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.GM13: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.GM13 -------------------------------------------------------------------------------- /Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.GM14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.GM14 -------------------------------------------------------------------------------- /Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.GM15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.GM15 -------------------------------------------------------------------------------- /Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.GM16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.GM16 -------------------------------------------------------------------------------- /Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.GM20: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.GM20 -------------------------------------------------------------------------------- /Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.GM21: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.GM21 -------------------------------------------------------------------------------- /Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.GM23: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.GM23 -------------------------------------------------------------------------------- /Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.GM24: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.GM24 -------------------------------------------------------------------------------- /Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.GM3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.GM3 -------------------------------------------------------------------------------- /Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.GM4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.GM4 -------------------------------------------------------------------------------- /Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.GM5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.GM5 -------------------------------------------------------------------------------- /Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.GPB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.GPB -------------------------------------------------------------------------------- /Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.GPT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.GPT -------------------------------------------------------------------------------- /Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.GTL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.GTL -------------------------------------------------------------------------------- /Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.GTO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.GTO -------------------------------------------------------------------------------- /Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.GTP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.GTP -------------------------------------------------------------------------------- /Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.GTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.GTS -------------------------------------------------------------------------------- /Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.LDP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.LDP -------------------------------------------------------------------------------- /Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.REP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.REP -------------------------------------------------------------------------------- /Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.RUL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.RUL -------------------------------------------------------------------------------- /Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.TXT -------------------------------------------------------------------------------- /Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.apr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/StepperCtrl/Project Outputs for Motor-42/Motor-42.apr -------------------------------------------------------------------------------- /Hardware/StepperCtrl/Project Outputs for Motor-42/Status Report.Txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/StepperCtrl/Project Outputs for Motor-42/Status Report.Txt -------------------------------------------------------------------------------- /Hardware/StepperCtrl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Hardware/StepperCtrl/README.md -------------------------------------------------------------------------------- /Model/QT3 v552.f3z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Model/QT3 v552.f3z -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/README.md -------------------------------------------------------------------------------- /Software/assets/QT3-v5_mesh_color_v8.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/assets/QT3-v5_mesh_color_v8.obj -------------------------------------------------------------------------------- /Software/css/3d_viewer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/css/3d_viewer.css -------------------------------------------------------------------------------- /Software/css/CentralWindow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/css/CentralWindow.css -------------------------------------------------------------------------------- /Software/css/EndEffectorInfo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/css/EndEffectorInfo.css -------------------------------------------------------------------------------- /Software/css/KeyframeEditor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/css/KeyframeEditor.css -------------------------------------------------------------------------------- /Software/css/LineChart.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/css/LineChart.css -------------------------------------------------------------------------------- /Software/css/LinearSlider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/css/LinearSlider.css -------------------------------------------------------------------------------- /Software/css/ResizableTable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/css/ResizableTable.css -------------------------------------------------------------------------------- /Software/css/Select.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/css/Select.css -------------------------------------------------------------------------------- /Software/css/Slider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/css/Slider.css -------------------------------------------------------------------------------- /Software/css/Tab.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/css/Tab.css -------------------------------------------------------------------------------- /Software/css/TrackballControlsGizmo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/css/TrackballControlsGizmo.css -------------------------------------------------------------------------------- /Software/css/UserModeHelper.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/css/UserModeHelper.css -------------------------------------------------------------------------------- /Software/css/ViewCube.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/css/ViewCube.css -------------------------------------------------------------------------------- /Software/css/Window.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/css/Window.css -------------------------------------------------------------------------------- /Software/css/WorkSpaceSphereCtrl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/css/WorkSpaceSphereCtrl.css -------------------------------------------------------------------------------- /Software/images/CALIBRATE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/images/CALIBRATE.png -------------------------------------------------------------------------------- /Software/images/PHY2VIR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/images/PHY2VIR.png -------------------------------------------------------------------------------- /Software/images/VIR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/images/VIR.png -------------------------------------------------------------------------------- /Software/images/VIR2PHY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/images/VIR2PHY.png -------------------------------------------------------------------------------- /Software/images/image-edit.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/images/image-edit.pptx -------------------------------------------------------------------------------- /Software/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/index.html -------------------------------------------------------------------------------- /Software/js/html2canvas/html2canvas.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/html2canvas.esm.js -------------------------------------------------------------------------------- /Software/js/html2canvas/html2canvas.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/html2canvas.esm.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/html2canvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/html2canvas.js -------------------------------------------------------------------------------- /Software/js/html2canvas/html2canvas.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/html2canvas.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/html2canvas.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/html2canvas.min.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/__tests__/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/__tests__/index.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/__tests__/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/__tests__/index.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/core/__mocks__/cache-storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/core/__mocks__/cache-storage.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/core/__mocks__/cache-storage.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/core/__mocks__/cache-storage.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/core/__mocks__/context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/core/__mocks__/context.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/core/__mocks__/context.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/core/__mocks__/context.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/core/__mocks__/features.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/core/__mocks__/features.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/core/__mocks__/features.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/core/__mocks__/features.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/core/__mocks__/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/core/__mocks__/logger.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/core/__mocks__/logger.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/core/__mocks__/logger.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/core/__tests__/cache-storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/core/__tests__/cache-storage.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/core/__tests__/cache-storage.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/core/__tests__/cache-storage.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/core/__tests__/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/core/__tests__/logger.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/core/__tests__/logger.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/core/__tests__/logger.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/core/bitwise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/core/bitwise.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/core/bitwise.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/core/bitwise.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/core/cache-storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/core/cache-storage.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/core/cache-storage.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/core/cache-storage.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/core/context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/core/context.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/core/context.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/core/context.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/core/debugger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/core/debugger.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/core/debugger.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/core/debugger.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/core/features.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/core/features.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/core/features.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/core/features.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/core/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/core/logger.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/core/logger.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/core/logger.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/core/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/core/util.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/core/util.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/core/util.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/IPropertyDescriptor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/IPropertyDescriptor.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/IPropertyDescriptor.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/IPropertyDescriptor.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/ITypeDescriptor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/ITypeDescriptor.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/ITypeDescriptor.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/ITypeDescriptor.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/index.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/index.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/layout/__mocks__/bounds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/layout/__mocks__/bounds.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/layout/__mocks__/bounds.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/layout/__mocks__/bounds.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/layout/bounds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/layout/bounds.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/layout/bounds.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/layout/bounds.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/layout/text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/layout/text.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/layout/text.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/layout/text.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/property-descriptors/background-clip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/property-descriptors/background-clip.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/property-descriptors/background-size.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/property-descriptors/background-size.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/property-descriptors/border-color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/property-descriptors/border-color.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/property-descriptors/border-radius.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/property-descriptors/border-radius.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/property-descriptors/border-style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/property-descriptors/border-style.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/property-descriptors/border-width.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/property-descriptors/border-width.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/property-descriptors/box-shadow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/property-descriptors/box-shadow.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/property-descriptors/box-shadow.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/property-descriptors/box-shadow.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/property-descriptors/color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/property-descriptors/color.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/property-descriptors/color.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/property-descriptors/color.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/property-descriptors/content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/property-descriptors/content.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/property-descriptors/content.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/property-descriptors/content.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/property-descriptors/counter-reset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/property-descriptors/counter-reset.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/property-descriptors/direction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/property-descriptors/direction.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/property-descriptors/direction.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/property-descriptors/direction.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/property-descriptors/display.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/property-descriptors/display.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/property-descriptors/display.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/property-descriptors/display.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/property-descriptors/duration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/property-descriptors/duration.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/property-descriptors/duration.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/property-descriptors/duration.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/property-descriptors/float.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/property-descriptors/float.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/property-descriptors/float.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/property-descriptors/float.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/property-descriptors/font-family.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/property-descriptors/font-family.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/property-descriptors/font-family.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/property-descriptors/font-family.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/property-descriptors/font-size.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/property-descriptors/font-size.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/property-descriptors/font-size.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/property-descriptors/font-size.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/property-descriptors/font-style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/property-descriptors/font-style.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/property-descriptors/font-style.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/property-descriptors/font-style.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/property-descriptors/font-variant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/property-descriptors/font-variant.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/property-descriptors/font-weight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/property-descriptors/font-weight.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/property-descriptors/font-weight.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/property-descriptors/font-weight.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/property-descriptors/letter-spacing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/property-descriptors/letter-spacing.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/property-descriptors/line-break.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/property-descriptors/line-break.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/property-descriptors/line-break.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/property-descriptors/line-break.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/property-descriptors/line-height.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/property-descriptors/line-height.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/property-descriptors/line-height.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/property-descriptors/line-height.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/property-descriptors/list-style-type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/property-descriptors/list-style-type.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/property-descriptors/margin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/property-descriptors/margin.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/property-descriptors/margin.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/property-descriptors/margin.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/property-descriptors/opacity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/property-descriptors/opacity.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/property-descriptors/opacity.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/property-descriptors/opacity.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/property-descriptors/overflow-wrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/property-descriptors/overflow-wrap.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/property-descriptors/overflow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/property-descriptors/overflow.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/property-descriptors/overflow.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/property-descriptors/overflow.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/property-descriptors/padding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/property-descriptors/padding.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/property-descriptors/padding.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/property-descriptors/padding.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/property-descriptors/paint-order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/property-descriptors/paint-order.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/property-descriptors/paint-order.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/property-descriptors/paint-order.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/property-descriptors/position.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/property-descriptors/position.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/property-descriptors/position.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/property-descriptors/position.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/property-descriptors/quotes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/property-descriptors/quotes.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/property-descriptors/quotes.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/property-descriptors/quotes.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/property-descriptors/text-align.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/property-descriptors/text-align.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/property-descriptors/text-align.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/property-descriptors/text-align.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/property-descriptors/text-shadow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/property-descriptors/text-shadow.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/property-descriptors/text-shadow.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/property-descriptors/text-shadow.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/property-descriptors/text-transform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/property-descriptors/text-transform.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/property-descriptors/transform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/property-descriptors/transform.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/property-descriptors/transform.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/property-descriptors/transform.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/property-descriptors/visibility.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/property-descriptors/visibility.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/property-descriptors/visibility.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/property-descriptors/visibility.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/property-descriptors/word-break.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/property-descriptors/word-break.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/property-descriptors/word-break.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/property-descriptors/word-break.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/property-descriptors/z-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/property-descriptors/z-index.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/property-descriptors/z-index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/property-descriptors/z-index.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/syntax/__tests__/tokernizer-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/syntax/__tests__/tokernizer-tests.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/syntax/parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/syntax/parser.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/syntax/parser.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/syntax/parser.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/syntax/tokenizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/syntax/tokenizer.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/syntax/tokenizer.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/syntax/tokenizer.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/types/__tests__/color-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/types/__tests__/color-tests.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/types/__tests__/color-tests.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/types/__tests__/color-tests.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/types/__tests__/image-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/types/__tests__/image-tests.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/types/__tests__/image-tests.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/types/__tests__/image-tests.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/types/angle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/types/angle.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/types/angle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/types/angle.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/types/color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/types/color.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/types/color.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/types/color.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/types/functions/-webkit-gradient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/types/functions/-webkit-gradient.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/types/functions/-webkit-gradient.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/types/functions/-webkit-gradient.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/types/functions/counter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/types/functions/counter.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/types/functions/counter.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/types/functions/counter.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/types/functions/gradient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/types/functions/gradient.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/types/functions/gradient.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/types/functions/gradient.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/types/functions/linear-gradient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/types/functions/linear-gradient.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/types/functions/linear-gradient.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/types/functions/linear-gradient.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/types/functions/radial-gradient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/types/functions/radial-gradient.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/types/functions/radial-gradient.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/types/functions/radial-gradient.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/types/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/types/image.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/types/image.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/types/image.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/types/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/types/index.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/types/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/types/index.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/types/length-percentage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/types/length-percentage.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/types/length-percentage.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/types/length-percentage.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/types/length.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/types/length.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/types/length.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/types/length.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/types/time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/types/time.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/css/types/time.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/css/types/time.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/dom/__mocks__/document-cloner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/dom/__mocks__/document-cloner.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/dom/__mocks__/document-cloner.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/dom/__mocks__/document-cloner.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/dom/document-cloner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/dom/document-cloner.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/dom/document-cloner.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/dom/document-cloner.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/dom/element-container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/dom/element-container.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/dom/element-container.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/dom/element-container.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/dom/elements/li-element-container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/dom/elements/li-element-container.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/dom/elements/li-element-container.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/dom/elements/li-element-container.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/dom/elements/ol-element-container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/dom/elements/ol-element-container.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/dom/elements/ol-element-container.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/dom/elements/ol-element-container.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/dom/elements/select-element-container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/dom/elements/select-element-container.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/dom/elements/textarea-element-container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/dom/elements/textarea-element-container.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/dom/node-parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/dom/node-parser.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/dom/node-parser.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/dom/node-parser.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/dom/replaced-elements/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/dom/replaced-elements/index.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/dom/replaced-elements/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/dom/replaced-elements/index.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/dom/replaced-elements/pseudo-elements.js: -------------------------------------------------------------------------------- 1 | //# sourceMappingURL=pseudo-elements.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/dom/text-container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/dom/text-container.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/dom/text-container.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/dom/text-container.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/index.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/index.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/invariant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/invariant.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/invariant.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/invariant.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/render/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/render/background.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/render/background.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/render/background.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/render/bezier-curve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/render/bezier-curve.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/render/bezier-curve.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/render/bezier-curve.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/render/border.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/render/border.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/render/border.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/render/border.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/render/bound-curves.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/render/bound-curves.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/render/bound-curves.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/render/bound-curves.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/render/box-sizing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/render/box-sizing.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/render/box-sizing.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/render/box-sizing.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/render/canvas/canvas-renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/render/canvas/canvas-renderer.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/render/canvas/canvas-renderer.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/render/canvas/canvas-renderer.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/render/canvas/foreignobject-renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/render/canvas/foreignobject-renderer.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/render/canvas/foreignobject-renderer.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/render/canvas/foreignobject-renderer.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/render/effects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/render/effects.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/render/effects.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/render/effects.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/render/font-metrics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/render/font-metrics.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/render/font-metrics.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/render/font-metrics.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/render/path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/render/path.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/render/path.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/render/path.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/render/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/render/renderer.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/render/renderer.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/render/renderer.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/render/stacking-context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/render/stacking-context.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/render/stacking-context.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/render/stacking-context.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/render/vector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/render/vector.js -------------------------------------------------------------------------------- /Software/js/html2canvas/lib/render/vector.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/lib/render/vector.js.map -------------------------------------------------------------------------------- /Software/js/html2canvas/types/__tests__/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Software/js/html2canvas/types/core/__mocks__/cache-storage.d.ts: -------------------------------------------------------------------------------- 1 | export declare class CacheStorage { 2 | } 3 | -------------------------------------------------------------------------------- /Software/js/html2canvas/types/core/__mocks__/context.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/core/__mocks__/context.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/core/__mocks__/features.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/core/__mocks__/features.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/core/__mocks__/logger.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/core/__mocks__/logger.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/core/__tests__/cache-storage.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Software/js/html2canvas/types/core/__tests__/logger.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Software/js/html2canvas/types/core/bitwise.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/core/bitwise.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/core/cache-storage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/core/cache-storage.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/core/context.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/core/context.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/core/debugger.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/core/debugger.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/core/features.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/core/features.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/core/logger.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/core/logger.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/core/util.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/core/util.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/css/IPropertyDescriptor.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/css/IPropertyDescriptor.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/css/ITypeDescriptor.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/css/ITypeDescriptor.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/css/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/css/index.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/css/layout/__mocks__/bounds.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/css/layout/__mocks__/bounds.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/css/layout/bounds.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/css/layout/bounds.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/css/layout/text.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/css/layout/text.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/css/property-descriptors/__tests__/background-tests.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Software/js/html2canvas/types/css/property-descriptors/__tests__/font-family.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Software/js/html2canvas/types/css/property-descriptors/__tests__/paint-order.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Software/js/html2canvas/types/css/property-descriptors/__tests__/text-shadow.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Software/js/html2canvas/types/css/property-descriptors/__tests__/transform-tests.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Software/js/html2canvas/types/css/property-descriptors/box-shadow.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/css/property-descriptors/box-shadow.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/css/property-descriptors/color.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/css/property-descriptors/color.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/css/property-descriptors/content.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/css/property-descriptors/content.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/css/property-descriptors/direction.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/css/property-descriptors/direction.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/css/property-descriptors/display.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/css/property-descriptors/display.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/css/property-descriptors/duration.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/css/property-descriptors/duration.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/css/property-descriptors/float.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/css/property-descriptors/float.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/css/property-descriptors/font-family.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/css/property-descriptors/font-family.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/css/property-descriptors/font-size.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/css/property-descriptors/font-size.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/css/property-descriptors/font-style.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/css/property-descriptors/font-style.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/css/property-descriptors/font-weight.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/css/property-descriptors/font-weight.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/css/property-descriptors/line-break.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/css/property-descriptors/line-break.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/css/property-descriptors/line-height.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/css/property-descriptors/line-height.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/css/property-descriptors/margin.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/css/property-descriptors/margin.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/css/property-descriptors/opacity.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/css/property-descriptors/opacity.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/css/property-descriptors/overflow.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/css/property-descriptors/overflow.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/css/property-descriptors/padding.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/css/property-descriptors/padding.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/css/property-descriptors/paint-order.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/css/property-descriptors/paint-order.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/css/property-descriptors/position.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/css/property-descriptors/position.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/css/property-descriptors/quotes.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/css/property-descriptors/quotes.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/css/property-descriptors/text-align.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/css/property-descriptors/text-align.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/css/property-descriptors/text-shadow.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/css/property-descriptors/text-shadow.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/css/property-descriptors/transform.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/css/property-descriptors/transform.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/css/property-descriptors/visibility.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/css/property-descriptors/visibility.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/css/property-descriptors/word-break.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/css/property-descriptors/word-break.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/css/property-descriptors/z-index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/css/property-descriptors/z-index.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/css/syntax/__tests__/tokernizer-tests.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Software/js/html2canvas/types/css/syntax/parser.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/css/syntax/parser.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/css/syntax/tokenizer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/css/syntax/tokenizer.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/css/types/__tests__/color-tests.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Software/js/html2canvas/types/css/types/__tests__/image-tests.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Software/js/html2canvas/types/css/types/angle.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/css/types/angle.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/css/types/color.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/css/types/color.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/css/types/functions/-webkit-gradient.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/css/types/functions/-webkit-gradient.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/css/types/functions/__tests__/radial-gradient.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Software/js/html2canvas/types/css/types/functions/counter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/css/types/functions/counter.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/css/types/functions/gradient.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/css/types/functions/gradient.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/css/types/functions/linear-gradient.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/css/types/functions/linear-gradient.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/css/types/functions/radial-gradient.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/css/types/functions/radial-gradient.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/css/types/image.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/css/types/image.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/css/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/css/types/index.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/css/types/length-percentage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/css/types/length-percentage.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/css/types/length.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/css/types/length.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/css/types/time.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/css/types/time.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/dom/__mocks__/document-cloner.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/dom/__mocks__/document-cloner.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/dom/document-cloner.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/dom/document-cloner.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/dom/element-container.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/dom/element-container.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/dom/elements/li-element-container.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/dom/elements/li-element-container.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/dom/elements/ol-element-container.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/dom/elements/ol-element-container.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/dom/node-parser.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/dom/node-parser.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/dom/replaced-elements/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/dom/replaced-elements/index.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/dom/replaced-elements/pseudo-elements.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Software/js/html2canvas/types/dom/text-container.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/dom/text-container.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/index.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/invariant.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/invariant.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/render/background.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/render/background.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/render/bezier-curve.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/render/bezier-curve.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/render/border.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/render/border.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/render/bound-curves.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/render/bound-curves.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/render/box-sizing.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/render/box-sizing.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/render/canvas/canvas-renderer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/render/canvas/canvas-renderer.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/render/canvas/foreignobject-renderer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/render/canvas/foreignobject-renderer.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/render/effects.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/render/effects.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/render/font-metrics.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/render/font-metrics.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/render/path.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/render/path.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/render/renderer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/render/renderer.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/render/stacking-context.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/render/stacking-context.d.ts -------------------------------------------------------------------------------- /Software/js/html2canvas/types/render/vector.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/html2canvas/types/render/vector.d.ts -------------------------------------------------------------------------------- /Software/js/qt3_lib/ESP32Driver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/qt3_lib/ESP32Driver.js -------------------------------------------------------------------------------- /Software/js/qt3_lib/KeyFrameEditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/qt3_lib/KeyFrameEditor.js -------------------------------------------------------------------------------- /Software/js/qt3_lib/QT3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/qt3_lib/QT3.js -------------------------------------------------------------------------------- /Software/js/qt3_lib/QT3phy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/qt3_lib/QT3phy.js -------------------------------------------------------------------------------- /Software/js/qt3_lib/QT3vir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/qt3_lib/QT3vir.js -------------------------------------------------------------------------------- /Software/js/qt3_lib/ResizableTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/qt3_lib/ResizableTable.js -------------------------------------------------------------------------------- /Software/js/qt3_lib/SliderCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/qt3_lib/SliderCtrl.js -------------------------------------------------------------------------------- /Software/js/qt3_lib/TabHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/qt3_lib/TabHelper.js -------------------------------------------------------------------------------- /Software/js/qt3_lib/TransformCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/qt3_lib/TransformCtrl.js -------------------------------------------------------------------------------- /Software/js/qt3_lib/Tween.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/qt3_lib/Tween.js -------------------------------------------------------------------------------- /Software/js/qt3_lib/UserModeHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/qt3_lib/UserModeHelper.js -------------------------------------------------------------------------------- /Software/js/qt3_lib/ViewCube.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/qt3_lib/ViewCube.js -------------------------------------------------------------------------------- /Software/js/qt3_lib/WorkSpaceSphereCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/qt3_lib/WorkSpaceSphereCtrl.js -------------------------------------------------------------------------------- /Software/js/qt3_lib/ws_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/qt3_lib/ws_data.js -------------------------------------------------------------------------------- /Software/js/threejs/build/three.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/threejs/build/three.cjs -------------------------------------------------------------------------------- /Software/js/threejs/build/three.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/threejs/build/three.module.js -------------------------------------------------------------------------------- /Software/js/threejs/build/three.module.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/threejs/build/three.module.min.js -------------------------------------------------------------------------------- /Software/js/threejs/jsm/controls/OrbitControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/threejs/jsm/controls/OrbitControls.js -------------------------------------------------------------------------------- /Software/js/threejs/jsm/controls/TrackballControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/threejs/jsm/controls/TrackballControls.js -------------------------------------------------------------------------------- /Software/js/threejs/jsm/controls/TransformControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/threejs/jsm/controls/TransformControls.js -------------------------------------------------------------------------------- /Software/js/threejs/jsm/curves/CurveExtras.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/threejs/jsm/curves/CurveExtras.js -------------------------------------------------------------------------------- /Software/js/threejs/jsm/libs/lil-gui.module.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/threejs/jsm/libs/lil-gui.module.min.js -------------------------------------------------------------------------------- /Software/js/threejs/jsm/libs/stats.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/threejs/jsm/libs/stats.module.js -------------------------------------------------------------------------------- /Software/js/threejs/jsm/libs/tween.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/threejs/jsm/libs/tween.module.js -------------------------------------------------------------------------------- /Software/js/threejs/jsm/loaders/GLTFLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/threejs/jsm/loaders/GLTFLoader.js -------------------------------------------------------------------------------- /Software/js/threejs/jsm/loaders/OBJLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/threejs/jsm/loaders/OBJLoader.js -------------------------------------------------------------------------------- /Software/js/threejs/jsm/renderers/CSS3DRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/threejs/jsm/renderers/CSS3DRenderer.js -------------------------------------------------------------------------------- /Software/js/threejs/jsm/utils/BufferGeometryUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/threejs/jsm/utils/BufferGeometryUtils.js -------------------------------------------------------------------------------- /Software/js/threejs/jsm/utils/SkeletonUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Software/js/threejs/jsm/utils/SkeletonUtils.js -------------------------------------------------------------------------------- /Software/start_server.bat: -------------------------------------------------------------------------------- 1 | live-server -------------------------------------------------------------------------------- /Utils/python_http_cors_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Utils/python_http_cors_server.py -------------------------------------------------------------------------------- /Utils/webpage2string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/Utils/webpage2string.py -------------------------------------------------------------------------------- /gitinit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/gitinit.sh -------------------------------------------------------------------------------- /monitor_esp32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/monitor_esp32.bat -------------------------------------------------------------------------------- /run_esp32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/run_esp32.bat -------------------------------------------------------------------------------- /syncrepo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-chard-Wu/QT3/HEAD/syncrepo.sh --------------------------------------------------------------------------------