├── .gitignore ├── README.md ├── RemoteSystemsTempFiles └── .project ├── button_interrupted ├── .gitignore ├── .mxproject ├── .osx.project ├── .project ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F4xx │ │ │ │ └── Include │ │ │ │ ├── stm32f407xx.h │ │ │ │ ├── stm32f4xx.h │ │ │ │ └── system_stm32f4xx.h │ │ └── Include │ │ │ ├── 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_cm3.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_cmFunc.h │ │ │ ├── core_cmInstr.h │ │ │ ├── core_cmSimd.h │ │ │ ├── core_sc000.h │ │ │ └── core_sc300.h │ └── STM32F4xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f4xx_hal.h │ │ ├── stm32f4xx_hal_cortex.h │ │ ├── stm32f4xx_hal_def.h │ │ ├── stm32f4xx_hal_dma.h │ │ ├── stm32f4xx_hal_dma_ex.h │ │ ├── stm32f4xx_hal_flash.h │ │ ├── stm32f4xx_hal_flash_ex.h │ │ ├── stm32f4xx_hal_flash_ramfunc.h │ │ ├── stm32f4xx_hal_gpio.h │ │ ├── stm32f4xx_hal_gpio_ex.h │ │ ├── stm32f4xx_hal_pwr.h │ │ ├── stm32f4xx_hal_pwr_ex.h │ │ ├── stm32f4xx_hal_rcc.h │ │ ├── stm32f4xx_hal_rcc_ex.h │ │ ├── stm32f4xx_hal_tim.h │ │ ├── stm32f4xx_hal_tim_ex.h │ │ └── stm32f4xx_hal_uart.h │ │ └── Src │ │ ├── stm32f4xx_hal.c │ │ ├── stm32f4xx_hal_cortex.c │ │ ├── stm32f4xx_hal_dma.c │ │ ├── stm32f4xx_hal_dma_ex.c │ │ ├── stm32f4xx_hal_flash.c │ │ ├── stm32f4xx_hal_flash_ex.c │ │ ├── stm32f4xx_hal_flash_ramfunc.c │ │ ├── stm32f4xx_hal_gpio.c │ │ ├── stm32f4xx_hal_pwr.c │ │ ├── stm32f4xx_hal_pwr_ex.c │ │ ├── stm32f4xx_hal_rcc.c │ │ ├── stm32f4xx_hal_rcc_ex.c │ │ ├── stm32f4xx_hal_tim.c │ │ ├── stm32f4xx_hal_tim_ex.c │ │ └── stm32f4xx_hal_uart.c ├── Inc │ ├── gpio.h │ ├── main.h │ ├── stm32f4xx_hal_conf.h │ ├── stm32f4xx_it.h │ └── usart.h ├── STM32F407G-DISC1.xml ├── STM32F407VGTx_FLASH.ld ├── Src │ ├── gpio.c │ ├── main.c │ ├── stm32f4xx_hal_msp.c │ ├── stm32f4xx_it.c │ ├── system_stm32f4xx.c │ └── usart.c ├── button_interrupted.ioc └── startup │ └── startup_stm32f407xx.s ├── first_button ├── .cproject ├── .mxproject ├── .project ├── .settings │ └── language.settings.xml ├── Debug │ ├── .gitignore │ ├── Drivers │ │ └── STM32F4xx_HAL_Driver │ │ │ └── Src │ │ │ └── subdir.mk │ ├── Src │ │ └── subdir.mk │ ├── first_button.bin │ ├── makefile │ ├── objects.list │ ├── objects.mk │ ├── sources.mk │ └── startup │ │ └── subdir.mk ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F4xx │ │ │ │ └── Include │ │ │ │ ├── stm32f407xx.h │ │ │ │ ├── stm32f4xx.h │ │ │ │ └── system_stm32f4xx.h │ │ └── Include │ │ │ ├── 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_cm3.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_cmFunc.h │ │ │ ├── core_cmInstr.h │ │ │ ├── core_cmSimd.h │ │ │ ├── core_sc000.h │ │ │ └── core_sc300.h │ └── STM32F4xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f4xx_hal.h │ │ ├── stm32f4xx_hal_cortex.h │ │ ├── stm32f4xx_hal_def.h │ │ ├── stm32f4xx_hal_dma.h │ │ ├── stm32f4xx_hal_dma_ex.h │ │ ├── stm32f4xx_hal_flash.h │ │ ├── stm32f4xx_hal_flash_ex.h │ │ ├── stm32f4xx_hal_flash_ramfunc.h │ │ ├── stm32f4xx_hal_gpio.h │ │ ├── stm32f4xx_hal_gpio_ex.h │ │ ├── stm32f4xx_hal_pwr.h │ │ ├── stm32f4xx_hal_pwr_ex.h │ │ ├── stm32f4xx_hal_rcc.h │ │ ├── stm32f4xx_hal_rcc_ex.h │ │ ├── stm32f4xx_hal_tim.h │ │ └── stm32f4xx_hal_tim_ex.h │ │ └── Src │ │ ├── stm32f4xx_hal.c │ │ ├── stm32f4xx_hal_cortex.c │ │ ├── stm32f4xx_hal_dma.c │ │ ├── stm32f4xx_hal_dma_ex.c │ │ ├── stm32f4xx_hal_flash.c │ │ ├── stm32f4xx_hal_flash_ex.c │ │ ├── stm32f4xx_hal_flash_ramfunc.c │ │ ├── stm32f4xx_hal_gpio.c │ │ ├── stm32f4xx_hal_pwr.c │ │ ├── stm32f4xx_hal_pwr_ex.c │ │ ├── stm32f4xx_hal_rcc.c │ │ ├── stm32f4xx_hal_rcc_ex.c │ │ ├── stm32f4xx_hal_tim.c │ │ └── stm32f4xx_hal_tim_ex.c ├── Inc │ ├── gpio.h │ ├── main.h │ ├── stm32f4xx_hal_conf.h │ └── stm32f4xx_it.h ├── STM32F407G-DISC1.xml ├── STM32F407VGTx_FLASH.ld ├── Src │ ├── gpio.c │ ├── main.c │ ├── stm32f4xx_hal_msp.c │ ├── stm32f4xx_it.c │ └── system_stm32f4xx.c ├── first_button.ioc └── startup │ └── startup_stm32f407xx.s ├── i2c_lcd ├── .gitignore ├── .mxproject ├── .osx.project ├── .project ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F4xx │ │ │ │ └── Include │ │ │ │ ├── stm32f407xx.h │ │ │ │ ├── stm32f4xx.h │ │ │ │ └── system_stm32f4xx.h │ │ └── Include │ │ │ ├── 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_cm3.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_cmFunc.h │ │ │ ├── core_cmInstr.h │ │ │ ├── core_cmSimd.h │ │ │ ├── core_sc000.h │ │ │ └── core_sc300.h │ └── STM32F4xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f4xx_hal.h │ │ ├── stm32f4xx_hal_cortex.h │ │ ├── stm32f4xx_hal_def.h │ │ ├── stm32f4xx_hal_dma.h │ │ ├── stm32f4xx_hal_dma_ex.h │ │ ├── stm32f4xx_hal_flash.h │ │ ├── stm32f4xx_hal_flash_ex.h │ │ ├── stm32f4xx_hal_flash_ramfunc.h │ │ ├── stm32f4xx_hal_gpio.h │ │ ├── stm32f4xx_hal_gpio_ex.h │ │ ├── stm32f4xx_hal_i2c.h │ │ ├── stm32f4xx_hal_i2c_ex.h │ │ ├── stm32f4xx_hal_pwr.h │ │ ├── stm32f4xx_hal_pwr_ex.h │ │ ├── stm32f4xx_hal_rcc.h │ │ ├── stm32f4xx_hal_rcc_ex.h │ │ ├── stm32f4xx_hal_tim.h │ │ ├── stm32f4xx_hal_tim_ex.h │ │ └── stm32f4xx_hal_uart.h │ │ └── Src │ │ ├── stm32f4xx_hal.c │ │ ├── stm32f4xx_hal_cortex.c │ │ ├── stm32f4xx_hal_dma.c │ │ ├── stm32f4xx_hal_dma_ex.c │ │ ├── stm32f4xx_hal_flash.c │ │ ├── stm32f4xx_hal_flash_ex.c │ │ ├── stm32f4xx_hal_flash_ramfunc.c │ │ ├── stm32f4xx_hal_gpio.c │ │ ├── stm32f4xx_hal_i2c.c │ │ ├── stm32f4xx_hal_i2c_ex.c │ │ ├── stm32f4xx_hal_pwr.c │ │ ├── stm32f4xx_hal_pwr_ex.c │ │ ├── stm32f4xx_hal_rcc.c │ │ ├── stm32f4xx_hal_rcc_ex.c │ │ ├── stm32f4xx_hal_tim.c │ │ ├── stm32f4xx_hal_tim_ex.c │ │ └── stm32f4xx_hal_uart.c ├── Inc │ ├── dma.h │ ├── gpio.h │ ├── i2c.h │ ├── main.h │ ├── stm32f4xx_hal_conf.h │ ├── stm32f4xx_it.h │ └── usart.h ├── STM32F407G-DISC1.xml ├── STM32F407VGTx_FLASH.ld ├── Src │ ├── dma.c │ ├── gpio.c │ ├── hd44780.c │ ├── hd44780.h │ ├── i2c.c │ ├── main.c │ ├── pcf8574.c │ ├── pcf8574.h │ ├── stm32f4xx_hal_msp.c │ ├── stm32f4xx_it.c │ ├── system_stm32f4xx.c │ └── usart.c ├── i2c_lcd.ioc └── startup │ └── startup_stm32f407xx.s ├── images ├── STM32F4_UART2_setup.png └── stm32f4_LED_Display.jpg ├── spi_test ├── .mxproject ├── .osx.project ├── .project ├── Debug │ ├── Drivers │ │ └── STM32F4xx_HAL_Driver │ │ │ └── Src │ │ │ └── subdir.mk │ ├── Src │ │ └── subdir.mk │ ├── makefile │ ├── objects.list │ ├── objects.mk │ ├── sources.mk │ └── startup │ │ └── subdir.mk ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F4xx │ │ │ │ └── Include │ │ │ │ ├── stm32f407xx.h │ │ │ │ ├── stm32f4xx.h │ │ │ │ └── system_stm32f4xx.h │ │ └── Include │ │ │ ├── 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_cm3.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_cmFunc.h │ │ │ ├── core_cmInstr.h │ │ │ ├── core_cmSimd.h │ │ │ ├── core_sc000.h │ │ │ └── core_sc300.h │ └── STM32F4xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f4xx_hal.h │ │ ├── stm32f4xx_hal_cortex.h │ │ ├── stm32f4xx_hal_def.h │ │ ├── stm32f4xx_hal_dma.h │ │ ├── stm32f4xx_hal_dma_ex.h │ │ ├── stm32f4xx_hal_flash.h │ │ ├── stm32f4xx_hal_flash_ex.h │ │ ├── stm32f4xx_hal_flash_ramfunc.h │ │ ├── stm32f4xx_hal_gpio.h │ │ ├── stm32f4xx_hal_gpio_ex.h │ │ ├── stm32f4xx_hal_i2c.h │ │ ├── stm32f4xx_hal_i2c_ex.h │ │ ├── stm32f4xx_hal_pwr.h │ │ ├── stm32f4xx_hal_pwr_ex.h │ │ ├── stm32f4xx_hal_rcc.h │ │ ├── stm32f4xx_hal_rcc_ex.h │ │ ├── stm32f4xx_hal_spi.h │ │ ├── stm32f4xx_hal_tim.h │ │ ├── stm32f4xx_hal_tim_ex.h │ │ └── stm32f4xx_hal_uart.h │ │ └── Src │ │ ├── stm32f4xx_hal.c │ │ ├── stm32f4xx_hal_cortex.c │ │ ├── stm32f4xx_hal_dma.c │ │ ├── stm32f4xx_hal_dma_ex.c │ │ ├── stm32f4xx_hal_flash.c │ │ ├── stm32f4xx_hal_flash_ex.c │ │ ├── stm32f4xx_hal_flash_ramfunc.c │ │ ├── stm32f4xx_hal_gpio.c │ │ ├── stm32f4xx_hal_i2c.c │ │ ├── stm32f4xx_hal_i2c_ex.c │ │ ├── stm32f4xx_hal_pwr.c │ │ ├── stm32f4xx_hal_pwr_ex.c │ │ ├── stm32f4xx_hal_rcc.c │ │ ├── stm32f4xx_hal_rcc_ex.c │ │ ├── stm32f4xx_hal_spi.c │ │ ├── stm32f4xx_hal_tim.c │ │ ├── stm32f4xx_hal_tim_ex.c │ │ └── stm32f4xx_hal_uart.c ├── Inc │ ├── BufferPool.h │ ├── cc1101.h │ ├── dma.h │ ├── gpio.h │ ├── i2c.h │ ├── main.h │ ├── model.h │ ├── mxconstants.h │ ├── spi.h │ ├── stm32f4xx_hal_conf.h │ ├── stm32f4xx_it.h │ └── usart.h ├── STM32F407G-DISC1.xml ├── STM32F407VGTx_FLASH.ld ├── Src │ ├── BufferPool.c │ ├── car_control.c │ ├── cc1101.c │ ├── dma.c │ ├── gpio.c │ ├── i2c.c │ ├── main.c │ ├── spi.c │ ├── stm32f4xx_hal_msp.c │ ├── stm32f4xx_it.c │ ├── system_stm32f4xx.c │ └── usart.c ├── spi_test.ioc └── startup │ └── startup_stm32f407xx.s ├── uart_dma ├── .gitignore ├── .mxproject ├── .osx.project ├── .project ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F4xx │ │ │ │ └── Include │ │ │ │ ├── stm32f407xx.h │ │ │ │ ├── stm32f4xx.h │ │ │ │ └── system_stm32f4xx.h │ │ └── Include │ │ │ ├── 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_cm3.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_cmFunc.h │ │ │ ├── core_cmInstr.h │ │ │ ├── core_cmSimd.h │ │ │ ├── core_sc000.h │ │ │ └── core_sc300.h │ └── STM32F4xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f4xx_hal.h │ │ ├── stm32f4xx_hal_cortex.h │ │ ├── stm32f4xx_hal_crc.h │ │ ├── stm32f4xx_hal_def.h │ │ ├── stm32f4xx_hal_dma.h │ │ ├── stm32f4xx_hal_dma_ex.h │ │ ├── stm32f4xx_hal_flash.h │ │ ├── stm32f4xx_hal_flash_ex.h │ │ ├── stm32f4xx_hal_flash_ramfunc.h │ │ ├── stm32f4xx_hal_gpio.h │ │ ├── stm32f4xx_hal_gpio_ex.h │ │ ├── stm32f4xx_hal_pwr.h │ │ ├── stm32f4xx_hal_pwr_ex.h │ │ ├── stm32f4xx_hal_rcc.h │ │ ├── stm32f4xx_hal_rcc_ex.h │ │ ├── stm32f4xx_hal_rng.h │ │ ├── stm32f4xx_hal_tim.h │ │ ├── stm32f4xx_hal_tim_ex.h │ │ └── stm32f4xx_hal_uart.h │ │ └── Src │ │ ├── stm32f4xx_hal.c │ │ ├── stm32f4xx_hal_cortex.c │ │ ├── stm32f4xx_hal_crc.c │ │ ├── stm32f4xx_hal_dma.c │ │ ├── stm32f4xx_hal_dma_ex.c │ │ ├── stm32f4xx_hal_flash.c │ │ ├── stm32f4xx_hal_flash_ex.c │ │ ├── stm32f4xx_hal_flash_ramfunc.c │ │ ├── stm32f4xx_hal_gpio.c │ │ ├── stm32f4xx_hal_pwr.c │ │ ├── stm32f4xx_hal_pwr_ex.c │ │ ├── stm32f4xx_hal_rcc.c │ │ ├── stm32f4xx_hal_rcc_ex.c │ │ ├── stm32f4xx_hal_rng.c │ │ ├── stm32f4xx_hal_tim.c │ │ ├── stm32f4xx_hal_tim_ex.c │ │ └── stm32f4xx_hal_uart.c ├── Inc │ ├── crc.h │ ├── dma.h │ ├── gpio.h │ ├── main.h │ ├── rng.h │ ├── stm32f4xx_hal_conf.h │ ├── stm32f4xx_it.h │ └── usart.h ├── STM32F407G-DISC1.xml ├── STM32F407VGTx_FLASH.ld ├── Src │ ├── crc.c │ ├── dma.c │ ├── gpio.c │ ├── main.c │ ├── rng.c │ ├── stm32f4xx_hal_msp.c │ ├── stm32f4xx_it.c │ ├── system_stm32f4xx.c │ └── usart.c ├── startup │ └── startup_stm32f407xx.s └── uart_dma.ioc ├── uart_input ├── .gitignore ├── .mxproject ├── .osx.project ├── .project ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F4xx │ │ │ │ └── Include │ │ │ │ ├── stm32f407xx.h │ │ │ │ ├── stm32f4xx.h │ │ │ │ └── system_stm32f4xx.h │ │ └── Include │ │ │ ├── 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_cm3.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_cmFunc.h │ │ │ ├── core_cmInstr.h │ │ │ ├── core_cmSimd.h │ │ │ ├── core_sc000.h │ │ │ └── core_sc300.h │ └── STM32F4xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f4xx_hal.h │ │ ├── stm32f4xx_hal_cortex.h │ │ ├── stm32f4xx_hal_def.h │ │ ├── stm32f4xx_hal_dma.h │ │ ├── stm32f4xx_hal_dma_ex.h │ │ ├── stm32f4xx_hal_flash.h │ │ ├── stm32f4xx_hal_flash_ex.h │ │ ├── stm32f4xx_hal_flash_ramfunc.h │ │ ├── stm32f4xx_hal_gpio.h │ │ ├── stm32f4xx_hal_gpio_ex.h │ │ ├── stm32f4xx_hal_pwr.h │ │ ├── stm32f4xx_hal_pwr_ex.h │ │ ├── stm32f4xx_hal_rcc.h │ │ ├── stm32f4xx_hal_rcc_ex.h │ │ ├── stm32f4xx_hal_tim.h │ │ ├── stm32f4xx_hal_tim_ex.h │ │ └── stm32f4xx_hal_uart.h │ │ └── Src │ │ ├── stm32f4xx_hal.c │ │ ├── stm32f4xx_hal_cortex.c │ │ ├── stm32f4xx_hal_dma.c │ │ ├── stm32f4xx_hal_dma_ex.c │ │ ├── stm32f4xx_hal_flash.c │ │ ├── stm32f4xx_hal_flash_ex.c │ │ ├── stm32f4xx_hal_flash_ramfunc.c │ │ ├── stm32f4xx_hal_gpio.c │ │ ├── stm32f4xx_hal_pwr.c │ │ ├── stm32f4xx_hal_pwr_ex.c │ │ ├── stm32f4xx_hal_rcc.c │ │ ├── stm32f4xx_hal_rcc_ex.c │ │ ├── stm32f4xx_hal_tim.c │ │ ├── stm32f4xx_hal_tim_ex.c │ │ └── stm32f4xx_hal_uart.c ├── Inc │ ├── gpio.h │ ├── main.h │ ├── stm32f4xx_hal_conf.h │ ├── stm32f4xx_it.h │ └── usart.h ├── STM32F407G-DISC1.xml ├── STM32F407VGTx_FLASH.ld ├── Src │ ├── gpio.c │ ├── main.c │ ├── stm32f4xx_hal_msp.c │ ├── stm32f4xx_it.c │ ├── system_stm32f4xx.c │ └── usart.c ├── startup │ └── startup_stm32f407xx.s └── uart_input.ioc └── unboxing ├── .mxproject ├── .project ├── Debug ├── .gitignore ├── Drivers │ └── STM32F4xx_HAL_Driver │ │ └── Src │ │ └── subdir.mk ├── Src │ └── subdir.mk ├── makefile ├── objects.list ├── objects.mk ├── sources.mk ├── startup │ └── subdir.mk └── unboxing.bin ├── Drivers ├── CMSIS │ ├── Device │ │ └── ST │ │ │ └── STM32F4xx │ │ │ └── Include │ │ │ ├── stm32f407xx.h │ │ │ ├── stm32f4xx.h │ │ │ └── system_stm32f4xx.h │ └── Include │ │ ├── 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_cm3.h │ │ ├── core_cm4.h │ │ ├── core_cm7.h │ │ ├── core_cmFunc.h │ │ ├── core_cmInstr.h │ │ ├── core_cmSimd.h │ │ ├── core_sc000.h │ │ └── core_sc300.h └── STM32F4xx_HAL_Driver │ ├── Inc │ ├── Legacy │ │ └── stm32_hal_legacy.h │ ├── stm32f4xx_hal.h │ ├── stm32f4xx_hal_cortex.h │ ├── stm32f4xx_hal_def.h │ ├── stm32f4xx_hal_dma.h │ ├── stm32f4xx_hal_dma_ex.h │ ├── stm32f4xx_hal_flash.h │ ├── stm32f4xx_hal_flash_ex.h │ ├── stm32f4xx_hal_flash_ramfunc.h │ ├── stm32f4xx_hal_gpio.h │ ├── stm32f4xx_hal_gpio_ex.h │ ├── stm32f4xx_hal_pwr.h │ ├── stm32f4xx_hal_pwr_ex.h │ ├── stm32f4xx_hal_rcc.h │ ├── stm32f4xx_hal_rcc_ex.h │ ├── stm32f4xx_hal_tim.h │ └── stm32f4xx_hal_tim_ex.h │ └── Src │ ├── stm32f4xx_hal.c │ ├── stm32f4xx_hal_cortex.c │ ├── stm32f4xx_hal_dma.c │ ├── stm32f4xx_hal_dma_ex.c │ ├── stm32f4xx_hal_flash.c │ ├── stm32f4xx_hal_flash_ex.c │ ├── stm32f4xx_hal_flash_ramfunc.c │ ├── stm32f4xx_hal_gpio.c │ ├── stm32f4xx_hal_pwr.c │ ├── stm32f4xx_hal_pwr_ex.c │ ├── stm32f4xx_hal_rcc.c │ ├── stm32f4xx_hal_rcc_ex.c │ ├── stm32f4xx_hal_tim.c │ └── stm32f4xx_hal_tim_ex.c ├── Inc ├── gpio.h ├── main.h ├── stm32f4xx_hal_conf.h └── stm32f4xx_it.h ├── STM32F407G-DISC1.xml ├── STM32F407VGTx_FLASH.ld ├── Src ├── gpio.c ├── main.c ├── stm32f4xx_hal_msp.c ├── stm32f4xx_it.c └── system_stm32f4xx.c ├── startup └── startup_stm32f407xx.s └── unboxing.ioc /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/README.md -------------------------------------------------------------------------------- /RemoteSystemsTempFiles/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/RemoteSystemsTempFiles/.project -------------------------------------------------------------------------------- /button_interrupted/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /button_interrupted/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/.mxproject -------------------------------------------------------------------------------- /button_interrupted/.osx.project: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /button_interrupted/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/.project -------------------------------------------------------------------------------- /button_interrupted/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h -------------------------------------------------------------------------------- /button_interrupted/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h -------------------------------------------------------------------------------- /button_interrupted/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h -------------------------------------------------------------------------------- /button_interrupted/Drivers/CMSIS/Include/arm_common_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/Drivers/CMSIS/Include/arm_common_tables.h -------------------------------------------------------------------------------- /button_interrupted/Drivers/CMSIS/Include/arm_const_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/Drivers/CMSIS/Include/arm_const_structs.h -------------------------------------------------------------------------------- /button_interrupted/Drivers/CMSIS/Include/arm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/Drivers/CMSIS/Include/arm_math.h -------------------------------------------------------------------------------- /button_interrupted/Drivers/CMSIS/Include/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/Drivers/CMSIS/Include/cmsis_armcc.h -------------------------------------------------------------------------------- /button_interrupted/Drivers/CMSIS/Include/cmsis_armcc_V6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/Drivers/CMSIS/Include/cmsis_armcc_V6.h -------------------------------------------------------------------------------- /button_interrupted/Drivers/CMSIS/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/Drivers/CMSIS/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /button_interrupted/Drivers/CMSIS/Include/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/Drivers/CMSIS/Include/core_cm0.h -------------------------------------------------------------------------------- /button_interrupted/Drivers/CMSIS/Include/core_cm0plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/Drivers/CMSIS/Include/core_cm0plus.h -------------------------------------------------------------------------------- /button_interrupted/Drivers/CMSIS/Include/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/Drivers/CMSIS/Include/core_cm3.h -------------------------------------------------------------------------------- /button_interrupted/Drivers/CMSIS/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/Drivers/CMSIS/Include/core_cm4.h -------------------------------------------------------------------------------- /button_interrupted/Drivers/CMSIS/Include/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/Drivers/CMSIS/Include/core_cm7.h -------------------------------------------------------------------------------- /button_interrupted/Drivers/CMSIS/Include/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/Drivers/CMSIS/Include/core_cmFunc.h -------------------------------------------------------------------------------- /button_interrupted/Drivers/CMSIS/Include/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/Drivers/CMSIS/Include/core_cmInstr.h -------------------------------------------------------------------------------- /button_interrupted/Drivers/CMSIS/Include/core_cmSimd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/Drivers/CMSIS/Include/core_cmSimd.h -------------------------------------------------------------------------------- /button_interrupted/Drivers/CMSIS/Include/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/Drivers/CMSIS/Include/core_sc000.h -------------------------------------------------------------------------------- /button_interrupted/Drivers/CMSIS/Include/core_sc300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/Drivers/CMSIS/Include/core_sc300.h -------------------------------------------------------------------------------- /button_interrupted/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h -------------------------------------------------------------------------------- /button_interrupted/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h -------------------------------------------------------------------------------- /button_interrupted/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h -------------------------------------------------------------------------------- /button_interrupted/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h -------------------------------------------------------------------------------- /button_interrupted/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h -------------------------------------------------------------------------------- /button_interrupted/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h -------------------------------------------------------------------------------- /button_interrupted/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h -------------------------------------------------------------------------------- /button_interrupted/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h -------------------------------------------------------------------------------- /button_interrupted/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h -------------------------------------------------------------------------------- /button_interrupted/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h -------------------------------------------------------------------------------- /button_interrupted/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h -------------------------------------------------------------------------------- /button_interrupted/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h -------------------------------------------------------------------------------- /button_interrupted/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h -------------------------------------------------------------------------------- /button_interrupted/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h -------------------------------------------------------------------------------- /button_interrupted/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h -------------------------------------------------------------------------------- /button_interrupted/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h -------------------------------------------------------------------------------- /button_interrupted/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h -------------------------------------------------------------------------------- /button_interrupted/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h -------------------------------------------------------------------------------- /button_interrupted/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c -------------------------------------------------------------------------------- /button_interrupted/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c -------------------------------------------------------------------------------- /button_interrupted/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c -------------------------------------------------------------------------------- /button_interrupted/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c -------------------------------------------------------------------------------- /button_interrupted/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c -------------------------------------------------------------------------------- /button_interrupted/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c -------------------------------------------------------------------------------- /button_interrupted/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c -------------------------------------------------------------------------------- /button_interrupted/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c -------------------------------------------------------------------------------- /button_interrupted/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c -------------------------------------------------------------------------------- /button_interrupted/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c -------------------------------------------------------------------------------- /button_interrupted/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c -------------------------------------------------------------------------------- /button_interrupted/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c -------------------------------------------------------------------------------- /button_interrupted/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c -------------------------------------------------------------------------------- /button_interrupted/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c -------------------------------------------------------------------------------- /button_interrupted/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c -------------------------------------------------------------------------------- /button_interrupted/Inc/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/Inc/gpio.h -------------------------------------------------------------------------------- /button_interrupted/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/Inc/main.h -------------------------------------------------------------------------------- /button_interrupted/Inc/stm32f4xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/Inc/stm32f4xx_hal_conf.h -------------------------------------------------------------------------------- /button_interrupted/Inc/stm32f4xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/Inc/stm32f4xx_it.h -------------------------------------------------------------------------------- /button_interrupted/Inc/usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/Inc/usart.h -------------------------------------------------------------------------------- /button_interrupted/STM32F407G-DISC1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/STM32F407G-DISC1.xml -------------------------------------------------------------------------------- /button_interrupted/STM32F407VGTx_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/STM32F407VGTx_FLASH.ld -------------------------------------------------------------------------------- /button_interrupted/Src/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/Src/gpio.c -------------------------------------------------------------------------------- /button_interrupted/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/Src/main.c -------------------------------------------------------------------------------- /button_interrupted/Src/stm32f4xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/Src/stm32f4xx_hal_msp.c -------------------------------------------------------------------------------- /button_interrupted/Src/stm32f4xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/Src/stm32f4xx_it.c -------------------------------------------------------------------------------- /button_interrupted/Src/system_stm32f4xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/Src/system_stm32f4xx.c -------------------------------------------------------------------------------- /button_interrupted/Src/usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/Src/usart.c -------------------------------------------------------------------------------- /button_interrupted/button_interrupted.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/button_interrupted.ioc -------------------------------------------------------------------------------- /button_interrupted/startup/startup_stm32f407xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/button_interrupted/startup/startup_stm32f407xx.s -------------------------------------------------------------------------------- /first_button/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/.cproject -------------------------------------------------------------------------------- /first_button/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/.mxproject -------------------------------------------------------------------------------- /first_button/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/.project -------------------------------------------------------------------------------- /first_button/.settings/language.settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/.settings/language.settings.xml -------------------------------------------------------------------------------- /first_button/Debug/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/Debug/.gitignore -------------------------------------------------------------------------------- /first_button/Debug/Drivers/STM32F4xx_HAL_Driver/Src/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/Debug/Drivers/STM32F4xx_HAL_Driver/Src/subdir.mk -------------------------------------------------------------------------------- /first_button/Debug/Src/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/Debug/Src/subdir.mk -------------------------------------------------------------------------------- /first_button/Debug/first_button.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/Debug/first_button.bin -------------------------------------------------------------------------------- /first_button/Debug/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/Debug/makefile -------------------------------------------------------------------------------- /first_button/Debug/objects.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/Debug/objects.list -------------------------------------------------------------------------------- /first_button/Debug/objects.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/Debug/objects.mk -------------------------------------------------------------------------------- /first_button/Debug/sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/Debug/sources.mk -------------------------------------------------------------------------------- /first_button/Debug/startup/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/Debug/startup/subdir.mk -------------------------------------------------------------------------------- /first_button/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h -------------------------------------------------------------------------------- /first_button/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h -------------------------------------------------------------------------------- /first_button/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h -------------------------------------------------------------------------------- /first_button/Drivers/CMSIS/Include/arm_common_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/Drivers/CMSIS/Include/arm_common_tables.h -------------------------------------------------------------------------------- /first_button/Drivers/CMSIS/Include/arm_const_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/Drivers/CMSIS/Include/arm_const_structs.h -------------------------------------------------------------------------------- /first_button/Drivers/CMSIS/Include/arm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/Drivers/CMSIS/Include/arm_math.h -------------------------------------------------------------------------------- /first_button/Drivers/CMSIS/Include/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/Drivers/CMSIS/Include/cmsis_armcc.h -------------------------------------------------------------------------------- /first_button/Drivers/CMSIS/Include/cmsis_armcc_V6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/Drivers/CMSIS/Include/cmsis_armcc_V6.h -------------------------------------------------------------------------------- /first_button/Drivers/CMSIS/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/Drivers/CMSIS/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /first_button/Drivers/CMSIS/Include/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/Drivers/CMSIS/Include/core_cm0.h -------------------------------------------------------------------------------- /first_button/Drivers/CMSIS/Include/core_cm0plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/Drivers/CMSIS/Include/core_cm0plus.h -------------------------------------------------------------------------------- /first_button/Drivers/CMSIS/Include/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/Drivers/CMSIS/Include/core_cm3.h -------------------------------------------------------------------------------- /first_button/Drivers/CMSIS/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/Drivers/CMSIS/Include/core_cm4.h -------------------------------------------------------------------------------- /first_button/Drivers/CMSIS/Include/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/Drivers/CMSIS/Include/core_cm7.h -------------------------------------------------------------------------------- /first_button/Drivers/CMSIS/Include/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/Drivers/CMSIS/Include/core_cmFunc.h -------------------------------------------------------------------------------- /first_button/Drivers/CMSIS/Include/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/Drivers/CMSIS/Include/core_cmInstr.h -------------------------------------------------------------------------------- /first_button/Drivers/CMSIS/Include/core_cmSimd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/Drivers/CMSIS/Include/core_cmSimd.h -------------------------------------------------------------------------------- /first_button/Drivers/CMSIS/Include/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/Drivers/CMSIS/Include/core_sc000.h -------------------------------------------------------------------------------- /first_button/Drivers/CMSIS/Include/core_sc300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/Drivers/CMSIS/Include/core_sc300.h -------------------------------------------------------------------------------- /first_button/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h -------------------------------------------------------------------------------- /first_button/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h -------------------------------------------------------------------------------- /first_button/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h -------------------------------------------------------------------------------- /first_button/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h -------------------------------------------------------------------------------- /first_button/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h -------------------------------------------------------------------------------- /first_button/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h -------------------------------------------------------------------------------- /first_button/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h -------------------------------------------------------------------------------- /first_button/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h -------------------------------------------------------------------------------- /first_button/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h -------------------------------------------------------------------------------- /first_button/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h -------------------------------------------------------------------------------- /first_button/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h -------------------------------------------------------------------------------- /first_button/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h -------------------------------------------------------------------------------- /first_button/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h -------------------------------------------------------------------------------- /first_button/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h -------------------------------------------------------------------------------- /first_button/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h -------------------------------------------------------------------------------- /first_button/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h -------------------------------------------------------------------------------- /first_button/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h -------------------------------------------------------------------------------- /first_button/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c -------------------------------------------------------------------------------- /first_button/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c -------------------------------------------------------------------------------- /first_button/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c -------------------------------------------------------------------------------- /first_button/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c -------------------------------------------------------------------------------- /first_button/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c -------------------------------------------------------------------------------- /first_button/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c -------------------------------------------------------------------------------- /first_button/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c -------------------------------------------------------------------------------- /first_button/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c -------------------------------------------------------------------------------- /first_button/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c -------------------------------------------------------------------------------- /first_button/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c -------------------------------------------------------------------------------- /first_button/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c -------------------------------------------------------------------------------- /first_button/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c -------------------------------------------------------------------------------- /first_button/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c -------------------------------------------------------------------------------- /first_button/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c -------------------------------------------------------------------------------- /first_button/Inc/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/Inc/gpio.h -------------------------------------------------------------------------------- /first_button/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/Inc/main.h -------------------------------------------------------------------------------- /first_button/Inc/stm32f4xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/Inc/stm32f4xx_hal_conf.h -------------------------------------------------------------------------------- /first_button/Inc/stm32f4xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/Inc/stm32f4xx_it.h -------------------------------------------------------------------------------- /first_button/STM32F407G-DISC1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/STM32F407G-DISC1.xml -------------------------------------------------------------------------------- /first_button/STM32F407VGTx_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/STM32F407VGTx_FLASH.ld -------------------------------------------------------------------------------- /first_button/Src/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/Src/gpio.c -------------------------------------------------------------------------------- /first_button/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/Src/main.c -------------------------------------------------------------------------------- /first_button/Src/stm32f4xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/Src/stm32f4xx_hal_msp.c -------------------------------------------------------------------------------- /first_button/Src/stm32f4xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/Src/stm32f4xx_it.c -------------------------------------------------------------------------------- /first_button/Src/system_stm32f4xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/Src/system_stm32f4xx.c -------------------------------------------------------------------------------- /first_button/first_button.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/first_button.ioc -------------------------------------------------------------------------------- /first_button/startup/startup_stm32f407xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/first_button/startup/startup_stm32f407xx.s -------------------------------------------------------------------------------- /i2c_lcd/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /i2c_lcd/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/.mxproject -------------------------------------------------------------------------------- /i2c_lcd/.osx.project: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /i2c_lcd/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/.project -------------------------------------------------------------------------------- /i2c_lcd/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h -------------------------------------------------------------------------------- /i2c_lcd/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h -------------------------------------------------------------------------------- /i2c_lcd/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h -------------------------------------------------------------------------------- /i2c_lcd/Drivers/CMSIS/Include/arm_common_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Drivers/CMSIS/Include/arm_common_tables.h -------------------------------------------------------------------------------- /i2c_lcd/Drivers/CMSIS/Include/arm_const_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Drivers/CMSIS/Include/arm_const_structs.h -------------------------------------------------------------------------------- /i2c_lcd/Drivers/CMSIS/Include/arm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Drivers/CMSIS/Include/arm_math.h -------------------------------------------------------------------------------- /i2c_lcd/Drivers/CMSIS/Include/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Drivers/CMSIS/Include/cmsis_armcc.h -------------------------------------------------------------------------------- /i2c_lcd/Drivers/CMSIS/Include/cmsis_armcc_V6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Drivers/CMSIS/Include/cmsis_armcc_V6.h -------------------------------------------------------------------------------- /i2c_lcd/Drivers/CMSIS/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Drivers/CMSIS/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /i2c_lcd/Drivers/CMSIS/Include/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Drivers/CMSIS/Include/core_cm0.h -------------------------------------------------------------------------------- /i2c_lcd/Drivers/CMSIS/Include/core_cm0plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Drivers/CMSIS/Include/core_cm0plus.h -------------------------------------------------------------------------------- /i2c_lcd/Drivers/CMSIS/Include/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Drivers/CMSIS/Include/core_cm3.h -------------------------------------------------------------------------------- /i2c_lcd/Drivers/CMSIS/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Drivers/CMSIS/Include/core_cm4.h -------------------------------------------------------------------------------- /i2c_lcd/Drivers/CMSIS/Include/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Drivers/CMSIS/Include/core_cm7.h -------------------------------------------------------------------------------- /i2c_lcd/Drivers/CMSIS/Include/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Drivers/CMSIS/Include/core_cmFunc.h -------------------------------------------------------------------------------- /i2c_lcd/Drivers/CMSIS/Include/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Drivers/CMSIS/Include/core_cmInstr.h -------------------------------------------------------------------------------- /i2c_lcd/Drivers/CMSIS/Include/core_cmSimd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Drivers/CMSIS/Include/core_cmSimd.h -------------------------------------------------------------------------------- /i2c_lcd/Drivers/CMSIS/Include/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Drivers/CMSIS/Include/core_sc000.h -------------------------------------------------------------------------------- /i2c_lcd/Drivers/CMSIS/Include/core_sc300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Drivers/CMSIS/Include/core_sc300.h -------------------------------------------------------------------------------- /i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h -------------------------------------------------------------------------------- /i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h -------------------------------------------------------------------------------- /i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h -------------------------------------------------------------------------------- /i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h -------------------------------------------------------------------------------- /i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h -------------------------------------------------------------------------------- /i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h -------------------------------------------------------------------------------- /i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h -------------------------------------------------------------------------------- /i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h -------------------------------------------------------------------------------- /i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h -------------------------------------------------------------------------------- /i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h -------------------------------------------------------------------------------- /i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h -------------------------------------------------------------------------------- /i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h -------------------------------------------------------------------------------- /i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h -------------------------------------------------------------------------------- /i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h -------------------------------------------------------------------------------- /i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h -------------------------------------------------------------------------------- /i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h -------------------------------------------------------------------------------- /i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h -------------------------------------------------------------------------------- /i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h -------------------------------------------------------------------------------- /i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h -------------------------------------------------------------------------------- /i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h -------------------------------------------------------------------------------- /i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c -------------------------------------------------------------------------------- /i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c -------------------------------------------------------------------------------- /i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c -------------------------------------------------------------------------------- /i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c -------------------------------------------------------------------------------- /i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c -------------------------------------------------------------------------------- /i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c -------------------------------------------------------------------------------- /i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c -------------------------------------------------------------------------------- /i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c -------------------------------------------------------------------------------- /i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c -------------------------------------------------------------------------------- /i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c -------------------------------------------------------------------------------- /i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c -------------------------------------------------------------------------------- /i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c -------------------------------------------------------------------------------- /i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c -------------------------------------------------------------------------------- /i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c -------------------------------------------------------------------------------- /i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c -------------------------------------------------------------------------------- /i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c -------------------------------------------------------------------------------- /i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c -------------------------------------------------------------------------------- /i2c_lcd/Inc/dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Inc/dma.h -------------------------------------------------------------------------------- /i2c_lcd/Inc/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Inc/gpio.h -------------------------------------------------------------------------------- /i2c_lcd/Inc/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Inc/i2c.h -------------------------------------------------------------------------------- /i2c_lcd/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Inc/main.h -------------------------------------------------------------------------------- /i2c_lcd/Inc/stm32f4xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Inc/stm32f4xx_hal_conf.h -------------------------------------------------------------------------------- /i2c_lcd/Inc/stm32f4xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Inc/stm32f4xx_it.h -------------------------------------------------------------------------------- /i2c_lcd/Inc/usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Inc/usart.h -------------------------------------------------------------------------------- /i2c_lcd/STM32F407G-DISC1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/STM32F407G-DISC1.xml -------------------------------------------------------------------------------- /i2c_lcd/STM32F407VGTx_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/STM32F407VGTx_FLASH.ld -------------------------------------------------------------------------------- /i2c_lcd/Src/dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Src/dma.c -------------------------------------------------------------------------------- /i2c_lcd/Src/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Src/gpio.c -------------------------------------------------------------------------------- /i2c_lcd/Src/hd44780.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Src/hd44780.c -------------------------------------------------------------------------------- /i2c_lcd/Src/hd44780.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Src/hd44780.h -------------------------------------------------------------------------------- /i2c_lcd/Src/i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Src/i2c.c -------------------------------------------------------------------------------- /i2c_lcd/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Src/main.c -------------------------------------------------------------------------------- /i2c_lcd/Src/pcf8574.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Src/pcf8574.c -------------------------------------------------------------------------------- /i2c_lcd/Src/pcf8574.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Src/pcf8574.h -------------------------------------------------------------------------------- /i2c_lcd/Src/stm32f4xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Src/stm32f4xx_hal_msp.c -------------------------------------------------------------------------------- /i2c_lcd/Src/stm32f4xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Src/stm32f4xx_it.c -------------------------------------------------------------------------------- /i2c_lcd/Src/system_stm32f4xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Src/system_stm32f4xx.c -------------------------------------------------------------------------------- /i2c_lcd/Src/usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/Src/usart.c -------------------------------------------------------------------------------- /i2c_lcd/i2c_lcd.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/i2c_lcd.ioc -------------------------------------------------------------------------------- /i2c_lcd/startup/startup_stm32f407xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/i2c_lcd/startup/startup_stm32f407xx.s -------------------------------------------------------------------------------- /images/STM32F4_UART2_setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/images/STM32F4_UART2_setup.png -------------------------------------------------------------------------------- /images/stm32f4_LED_Display.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/images/stm32f4_LED_Display.jpg -------------------------------------------------------------------------------- /spi_test/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/.mxproject -------------------------------------------------------------------------------- /spi_test/.osx.project: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spi_test/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/.project -------------------------------------------------------------------------------- /spi_test/Debug/Drivers/STM32F4xx_HAL_Driver/Src/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Debug/Drivers/STM32F4xx_HAL_Driver/Src/subdir.mk -------------------------------------------------------------------------------- /spi_test/Debug/Src/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Debug/Src/subdir.mk -------------------------------------------------------------------------------- /spi_test/Debug/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Debug/makefile -------------------------------------------------------------------------------- /spi_test/Debug/objects.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Debug/objects.list -------------------------------------------------------------------------------- /spi_test/Debug/objects.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Debug/objects.mk -------------------------------------------------------------------------------- /spi_test/Debug/sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Debug/sources.mk -------------------------------------------------------------------------------- /spi_test/Debug/startup/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Debug/startup/subdir.mk -------------------------------------------------------------------------------- /spi_test/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h -------------------------------------------------------------------------------- /spi_test/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h -------------------------------------------------------------------------------- /spi_test/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h -------------------------------------------------------------------------------- /spi_test/Drivers/CMSIS/Include/arm_common_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Drivers/CMSIS/Include/arm_common_tables.h -------------------------------------------------------------------------------- /spi_test/Drivers/CMSIS/Include/arm_const_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Drivers/CMSIS/Include/arm_const_structs.h -------------------------------------------------------------------------------- /spi_test/Drivers/CMSIS/Include/arm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Drivers/CMSIS/Include/arm_math.h -------------------------------------------------------------------------------- /spi_test/Drivers/CMSIS/Include/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Drivers/CMSIS/Include/cmsis_armcc.h -------------------------------------------------------------------------------- /spi_test/Drivers/CMSIS/Include/cmsis_armcc_V6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Drivers/CMSIS/Include/cmsis_armcc_V6.h -------------------------------------------------------------------------------- /spi_test/Drivers/CMSIS/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Drivers/CMSIS/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /spi_test/Drivers/CMSIS/Include/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Drivers/CMSIS/Include/core_cm0.h -------------------------------------------------------------------------------- /spi_test/Drivers/CMSIS/Include/core_cm0plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Drivers/CMSIS/Include/core_cm0plus.h -------------------------------------------------------------------------------- /spi_test/Drivers/CMSIS/Include/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Drivers/CMSIS/Include/core_cm3.h -------------------------------------------------------------------------------- /spi_test/Drivers/CMSIS/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Drivers/CMSIS/Include/core_cm4.h -------------------------------------------------------------------------------- /spi_test/Drivers/CMSIS/Include/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Drivers/CMSIS/Include/core_cm7.h -------------------------------------------------------------------------------- /spi_test/Drivers/CMSIS/Include/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Drivers/CMSIS/Include/core_cmFunc.h -------------------------------------------------------------------------------- /spi_test/Drivers/CMSIS/Include/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Drivers/CMSIS/Include/core_cmInstr.h -------------------------------------------------------------------------------- /spi_test/Drivers/CMSIS/Include/core_cmSimd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Drivers/CMSIS/Include/core_cmSimd.h -------------------------------------------------------------------------------- /spi_test/Drivers/CMSIS/Include/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Drivers/CMSIS/Include/core_sc000.h -------------------------------------------------------------------------------- /spi_test/Drivers/CMSIS/Include/core_sc300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Drivers/CMSIS/Include/core_sc300.h -------------------------------------------------------------------------------- /spi_test/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h -------------------------------------------------------------------------------- /spi_test/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h -------------------------------------------------------------------------------- /spi_test/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h -------------------------------------------------------------------------------- /spi_test/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h -------------------------------------------------------------------------------- /spi_test/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h -------------------------------------------------------------------------------- /spi_test/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h -------------------------------------------------------------------------------- /spi_test/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h -------------------------------------------------------------------------------- /spi_test/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h -------------------------------------------------------------------------------- /spi_test/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h -------------------------------------------------------------------------------- /spi_test/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h -------------------------------------------------------------------------------- /spi_test/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h -------------------------------------------------------------------------------- /spi_test/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h -------------------------------------------------------------------------------- /spi_test/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h -------------------------------------------------------------------------------- /spi_test/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h -------------------------------------------------------------------------------- /spi_test/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h -------------------------------------------------------------------------------- /spi_test/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h -------------------------------------------------------------------------------- /spi_test/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h -------------------------------------------------------------------------------- /spi_test/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h -------------------------------------------------------------------------------- /spi_test/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h -------------------------------------------------------------------------------- /spi_test/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h -------------------------------------------------------------------------------- /spi_test/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h -------------------------------------------------------------------------------- /spi_test/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c -------------------------------------------------------------------------------- /spi_test/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c -------------------------------------------------------------------------------- /spi_test/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c -------------------------------------------------------------------------------- /spi_test/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c -------------------------------------------------------------------------------- /spi_test/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c -------------------------------------------------------------------------------- /spi_test/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c -------------------------------------------------------------------------------- /spi_test/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c -------------------------------------------------------------------------------- /spi_test/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c -------------------------------------------------------------------------------- /spi_test/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c -------------------------------------------------------------------------------- /spi_test/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c -------------------------------------------------------------------------------- /spi_test/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c -------------------------------------------------------------------------------- /spi_test/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c -------------------------------------------------------------------------------- /spi_test/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c -------------------------------------------------------------------------------- /spi_test/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c -------------------------------------------------------------------------------- /spi_test/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c -------------------------------------------------------------------------------- /spi_test/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c -------------------------------------------------------------------------------- /spi_test/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c -------------------------------------------------------------------------------- /spi_test/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c -------------------------------------------------------------------------------- /spi_test/Inc/BufferPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Inc/BufferPool.h -------------------------------------------------------------------------------- /spi_test/Inc/cc1101.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Inc/cc1101.h -------------------------------------------------------------------------------- /spi_test/Inc/dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Inc/dma.h -------------------------------------------------------------------------------- /spi_test/Inc/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Inc/gpio.h -------------------------------------------------------------------------------- /spi_test/Inc/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Inc/i2c.h -------------------------------------------------------------------------------- /spi_test/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Inc/main.h -------------------------------------------------------------------------------- /spi_test/Inc/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Inc/model.h -------------------------------------------------------------------------------- /spi_test/Inc/mxconstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Inc/mxconstants.h -------------------------------------------------------------------------------- /spi_test/Inc/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Inc/spi.h -------------------------------------------------------------------------------- /spi_test/Inc/stm32f4xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Inc/stm32f4xx_hal_conf.h -------------------------------------------------------------------------------- /spi_test/Inc/stm32f4xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Inc/stm32f4xx_it.h -------------------------------------------------------------------------------- /spi_test/Inc/usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Inc/usart.h -------------------------------------------------------------------------------- /spi_test/STM32F407G-DISC1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/STM32F407G-DISC1.xml -------------------------------------------------------------------------------- /spi_test/STM32F407VGTx_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/STM32F407VGTx_FLASH.ld -------------------------------------------------------------------------------- /spi_test/Src/BufferPool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Src/BufferPool.c -------------------------------------------------------------------------------- /spi_test/Src/car_control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Src/car_control.c -------------------------------------------------------------------------------- /spi_test/Src/cc1101.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Src/cc1101.c -------------------------------------------------------------------------------- /spi_test/Src/dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Src/dma.c -------------------------------------------------------------------------------- /spi_test/Src/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Src/gpio.c -------------------------------------------------------------------------------- /spi_test/Src/i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Src/i2c.c -------------------------------------------------------------------------------- /spi_test/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Src/main.c -------------------------------------------------------------------------------- /spi_test/Src/spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Src/spi.c -------------------------------------------------------------------------------- /spi_test/Src/stm32f4xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Src/stm32f4xx_hal_msp.c -------------------------------------------------------------------------------- /spi_test/Src/stm32f4xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Src/stm32f4xx_it.c -------------------------------------------------------------------------------- /spi_test/Src/system_stm32f4xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Src/system_stm32f4xx.c -------------------------------------------------------------------------------- /spi_test/Src/usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/Src/usart.c -------------------------------------------------------------------------------- /spi_test/spi_test.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/spi_test.ioc -------------------------------------------------------------------------------- /spi_test/startup/startup_stm32f407xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/spi_test/startup/startup_stm32f407xx.s -------------------------------------------------------------------------------- /uart_dma/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /uart_dma/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/.mxproject -------------------------------------------------------------------------------- /uart_dma/.osx.project: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /uart_dma/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/.project -------------------------------------------------------------------------------- /uart_dma/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h -------------------------------------------------------------------------------- /uart_dma/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h -------------------------------------------------------------------------------- /uart_dma/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h -------------------------------------------------------------------------------- /uart_dma/Drivers/CMSIS/Include/arm_common_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Drivers/CMSIS/Include/arm_common_tables.h -------------------------------------------------------------------------------- /uart_dma/Drivers/CMSIS/Include/arm_const_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Drivers/CMSIS/Include/arm_const_structs.h -------------------------------------------------------------------------------- /uart_dma/Drivers/CMSIS/Include/arm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Drivers/CMSIS/Include/arm_math.h -------------------------------------------------------------------------------- /uart_dma/Drivers/CMSIS/Include/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Drivers/CMSIS/Include/cmsis_armcc.h -------------------------------------------------------------------------------- /uart_dma/Drivers/CMSIS/Include/cmsis_armcc_V6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Drivers/CMSIS/Include/cmsis_armcc_V6.h -------------------------------------------------------------------------------- /uart_dma/Drivers/CMSIS/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Drivers/CMSIS/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /uart_dma/Drivers/CMSIS/Include/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Drivers/CMSIS/Include/core_cm0.h -------------------------------------------------------------------------------- /uart_dma/Drivers/CMSIS/Include/core_cm0plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Drivers/CMSIS/Include/core_cm0plus.h -------------------------------------------------------------------------------- /uart_dma/Drivers/CMSIS/Include/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Drivers/CMSIS/Include/core_cm3.h -------------------------------------------------------------------------------- /uart_dma/Drivers/CMSIS/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Drivers/CMSIS/Include/core_cm4.h -------------------------------------------------------------------------------- /uart_dma/Drivers/CMSIS/Include/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Drivers/CMSIS/Include/core_cm7.h -------------------------------------------------------------------------------- /uart_dma/Drivers/CMSIS/Include/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Drivers/CMSIS/Include/core_cmFunc.h -------------------------------------------------------------------------------- /uart_dma/Drivers/CMSIS/Include/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Drivers/CMSIS/Include/core_cmInstr.h -------------------------------------------------------------------------------- /uart_dma/Drivers/CMSIS/Include/core_cmSimd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Drivers/CMSIS/Include/core_cmSimd.h -------------------------------------------------------------------------------- /uart_dma/Drivers/CMSIS/Include/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Drivers/CMSIS/Include/core_sc000.h -------------------------------------------------------------------------------- /uart_dma/Drivers/CMSIS/Include/core_sc300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Drivers/CMSIS/Include/core_sc300.h -------------------------------------------------------------------------------- /uart_dma/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h -------------------------------------------------------------------------------- /uart_dma/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h -------------------------------------------------------------------------------- /uart_dma/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h -------------------------------------------------------------------------------- /uart_dma/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h -------------------------------------------------------------------------------- /uart_dma/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h -------------------------------------------------------------------------------- /uart_dma/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h -------------------------------------------------------------------------------- /uart_dma/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h -------------------------------------------------------------------------------- /uart_dma/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h -------------------------------------------------------------------------------- /uart_dma/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h -------------------------------------------------------------------------------- /uart_dma/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h -------------------------------------------------------------------------------- /uart_dma/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h -------------------------------------------------------------------------------- /uart_dma/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h -------------------------------------------------------------------------------- /uart_dma/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h -------------------------------------------------------------------------------- /uart_dma/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h -------------------------------------------------------------------------------- /uart_dma/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h -------------------------------------------------------------------------------- /uart_dma/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h -------------------------------------------------------------------------------- /uart_dma/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h -------------------------------------------------------------------------------- /uart_dma/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h -------------------------------------------------------------------------------- /uart_dma/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h -------------------------------------------------------------------------------- /uart_dma/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h -------------------------------------------------------------------------------- /uart_dma/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c -------------------------------------------------------------------------------- /uart_dma/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c -------------------------------------------------------------------------------- /uart_dma/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c -------------------------------------------------------------------------------- /uart_dma/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c -------------------------------------------------------------------------------- /uart_dma/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c -------------------------------------------------------------------------------- /uart_dma/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c -------------------------------------------------------------------------------- /uart_dma/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c -------------------------------------------------------------------------------- /uart_dma/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c -------------------------------------------------------------------------------- /uart_dma/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c -------------------------------------------------------------------------------- /uart_dma/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c -------------------------------------------------------------------------------- /uart_dma/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c -------------------------------------------------------------------------------- /uart_dma/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c -------------------------------------------------------------------------------- /uart_dma/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c -------------------------------------------------------------------------------- /uart_dma/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c -------------------------------------------------------------------------------- /uart_dma/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c -------------------------------------------------------------------------------- /uart_dma/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c -------------------------------------------------------------------------------- /uart_dma/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c -------------------------------------------------------------------------------- /uart_dma/Inc/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Inc/crc.h -------------------------------------------------------------------------------- /uart_dma/Inc/dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Inc/dma.h -------------------------------------------------------------------------------- /uart_dma/Inc/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Inc/gpio.h -------------------------------------------------------------------------------- /uart_dma/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Inc/main.h -------------------------------------------------------------------------------- /uart_dma/Inc/rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Inc/rng.h -------------------------------------------------------------------------------- /uart_dma/Inc/stm32f4xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Inc/stm32f4xx_hal_conf.h -------------------------------------------------------------------------------- /uart_dma/Inc/stm32f4xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Inc/stm32f4xx_it.h -------------------------------------------------------------------------------- /uart_dma/Inc/usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Inc/usart.h -------------------------------------------------------------------------------- /uart_dma/STM32F407G-DISC1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/STM32F407G-DISC1.xml -------------------------------------------------------------------------------- /uart_dma/STM32F407VGTx_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/STM32F407VGTx_FLASH.ld -------------------------------------------------------------------------------- /uart_dma/Src/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Src/crc.c -------------------------------------------------------------------------------- /uart_dma/Src/dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Src/dma.c -------------------------------------------------------------------------------- /uart_dma/Src/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Src/gpio.c -------------------------------------------------------------------------------- /uart_dma/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Src/main.c -------------------------------------------------------------------------------- /uart_dma/Src/rng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Src/rng.c -------------------------------------------------------------------------------- /uart_dma/Src/stm32f4xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Src/stm32f4xx_hal_msp.c -------------------------------------------------------------------------------- /uart_dma/Src/stm32f4xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Src/stm32f4xx_it.c -------------------------------------------------------------------------------- /uart_dma/Src/system_stm32f4xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Src/system_stm32f4xx.c -------------------------------------------------------------------------------- /uart_dma/Src/usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/Src/usart.c -------------------------------------------------------------------------------- /uart_dma/startup/startup_stm32f407xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/startup/startup_stm32f407xx.s -------------------------------------------------------------------------------- /uart_dma/uart_dma.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_dma/uart_dma.ioc -------------------------------------------------------------------------------- /uart_input/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /uart_input/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/.mxproject -------------------------------------------------------------------------------- /uart_input/.osx.project: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /uart_input/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/.project -------------------------------------------------------------------------------- /uart_input/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h -------------------------------------------------------------------------------- /uart_input/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h -------------------------------------------------------------------------------- /uart_input/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h -------------------------------------------------------------------------------- /uart_input/Drivers/CMSIS/Include/arm_common_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/Drivers/CMSIS/Include/arm_common_tables.h -------------------------------------------------------------------------------- /uart_input/Drivers/CMSIS/Include/arm_const_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/Drivers/CMSIS/Include/arm_const_structs.h -------------------------------------------------------------------------------- /uart_input/Drivers/CMSIS/Include/arm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/Drivers/CMSIS/Include/arm_math.h -------------------------------------------------------------------------------- /uart_input/Drivers/CMSIS/Include/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/Drivers/CMSIS/Include/cmsis_armcc.h -------------------------------------------------------------------------------- /uart_input/Drivers/CMSIS/Include/cmsis_armcc_V6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/Drivers/CMSIS/Include/cmsis_armcc_V6.h -------------------------------------------------------------------------------- /uart_input/Drivers/CMSIS/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/Drivers/CMSIS/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /uart_input/Drivers/CMSIS/Include/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/Drivers/CMSIS/Include/core_cm0.h -------------------------------------------------------------------------------- /uart_input/Drivers/CMSIS/Include/core_cm0plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/Drivers/CMSIS/Include/core_cm0plus.h -------------------------------------------------------------------------------- /uart_input/Drivers/CMSIS/Include/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/Drivers/CMSIS/Include/core_cm3.h -------------------------------------------------------------------------------- /uart_input/Drivers/CMSIS/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/Drivers/CMSIS/Include/core_cm4.h -------------------------------------------------------------------------------- /uart_input/Drivers/CMSIS/Include/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/Drivers/CMSIS/Include/core_cm7.h -------------------------------------------------------------------------------- /uart_input/Drivers/CMSIS/Include/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/Drivers/CMSIS/Include/core_cmFunc.h -------------------------------------------------------------------------------- /uart_input/Drivers/CMSIS/Include/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/Drivers/CMSIS/Include/core_cmInstr.h -------------------------------------------------------------------------------- /uart_input/Drivers/CMSIS/Include/core_cmSimd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/Drivers/CMSIS/Include/core_cmSimd.h -------------------------------------------------------------------------------- /uart_input/Drivers/CMSIS/Include/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/Drivers/CMSIS/Include/core_sc000.h -------------------------------------------------------------------------------- /uart_input/Drivers/CMSIS/Include/core_sc300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/Drivers/CMSIS/Include/core_sc300.h -------------------------------------------------------------------------------- /uart_input/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h -------------------------------------------------------------------------------- /uart_input/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h -------------------------------------------------------------------------------- /uart_input/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h -------------------------------------------------------------------------------- /uart_input/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h -------------------------------------------------------------------------------- /uart_input/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h -------------------------------------------------------------------------------- /uart_input/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h -------------------------------------------------------------------------------- /uart_input/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h -------------------------------------------------------------------------------- /uart_input/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h -------------------------------------------------------------------------------- /uart_input/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h -------------------------------------------------------------------------------- /uart_input/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h -------------------------------------------------------------------------------- /uart_input/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h -------------------------------------------------------------------------------- /uart_input/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h -------------------------------------------------------------------------------- /uart_input/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h -------------------------------------------------------------------------------- /uart_input/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h -------------------------------------------------------------------------------- /uart_input/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h -------------------------------------------------------------------------------- /uart_input/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h -------------------------------------------------------------------------------- /uart_input/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h -------------------------------------------------------------------------------- /uart_input/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h -------------------------------------------------------------------------------- /uart_input/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c -------------------------------------------------------------------------------- /uart_input/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c -------------------------------------------------------------------------------- /uart_input/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c -------------------------------------------------------------------------------- /uart_input/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c -------------------------------------------------------------------------------- /uart_input/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c -------------------------------------------------------------------------------- /uart_input/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c -------------------------------------------------------------------------------- /uart_input/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c -------------------------------------------------------------------------------- /uart_input/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c -------------------------------------------------------------------------------- /uart_input/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c -------------------------------------------------------------------------------- /uart_input/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c -------------------------------------------------------------------------------- /uart_input/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c -------------------------------------------------------------------------------- /uart_input/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c -------------------------------------------------------------------------------- /uart_input/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c -------------------------------------------------------------------------------- /uart_input/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c -------------------------------------------------------------------------------- /uart_input/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c -------------------------------------------------------------------------------- /uart_input/Inc/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/Inc/gpio.h -------------------------------------------------------------------------------- /uart_input/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/Inc/main.h -------------------------------------------------------------------------------- /uart_input/Inc/stm32f4xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/Inc/stm32f4xx_hal_conf.h -------------------------------------------------------------------------------- /uart_input/Inc/stm32f4xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/Inc/stm32f4xx_it.h -------------------------------------------------------------------------------- /uart_input/Inc/usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/Inc/usart.h -------------------------------------------------------------------------------- /uart_input/STM32F407G-DISC1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/STM32F407G-DISC1.xml -------------------------------------------------------------------------------- /uart_input/STM32F407VGTx_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/STM32F407VGTx_FLASH.ld -------------------------------------------------------------------------------- /uart_input/Src/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/Src/gpio.c -------------------------------------------------------------------------------- /uart_input/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/Src/main.c -------------------------------------------------------------------------------- /uart_input/Src/stm32f4xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/Src/stm32f4xx_hal_msp.c -------------------------------------------------------------------------------- /uart_input/Src/stm32f4xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/Src/stm32f4xx_it.c -------------------------------------------------------------------------------- /uart_input/Src/system_stm32f4xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/Src/system_stm32f4xx.c -------------------------------------------------------------------------------- /uart_input/Src/usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/Src/usart.c -------------------------------------------------------------------------------- /uart_input/startup/startup_stm32f407xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/startup/startup_stm32f407xx.s -------------------------------------------------------------------------------- /uart_input/uart_input.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/uart_input/uart_input.ioc -------------------------------------------------------------------------------- /unboxing/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/.mxproject -------------------------------------------------------------------------------- /unboxing/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/.project -------------------------------------------------------------------------------- /unboxing/Debug/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/Debug/.gitignore -------------------------------------------------------------------------------- /unboxing/Debug/Drivers/STM32F4xx_HAL_Driver/Src/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/Debug/Drivers/STM32F4xx_HAL_Driver/Src/subdir.mk -------------------------------------------------------------------------------- /unboxing/Debug/Src/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/Debug/Src/subdir.mk -------------------------------------------------------------------------------- /unboxing/Debug/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/Debug/makefile -------------------------------------------------------------------------------- /unboxing/Debug/objects.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/Debug/objects.list -------------------------------------------------------------------------------- /unboxing/Debug/objects.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/Debug/objects.mk -------------------------------------------------------------------------------- /unboxing/Debug/sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/Debug/sources.mk -------------------------------------------------------------------------------- /unboxing/Debug/startup/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/Debug/startup/subdir.mk -------------------------------------------------------------------------------- /unboxing/Debug/unboxing.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/Debug/unboxing.bin -------------------------------------------------------------------------------- /unboxing/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h -------------------------------------------------------------------------------- /unboxing/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h -------------------------------------------------------------------------------- /unboxing/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h -------------------------------------------------------------------------------- /unboxing/Drivers/CMSIS/Include/arm_common_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/Drivers/CMSIS/Include/arm_common_tables.h -------------------------------------------------------------------------------- /unboxing/Drivers/CMSIS/Include/arm_const_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/Drivers/CMSIS/Include/arm_const_structs.h -------------------------------------------------------------------------------- /unboxing/Drivers/CMSIS/Include/arm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/Drivers/CMSIS/Include/arm_math.h -------------------------------------------------------------------------------- /unboxing/Drivers/CMSIS/Include/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/Drivers/CMSIS/Include/cmsis_armcc.h -------------------------------------------------------------------------------- /unboxing/Drivers/CMSIS/Include/cmsis_armcc_V6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/Drivers/CMSIS/Include/cmsis_armcc_V6.h -------------------------------------------------------------------------------- /unboxing/Drivers/CMSIS/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/Drivers/CMSIS/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /unboxing/Drivers/CMSIS/Include/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/Drivers/CMSIS/Include/core_cm0.h -------------------------------------------------------------------------------- /unboxing/Drivers/CMSIS/Include/core_cm0plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/Drivers/CMSIS/Include/core_cm0plus.h -------------------------------------------------------------------------------- /unboxing/Drivers/CMSIS/Include/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/Drivers/CMSIS/Include/core_cm3.h -------------------------------------------------------------------------------- /unboxing/Drivers/CMSIS/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/Drivers/CMSIS/Include/core_cm4.h -------------------------------------------------------------------------------- /unboxing/Drivers/CMSIS/Include/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/Drivers/CMSIS/Include/core_cm7.h -------------------------------------------------------------------------------- /unboxing/Drivers/CMSIS/Include/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/Drivers/CMSIS/Include/core_cmFunc.h -------------------------------------------------------------------------------- /unboxing/Drivers/CMSIS/Include/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/Drivers/CMSIS/Include/core_cmInstr.h -------------------------------------------------------------------------------- /unboxing/Drivers/CMSIS/Include/core_cmSimd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/Drivers/CMSIS/Include/core_cmSimd.h -------------------------------------------------------------------------------- /unboxing/Drivers/CMSIS/Include/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/Drivers/CMSIS/Include/core_sc000.h -------------------------------------------------------------------------------- /unboxing/Drivers/CMSIS/Include/core_sc300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/Drivers/CMSIS/Include/core_sc300.h -------------------------------------------------------------------------------- /unboxing/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h -------------------------------------------------------------------------------- /unboxing/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h -------------------------------------------------------------------------------- /unboxing/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h -------------------------------------------------------------------------------- /unboxing/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h -------------------------------------------------------------------------------- /unboxing/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h -------------------------------------------------------------------------------- /unboxing/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h -------------------------------------------------------------------------------- /unboxing/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h -------------------------------------------------------------------------------- /unboxing/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h -------------------------------------------------------------------------------- /unboxing/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h -------------------------------------------------------------------------------- /unboxing/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h -------------------------------------------------------------------------------- /unboxing/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h -------------------------------------------------------------------------------- /unboxing/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h -------------------------------------------------------------------------------- /unboxing/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h -------------------------------------------------------------------------------- /unboxing/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h -------------------------------------------------------------------------------- /unboxing/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h -------------------------------------------------------------------------------- /unboxing/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h -------------------------------------------------------------------------------- /unboxing/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h -------------------------------------------------------------------------------- /unboxing/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c -------------------------------------------------------------------------------- /unboxing/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c -------------------------------------------------------------------------------- /unboxing/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c -------------------------------------------------------------------------------- /unboxing/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c -------------------------------------------------------------------------------- /unboxing/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c -------------------------------------------------------------------------------- /unboxing/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c -------------------------------------------------------------------------------- /unboxing/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c -------------------------------------------------------------------------------- /unboxing/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c -------------------------------------------------------------------------------- /unboxing/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c -------------------------------------------------------------------------------- /unboxing/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c -------------------------------------------------------------------------------- /unboxing/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c -------------------------------------------------------------------------------- /unboxing/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c -------------------------------------------------------------------------------- /unboxing/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c -------------------------------------------------------------------------------- /unboxing/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c -------------------------------------------------------------------------------- /unboxing/Inc/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/Inc/gpio.h -------------------------------------------------------------------------------- /unboxing/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/Inc/main.h -------------------------------------------------------------------------------- /unboxing/Inc/stm32f4xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/Inc/stm32f4xx_hal_conf.h -------------------------------------------------------------------------------- /unboxing/Inc/stm32f4xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/Inc/stm32f4xx_it.h -------------------------------------------------------------------------------- /unboxing/STM32F407G-DISC1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/STM32F407G-DISC1.xml -------------------------------------------------------------------------------- /unboxing/STM32F407VGTx_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/STM32F407VGTx_FLASH.ld -------------------------------------------------------------------------------- /unboxing/Src/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/Src/gpio.c -------------------------------------------------------------------------------- /unboxing/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/Src/main.c -------------------------------------------------------------------------------- /unboxing/Src/stm32f4xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/Src/stm32f4xx_hal_msp.c -------------------------------------------------------------------------------- /unboxing/Src/stm32f4xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/Src/stm32f4xx_it.c -------------------------------------------------------------------------------- /unboxing/Src/system_stm32f4xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/Src/system_stm32f4xx.c -------------------------------------------------------------------------------- /unboxing/startup/startup_stm32f407xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/startup/startup_stm32f407xx.s -------------------------------------------------------------------------------- /unboxing/unboxing.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyaresu/STM32F407G-DISC1/HEAD/unboxing/unboxing.ioc --------------------------------------------------------------------------------