├── LICENSE ├── README.txt ├── chip-images ├── APM32F103CBT6.jpg ├── CKS32F103C8T6.jpg ├── GD32F103C8T6-flash.jpg ├── GD32F103C8T6-logic.jpg ├── GD32F130C8T6-flash.jpg ├── GD32F130C8T6-logic.jpg ├── GD32VF130CBT6-flash.jpg ├── GD32VF130CBT6-logic.jpg ├── README.txt └── STM32F103C8T6.jpg ├── cortex-m3-revision-check ├── DWT-check │ └── README.txt ├── README.txt └── VTOR-check │ └── README.txt ├── d1-a ├── arm-cks32f │ ├── README.txt │ └── cksFirmwareExtractor.py └── riscv-gd32vf │ ├── .cproject │ ├── .project │ ├── .settings │ ├── language.settings.xml │ └── org.eclipse.cdt.core.prefs │ ├── Debug │ ├── makefile │ ├── riscv-dump.elf │ └── riscv-dump.hex │ ├── README.txt │ └── src │ ├── link.ld │ └── start.S ├── d1-b └── README.txt ├── d1-c └── README.txt ├── d2 ├── cks32f103 │ └── README.txt └── gd32f103 │ └── README.txt ├── h1 ├── README.txt ├── readout-gd32f130-io0-clk.zip └── readout-gd32f130-io0-io1-io2-io3.zip ├── h2 ├── firmware │ ├── .cproject │ ├── .mxproject │ ├── .project │ ├── .settings │ │ └── language.settings.xml │ ├── Core │ │ ├── Inc │ │ │ ├── main.h │ │ │ ├── stm32f3xx_hal_conf.h │ │ │ └── stm32f3xx_it.h │ │ ├── Src │ │ │ ├── main.c │ │ │ ├── stm32f3xx_hal_msp.c │ │ │ ├── stm32f3xx_it.c │ │ │ ├── syscalls.c │ │ │ ├── sysmem.c │ │ │ └── system_stm32f3xx.c │ │ └── Startup │ │ │ └── startup_stm32f303vctx.s │ ├── Drivers │ │ ├── CMSIS │ │ │ ├── Device │ │ │ │ └── ST │ │ │ │ │ └── STM32F3xx │ │ │ │ │ └── Include │ │ │ │ │ ├── stm32f303xc.h │ │ │ │ │ ├── stm32f3xx.h │ │ │ │ │ └── system_stm32f3xx.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 │ │ └── STM32F3xx_HAL_Driver │ │ │ ├── Inc │ │ │ ├── Legacy │ │ │ │ └── stm32_hal_legacy.h │ │ │ ├── stm32f3xx_hal.h │ │ │ ├── stm32f3xx_hal_cortex.h │ │ │ ├── stm32f3xx_hal_def.h │ │ │ ├── stm32f3xx_hal_dma.h │ │ │ ├── stm32f3xx_hal_dma_ex.h │ │ │ ├── stm32f3xx_hal_exti.h │ │ │ ├── stm32f3xx_hal_flash.h │ │ │ ├── stm32f3xx_hal_flash_ex.h │ │ │ ├── stm32f3xx_hal_gpio.h │ │ │ ├── stm32f3xx_hal_gpio_ex.h │ │ │ ├── stm32f3xx_hal_i2c.h │ │ │ ├── stm32f3xx_hal_i2c_ex.h │ │ │ ├── stm32f3xx_hal_pwr.h │ │ │ ├── stm32f3xx_hal_pwr_ex.h │ │ │ ├── stm32f3xx_hal_rcc.h │ │ │ ├── stm32f3xx_hal_rcc_ex.h │ │ │ ├── stm32f3xx_hal_spi.h │ │ │ ├── stm32f3xx_hal_spi_ex.h │ │ │ ├── stm32f3xx_hal_tim.h │ │ │ ├── stm32f3xx_hal_tim_ex.h │ │ │ ├── stm32f3xx_hal_uart.h │ │ │ └── stm32f3xx_hal_uart_ex.h │ │ │ └── Src │ │ │ ├── stm32f3xx_hal.c │ │ │ ├── stm32f3xx_hal_cortex.c │ │ │ ├── stm32f3xx_hal_dma.c │ │ │ ├── stm32f3xx_hal_exti.c │ │ │ ├── stm32f3xx_hal_flash.c │ │ │ ├── stm32f3xx_hal_flash_ex.c │ │ │ ├── stm32f3xx_hal_gpio.c │ │ │ ├── stm32f3xx_hal_i2c.c │ │ │ ├── stm32f3xx_hal_i2c_ex.c │ │ │ ├── stm32f3xx_hal_pwr.c │ │ │ ├── stm32f3xx_hal_pwr_ex.c │ │ │ ├── stm32f3xx_hal_rcc.c │ │ │ ├── stm32f3xx_hal_rcc_ex.c │ │ │ ├── stm32f3xx_hal_spi.c │ │ │ ├── stm32f3xx_hal_spi_ex.c │ │ │ ├── stm32f3xx_hal_tim.c │ │ │ ├── stm32f3xx_hal_tim_ex.c │ │ │ ├── stm32f3xx_hal_uart.c │ │ │ └── stm32f3xx_hal_uart_ex.c │ ├── README.txt │ ├── STM32F303VCTX_FLASH.ld │ ├── bin │ │ ├── rdp2-faulter.bin │ │ └── rdp2-faulter.elf │ └── hit1x.ioc └── logic-trace │ ├── README.txt │ └── trace.zip └── h3 ├── README.txt ├── attackboard ├── .cproject ├── .mxproject ├── .project ├── .settings │ └── language.settings.xml ├── Core │ ├── Inc │ │ ├── main.h │ │ ├── stm32f3xx_hal_conf.h │ │ └── stm32f3xx_it.h │ ├── Src │ │ ├── main.c │ │ ├── stm32f3xx_hal_msp.c │ │ ├── stm32f3xx_it.c │ │ ├── syscalls.c │ │ ├── sysmem.c │ │ └── system_stm32f3xx.c │ └── Startup │ │ └── startup_stm32f303vctx.s ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F3xx │ │ │ │ └── Include │ │ │ │ ├── stm32f303xc.h │ │ │ │ ├── stm32f3xx.h │ │ │ │ └── system_stm32f3xx.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 │ └── STM32F3xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f3xx_hal.h │ │ ├── stm32f3xx_hal_cortex.h │ │ ├── stm32f3xx_hal_def.h │ │ ├── stm32f3xx_hal_dma.h │ │ ├── stm32f3xx_hal_dma_ex.h │ │ ├── stm32f3xx_hal_exti.h │ │ ├── stm32f3xx_hal_flash.h │ │ ├── stm32f3xx_hal_flash_ex.h │ │ ├── stm32f3xx_hal_gpio.h │ │ ├── stm32f3xx_hal_gpio_ex.h │ │ ├── stm32f3xx_hal_i2c.h │ │ ├── stm32f3xx_hal_i2c_ex.h │ │ ├── stm32f3xx_hal_pwr.h │ │ ├── stm32f3xx_hal_pwr_ex.h │ │ ├── stm32f3xx_hal_rcc.h │ │ ├── stm32f3xx_hal_rcc_ex.h │ │ ├── stm32f3xx_hal_spi.h │ │ ├── stm32f3xx_hal_spi_ex.h │ │ ├── stm32f3xx_hal_tim.h │ │ ├── stm32f3xx_hal_tim_ex.h │ │ ├── stm32f3xx_hal_uart.h │ │ └── stm32f3xx_hal_uart_ex.h │ │ └── Src │ │ ├── stm32f3xx_hal.c │ │ ├── stm32f3xx_hal_cortex.c │ │ ├── stm32f3xx_hal_dma.c │ │ ├── stm32f3xx_hal_exti.c │ │ ├── stm32f3xx_hal_flash.c │ │ ├── stm32f3xx_hal_flash_ex.c │ │ ├── stm32f3xx_hal_gpio.c │ │ ├── stm32f3xx_hal_i2c.c │ │ ├── stm32f3xx_hal_i2c_ex.c │ │ ├── stm32f3xx_hal_pwr.c │ │ ├── stm32f3xx_hal_pwr_ex.c │ │ ├── stm32f3xx_hal_rcc.c │ │ ├── stm32f3xx_hal_rcc_ex.c │ │ ├── stm32f3xx_hal_spi.c │ │ ├── stm32f3xx_hal_spi_ex.c │ │ ├── stm32f3xx_hal_tim.c │ │ ├── stm32f3xx_hal_tim_ex.c │ │ ├── stm32f3xx_hal_uart.c │ │ └── stm32f3xx_hal_uart_ex.c ├── STM32F303VCTX_FLASH.ld ├── bin │ ├── h3-attackboard.bin │ └── h3-attackboard.elf ├── hit1x Debug.launch └── hit1x.ioc └── rootshell ├── Makefile ├── main.c ├── ram.ld ├── shellcode.bin ├── sram.elf └── test.S /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/LICENSE -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/README.txt -------------------------------------------------------------------------------- /chip-images/APM32F103CBT6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/chip-images/APM32F103CBT6.jpg -------------------------------------------------------------------------------- /chip-images/CKS32F103C8T6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/chip-images/CKS32F103C8T6.jpg -------------------------------------------------------------------------------- /chip-images/GD32F103C8T6-flash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/chip-images/GD32F103C8T6-flash.jpg -------------------------------------------------------------------------------- /chip-images/GD32F103C8T6-logic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/chip-images/GD32F103C8T6-logic.jpg -------------------------------------------------------------------------------- /chip-images/GD32F130C8T6-flash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/chip-images/GD32F130C8T6-flash.jpg -------------------------------------------------------------------------------- /chip-images/GD32F130C8T6-logic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/chip-images/GD32F130C8T6-logic.jpg -------------------------------------------------------------------------------- /chip-images/GD32VF130CBT6-flash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/chip-images/GD32VF130CBT6-flash.jpg -------------------------------------------------------------------------------- /chip-images/GD32VF130CBT6-logic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/chip-images/GD32VF130CBT6-logic.jpg -------------------------------------------------------------------------------- /chip-images/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/chip-images/README.txt -------------------------------------------------------------------------------- /chip-images/STM32F103C8T6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/chip-images/STM32F103C8T6.jpg -------------------------------------------------------------------------------- /cortex-m3-revision-check/DWT-check/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/cortex-m3-revision-check/DWT-check/README.txt -------------------------------------------------------------------------------- /cortex-m3-revision-check/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/cortex-m3-revision-check/README.txt -------------------------------------------------------------------------------- /cortex-m3-revision-check/VTOR-check/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/cortex-m3-revision-check/VTOR-check/README.txt -------------------------------------------------------------------------------- /d1-a/arm-cks32f/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/d1-a/arm-cks32f/README.txt -------------------------------------------------------------------------------- /d1-a/arm-cks32f/cksFirmwareExtractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/d1-a/arm-cks32f/cksFirmwareExtractor.py -------------------------------------------------------------------------------- /d1-a/riscv-gd32vf/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/d1-a/riscv-gd32vf/.cproject -------------------------------------------------------------------------------- /d1-a/riscv-gd32vf/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/d1-a/riscv-gd32vf/.project -------------------------------------------------------------------------------- /d1-a/riscv-gd32vf/.settings/language.settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/d1-a/riscv-gd32vf/.settings/language.settings.xml -------------------------------------------------------------------------------- /d1-a/riscv-gd32vf/.settings/org.eclipse.cdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/d1-a/riscv-gd32vf/.settings/org.eclipse.cdt.core.prefs -------------------------------------------------------------------------------- /d1-a/riscv-gd32vf/Debug/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/d1-a/riscv-gd32vf/Debug/makefile -------------------------------------------------------------------------------- /d1-a/riscv-gd32vf/Debug/riscv-dump.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/d1-a/riscv-gd32vf/Debug/riscv-dump.elf -------------------------------------------------------------------------------- /d1-a/riscv-gd32vf/Debug/riscv-dump.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/d1-a/riscv-gd32vf/Debug/riscv-dump.hex -------------------------------------------------------------------------------- /d1-a/riscv-gd32vf/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/d1-a/riscv-gd32vf/README.txt -------------------------------------------------------------------------------- /d1-a/riscv-gd32vf/src/link.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/d1-a/riscv-gd32vf/src/link.ld -------------------------------------------------------------------------------- /d1-a/riscv-gd32vf/src/start.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/d1-a/riscv-gd32vf/src/start.S -------------------------------------------------------------------------------- /d1-b/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/d1-b/README.txt -------------------------------------------------------------------------------- /d1-c/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/d1-c/README.txt -------------------------------------------------------------------------------- /d2/cks32f103/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/d2/cks32f103/README.txt -------------------------------------------------------------------------------- /d2/gd32f103/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/d2/gd32f103/README.txt -------------------------------------------------------------------------------- /h1/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h1/README.txt -------------------------------------------------------------------------------- /h1/readout-gd32f130-io0-clk.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h1/readout-gd32f130-io0-clk.zip -------------------------------------------------------------------------------- /h1/readout-gd32f130-io0-io1-io2-io3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h1/readout-gd32f130-io0-io1-io2-io3.zip -------------------------------------------------------------------------------- /h2/firmware/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/.cproject -------------------------------------------------------------------------------- /h2/firmware/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/.mxproject -------------------------------------------------------------------------------- /h2/firmware/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/.project -------------------------------------------------------------------------------- /h2/firmware/.settings/language.settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/.settings/language.settings.xml -------------------------------------------------------------------------------- /h2/firmware/Core/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Core/Inc/main.h -------------------------------------------------------------------------------- /h2/firmware/Core/Inc/stm32f3xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Core/Inc/stm32f3xx_hal_conf.h -------------------------------------------------------------------------------- /h2/firmware/Core/Inc/stm32f3xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Core/Inc/stm32f3xx_it.h -------------------------------------------------------------------------------- /h2/firmware/Core/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Core/Src/main.c -------------------------------------------------------------------------------- /h2/firmware/Core/Src/stm32f3xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Core/Src/stm32f3xx_hal_msp.c -------------------------------------------------------------------------------- /h2/firmware/Core/Src/stm32f3xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Core/Src/stm32f3xx_it.c -------------------------------------------------------------------------------- /h2/firmware/Core/Src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Core/Src/syscalls.c -------------------------------------------------------------------------------- /h2/firmware/Core/Src/sysmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Core/Src/sysmem.c -------------------------------------------------------------------------------- /h2/firmware/Core/Src/system_stm32f3xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Core/Src/system_stm32f3xx.c -------------------------------------------------------------------------------- /h2/firmware/Core/Startup/startup_stm32f303vctx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Core/Startup/startup_stm32f303vctx.s -------------------------------------------------------------------------------- /h2/firmware/Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f303xc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f303xc.h -------------------------------------------------------------------------------- /h2/firmware/Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f3xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f3xx.h -------------------------------------------------------------------------------- /h2/firmware/Drivers/CMSIS/Device/ST/STM32F3xx/Include/system_stm32f3xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Drivers/CMSIS/Device/ST/STM32F3xx/Include/system_stm32f3xx.h -------------------------------------------------------------------------------- /h2/firmware/Drivers/CMSIS/Include/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Drivers/CMSIS/Include/cmsis_armcc.h -------------------------------------------------------------------------------- /h2/firmware/Drivers/CMSIS/Include/cmsis_armclang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Drivers/CMSIS/Include/cmsis_armclang.h -------------------------------------------------------------------------------- /h2/firmware/Drivers/CMSIS/Include/cmsis_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Drivers/CMSIS/Include/cmsis_compiler.h -------------------------------------------------------------------------------- /h2/firmware/Drivers/CMSIS/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Drivers/CMSIS/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /h2/firmware/Drivers/CMSIS/Include/cmsis_iccarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Drivers/CMSIS/Include/cmsis_iccarm.h -------------------------------------------------------------------------------- /h2/firmware/Drivers/CMSIS/Include/cmsis_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Drivers/CMSIS/Include/cmsis_version.h -------------------------------------------------------------------------------- /h2/firmware/Drivers/CMSIS/Include/core_armv8mbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Drivers/CMSIS/Include/core_armv8mbl.h -------------------------------------------------------------------------------- /h2/firmware/Drivers/CMSIS/Include/core_armv8mml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Drivers/CMSIS/Include/core_armv8mml.h -------------------------------------------------------------------------------- /h2/firmware/Drivers/CMSIS/Include/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Drivers/CMSIS/Include/core_cm0.h -------------------------------------------------------------------------------- /h2/firmware/Drivers/CMSIS/Include/core_cm0plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Drivers/CMSIS/Include/core_cm0plus.h -------------------------------------------------------------------------------- /h2/firmware/Drivers/CMSIS/Include/core_cm1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Drivers/CMSIS/Include/core_cm1.h -------------------------------------------------------------------------------- /h2/firmware/Drivers/CMSIS/Include/core_cm23.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Drivers/CMSIS/Include/core_cm23.h -------------------------------------------------------------------------------- /h2/firmware/Drivers/CMSIS/Include/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Drivers/CMSIS/Include/core_cm3.h -------------------------------------------------------------------------------- /h2/firmware/Drivers/CMSIS/Include/core_cm33.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Drivers/CMSIS/Include/core_cm33.h -------------------------------------------------------------------------------- /h2/firmware/Drivers/CMSIS/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Drivers/CMSIS/Include/core_cm4.h -------------------------------------------------------------------------------- /h2/firmware/Drivers/CMSIS/Include/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Drivers/CMSIS/Include/core_cm7.h -------------------------------------------------------------------------------- /h2/firmware/Drivers/CMSIS/Include/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Drivers/CMSIS/Include/core_sc000.h -------------------------------------------------------------------------------- /h2/firmware/Drivers/CMSIS/Include/core_sc300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Drivers/CMSIS/Include/core_sc300.h -------------------------------------------------------------------------------- /h2/firmware/Drivers/CMSIS/Include/mpu_armv7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Drivers/CMSIS/Include/mpu_armv7.h -------------------------------------------------------------------------------- /h2/firmware/Drivers/CMSIS/Include/mpu_armv8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Drivers/CMSIS/Include/mpu_armv8.h -------------------------------------------------------------------------------- /h2/firmware/Drivers/CMSIS/Include/tz_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Drivers/CMSIS/Include/tz_context.h -------------------------------------------------------------------------------- /h2/firmware/Drivers/STM32F3xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Drivers/STM32F3xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h -------------------------------------------------------------------------------- /h2/firmware/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal.h -------------------------------------------------------------------------------- /h2/firmware/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_cortex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_cortex.h -------------------------------------------------------------------------------- /h2/firmware/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_def.h -------------------------------------------------------------------------------- /h2/firmware/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma.h -------------------------------------------------------------------------------- /h2/firmware/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma_ex.h -------------------------------------------------------------------------------- /h2/firmware/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_exti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_exti.h -------------------------------------------------------------------------------- /h2/firmware/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash.h -------------------------------------------------------------------------------- /h2/firmware/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash_ex.h -------------------------------------------------------------------------------- /h2/firmware/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio.h -------------------------------------------------------------------------------- /h2/firmware/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio_ex.h -------------------------------------------------------------------------------- /h2/firmware/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c.h -------------------------------------------------------------------------------- /h2/firmware/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c_ex.h -------------------------------------------------------------------------------- /h2/firmware/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr.h -------------------------------------------------------------------------------- /h2/firmware/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr_ex.h -------------------------------------------------------------------------------- /h2/firmware/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc.h -------------------------------------------------------------------------------- /h2/firmware/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc_ex.h -------------------------------------------------------------------------------- /h2/firmware/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi.h -------------------------------------------------------------------------------- /h2/firmware/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi_ex.h -------------------------------------------------------------------------------- /h2/firmware/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim.h -------------------------------------------------------------------------------- /h2/firmware/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim_ex.h -------------------------------------------------------------------------------- /h2/firmware/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart.h -------------------------------------------------------------------------------- /h2/firmware/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart_ex.h -------------------------------------------------------------------------------- /h2/firmware/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal.c -------------------------------------------------------------------------------- /h2/firmware/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_cortex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_cortex.c -------------------------------------------------------------------------------- /h2/firmware/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_dma.c -------------------------------------------------------------------------------- /h2/firmware/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_exti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_exti.c -------------------------------------------------------------------------------- /h2/firmware/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_flash.c -------------------------------------------------------------------------------- /h2/firmware/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_flash_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_flash_ex.c -------------------------------------------------------------------------------- /h2/firmware/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_gpio.c -------------------------------------------------------------------------------- /h2/firmware/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c.c -------------------------------------------------------------------------------- /h2/firmware/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c -------------------------------------------------------------------------------- /h2/firmware/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c -------------------------------------------------------------------------------- /h2/firmware/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c -------------------------------------------------------------------------------- /h2/firmware/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_rcc.c -------------------------------------------------------------------------------- /h2/firmware/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_rcc_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_rcc_ex.c -------------------------------------------------------------------------------- /h2/firmware/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi.c -------------------------------------------------------------------------------- /h2/firmware/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c -------------------------------------------------------------------------------- /h2/firmware/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_tim.c -------------------------------------------------------------------------------- /h2/firmware/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_tim_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_tim_ex.c -------------------------------------------------------------------------------- /h2/firmware/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_uart.c -------------------------------------------------------------------------------- /h2/firmware/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_uart_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_uart_ex.c -------------------------------------------------------------------------------- /h2/firmware/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/README.txt -------------------------------------------------------------------------------- /h2/firmware/STM32F303VCTX_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/STM32F303VCTX_FLASH.ld -------------------------------------------------------------------------------- /h2/firmware/bin/rdp2-faulter.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/bin/rdp2-faulter.bin -------------------------------------------------------------------------------- /h2/firmware/bin/rdp2-faulter.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/bin/rdp2-faulter.elf -------------------------------------------------------------------------------- /h2/firmware/hit1x.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/firmware/hit1x.ioc -------------------------------------------------------------------------------- /h2/logic-trace/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/logic-trace/README.txt -------------------------------------------------------------------------------- /h2/logic-trace/trace.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h2/logic-trace/trace.zip -------------------------------------------------------------------------------- /h3/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/README.txt -------------------------------------------------------------------------------- /h3/attackboard/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/.cproject -------------------------------------------------------------------------------- /h3/attackboard/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/.mxproject -------------------------------------------------------------------------------- /h3/attackboard/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/.project -------------------------------------------------------------------------------- /h3/attackboard/.settings/language.settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/.settings/language.settings.xml -------------------------------------------------------------------------------- /h3/attackboard/Core/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Core/Inc/main.h -------------------------------------------------------------------------------- /h3/attackboard/Core/Inc/stm32f3xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Core/Inc/stm32f3xx_hal_conf.h -------------------------------------------------------------------------------- /h3/attackboard/Core/Inc/stm32f3xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Core/Inc/stm32f3xx_it.h -------------------------------------------------------------------------------- /h3/attackboard/Core/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Core/Src/main.c -------------------------------------------------------------------------------- /h3/attackboard/Core/Src/stm32f3xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Core/Src/stm32f3xx_hal_msp.c -------------------------------------------------------------------------------- /h3/attackboard/Core/Src/stm32f3xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Core/Src/stm32f3xx_it.c -------------------------------------------------------------------------------- /h3/attackboard/Core/Src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Core/Src/syscalls.c -------------------------------------------------------------------------------- /h3/attackboard/Core/Src/sysmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Core/Src/sysmem.c -------------------------------------------------------------------------------- /h3/attackboard/Core/Src/system_stm32f3xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Core/Src/system_stm32f3xx.c -------------------------------------------------------------------------------- /h3/attackboard/Core/Startup/startup_stm32f303vctx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Core/Startup/startup_stm32f303vctx.s -------------------------------------------------------------------------------- /h3/attackboard/Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f303xc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f303xc.h -------------------------------------------------------------------------------- /h3/attackboard/Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f3xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f3xx.h -------------------------------------------------------------------------------- /h3/attackboard/Drivers/CMSIS/Device/ST/STM32F3xx/Include/system_stm32f3xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Drivers/CMSIS/Device/ST/STM32F3xx/Include/system_stm32f3xx.h -------------------------------------------------------------------------------- /h3/attackboard/Drivers/CMSIS/Include/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Drivers/CMSIS/Include/cmsis_armcc.h -------------------------------------------------------------------------------- /h3/attackboard/Drivers/CMSIS/Include/cmsis_armclang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Drivers/CMSIS/Include/cmsis_armclang.h -------------------------------------------------------------------------------- /h3/attackboard/Drivers/CMSIS/Include/cmsis_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Drivers/CMSIS/Include/cmsis_compiler.h -------------------------------------------------------------------------------- /h3/attackboard/Drivers/CMSIS/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Drivers/CMSIS/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /h3/attackboard/Drivers/CMSIS/Include/cmsis_iccarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Drivers/CMSIS/Include/cmsis_iccarm.h -------------------------------------------------------------------------------- /h3/attackboard/Drivers/CMSIS/Include/cmsis_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Drivers/CMSIS/Include/cmsis_version.h -------------------------------------------------------------------------------- /h3/attackboard/Drivers/CMSIS/Include/core_armv8mbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Drivers/CMSIS/Include/core_armv8mbl.h -------------------------------------------------------------------------------- /h3/attackboard/Drivers/CMSIS/Include/core_armv8mml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Drivers/CMSIS/Include/core_armv8mml.h -------------------------------------------------------------------------------- /h3/attackboard/Drivers/CMSIS/Include/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Drivers/CMSIS/Include/core_cm0.h -------------------------------------------------------------------------------- /h3/attackboard/Drivers/CMSIS/Include/core_cm0plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Drivers/CMSIS/Include/core_cm0plus.h -------------------------------------------------------------------------------- /h3/attackboard/Drivers/CMSIS/Include/core_cm1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Drivers/CMSIS/Include/core_cm1.h -------------------------------------------------------------------------------- /h3/attackboard/Drivers/CMSIS/Include/core_cm23.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Drivers/CMSIS/Include/core_cm23.h -------------------------------------------------------------------------------- /h3/attackboard/Drivers/CMSIS/Include/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Drivers/CMSIS/Include/core_cm3.h -------------------------------------------------------------------------------- /h3/attackboard/Drivers/CMSIS/Include/core_cm33.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Drivers/CMSIS/Include/core_cm33.h -------------------------------------------------------------------------------- /h3/attackboard/Drivers/CMSIS/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Drivers/CMSIS/Include/core_cm4.h -------------------------------------------------------------------------------- /h3/attackboard/Drivers/CMSIS/Include/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Drivers/CMSIS/Include/core_cm7.h -------------------------------------------------------------------------------- /h3/attackboard/Drivers/CMSIS/Include/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Drivers/CMSIS/Include/core_sc000.h -------------------------------------------------------------------------------- /h3/attackboard/Drivers/CMSIS/Include/core_sc300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Drivers/CMSIS/Include/core_sc300.h -------------------------------------------------------------------------------- /h3/attackboard/Drivers/CMSIS/Include/mpu_armv7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Drivers/CMSIS/Include/mpu_armv7.h -------------------------------------------------------------------------------- /h3/attackboard/Drivers/CMSIS/Include/mpu_armv8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Drivers/CMSIS/Include/mpu_armv8.h -------------------------------------------------------------------------------- /h3/attackboard/Drivers/CMSIS/Include/tz_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Drivers/CMSIS/Include/tz_context.h -------------------------------------------------------------------------------- /h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h -------------------------------------------------------------------------------- /h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal.h -------------------------------------------------------------------------------- /h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_cortex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_cortex.h -------------------------------------------------------------------------------- /h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_def.h -------------------------------------------------------------------------------- /h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma.h -------------------------------------------------------------------------------- /h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma_ex.h -------------------------------------------------------------------------------- /h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_exti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_exti.h -------------------------------------------------------------------------------- /h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash.h -------------------------------------------------------------------------------- /h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash_ex.h -------------------------------------------------------------------------------- /h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio.h -------------------------------------------------------------------------------- /h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio_ex.h -------------------------------------------------------------------------------- /h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c.h -------------------------------------------------------------------------------- /h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c_ex.h -------------------------------------------------------------------------------- /h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr.h -------------------------------------------------------------------------------- /h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr_ex.h -------------------------------------------------------------------------------- /h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc.h -------------------------------------------------------------------------------- /h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc_ex.h -------------------------------------------------------------------------------- /h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi.h -------------------------------------------------------------------------------- /h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi_ex.h -------------------------------------------------------------------------------- /h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim.h -------------------------------------------------------------------------------- /h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim_ex.h -------------------------------------------------------------------------------- /h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart.h -------------------------------------------------------------------------------- /h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart_ex.h -------------------------------------------------------------------------------- /h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal.c -------------------------------------------------------------------------------- /h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_cortex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_cortex.c -------------------------------------------------------------------------------- /h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_dma.c -------------------------------------------------------------------------------- /h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_exti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_exti.c -------------------------------------------------------------------------------- /h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_flash.c -------------------------------------------------------------------------------- /h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_flash_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_flash_ex.c -------------------------------------------------------------------------------- /h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_gpio.c -------------------------------------------------------------------------------- /h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c.c -------------------------------------------------------------------------------- /h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c -------------------------------------------------------------------------------- /h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c -------------------------------------------------------------------------------- /h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c -------------------------------------------------------------------------------- /h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_rcc.c -------------------------------------------------------------------------------- /h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_rcc_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_rcc_ex.c -------------------------------------------------------------------------------- /h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi.c -------------------------------------------------------------------------------- /h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c -------------------------------------------------------------------------------- /h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_tim.c -------------------------------------------------------------------------------- /h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_tim_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_tim_ex.c -------------------------------------------------------------------------------- /h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_uart.c -------------------------------------------------------------------------------- /h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_uart_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_uart_ex.c -------------------------------------------------------------------------------- /h3/attackboard/STM32F303VCTX_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/STM32F303VCTX_FLASH.ld -------------------------------------------------------------------------------- /h3/attackboard/bin/h3-attackboard.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/bin/h3-attackboard.bin -------------------------------------------------------------------------------- /h3/attackboard/bin/h3-attackboard.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/bin/h3-attackboard.elf -------------------------------------------------------------------------------- /h3/attackboard/hit1x Debug.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/hit1x Debug.launch -------------------------------------------------------------------------------- /h3/attackboard/hit1x.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/attackboard/hit1x.ioc -------------------------------------------------------------------------------- /h3/rootshell/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/rootshell/Makefile -------------------------------------------------------------------------------- /h3/rootshell/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/rootshell/main.c -------------------------------------------------------------------------------- /h3/rootshell/ram.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/rootshell/ram.ld -------------------------------------------------------------------------------- /h3/rootshell/shellcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/rootshell/shellcode.bin -------------------------------------------------------------------------------- /h3/rootshell/sram.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/rootshell/sram.elf -------------------------------------------------------------------------------- /h3/rootshell/test.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohannesObermaier/f103-analysis/HEAD/h3/rootshell/test.S --------------------------------------------------------------------------------