├── .gitignore ├── .mxproject ├── Inc ├── main.h ├── stm32f4xx_hal_conf.h └── stm32f4xx_it.h ├── LICENSE ├── Lib ├── r820t2.c └── r820t2.h ├── Makefile ├── README.md ├── STM32F405RGTx_FLASH.ld ├── Src ├── gpio.tmp ├── license.tmp ├── main.c ├── stm32f4xx_hal_msp.c ├── stm32f4xx_it.c ├── system.tmp └── system_stm32f4xx.c ├── cubefix.sh ├── main.ioc ├── mx.scratch └── startup_stm32f405xx.s /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | *.backup 3 | -------------------------------------------------------------------------------- /.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiskon/stm32-r820t2/HEAD/.mxproject -------------------------------------------------------------------------------- /Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiskon/stm32-r820t2/HEAD/Inc/main.h -------------------------------------------------------------------------------- /Inc/stm32f4xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiskon/stm32-r820t2/HEAD/Inc/stm32f4xx_hal_conf.h -------------------------------------------------------------------------------- /Inc/stm32f4xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiskon/stm32-r820t2/HEAD/Inc/stm32f4xx_it.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiskon/stm32-r820t2/HEAD/LICENSE -------------------------------------------------------------------------------- /Lib/r820t2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiskon/stm32-r820t2/HEAD/Lib/r820t2.c -------------------------------------------------------------------------------- /Lib/r820t2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiskon/stm32-r820t2/HEAD/Lib/r820t2.h -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiskon/stm32-r820t2/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiskon/stm32-r820t2/HEAD/README.md -------------------------------------------------------------------------------- /STM32F405RGTx_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiskon/stm32-r820t2/HEAD/STM32F405RGTx_FLASH.ld -------------------------------------------------------------------------------- /Src/gpio.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiskon/stm32-r820t2/HEAD/Src/gpio.tmp -------------------------------------------------------------------------------- /Src/license.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiskon/stm32-r820t2/HEAD/Src/license.tmp -------------------------------------------------------------------------------- /Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiskon/stm32-r820t2/HEAD/Src/main.c -------------------------------------------------------------------------------- /Src/stm32f4xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiskon/stm32-r820t2/HEAD/Src/stm32f4xx_hal_msp.c -------------------------------------------------------------------------------- /Src/stm32f4xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiskon/stm32-r820t2/HEAD/Src/stm32f4xx_it.c -------------------------------------------------------------------------------- /Src/system.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiskon/stm32-r820t2/HEAD/Src/system.tmp -------------------------------------------------------------------------------- /Src/system_stm32f4xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiskon/stm32-r820t2/HEAD/Src/system_stm32f4xx.c -------------------------------------------------------------------------------- /cubefix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiskon/stm32-r820t2/HEAD/cubefix.sh -------------------------------------------------------------------------------- /main.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiskon/stm32-r820t2/HEAD/main.ioc -------------------------------------------------------------------------------- /mx.scratch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiskon/stm32-r820t2/HEAD/mx.scratch -------------------------------------------------------------------------------- /startup_stm32f405xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiskon/stm32-r820t2/HEAD/startup_stm32f405xx.s --------------------------------------------------------------------------------