├── .github └── workflows │ └── build_lcm.yaml ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json └── tasks.json ├── Docs ├── P42ADG40.xlsx ├── VESC_LED_Controller_V3.4.pdf └── lcm-arm-cmsis-vscode.jpg ├── LCM ├── .gitattributes ├── Code │ ├── App │ │ ├── crc.c │ │ ├── crc.h │ │ ├── datatypes.h │ │ ├── flag_bit.c │ │ ├── flag_bit.h │ │ ├── task.c │ │ ├── task.h │ │ ├── test.c │ │ ├── test.h │ │ ├── vesc_uasrt.c │ │ ├── vesc_uasrt.h │ │ ├── ws2812.c │ │ └── ws2812.h │ ├── Drive │ │ ├── adc.c │ │ ├── adc.h │ │ ├── buzzer.c │ │ ├── buzzer.h │ │ ├── eeprom.c │ │ ├── eeprom.h │ │ ├── io_ws2812.c │ │ ├── io_ws2812.h │ │ ├── iwdg.c │ │ ├── iwdg.h │ │ ├── key.c │ │ ├── key.h │ │ ├── led.c │ │ ├── led.h │ │ ├── led_pwm.c │ │ ├── led_pwm.h │ │ ├── power.c │ │ ├── power.h │ │ ├── spi.c │ │ ├── spi.h │ │ ├── time.c │ │ ├── time.h │ │ ├── usart.c │ │ └── usart.h │ └── User │ │ ├── hk32f030m_conf.h │ │ ├── hk32f030m_it.c │ │ ├── hk32f030m_it.h │ │ └── main.c ├── HKMicroChip.HK32F030xMxx_DFP.1.0.17.pack ├── Library │ └── HK32F030Mxx_Library_V1.1.6 │ │ ├── HK32F030M │ │ ├── CMSIS │ │ │ ├── CM0 │ │ │ │ └── Core │ │ │ │ │ ├── arm_common_tables.h │ │ │ │ │ ├── arm_const_structs.h │ │ │ │ │ ├── arm_math.h │ │ │ │ │ ├── cmsis_armcc.h │ │ │ │ │ ├── cmsis_armcc_V6.h │ │ │ │ │ ├── cmsis_gcc.h │ │ │ │ │ ├── core_cm0.h │ │ │ │ │ ├── core_cm0plus.h │ │ │ │ │ ├── core_cmFunc.h │ │ │ │ │ ├── core_cmInstr.h │ │ │ │ │ ├── core_cmSimd.h │ │ │ │ │ └── core_sc000.h │ │ │ └── HK32F030M │ │ │ │ ├── Include │ │ │ │ ├── hk32f030m.h │ │ │ │ └── system_hk32f030m.h │ │ │ │ └── Source │ │ │ │ ├── ARM │ │ │ │ └── KEIL_Startup_hk32f030m.s │ │ │ │ ├── IAR │ │ │ │ └── IAR_Sartup_hk32f030m.s │ │ │ │ └── system_hk32f030m.c │ │ └── HK32F030M_Lib │ │ │ ├── inc │ │ │ ├── hk32f030m_adc.h │ │ │ ├── hk32f030m_awu.h │ │ │ ├── hk32f030m_beep.h │ │ │ ├── hk32f030m_conf_Template.h │ │ │ ├── hk32f030m_crc.h │ │ │ ├── hk32f030m_dbgmcu.h │ │ │ ├── hk32f030m_def.h │ │ │ ├── hk32f030m_exti.h │ │ │ ├── hk32f030m_flash.h │ │ │ ├── hk32f030m_gpio.h │ │ │ ├── hk32f030m_i2c.h │ │ │ ├── hk32f030m_iwdg.h │ │ │ ├── hk32f030m_misc.h │ │ │ ├── hk32f030m_pwr.h │ │ │ ├── hk32f030m_rcc.h │ │ │ ├── hk32f030m_spi.h │ │ │ ├── hk32f030m_syscfg.h │ │ │ ├── hk32f030m_tim.h │ │ │ ├── hk32f030m_usart.h │ │ │ └── hk32f030m_wwdg.h │ │ │ └── src │ │ │ ├── hk32f030m_adc.c │ │ │ ├── hk32f030m_awu.c │ │ │ ├── hk32f030m_beep.c │ │ │ ├── hk32f030m_crc.c │ │ │ ├── hk32f030m_dbgmcu.c │ │ │ ├── hk32f030m_exti.c │ │ │ ├── hk32f030m_flash.c │ │ │ ├── hk32f030m_gpio.c │ │ │ ├── hk32f030m_i2c.c │ │ │ ├── hk32f030m_iwdg.c │ │ │ ├── hk32f030m_misc.c │ │ │ ├── hk32f030m_pwr.c │ │ │ ├── hk32f030m_rcc.c │ │ │ ├── hk32f030m_spi.c │ │ │ ├── hk32f030m_syscfg.c │ │ │ ├── hk32f030m_tim.c │ │ │ ├── hk32f030m_usart.c │ │ │ └── hk32f030m_wwdg.c │ │ ├── HK32F030M_Project │ │ ├── MDK-ARM │ │ │ ├── HK32F030M_Demo.uvoptx │ │ │ ├── HK32F030M_Demo.uvprojx │ │ │ ├── JLinkSettings.ini │ │ │ └── ╦½╗¸╔¥│²í░▒ÓÊÙ▓·╔·╬─╝■í▒.bat │ │ ├── inc │ │ │ ├── define.h │ │ │ ├── hk32f030m_conf.h │ │ │ ├── hk32f030m_it.h │ │ │ └── main.h │ │ └── src │ │ │ ├── hk32f030m_it.c │ │ │ └── main.c │ │ └── HK32F030Mxx_LibraryVersionList.txt ├── Project │ └── MDK5 │ │ ├── EventRecorderStub.scvd │ │ ├── LCM_Light_Control_IO_WS2812_New.cbuild-pack.yml │ │ ├── LCM_Light_Control_IO_WS2812_New.cproject.yml │ │ ├── LCM_Light_Control_IO_WS2812_New.csolution.yml │ │ ├── LCM_Light_Control_IO_WS2812_New.uvoptx │ │ ├── LCM_Light_Control_IO_WS2812_New.uvprojx │ │ └── LCM_Light_Control_IO_WS2812_New_LCMLightControlIOWS2812New.sct ├── Readme │ └── Readme.txt ├── build.bat ├── build.sh ├── flash.bat ├── flash.sh ├── keilkill.bat └── pyocd.yaml ├── README.md └── vcpkg-configuration.json /.github/workflows/build_lcm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/.github/workflows/build_lcm.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["arm.keil-studio-pack"] 3 | } 4 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Docs/P42ADG40.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/Docs/P42ADG40.xlsx -------------------------------------------------------------------------------- /Docs/VESC_LED_Controller_V3.4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/Docs/VESC_LED_Controller_V3.4.pdf -------------------------------------------------------------------------------- /Docs/lcm-arm-cmsis-vscode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/Docs/lcm-arm-cmsis-vscode.jpg -------------------------------------------------------------------------------- /LCM/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/.gitattributes -------------------------------------------------------------------------------- /LCM/Code/App/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Code/App/crc.c -------------------------------------------------------------------------------- /LCM/Code/App/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Code/App/crc.h -------------------------------------------------------------------------------- /LCM/Code/App/datatypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Code/App/datatypes.h -------------------------------------------------------------------------------- /LCM/Code/App/flag_bit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Code/App/flag_bit.c -------------------------------------------------------------------------------- /LCM/Code/App/flag_bit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Code/App/flag_bit.h -------------------------------------------------------------------------------- /LCM/Code/App/task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Code/App/task.c -------------------------------------------------------------------------------- /LCM/Code/App/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Code/App/task.h -------------------------------------------------------------------------------- /LCM/Code/App/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Code/App/test.c -------------------------------------------------------------------------------- /LCM/Code/App/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Code/App/test.h -------------------------------------------------------------------------------- /LCM/Code/App/vesc_uasrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Code/App/vesc_uasrt.c -------------------------------------------------------------------------------- /LCM/Code/App/vesc_uasrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Code/App/vesc_uasrt.h -------------------------------------------------------------------------------- /LCM/Code/App/ws2812.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Code/App/ws2812.c -------------------------------------------------------------------------------- /LCM/Code/App/ws2812.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Code/App/ws2812.h -------------------------------------------------------------------------------- /LCM/Code/Drive/adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Code/Drive/adc.c -------------------------------------------------------------------------------- /LCM/Code/Drive/adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Code/Drive/adc.h -------------------------------------------------------------------------------- /LCM/Code/Drive/buzzer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Code/Drive/buzzer.c -------------------------------------------------------------------------------- /LCM/Code/Drive/buzzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Code/Drive/buzzer.h -------------------------------------------------------------------------------- /LCM/Code/Drive/eeprom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Code/Drive/eeprom.c -------------------------------------------------------------------------------- /LCM/Code/Drive/eeprom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Code/Drive/eeprom.h -------------------------------------------------------------------------------- /LCM/Code/Drive/io_ws2812.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Code/Drive/io_ws2812.c -------------------------------------------------------------------------------- /LCM/Code/Drive/io_ws2812.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Code/Drive/io_ws2812.h -------------------------------------------------------------------------------- /LCM/Code/Drive/iwdg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Code/Drive/iwdg.c -------------------------------------------------------------------------------- /LCM/Code/Drive/iwdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Code/Drive/iwdg.h -------------------------------------------------------------------------------- /LCM/Code/Drive/key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Code/Drive/key.c -------------------------------------------------------------------------------- /LCM/Code/Drive/key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Code/Drive/key.h -------------------------------------------------------------------------------- /LCM/Code/Drive/led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Code/Drive/led.c -------------------------------------------------------------------------------- /LCM/Code/Drive/led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Code/Drive/led.h -------------------------------------------------------------------------------- /LCM/Code/Drive/led_pwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Code/Drive/led_pwm.c -------------------------------------------------------------------------------- /LCM/Code/Drive/led_pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Code/Drive/led_pwm.h -------------------------------------------------------------------------------- /LCM/Code/Drive/power.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Code/Drive/power.c -------------------------------------------------------------------------------- /LCM/Code/Drive/power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Code/Drive/power.h -------------------------------------------------------------------------------- /LCM/Code/Drive/spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Code/Drive/spi.c -------------------------------------------------------------------------------- /LCM/Code/Drive/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Code/Drive/spi.h -------------------------------------------------------------------------------- /LCM/Code/Drive/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Code/Drive/time.c -------------------------------------------------------------------------------- /LCM/Code/Drive/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Code/Drive/time.h -------------------------------------------------------------------------------- /LCM/Code/Drive/usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Code/Drive/usart.c -------------------------------------------------------------------------------- /LCM/Code/Drive/usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Code/Drive/usart.h -------------------------------------------------------------------------------- /LCM/Code/User/hk32f030m_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Code/User/hk32f030m_conf.h -------------------------------------------------------------------------------- /LCM/Code/User/hk32f030m_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Code/User/hk32f030m_it.c -------------------------------------------------------------------------------- /LCM/Code/User/hk32f030m_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Code/User/hk32f030m_it.h -------------------------------------------------------------------------------- /LCM/Code/User/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Code/User/main.c -------------------------------------------------------------------------------- /LCM/HKMicroChip.HK32F030xMxx_DFP.1.0.17.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/HKMicroChip.HK32F030xMxx_DFP.1.0.17.pack -------------------------------------------------------------------------------- /LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/CMSIS/CM0/Core/arm_common_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/CMSIS/CM0/Core/arm_common_tables.h -------------------------------------------------------------------------------- /LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/CMSIS/CM0/Core/arm_const_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/CMSIS/CM0/Core/arm_const_structs.h -------------------------------------------------------------------------------- /LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/CMSIS/CM0/Core/arm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/CMSIS/CM0/Core/arm_math.h -------------------------------------------------------------------------------- /LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/CMSIS/CM0/Core/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/CMSIS/CM0/Core/cmsis_armcc.h -------------------------------------------------------------------------------- /LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/CMSIS/CM0/Core/cmsis_armcc_V6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/CMSIS/CM0/Core/cmsis_armcc_V6.h -------------------------------------------------------------------------------- /LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/CMSIS/CM0/Core/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/CMSIS/CM0/Core/cmsis_gcc.h -------------------------------------------------------------------------------- /LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/CMSIS/CM0/Core/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/CMSIS/CM0/Core/core_cm0.h -------------------------------------------------------------------------------- /LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/CMSIS/CM0/Core/core_cm0plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/CMSIS/CM0/Core/core_cm0plus.h -------------------------------------------------------------------------------- /LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/CMSIS/CM0/Core/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/CMSIS/CM0/Core/core_cmFunc.h -------------------------------------------------------------------------------- /LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/CMSIS/CM0/Core/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/CMSIS/CM0/Core/core_cmInstr.h -------------------------------------------------------------------------------- /LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/CMSIS/CM0/Core/core_cmSimd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/CMSIS/CM0/Core/core_cmSimd.h -------------------------------------------------------------------------------- /LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/CMSIS/CM0/Core/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/CMSIS/CM0/Core/core_sc000.h -------------------------------------------------------------------------------- /LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/CMSIS/HK32F030M/Include/hk32f030m.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/CMSIS/HK32F030M/Include/hk32f030m.h -------------------------------------------------------------------------------- /LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/CMSIS/HK32F030M/Include/system_hk32f030m.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/CMSIS/HK32F030M/Include/system_hk32f030m.h -------------------------------------------------------------------------------- /LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/CMSIS/HK32F030M/Source/ARM/KEIL_Startup_hk32f030m.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/CMSIS/HK32F030M/Source/ARM/KEIL_Startup_hk32f030m.s -------------------------------------------------------------------------------- /LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/CMSIS/HK32F030M/Source/IAR/IAR_Sartup_hk32f030m.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/CMSIS/HK32F030M/Source/IAR/IAR_Sartup_hk32f030m.s -------------------------------------------------------------------------------- /LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/CMSIS/HK32F030M/Source/system_hk32f030m.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/CMSIS/HK32F030M/Source/system_hk32f030m.c -------------------------------------------------------------------------------- /LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/inc/hk32f030m_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/inc/hk32f030m_adc.h -------------------------------------------------------------------------------- /LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/inc/hk32f030m_awu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/inc/hk32f030m_awu.h -------------------------------------------------------------------------------- /LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/inc/hk32f030m_beep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/inc/hk32f030m_beep.h -------------------------------------------------------------------------------- /LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/inc/hk32f030m_conf_Template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/inc/hk32f030m_conf_Template.h -------------------------------------------------------------------------------- /LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/inc/hk32f030m_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/inc/hk32f030m_crc.h -------------------------------------------------------------------------------- /LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/inc/hk32f030m_dbgmcu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/inc/hk32f030m_dbgmcu.h -------------------------------------------------------------------------------- /LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/inc/hk32f030m_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/inc/hk32f030m_def.h -------------------------------------------------------------------------------- /LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/inc/hk32f030m_exti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/inc/hk32f030m_exti.h -------------------------------------------------------------------------------- /LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/inc/hk32f030m_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/inc/hk32f030m_flash.h -------------------------------------------------------------------------------- /LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/inc/hk32f030m_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/inc/hk32f030m_gpio.h -------------------------------------------------------------------------------- /LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/inc/hk32f030m_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/inc/hk32f030m_i2c.h -------------------------------------------------------------------------------- /LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/inc/hk32f030m_iwdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/inc/hk32f030m_iwdg.h -------------------------------------------------------------------------------- /LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/inc/hk32f030m_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/inc/hk32f030m_misc.h -------------------------------------------------------------------------------- /LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/inc/hk32f030m_pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/inc/hk32f030m_pwr.h -------------------------------------------------------------------------------- /LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/inc/hk32f030m_rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/inc/hk32f030m_rcc.h -------------------------------------------------------------------------------- /LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/inc/hk32f030m_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/inc/hk32f030m_spi.h -------------------------------------------------------------------------------- /LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/inc/hk32f030m_syscfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/inc/hk32f030m_syscfg.h -------------------------------------------------------------------------------- /LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/inc/hk32f030m_tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/inc/hk32f030m_tim.h -------------------------------------------------------------------------------- /LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/inc/hk32f030m_usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/inc/hk32f030m_usart.h -------------------------------------------------------------------------------- /LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/inc/hk32f030m_wwdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/inc/hk32f030m_wwdg.h -------------------------------------------------------------------------------- /LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/src/hk32f030m_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/src/hk32f030m_adc.c -------------------------------------------------------------------------------- /LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/src/hk32f030m_awu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/src/hk32f030m_awu.c -------------------------------------------------------------------------------- /LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/src/hk32f030m_beep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/src/hk32f030m_beep.c -------------------------------------------------------------------------------- /LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/src/hk32f030m_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/src/hk32f030m_crc.c -------------------------------------------------------------------------------- /LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/src/hk32f030m_dbgmcu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/src/hk32f030m_dbgmcu.c -------------------------------------------------------------------------------- /LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/src/hk32f030m_exti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/src/hk32f030m_exti.c -------------------------------------------------------------------------------- /LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/src/hk32f030m_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/src/hk32f030m_flash.c -------------------------------------------------------------------------------- /LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/src/hk32f030m_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/src/hk32f030m_gpio.c -------------------------------------------------------------------------------- /LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/src/hk32f030m_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/src/hk32f030m_i2c.c -------------------------------------------------------------------------------- /LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/src/hk32f030m_iwdg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/src/hk32f030m_iwdg.c -------------------------------------------------------------------------------- /LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/src/hk32f030m_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/src/hk32f030m_misc.c -------------------------------------------------------------------------------- /LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/src/hk32f030m_pwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/src/hk32f030m_pwr.c -------------------------------------------------------------------------------- /LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/src/hk32f030m_rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/src/hk32f030m_rcc.c -------------------------------------------------------------------------------- /LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/src/hk32f030m_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/src/hk32f030m_spi.c -------------------------------------------------------------------------------- /LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/src/hk32f030m_syscfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/src/hk32f030m_syscfg.c -------------------------------------------------------------------------------- /LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/src/hk32f030m_tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/src/hk32f030m_tim.c -------------------------------------------------------------------------------- /LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/src/hk32f030m_usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/src/hk32f030m_usart.c -------------------------------------------------------------------------------- /LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/src/hk32f030m_wwdg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M/HK32F030M_Lib/src/hk32f030m_wwdg.c -------------------------------------------------------------------------------- /LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M_Project/MDK-ARM/HK32F030M_Demo.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M_Project/MDK-ARM/HK32F030M_Demo.uvoptx -------------------------------------------------------------------------------- /LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M_Project/MDK-ARM/HK32F030M_Demo.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M_Project/MDK-ARM/HK32F030M_Demo.uvprojx -------------------------------------------------------------------------------- /LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M_Project/MDK-ARM/JLinkSettings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M_Project/MDK-ARM/JLinkSettings.ini -------------------------------------------------------------------------------- /LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M_Project/MDK-ARM/╦½╗¸╔¥│²í░▒ÓÊÙ▓·╔·╬─╝■í▒.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M_Project/MDK-ARM/╦½╗¸╔¥│²í░▒ÓÊÙ▓·╔·╬─╝■í▒.bat -------------------------------------------------------------------------------- /LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M_Project/inc/define.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M_Project/inc/define.h -------------------------------------------------------------------------------- /LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M_Project/inc/hk32f030m_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M_Project/inc/hk32f030m_conf.h -------------------------------------------------------------------------------- /LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M_Project/inc/hk32f030m_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M_Project/inc/hk32f030m_it.h -------------------------------------------------------------------------------- /LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M_Project/inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M_Project/inc/main.h -------------------------------------------------------------------------------- /LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M_Project/src/hk32f030m_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M_Project/src/hk32f030m_it.c -------------------------------------------------------------------------------- /LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M_Project/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030M_Project/src/main.c -------------------------------------------------------------------------------- /LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030Mxx_LibraryVersionList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Library/HK32F030Mxx_Library_V1.1.6/HK32F030Mxx_LibraryVersionList.txt -------------------------------------------------------------------------------- /LCM/Project/MDK5/EventRecorderStub.scvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Project/MDK5/EventRecorderStub.scvd -------------------------------------------------------------------------------- /LCM/Project/MDK5/LCM_Light_Control_IO_WS2812_New.cbuild-pack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Project/MDK5/LCM_Light_Control_IO_WS2812_New.cbuild-pack.yml -------------------------------------------------------------------------------- /LCM/Project/MDK5/LCM_Light_Control_IO_WS2812_New.cproject.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Project/MDK5/LCM_Light_Control_IO_WS2812_New.cproject.yml -------------------------------------------------------------------------------- /LCM/Project/MDK5/LCM_Light_Control_IO_WS2812_New.csolution.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Project/MDK5/LCM_Light_Control_IO_WS2812_New.csolution.yml -------------------------------------------------------------------------------- /LCM/Project/MDK5/LCM_Light_Control_IO_WS2812_New.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Project/MDK5/LCM_Light_Control_IO_WS2812_New.uvoptx -------------------------------------------------------------------------------- /LCM/Project/MDK5/LCM_Light_Control_IO_WS2812_New.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Project/MDK5/LCM_Light_Control_IO_WS2812_New.uvprojx -------------------------------------------------------------------------------- /LCM/Project/MDK5/LCM_Light_Control_IO_WS2812_New_LCMLightControlIOWS2812New.sct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Project/MDK5/LCM_Light_Control_IO_WS2812_New_LCMLightControlIOWS2812New.sct -------------------------------------------------------------------------------- /LCM/Readme/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/Readme/Readme.txt -------------------------------------------------------------------------------- /LCM/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/build.bat -------------------------------------------------------------------------------- /LCM/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/build.sh -------------------------------------------------------------------------------- /LCM/flash.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/flash.bat -------------------------------------------------------------------------------- /LCM/flash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/flash.sh -------------------------------------------------------------------------------- /LCM/keilkill.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/LCM/keilkill.bat -------------------------------------------------------------------------------- /LCM/pyocd.yaml: -------------------------------------------------------------------------------- 1 | pack: 2 | - HKMicroChip.HK32F030xMxx_DFP.1.0.17.pack 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/README.md -------------------------------------------------------------------------------- /vcpkg-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfdado/floatwheel/HEAD/vcpkg-configuration.json --------------------------------------------------------------------------------