├── .cproject ├── .cproject_org ├── .github └── workflows │ └── generate_bin.yml ├── .gitignore ├── .gitmodules ├── .mxproject ├── .project ├── .project_org ├── .settings ├── org.eclipse.cdt.codan.core.prefs └── org.eclipse.cdt.core.prefs ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── Core ├── Inc │ ├── M365_Dashboard.h │ ├── M365_memory_table.h │ ├── arm_common_tables.h │ ├── arm_const_structs.h │ ├── arm_math.h │ ├── button_processing.h │ ├── config.h │ ├── decr_and_flash.h │ ├── eeprom.h │ ├── main.h │ ├── print.h │ ├── stm32f1xx_hal_conf.h │ ├── stm32f1xx_it.h │ └── utils.h ├── Src │ ├── M365_Dashboard.c │ ├── button_processing.c │ ├── decr_and_flash.c │ ├── eeprom.c │ ├── main.c │ ├── print.c │ ├── stm32f1xx_hal_msp.c │ ├── stm32f1xx_hal_timebase_tim.c │ ├── stm32f1xx_it.c │ ├── syscalls.c │ ├── sysmem.c │ ├── system_stm32f1xx.c │ └── utils.c └── Startup │ └── startup_stm32f103c8tx.s ├── Documentation ├── CubeMX Pinout.PNG ├── M365 pinout.pdf ├── Memory_Map.jpg ├── OP on PCB 6FET.PNG ├── PCB Layout M365.PNG ├── PinoutM365vsG30.png ├── Three Shunt Topology.PNG └── analog throttle input.jpg ├── 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 │ └── libarm_cortexM3l_math.a └── STM32F1xx_HAL_Driver │ ├── Inc │ ├── Legacy │ │ └── stm32_hal_legacy.h │ ├── stm32f1xx_hal.h │ ├── stm32f1xx_hal_adc.h │ ├── stm32f1xx_hal_adc_ex.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_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_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_tim.c │ ├── stm32f1xx_hal_tim_ex.c │ └── stm32f1xx_hal_uart.c ├── Lib └── libarm_cortexM3l_math.a ├── Makefile ├── README.md ├── STM32F103C8Tx_FLASH-development.ld ├── STM32F103C8Tx_FLASH.ld ├── SmartESC_v3 Debug.launch ├── SmartESC_v3 Release.launch ├── SmartESC_v3.ioc └── tools ├── 60-st_link_v2.rules ├── openocd_scripts ├── jlink.cfg ├── stlink-v2.cfg └── stm32f1x.cfg ├── prepareZip_rel.exe ├── xiaotea └── Scripts │ ├── __init__.py │ ├── dec.py │ ├── enc.py │ ├── prepareZip.py │ ├── prepareZip_online.py │ ├── prepareZip_rel.py │ ├── setup.py │ └── xiaotea.py └── zip_output └── info.txt /.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/.cproject -------------------------------------------------------------------------------- /.cproject_org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/.cproject_org -------------------------------------------------------------------------------- /.github/workflows/generate_bin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/.github/workflows/generate_bin.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/.gitmodules -------------------------------------------------------------------------------- /.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/.mxproject -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/.project -------------------------------------------------------------------------------- /.project_org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/.project_org -------------------------------------------------------------------------------- /.settings/org.eclipse.cdt.codan.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/.settings/org.eclipse.cdt.codan.core.prefs -------------------------------------------------------------------------------- /.settings/org.eclipse.cdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/.settings/org.eclipse.cdt.core.prefs -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Core/Inc/M365_Dashboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Core/Inc/M365_Dashboard.h -------------------------------------------------------------------------------- /Core/Inc/M365_memory_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Core/Inc/M365_memory_table.h -------------------------------------------------------------------------------- /Core/Inc/arm_common_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Core/Inc/arm_common_tables.h -------------------------------------------------------------------------------- /Core/Inc/arm_const_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Core/Inc/arm_const_structs.h -------------------------------------------------------------------------------- /Core/Inc/arm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Core/Inc/arm_math.h -------------------------------------------------------------------------------- /Core/Inc/button_processing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Core/Inc/button_processing.h -------------------------------------------------------------------------------- /Core/Inc/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Core/Inc/config.h -------------------------------------------------------------------------------- /Core/Inc/decr_and_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Core/Inc/decr_and_flash.h -------------------------------------------------------------------------------- /Core/Inc/eeprom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Core/Inc/eeprom.h -------------------------------------------------------------------------------- /Core/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Core/Inc/main.h -------------------------------------------------------------------------------- /Core/Inc/print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Core/Inc/print.h -------------------------------------------------------------------------------- /Core/Inc/stm32f1xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Core/Inc/stm32f1xx_hal_conf.h -------------------------------------------------------------------------------- /Core/Inc/stm32f1xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Core/Inc/stm32f1xx_it.h -------------------------------------------------------------------------------- /Core/Inc/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Core/Inc/utils.h -------------------------------------------------------------------------------- /Core/Src/M365_Dashboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Core/Src/M365_Dashboard.c -------------------------------------------------------------------------------- /Core/Src/button_processing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Core/Src/button_processing.c -------------------------------------------------------------------------------- /Core/Src/decr_and_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Core/Src/decr_and_flash.c -------------------------------------------------------------------------------- /Core/Src/eeprom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Core/Src/eeprom.c -------------------------------------------------------------------------------- /Core/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Core/Src/main.c -------------------------------------------------------------------------------- /Core/Src/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Core/Src/print.c -------------------------------------------------------------------------------- /Core/Src/stm32f1xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Core/Src/stm32f1xx_hal_msp.c -------------------------------------------------------------------------------- /Core/Src/stm32f1xx_hal_timebase_tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Core/Src/stm32f1xx_hal_timebase_tim.c -------------------------------------------------------------------------------- /Core/Src/stm32f1xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Core/Src/stm32f1xx_it.c -------------------------------------------------------------------------------- /Core/Src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Core/Src/syscalls.c -------------------------------------------------------------------------------- /Core/Src/sysmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Core/Src/sysmem.c -------------------------------------------------------------------------------- /Core/Src/system_stm32f1xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Core/Src/system_stm32f1xx.c -------------------------------------------------------------------------------- /Core/Src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Core/Src/utils.c -------------------------------------------------------------------------------- /Core/Startup/startup_stm32f103c8tx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Core/Startup/startup_stm32f103c8tx.s -------------------------------------------------------------------------------- /Documentation/CubeMX Pinout.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Documentation/CubeMX Pinout.PNG -------------------------------------------------------------------------------- /Documentation/M365 pinout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Documentation/M365 pinout.pdf -------------------------------------------------------------------------------- /Documentation/Memory_Map.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Documentation/Memory_Map.jpg -------------------------------------------------------------------------------- /Documentation/OP on PCB 6FET.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Documentation/OP on PCB 6FET.PNG -------------------------------------------------------------------------------- /Documentation/PCB Layout M365.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Documentation/PCB Layout M365.PNG -------------------------------------------------------------------------------- /Documentation/PinoutM365vsG30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Documentation/PinoutM365vsG30.png -------------------------------------------------------------------------------- /Documentation/Three Shunt Topology.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Documentation/Three Shunt Topology.PNG -------------------------------------------------------------------------------- /Documentation/analog throttle input.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Documentation/analog throttle input.jpg -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f103xb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f103xb.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f1xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f1xx.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32F1xx/Include/system_stm32f1xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Drivers/CMSIS/Device/ST/STM32F1xx/Include/system_stm32f1xx.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Drivers/CMSIS/Include/cmsis_armcc.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/cmsis_armclang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Drivers/CMSIS/Include/cmsis_armclang.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/cmsis_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Drivers/CMSIS/Include/cmsis_compiler.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Drivers/CMSIS/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/cmsis_iccarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Drivers/CMSIS/Include/cmsis_iccarm.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/cmsis_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Drivers/CMSIS/Include/cmsis_version.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_armv8mbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Drivers/CMSIS/Include/core_armv8mbl.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_armv8mml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Drivers/CMSIS/Include/core_armv8mml.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Drivers/CMSIS/Include/core_cm0.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm0plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Drivers/CMSIS/Include/core_cm0plus.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Drivers/CMSIS/Include/core_cm1.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm23.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Drivers/CMSIS/Include/core_cm23.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Drivers/CMSIS/Include/core_cm3.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm33.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Drivers/CMSIS/Include/core_cm33.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Drivers/CMSIS/Include/core_cm4.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Drivers/CMSIS/Include/core_cm7.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Drivers/CMSIS/Include/core_sc000.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_sc300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Drivers/CMSIS/Include/core_sc300.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/mpu_armv7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Drivers/CMSIS/Include/mpu_armv7.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/mpu_armv8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Drivers/CMSIS/Include/mpu_armv8.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/tz_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Drivers/CMSIS/Include/tz_context.h -------------------------------------------------------------------------------- /Drivers/CMSIS/libarm_cortexM3l_math.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Drivers/CMSIS/libarm_cortexM3l_math.a -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Drivers/STM32F1xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_adc.h -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_adc_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_adc_ex.h -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_cortex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_cortex.h -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_def.h -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_dma.h -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_dma_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_dma_ex.h -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_exti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_exti.h -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash.h -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash_ex.h -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio.h -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio_ex.h -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc.h -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc_ex.h -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_uart.h -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.c -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_adc.c -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_adc_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_adc_ex.c -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.c -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_dma.c -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_exti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_exti.c -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash.c -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash_ex.c -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.c -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio_ex.c -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_pwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_pwr.c -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.c -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc_ex.c -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.c -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.c -------------------------------------------------------------------------------- /Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_uart.c -------------------------------------------------------------------------------- /Lib/libarm_cortexM3l_math.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Lib/libarm_cortexM3l_math.a -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/README.md -------------------------------------------------------------------------------- /STM32F103C8Tx_FLASH-development.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/STM32F103C8Tx_FLASH-development.ld -------------------------------------------------------------------------------- /STM32F103C8Tx_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/STM32F103C8Tx_FLASH.ld -------------------------------------------------------------------------------- /SmartESC_v3 Debug.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/SmartESC_v3 Debug.launch -------------------------------------------------------------------------------- /SmartESC_v3 Release.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/SmartESC_v3 Release.launch -------------------------------------------------------------------------------- /SmartESC_v3.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/SmartESC_v3.ioc -------------------------------------------------------------------------------- /tools/60-st_link_v2.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/tools/60-st_link_v2.rules -------------------------------------------------------------------------------- /tools/openocd_scripts/jlink.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/tools/openocd_scripts/jlink.cfg -------------------------------------------------------------------------------- /tools/openocd_scripts/stlink-v2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/tools/openocd_scripts/stlink-v2.cfg -------------------------------------------------------------------------------- /tools/openocd_scripts/stm32f1x.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/tools/openocd_scripts/stm32f1x.cfg -------------------------------------------------------------------------------- /tools/prepareZip_rel.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/tools/prepareZip_rel.exe -------------------------------------------------------------------------------- /tools/xiaotea/Scripts/__init__.py: -------------------------------------------------------------------------------- 1 | from .xiaotea import XiaoTea -------------------------------------------------------------------------------- /tools/xiaotea/Scripts/dec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/tools/xiaotea/Scripts/dec.py -------------------------------------------------------------------------------- /tools/xiaotea/Scripts/enc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/tools/xiaotea/Scripts/enc.py -------------------------------------------------------------------------------- /tools/xiaotea/Scripts/prepareZip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/tools/xiaotea/Scripts/prepareZip.py -------------------------------------------------------------------------------- /tools/xiaotea/Scripts/prepareZip_online.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/tools/xiaotea/Scripts/prepareZip_online.py -------------------------------------------------------------------------------- /tools/xiaotea/Scripts/prepareZip_rel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/tools/xiaotea/Scripts/prepareZip_rel.py -------------------------------------------------------------------------------- /tools/xiaotea/Scripts/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/tools/xiaotea/Scripts/setup.py -------------------------------------------------------------------------------- /tools/xiaotea/Scripts/xiaotea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Koxx3/SmartESC_STM32_v3/HEAD/tools/xiaotea/Scripts/xiaotea.py -------------------------------------------------------------------------------- /tools/zip_output/info.txt: -------------------------------------------------------------------------------- 1 | output for flashing 2 | --------------------------------------------------------------------------------