├── .gitignore ├── LICENSE ├── Project ├── .cproject ├── .project ├── .settings │ └── language.settings.xml ├── CMSIS │ ├── core │ │ ├── arm_common_tables.h │ │ ├── arm_const_structs.h │ │ ├── arm_math.h │ │ ├── cmsis_armcc.h │ │ ├── cmsis_armcc_V6.h │ │ ├── cmsis_gcc.h │ │ ├── core_cm0.h │ │ ├── core_cm0plus.h │ │ ├── core_cm3.h │ │ ├── core_cm4.h │ │ ├── core_cm7.h │ │ ├── core_cmFunc.h │ │ ├── core_cmInstr.h │ │ ├── core_cmSimd.h │ │ ├── core_sc000.h │ │ └── core_sc300.h │ └── device │ │ ├── stm32f401xc.h │ │ ├── stm32f401xe.h │ │ ├── stm32f405xx.h │ │ ├── stm32f407xx.h │ │ ├── stm32f410cx.h │ │ ├── stm32f410rx.h │ │ ├── stm32f410tx.h │ │ ├── stm32f411xe.h │ │ ├── stm32f415xx.h │ │ ├── stm32f417xx.h │ │ ├── stm32f427xx.h │ │ ├── stm32f429xx.h │ │ ├── stm32f437xx.h │ │ ├── stm32f439xx.h │ │ ├── stm32f446xx.h │ │ ├── stm32f469xx.h │ │ ├── stm32f479xx.h │ │ ├── stm32f4xx.h │ │ └── system_stm32f4xx.h ├── Debug │ ├── HAL_Driver │ │ └── Src │ │ │ └── subdir.mk │ ├── Middlewares │ │ └── ST │ │ │ └── STM32_USB_Host_Library │ │ │ ├── Class │ │ │ ├── HID │ │ │ │ └── Src │ │ │ │ │ └── subdir.mk │ │ │ └── HUB │ │ │ │ └── subdir.mk │ │ │ └── Core │ │ │ └── Src │ │ │ └── subdir.mk │ ├── Project.bin │ ├── Utilities │ │ └── STM32F4-Discovery │ │ │ └── subdir.mk │ ├── makefile │ ├── objects.list │ ├── objects.mk │ ├── output.map │ ├── sources.mk │ ├── src │ │ └── subdir.mk │ └── startup │ │ └── subdir.mk ├── HAL_Driver │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f4xx_hal.h │ │ ├── stm32f4xx_hal_conf.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_hcd.h │ │ ├── stm32f4xx_hal_pcd.h │ │ ├── stm32f4xx_hal_pcd_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 │ │ ├── stm32f4xx_hal_usart.h │ │ ├── stm32f4xx_hal_wwdg.h │ │ ├── stm32f4xx_ll_fmc.h │ │ ├── stm32f4xx_ll_fsmc.h │ │ ├── stm32f4xx_ll_sdmmc.h │ │ └── stm32f4xx_ll_usb.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_hcd.c │ │ ├── stm32f4xx_hal_i2c_ex.c │ │ ├── stm32f4xx_hal_pcd.c │ │ ├── stm32f4xx_hal_pcd_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 │ │ ├── stm32f4xx_hal_usart.c │ │ └── stm32f4xx_ll_usb.c ├── LinkerScript.ld ├── Middlewares │ └── ST │ │ └── STM32_USB_Host_Library │ │ ├── Class │ │ ├── HID │ │ │ ├── Inc │ │ │ │ ├── usbh_hid.h │ │ │ │ ├── usbh_hid_keybd.h │ │ │ │ ├── usbh_hid_mouse.h │ │ │ │ ├── usbh_hid_parser.h │ │ │ │ └── usbh_hid_usage.h │ │ │ └── Src │ │ │ │ ├── usbh_hid.c │ │ │ │ ├── usbh_hid_keybd.c │ │ │ │ ├── usbh_hid_mouse.c │ │ │ │ └── usbh_hid_parser.c │ │ └── HUB │ │ │ ├── usbh_hub.c │ │ │ └── usbh_hub.h │ │ └── Core │ │ ├── Inc │ │ ├── usbh_core.h │ │ ├── usbh_ctlreq.h │ │ ├── usbh_def.h │ │ ├── usbh_ioreq.h │ │ └── usbh_pipes.h │ │ └── Src │ │ ├── usbh_core.c │ │ ├── usbh_ctlreq.c │ │ ├── usbh_ioreq.c │ │ └── usbh_pipes.c ├── RemoteSystemsTempFiles │ └── .project ├── Utilities │ └── STM32F4-Discovery │ │ ├── stm32f4_discovery.c │ │ └── stm32f4_discovery.h ├── inc │ ├── log.h │ ├── stm32f4xx_it.h │ └── usbh_conf.h ├── src │ ├── log.c │ ├── main.c │ ├── stm32f4xx_it.c │ ├── syscalls.c │ ├── system_stm32f4xx.c │ └── usbh_conf.c └── startup │ └── startup_stm32f407xx.s ├── README.md └── RemoteSystemsTempFiles └── .project /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/LICENSE -------------------------------------------------------------------------------- /Project/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/.cproject -------------------------------------------------------------------------------- /Project/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/.project -------------------------------------------------------------------------------- /Project/.settings/language.settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/.settings/language.settings.xml -------------------------------------------------------------------------------- /Project/CMSIS/core/arm_common_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/CMSIS/core/arm_common_tables.h -------------------------------------------------------------------------------- /Project/CMSIS/core/arm_const_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/CMSIS/core/arm_const_structs.h -------------------------------------------------------------------------------- /Project/CMSIS/core/arm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/CMSIS/core/arm_math.h -------------------------------------------------------------------------------- /Project/CMSIS/core/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/CMSIS/core/cmsis_armcc.h -------------------------------------------------------------------------------- /Project/CMSIS/core/cmsis_armcc_V6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/CMSIS/core/cmsis_armcc_V6.h -------------------------------------------------------------------------------- /Project/CMSIS/core/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/CMSIS/core/cmsis_gcc.h -------------------------------------------------------------------------------- /Project/CMSIS/core/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/CMSIS/core/core_cm0.h -------------------------------------------------------------------------------- /Project/CMSIS/core/core_cm0plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/CMSIS/core/core_cm0plus.h -------------------------------------------------------------------------------- /Project/CMSIS/core/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/CMSIS/core/core_cm3.h -------------------------------------------------------------------------------- /Project/CMSIS/core/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/CMSIS/core/core_cm4.h -------------------------------------------------------------------------------- /Project/CMSIS/core/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/CMSIS/core/core_cm7.h -------------------------------------------------------------------------------- /Project/CMSIS/core/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/CMSIS/core/core_cmFunc.h -------------------------------------------------------------------------------- /Project/CMSIS/core/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/CMSIS/core/core_cmInstr.h -------------------------------------------------------------------------------- /Project/CMSIS/core/core_cmSimd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/CMSIS/core/core_cmSimd.h -------------------------------------------------------------------------------- /Project/CMSIS/core/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/CMSIS/core/core_sc000.h -------------------------------------------------------------------------------- /Project/CMSIS/core/core_sc300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/CMSIS/core/core_sc300.h -------------------------------------------------------------------------------- /Project/CMSIS/device/stm32f401xc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/CMSIS/device/stm32f401xc.h -------------------------------------------------------------------------------- /Project/CMSIS/device/stm32f401xe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/CMSIS/device/stm32f401xe.h -------------------------------------------------------------------------------- /Project/CMSIS/device/stm32f405xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/CMSIS/device/stm32f405xx.h -------------------------------------------------------------------------------- /Project/CMSIS/device/stm32f407xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/CMSIS/device/stm32f407xx.h -------------------------------------------------------------------------------- /Project/CMSIS/device/stm32f410cx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/CMSIS/device/stm32f410cx.h -------------------------------------------------------------------------------- /Project/CMSIS/device/stm32f410rx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/CMSIS/device/stm32f410rx.h -------------------------------------------------------------------------------- /Project/CMSIS/device/stm32f410tx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/CMSIS/device/stm32f410tx.h -------------------------------------------------------------------------------- /Project/CMSIS/device/stm32f411xe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/CMSIS/device/stm32f411xe.h -------------------------------------------------------------------------------- /Project/CMSIS/device/stm32f415xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/CMSIS/device/stm32f415xx.h -------------------------------------------------------------------------------- /Project/CMSIS/device/stm32f417xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/CMSIS/device/stm32f417xx.h -------------------------------------------------------------------------------- /Project/CMSIS/device/stm32f427xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/CMSIS/device/stm32f427xx.h -------------------------------------------------------------------------------- /Project/CMSIS/device/stm32f429xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/CMSIS/device/stm32f429xx.h -------------------------------------------------------------------------------- /Project/CMSIS/device/stm32f437xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/CMSIS/device/stm32f437xx.h -------------------------------------------------------------------------------- /Project/CMSIS/device/stm32f439xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/CMSIS/device/stm32f439xx.h -------------------------------------------------------------------------------- /Project/CMSIS/device/stm32f446xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/CMSIS/device/stm32f446xx.h -------------------------------------------------------------------------------- /Project/CMSIS/device/stm32f469xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/CMSIS/device/stm32f469xx.h -------------------------------------------------------------------------------- /Project/CMSIS/device/stm32f479xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/CMSIS/device/stm32f479xx.h -------------------------------------------------------------------------------- /Project/CMSIS/device/stm32f4xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/CMSIS/device/stm32f4xx.h -------------------------------------------------------------------------------- /Project/CMSIS/device/system_stm32f4xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/CMSIS/device/system_stm32f4xx.h -------------------------------------------------------------------------------- /Project/Debug/HAL_Driver/Src/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/Debug/HAL_Driver/Src/subdir.mk -------------------------------------------------------------------------------- /Project/Debug/Middlewares/ST/STM32_USB_Host_Library/Class/HID/Src/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/Debug/Middlewares/ST/STM32_USB_Host_Library/Class/HID/Src/subdir.mk -------------------------------------------------------------------------------- /Project/Debug/Middlewares/ST/STM32_USB_Host_Library/Class/HUB/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/Debug/Middlewares/ST/STM32_USB_Host_Library/Class/HUB/subdir.mk -------------------------------------------------------------------------------- /Project/Debug/Middlewares/ST/STM32_USB_Host_Library/Core/Src/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/Debug/Middlewares/ST/STM32_USB_Host_Library/Core/Src/subdir.mk -------------------------------------------------------------------------------- /Project/Debug/Project.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/Debug/Project.bin -------------------------------------------------------------------------------- /Project/Debug/Utilities/STM32F4-Discovery/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/Debug/Utilities/STM32F4-Discovery/subdir.mk -------------------------------------------------------------------------------- /Project/Debug/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/Debug/makefile -------------------------------------------------------------------------------- /Project/Debug/objects.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/Debug/objects.list -------------------------------------------------------------------------------- /Project/Debug/objects.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/Debug/objects.mk -------------------------------------------------------------------------------- /Project/Debug/output.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/Debug/output.map -------------------------------------------------------------------------------- /Project/Debug/sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/Debug/sources.mk -------------------------------------------------------------------------------- /Project/Debug/src/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/Debug/src/subdir.mk -------------------------------------------------------------------------------- /Project/Debug/startup/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/Debug/startup/subdir.mk -------------------------------------------------------------------------------- /Project/HAL_Driver/Inc/Legacy/stm32_hal_legacy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/HAL_Driver/Inc/Legacy/stm32_hal_legacy.h -------------------------------------------------------------------------------- /Project/HAL_Driver/Inc/stm32f4xx_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/HAL_Driver/Inc/stm32f4xx_hal.h -------------------------------------------------------------------------------- /Project/HAL_Driver/Inc/stm32f4xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/HAL_Driver/Inc/stm32f4xx_hal_conf.h -------------------------------------------------------------------------------- /Project/HAL_Driver/Inc/stm32f4xx_hal_cortex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/HAL_Driver/Inc/stm32f4xx_hal_cortex.h -------------------------------------------------------------------------------- /Project/HAL_Driver/Inc/stm32f4xx_hal_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/HAL_Driver/Inc/stm32f4xx_hal_def.h -------------------------------------------------------------------------------- /Project/HAL_Driver/Inc/stm32f4xx_hal_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/HAL_Driver/Inc/stm32f4xx_hal_dma.h -------------------------------------------------------------------------------- /Project/HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h -------------------------------------------------------------------------------- /Project/HAL_Driver/Inc/stm32f4xx_hal_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/HAL_Driver/Inc/stm32f4xx_hal_flash.h -------------------------------------------------------------------------------- /Project/HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h -------------------------------------------------------------------------------- /Project/HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h -------------------------------------------------------------------------------- /Project/HAL_Driver/Inc/stm32f4xx_hal_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/HAL_Driver/Inc/stm32f4xx_hal_gpio.h -------------------------------------------------------------------------------- /Project/HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h -------------------------------------------------------------------------------- /Project/HAL_Driver/Inc/stm32f4xx_hal_hcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/HAL_Driver/Inc/stm32f4xx_hal_hcd.h -------------------------------------------------------------------------------- /Project/HAL_Driver/Inc/stm32f4xx_hal_pcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/HAL_Driver/Inc/stm32f4xx_hal_pcd.h -------------------------------------------------------------------------------- /Project/HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h -------------------------------------------------------------------------------- /Project/HAL_Driver/Inc/stm32f4xx_hal_pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/HAL_Driver/Inc/stm32f4xx_hal_pwr.h -------------------------------------------------------------------------------- /Project/HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h -------------------------------------------------------------------------------- /Project/HAL_Driver/Inc/stm32f4xx_hal_rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/HAL_Driver/Inc/stm32f4xx_hal_rcc.h -------------------------------------------------------------------------------- /Project/HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h -------------------------------------------------------------------------------- /Project/HAL_Driver/Inc/stm32f4xx_hal_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/HAL_Driver/Inc/stm32f4xx_hal_spi.h -------------------------------------------------------------------------------- /Project/HAL_Driver/Inc/stm32f4xx_hal_tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/HAL_Driver/Inc/stm32f4xx_hal_tim.h -------------------------------------------------------------------------------- /Project/HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h -------------------------------------------------------------------------------- /Project/HAL_Driver/Inc/stm32f4xx_hal_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/HAL_Driver/Inc/stm32f4xx_hal_uart.h -------------------------------------------------------------------------------- /Project/HAL_Driver/Inc/stm32f4xx_hal_usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/HAL_Driver/Inc/stm32f4xx_hal_usart.h -------------------------------------------------------------------------------- /Project/HAL_Driver/Inc/stm32f4xx_hal_wwdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/HAL_Driver/Inc/stm32f4xx_hal_wwdg.h -------------------------------------------------------------------------------- /Project/HAL_Driver/Inc/stm32f4xx_ll_fmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/HAL_Driver/Inc/stm32f4xx_ll_fmc.h -------------------------------------------------------------------------------- /Project/HAL_Driver/Inc/stm32f4xx_ll_fsmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/HAL_Driver/Inc/stm32f4xx_ll_fsmc.h -------------------------------------------------------------------------------- /Project/HAL_Driver/Inc/stm32f4xx_ll_sdmmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/HAL_Driver/Inc/stm32f4xx_ll_sdmmc.h -------------------------------------------------------------------------------- /Project/HAL_Driver/Inc/stm32f4xx_ll_usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/HAL_Driver/Inc/stm32f4xx_ll_usb.h -------------------------------------------------------------------------------- /Project/HAL_Driver/Src/stm32f4xx_hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/HAL_Driver/Src/stm32f4xx_hal.c -------------------------------------------------------------------------------- /Project/HAL_Driver/Src/stm32f4xx_hal_cortex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/HAL_Driver/Src/stm32f4xx_hal_cortex.c -------------------------------------------------------------------------------- /Project/HAL_Driver/Src/stm32f4xx_hal_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/HAL_Driver/Src/stm32f4xx_hal_dma.c -------------------------------------------------------------------------------- /Project/HAL_Driver/Src/stm32f4xx_hal_dma_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/HAL_Driver/Src/stm32f4xx_hal_dma_ex.c -------------------------------------------------------------------------------- /Project/HAL_Driver/Src/stm32f4xx_hal_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/HAL_Driver/Src/stm32f4xx_hal_flash.c -------------------------------------------------------------------------------- /Project/HAL_Driver/Src/stm32f4xx_hal_flash_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/HAL_Driver/Src/stm32f4xx_hal_flash_ex.c -------------------------------------------------------------------------------- /Project/HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c -------------------------------------------------------------------------------- /Project/HAL_Driver/Src/stm32f4xx_hal_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/HAL_Driver/Src/stm32f4xx_hal_gpio.c -------------------------------------------------------------------------------- /Project/HAL_Driver/Src/stm32f4xx_hal_hcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/HAL_Driver/Src/stm32f4xx_hal_hcd.c -------------------------------------------------------------------------------- /Project/HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c -------------------------------------------------------------------------------- /Project/HAL_Driver/Src/stm32f4xx_hal_pcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/HAL_Driver/Src/stm32f4xx_hal_pcd.c -------------------------------------------------------------------------------- /Project/HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c -------------------------------------------------------------------------------- /Project/HAL_Driver/Src/stm32f4xx_hal_pwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/HAL_Driver/Src/stm32f4xx_hal_pwr.c -------------------------------------------------------------------------------- /Project/HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c -------------------------------------------------------------------------------- /Project/HAL_Driver/Src/stm32f4xx_hal_rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/HAL_Driver/Src/stm32f4xx_hal_rcc.c -------------------------------------------------------------------------------- /Project/HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c -------------------------------------------------------------------------------- /Project/HAL_Driver/Src/stm32f4xx_hal_tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/HAL_Driver/Src/stm32f4xx_hal_tim.c -------------------------------------------------------------------------------- /Project/HAL_Driver/Src/stm32f4xx_hal_tim_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/HAL_Driver/Src/stm32f4xx_hal_tim_ex.c -------------------------------------------------------------------------------- /Project/HAL_Driver/Src/stm32f4xx_hal_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/HAL_Driver/Src/stm32f4xx_hal_uart.c -------------------------------------------------------------------------------- /Project/HAL_Driver/Src/stm32f4xx_hal_usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/HAL_Driver/Src/stm32f4xx_hal_usart.c -------------------------------------------------------------------------------- /Project/HAL_Driver/Src/stm32f4xx_ll_usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/HAL_Driver/Src/stm32f4xx_ll_usb.c -------------------------------------------------------------------------------- /Project/LinkerScript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/LinkerScript.ld -------------------------------------------------------------------------------- /Project/Middlewares/ST/STM32_USB_Host_Library/Class/HID/Inc/usbh_hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/Middlewares/ST/STM32_USB_Host_Library/Class/HID/Inc/usbh_hid.h -------------------------------------------------------------------------------- /Project/Middlewares/ST/STM32_USB_Host_Library/Class/HID/Inc/usbh_hid_keybd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/Middlewares/ST/STM32_USB_Host_Library/Class/HID/Inc/usbh_hid_keybd.h -------------------------------------------------------------------------------- /Project/Middlewares/ST/STM32_USB_Host_Library/Class/HID/Inc/usbh_hid_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/Middlewares/ST/STM32_USB_Host_Library/Class/HID/Inc/usbh_hid_mouse.h -------------------------------------------------------------------------------- /Project/Middlewares/ST/STM32_USB_Host_Library/Class/HID/Inc/usbh_hid_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/Middlewares/ST/STM32_USB_Host_Library/Class/HID/Inc/usbh_hid_parser.h -------------------------------------------------------------------------------- /Project/Middlewares/ST/STM32_USB_Host_Library/Class/HID/Inc/usbh_hid_usage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/Middlewares/ST/STM32_USB_Host_Library/Class/HID/Inc/usbh_hid_usage.h -------------------------------------------------------------------------------- /Project/Middlewares/ST/STM32_USB_Host_Library/Class/HID/Src/usbh_hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/Middlewares/ST/STM32_USB_Host_Library/Class/HID/Src/usbh_hid.c -------------------------------------------------------------------------------- /Project/Middlewares/ST/STM32_USB_Host_Library/Class/HID/Src/usbh_hid_keybd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/Middlewares/ST/STM32_USB_Host_Library/Class/HID/Src/usbh_hid_keybd.c -------------------------------------------------------------------------------- /Project/Middlewares/ST/STM32_USB_Host_Library/Class/HID/Src/usbh_hid_mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/Middlewares/ST/STM32_USB_Host_Library/Class/HID/Src/usbh_hid_mouse.c -------------------------------------------------------------------------------- /Project/Middlewares/ST/STM32_USB_Host_Library/Class/HID/Src/usbh_hid_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/Middlewares/ST/STM32_USB_Host_Library/Class/HID/Src/usbh_hid_parser.c -------------------------------------------------------------------------------- /Project/Middlewares/ST/STM32_USB_Host_Library/Class/HUB/usbh_hub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/Middlewares/ST/STM32_USB_Host_Library/Class/HUB/usbh_hub.c -------------------------------------------------------------------------------- /Project/Middlewares/ST/STM32_USB_Host_Library/Class/HUB/usbh_hub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/Middlewares/ST/STM32_USB_Host_Library/Class/HUB/usbh_hub.h -------------------------------------------------------------------------------- /Project/Middlewares/ST/STM32_USB_Host_Library/Core/Inc/usbh_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/Middlewares/ST/STM32_USB_Host_Library/Core/Inc/usbh_core.h -------------------------------------------------------------------------------- /Project/Middlewares/ST/STM32_USB_Host_Library/Core/Inc/usbh_ctlreq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/Middlewares/ST/STM32_USB_Host_Library/Core/Inc/usbh_ctlreq.h -------------------------------------------------------------------------------- /Project/Middlewares/ST/STM32_USB_Host_Library/Core/Inc/usbh_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/Middlewares/ST/STM32_USB_Host_Library/Core/Inc/usbh_def.h -------------------------------------------------------------------------------- /Project/Middlewares/ST/STM32_USB_Host_Library/Core/Inc/usbh_ioreq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/Middlewares/ST/STM32_USB_Host_Library/Core/Inc/usbh_ioreq.h -------------------------------------------------------------------------------- /Project/Middlewares/ST/STM32_USB_Host_Library/Core/Inc/usbh_pipes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/Middlewares/ST/STM32_USB_Host_Library/Core/Inc/usbh_pipes.h -------------------------------------------------------------------------------- /Project/Middlewares/ST/STM32_USB_Host_Library/Core/Src/usbh_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/Middlewares/ST/STM32_USB_Host_Library/Core/Src/usbh_core.c -------------------------------------------------------------------------------- /Project/Middlewares/ST/STM32_USB_Host_Library/Core/Src/usbh_ctlreq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/Middlewares/ST/STM32_USB_Host_Library/Core/Src/usbh_ctlreq.c -------------------------------------------------------------------------------- /Project/Middlewares/ST/STM32_USB_Host_Library/Core/Src/usbh_ioreq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/Middlewares/ST/STM32_USB_Host_Library/Core/Src/usbh_ioreq.c -------------------------------------------------------------------------------- /Project/Middlewares/ST/STM32_USB_Host_Library/Core/Src/usbh_pipes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/Middlewares/ST/STM32_USB_Host_Library/Core/Src/usbh_pipes.c -------------------------------------------------------------------------------- /Project/RemoteSystemsTempFiles/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/RemoteSystemsTempFiles/.project -------------------------------------------------------------------------------- /Project/Utilities/STM32F4-Discovery/stm32f4_discovery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/Utilities/STM32F4-Discovery/stm32f4_discovery.c -------------------------------------------------------------------------------- /Project/Utilities/STM32F4-Discovery/stm32f4_discovery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/Utilities/STM32F4-Discovery/stm32f4_discovery.h -------------------------------------------------------------------------------- /Project/inc/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/inc/log.h -------------------------------------------------------------------------------- /Project/inc/stm32f4xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/inc/stm32f4xx_it.h -------------------------------------------------------------------------------- /Project/inc/usbh_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/inc/usbh_conf.h -------------------------------------------------------------------------------- /Project/src/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/src/log.c -------------------------------------------------------------------------------- /Project/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/src/main.c -------------------------------------------------------------------------------- /Project/src/stm32f4xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/src/stm32f4xx_it.c -------------------------------------------------------------------------------- /Project/src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/src/syscalls.c -------------------------------------------------------------------------------- /Project/src/system_stm32f4xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/src/system_stm32f4xx.c -------------------------------------------------------------------------------- /Project/src/usbh_conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/src/usbh_conf.c -------------------------------------------------------------------------------- /Project/startup/startup_stm32f407xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/Project/startup/startup_stm32f407xx.s -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/README.md -------------------------------------------------------------------------------- /RemoteSystemsTempFiles/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mori-br/STM32F4HUB/HEAD/RemoteSystemsTempFiles/.project --------------------------------------------------------------------------------