├── .gitignore ├── HAL_source ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F4xx │ │ │ │ ├── Include │ │ │ │ ├── stm32f407xx.h │ │ │ │ ├── stm32f429xx.h │ │ │ │ ├── stm32f4xx.h │ │ │ │ └── system_stm32f4xx.h │ │ │ │ └── Source │ │ │ │ └── Templates │ │ │ │ ├── gcc │ │ │ │ ├── startup_stm32f407xx.s │ │ │ │ └── startup_stm32f429xx.s │ │ │ │ └── iar │ │ │ │ ├── startup_stm32f407xx.s │ │ │ │ └── startup_stm32f429xx.s │ │ └── 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_adc.h │ │ ├── stm32f4xx_hal_adc_ex.h │ │ ├── stm32f4xx_hal_can.h │ │ ├── stm32f4xx_hal_cec.h │ │ ├── stm32f4xx_hal_conf_template.h │ │ ├── stm32f4xx_hal_cortex.h │ │ ├── stm32f4xx_hal_crc.h │ │ ├── stm32f4xx_hal_cryp.h │ │ ├── stm32f4xx_hal_cryp_ex.h │ │ ├── stm32f4xx_hal_dac.h │ │ ├── stm32f4xx_hal_dac_ex.h │ │ ├── stm32f4xx_hal_dcmi.h │ │ ├── stm32f4xx_hal_dcmi_ex.h │ │ ├── stm32f4xx_hal_def.h │ │ ├── stm32f4xx_hal_dfsdm.h │ │ ├── stm32f4xx_hal_dma.h │ │ ├── stm32f4xx_hal_dma2d.h │ │ ├── stm32f4xx_hal_dma_ex.h │ │ ├── stm32f4xx_hal_dsi.h │ │ ├── stm32f4xx_hal_eth.h │ │ ├── stm32f4xx_hal_flash.h │ │ ├── stm32f4xx_hal_flash_ex.h │ │ ├── stm32f4xx_hal_flash_ramfunc.h │ │ ├── stm32f4xx_hal_fmpi2c.h │ │ ├── stm32f4xx_hal_fmpi2c_ex.h │ │ ├── stm32f4xx_hal_gpio.h │ │ ├── stm32f4xx_hal_gpio_ex.h │ │ ├── stm32f4xx_hal_hash.h │ │ ├── stm32f4xx_hal_hash_ex.h │ │ ├── stm32f4xx_hal_hcd.h │ │ ├── stm32f4xx_hal_i2c.h │ │ ├── stm32f4xx_hal_i2c_ex.h │ │ ├── stm32f4xx_hal_i2s.h │ │ ├── stm32f4xx_hal_i2s_ex.h │ │ ├── stm32f4xx_hal_irda.h │ │ ├── stm32f4xx_hal_iwdg.h │ │ ├── stm32f4xx_hal_lptim.h │ │ ├── stm32f4xx_hal_ltdc.h │ │ ├── stm32f4xx_hal_ltdc_ex.h │ │ ├── stm32f4xx_hal_nand.h │ │ ├── stm32f4xx_hal_nor.h │ │ ├── stm32f4xx_hal_pccard.h │ │ ├── stm32f4xx_hal_pcd.h │ │ ├── stm32f4xx_hal_pcd_ex.h │ │ ├── stm32f4xx_hal_pwr.h │ │ ├── stm32f4xx_hal_pwr_ex.h │ │ ├── stm32f4xx_hal_qspi.h │ │ ├── stm32f4xx_hal_rcc.h │ │ ├── stm32f4xx_hal_rcc_ex.h │ │ ├── stm32f4xx_hal_rng.h │ │ ├── stm32f4xx_hal_rtc.h │ │ ├── stm32f4xx_hal_rtc_ex.h │ │ ├── stm32f4xx_hal_sai.h │ │ ├── stm32f4xx_hal_sai_ex.h │ │ ├── stm32f4xx_hal_sd.h │ │ ├── stm32f4xx_hal_sdram.h │ │ ├── stm32f4xx_hal_smartcard.h │ │ ├── stm32f4xx_hal_spdifrx.h │ │ ├── stm32f4xx_hal_spi.h │ │ ├── stm32f4xx_hal_sram.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_adc.c │ │ ├── stm32f4xx_hal_adc_ex.c │ │ ├── stm32f4xx_hal_can.c │ │ ├── stm32f4xx_hal_cec.c │ │ ├── stm32f4xx_hal_cortex.c │ │ ├── stm32f4xx_hal_crc.c │ │ ├── stm32f4xx_hal_cryp.c │ │ ├── stm32f4xx_hal_cryp_ex.c │ │ ├── stm32f4xx_hal_dac.c │ │ ├── stm32f4xx_hal_dac_ex.c │ │ ├── stm32f4xx_hal_dcmi.c │ │ ├── stm32f4xx_hal_dcmi_ex.c │ │ ├── stm32f4xx_hal_dfsdm.c │ │ ├── stm32f4xx_hal_dma.c │ │ ├── stm32f4xx_hal_dma2d.c │ │ ├── stm32f4xx_hal_dma_ex.c │ │ ├── stm32f4xx_hal_dsi.c │ │ ├── stm32f4xx_hal_eth.c │ │ ├── stm32f4xx_hal_flash.c │ │ ├── stm32f4xx_hal_flash_ex.c │ │ ├── stm32f4xx_hal_flash_ramfunc.c │ │ ├── stm32f4xx_hal_fmpi2c.c │ │ ├── stm32f4xx_hal_fmpi2c_ex.c │ │ ├── stm32f4xx_hal_gpio.c │ │ ├── stm32f4xx_hal_hash.c │ │ ├── stm32f4xx_hal_hash_ex.c │ │ ├── stm32f4xx_hal_hcd.c │ │ ├── stm32f4xx_hal_i2c.c │ │ ├── stm32f4xx_hal_i2c_ex.c │ │ ├── stm32f4xx_hal_i2s.c │ │ ├── stm32f4xx_hal_i2s_ex.c │ │ ├── stm32f4xx_hal_irda.c │ │ ├── stm32f4xx_hal_iwdg.c │ │ ├── stm32f4xx_hal_lptim.c │ │ ├── stm32f4xx_hal_ltdc.c │ │ ├── stm32f4xx_hal_ltdc_ex.c │ │ ├── stm32f4xx_hal_msp_template.c │ │ ├── stm32f4xx_hal_nand.c │ │ ├── stm32f4xx_hal_nor.c │ │ ├── stm32f4xx_hal_pccard.c │ │ ├── stm32f4xx_hal_pcd.c │ │ ├── stm32f4xx_hal_pcd_ex.c │ │ ├── stm32f4xx_hal_pwr.c │ │ ├── stm32f4xx_hal_pwr_ex.c │ │ ├── stm32f4xx_hal_qspi.c │ │ ├── stm32f4xx_hal_rcc.c │ │ ├── stm32f4xx_hal_rcc_ex.c │ │ ├── stm32f4xx_hal_rng.c │ │ ├── stm32f4xx_hal_rtc.c │ │ ├── stm32f4xx_hal_rtc_ex.c │ │ ├── stm32f4xx_hal_sai.c │ │ ├── stm32f4xx_hal_sai_ex.c │ │ ├── stm32f4xx_hal_sd.c │ │ ├── stm32f4xx_hal_sdram.c │ │ ├── stm32f4xx_hal_smartcard.c │ │ ├── stm32f4xx_hal_spdifrx.c │ │ ├── stm32f4xx_hal_spi.c │ │ ├── stm32f4xx_hal_sram.c │ │ ├── stm32f4xx_hal_tim.c │ │ ├── stm32f4xx_hal_tim_ex.c │ │ ├── stm32f4xx_hal_timebase_rtc_alarm_template.c │ │ ├── stm32f4xx_hal_timebase_rtc_wakeup_template.c │ │ ├── stm32f4xx_hal_timebase_tim_template.c │ │ ├── stm32f4xx_hal_uart.c │ │ ├── stm32f4xx_hal_usart.c │ │ ├── stm32f4xx_hal_wwdg.c │ │ ├── stm32f4xx_ll_fmc.c │ │ ├── stm32f4xx_ll_fsmc.c │ │ ├── stm32f4xx_ll_sdmmc.c │ │ └── stm32f4xx_ll_usb.c ├── Middlewares │ └── ST │ │ └── STM32_USB_Host_Library │ │ ├── Class │ │ └── VIDEO │ │ │ ├── Inc │ │ │ ├── usbh_video.h │ │ │ ├── usbh_video_desc_parsing.h │ │ │ └── usbh_video_stream_parsing.h │ │ │ └── Src │ │ │ ├── usbh_video.c │ │ │ ├── usbh_video_desc_parsing.c │ │ │ └── usbh_video_stream_parsing.c │ │ └── Core │ │ ├── Inc │ │ ├── usbh_conf_template.h │ │ ├── usbh_core.h │ │ ├── usbh_ctlreq.h │ │ ├── usbh_def.h │ │ ├── usbh_ioreq.h │ │ └── usbh_pipes.h │ │ └── Src │ │ ├── usbh_conf_template.c │ │ ├── usbh_core.c │ │ ├── usbh_ctlreq.c │ │ ├── usbh_ioreq.c │ │ └── usbh_pipes.c ├── README.md ├── jpeg_lib │ ├── integer.h │ ├── mjpeg_dht.h │ ├── tjpgd.c │ └── tjpgd.h ├── stm32F429_project │ ├── EWARM │ │ ├── Project.eww │ │ ├── cube_video_test1.dep │ │ ├── cube_video_test1.ewd │ │ ├── cube_video_test1.ewp │ │ ├── cube_video_test1.ewt │ │ ├── settings │ │ │ ├── Project.wsdt │ │ │ ├── Project.wspos │ │ │ ├── cube_video_test1.crun │ │ │ ├── cube_video_test1.cube_video_test1.cspy.bat │ │ │ ├── cube_video_test1.cube_video_test1.driver.xcl │ │ │ ├── cube_video_test1.cube_video_test1.general.xcl │ │ │ ├── cube_video_test1.dbgdt │ │ │ └── cube_video_test1.dni │ │ ├── stm32f429xx_flash.icf │ │ └── stm32f429xx_sram.icf │ ├── Inc │ │ ├── main.h │ │ ├── mjpeg_decoding.h │ │ ├── stm32f429_lcd.h │ │ ├── stm32f429_sdram.h │ │ ├── stm32f4xx_hal_conf.h │ │ ├── stm32f4xx_it.h │ │ ├── usb_host.h │ │ └── usbh_conf.h │ └── Src │ │ ├── fonts.c │ │ ├── fonts.h │ │ ├── main.c │ │ ├── mjpeg_decoding.c │ │ ├── stm32f429_lcd.c │ │ ├── stm32f429_sdram.c │ │ ├── stm32f4xx_hal_msp.c │ │ ├── stm32f4xx_it.c │ │ ├── system_stm32f4xx.c │ │ ├── usb_host.c │ │ └── usbh_conf.c └── stm32F4_discovery_project │ ├── EWARM │ ├── Project.eww │ ├── host_testing.dep │ ├── host_testing.ewd │ ├── host_testing.ewp │ ├── host_testing.ewt │ ├── host_testing │ │ ├── Exe │ │ │ └── host_testing.sim │ │ └── Obj │ │ │ ├── host_testing.pbd │ │ │ └── host_testing.pbd.browse │ ├── settings │ │ ├── Project.wsdt │ │ ├── Project.wspos │ │ ├── host_testing.crun │ │ ├── host_testing.dbgdt │ │ ├── host_testing.dni │ │ ├── host_testing.host_testing.cspy.bat │ │ ├── host_testing.host_testing.driver.xcl │ │ └── host_testing.host_testing.general.xcl │ ├── stm32f407xx_flash.icf │ └── stm32f407xx_sram.icf │ ├── Inc │ ├── main.h │ ├── stm32f4xx_hal_conf.h │ ├── stm32f4xx_it.h │ ├── usb_host.h │ └── usbh_conf.h │ └── Src │ ├── main.c │ ├── stm32f4xx_hal_msp.c │ ├── stm32f4xx_it.c │ ├── system_stm32f4xx.c │ ├── usb_host.c │ └── usbh_conf.c ├── LICENSE ├── Pictures ├── ModuleSchematic.png └── example.jpg └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/.gitignore -------------------------------------------------------------------------------- /HAL_source/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h -------------------------------------------------------------------------------- /HAL_source/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f429xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f429xx.h -------------------------------------------------------------------------------- /HAL_source/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h -------------------------------------------------------------------------------- /HAL_source/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h -------------------------------------------------------------------------------- /HAL_source/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/gcc/startup_stm32f407xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/gcc/startup_stm32f407xx.s -------------------------------------------------------------------------------- /HAL_source/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/gcc/startup_stm32f429xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/gcc/startup_stm32f429xx.s -------------------------------------------------------------------------------- /HAL_source/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/iar/startup_stm32f407xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/iar/startup_stm32f407xx.s -------------------------------------------------------------------------------- /HAL_source/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/iar/startup_stm32f429xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/iar/startup_stm32f429xx.s -------------------------------------------------------------------------------- /HAL_source/Drivers/CMSIS/Include/arm_common_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/CMSIS/Include/arm_common_tables.h -------------------------------------------------------------------------------- /HAL_source/Drivers/CMSIS/Include/arm_const_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/CMSIS/Include/arm_const_structs.h -------------------------------------------------------------------------------- /HAL_source/Drivers/CMSIS/Include/arm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/CMSIS/Include/arm_math.h -------------------------------------------------------------------------------- /HAL_source/Drivers/CMSIS/Include/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/CMSIS/Include/cmsis_armcc.h -------------------------------------------------------------------------------- /HAL_source/Drivers/CMSIS/Include/cmsis_armcc_V6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/CMSIS/Include/cmsis_armcc_V6.h -------------------------------------------------------------------------------- /HAL_source/Drivers/CMSIS/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/CMSIS/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /HAL_source/Drivers/CMSIS/Include/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/CMSIS/Include/core_cm0.h -------------------------------------------------------------------------------- /HAL_source/Drivers/CMSIS/Include/core_cm0plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/CMSIS/Include/core_cm0plus.h -------------------------------------------------------------------------------- /HAL_source/Drivers/CMSIS/Include/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/CMSIS/Include/core_cm3.h -------------------------------------------------------------------------------- /HAL_source/Drivers/CMSIS/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/CMSIS/Include/core_cm4.h -------------------------------------------------------------------------------- /HAL_source/Drivers/CMSIS/Include/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/CMSIS/Include/core_cm7.h -------------------------------------------------------------------------------- /HAL_source/Drivers/CMSIS/Include/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/CMSIS/Include/core_cmFunc.h -------------------------------------------------------------------------------- /HAL_source/Drivers/CMSIS/Include/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/CMSIS/Include/core_cmInstr.h -------------------------------------------------------------------------------- /HAL_source/Drivers/CMSIS/Include/core_cmSimd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/CMSIS/Include/core_cmSimd.h -------------------------------------------------------------------------------- /HAL_source/Drivers/CMSIS/Include/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/CMSIS/Include/core_sc000.h -------------------------------------------------------------------------------- /HAL_source/Drivers/CMSIS/Include/core_sc300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/CMSIS/Include/core_sc300.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cec.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_conf_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_conf_template.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cryp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cryp.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cryp_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cryp_ex.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dcmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dcmi.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dcmi_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dcmi_ex.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dfsdm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dfsdm.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma2d.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dsi.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_eth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_eth.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_fmpi2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_fmpi2c.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_fmpi2c_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_fmpi2c_ex.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_hash.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_hash_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_hash_ex.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_hcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_hcd.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2s.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2s_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2s_ex.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_irda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_irda.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_iwdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_iwdg.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_lptim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_lptim.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_ltdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_ltdc.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_ltdc_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_ltdc_ex.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_nand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_nand.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_nor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_nor.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pccard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pccard.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_qspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_qspi.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_sai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_sai.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_sai_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_sai_ex.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_sd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_sd.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_sdram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_sdram.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_smartcard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_smartcard.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spdifrx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spdifrx.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_sram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_sram.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_usart.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_wwdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_wwdg.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_fmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_fmc.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_fsmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_fsmc.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_sdmmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_sdmmc.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cec.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cryp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cryp.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cryp_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cryp_ex.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dcmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dcmi.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dcmi_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dcmi_ex.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dfsdm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dfsdm.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma2d.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dsi.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_eth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_eth.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_fmpi2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_fmpi2c.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_fmpi2c_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_fmpi2c_ex.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_hash.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_hash_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_hash_ex.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_hcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_hcd.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2s.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2s_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2s_ex.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_irda.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_irda.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_iwdg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_iwdg.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_lptim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_lptim.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_ltdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_ltdc.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_ltdc_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_ltdc_ex.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_msp_template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_msp_template.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_nand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_nand.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_nor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_nor.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pccard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pccard.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_qspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_qspi.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sai.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sai.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sai_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sai_ex.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sd.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sdram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sdram.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_smartcard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_smartcard.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spdifrx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spdifrx.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sram.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_timebase_rtc_alarm_template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_timebase_rtc_alarm_template.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_timebase_rtc_wakeup_template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_timebase_rtc_wakeup_template.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_timebase_tim_template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_timebase_tim_template.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_usart.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_wwdg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_wwdg.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_fmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_fmc.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_fsmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_fsmc.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_sdmmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_sdmmc.c -------------------------------------------------------------------------------- /HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c -------------------------------------------------------------------------------- /HAL_source/Middlewares/ST/STM32_USB_Host_Library/Class/VIDEO/Inc/usbh_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Middlewares/ST/STM32_USB_Host_Library/Class/VIDEO/Inc/usbh_video.h -------------------------------------------------------------------------------- /HAL_source/Middlewares/ST/STM32_USB_Host_Library/Class/VIDEO/Inc/usbh_video_desc_parsing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Middlewares/ST/STM32_USB_Host_Library/Class/VIDEO/Inc/usbh_video_desc_parsing.h -------------------------------------------------------------------------------- /HAL_source/Middlewares/ST/STM32_USB_Host_Library/Class/VIDEO/Inc/usbh_video_stream_parsing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Middlewares/ST/STM32_USB_Host_Library/Class/VIDEO/Inc/usbh_video_stream_parsing.h -------------------------------------------------------------------------------- /HAL_source/Middlewares/ST/STM32_USB_Host_Library/Class/VIDEO/Src/usbh_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Middlewares/ST/STM32_USB_Host_Library/Class/VIDEO/Src/usbh_video.c -------------------------------------------------------------------------------- /HAL_source/Middlewares/ST/STM32_USB_Host_Library/Class/VIDEO/Src/usbh_video_desc_parsing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Middlewares/ST/STM32_USB_Host_Library/Class/VIDEO/Src/usbh_video_desc_parsing.c -------------------------------------------------------------------------------- /HAL_source/Middlewares/ST/STM32_USB_Host_Library/Class/VIDEO/Src/usbh_video_stream_parsing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Middlewares/ST/STM32_USB_Host_Library/Class/VIDEO/Src/usbh_video_stream_parsing.c -------------------------------------------------------------------------------- /HAL_source/Middlewares/ST/STM32_USB_Host_Library/Core/Inc/usbh_conf_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Middlewares/ST/STM32_USB_Host_Library/Core/Inc/usbh_conf_template.h -------------------------------------------------------------------------------- /HAL_source/Middlewares/ST/STM32_USB_Host_Library/Core/Inc/usbh_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Middlewares/ST/STM32_USB_Host_Library/Core/Inc/usbh_core.h -------------------------------------------------------------------------------- /HAL_source/Middlewares/ST/STM32_USB_Host_Library/Core/Inc/usbh_ctlreq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Middlewares/ST/STM32_USB_Host_Library/Core/Inc/usbh_ctlreq.h -------------------------------------------------------------------------------- /HAL_source/Middlewares/ST/STM32_USB_Host_Library/Core/Inc/usbh_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Middlewares/ST/STM32_USB_Host_Library/Core/Inc/usbh_def.h -------------------------------------------------------------------------------- /HAL_source/Middlewares/ST/STM32_USB_Host_Library/Core/Inc/usbh_ioreq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Middlewares/ST/STM32_USB_Host_Library/Core/Inc/usbh_ioreq.h -------------------------------------------------------------------------------- /HAL_source/Middlewares/ST/STM32_USB_Host_Library/Core/Inc/usbh_pipes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Middlewares/ST/STM32_USB_Host_Library/Core/Inc/usbh_pipes.h -------------------------------------------------------------------------------- /HAL_source/Middlewares/ST/STM32_USB_Host_Library/Core/Src/usbh_conf_template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Middlewares/ST/STM32_USB_Host_Library/Core/Src/usbh_conf_template.c -------------------------------------------------------------------------------- /HAL_source/Middlewares/ST/STM32_USB_Host_Library/Core/Src/usbh_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Middlewares/ST/STM32_USB_Host_Library/Core/Src/usbh_core.c -------------------------------------------------------------------------------- /HAL_source/Middlewares/ST/STM32_USB_Host_Library/Core/Src/usbh_ctlreq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Middlewares/ST/STM32_USB_Host_Library/Core/Src/usbh_ctlreq.c -------------------------------------------------------------------------------- /HAL_source/Middlewares/ST/STM32_USB_Host_Library/Core/Src/usbh_ioreq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Middlewares/ST/STM32_USB_Host_Library/Core/Src/usbh_ioreq.c -------------------------------------------------------------------------------- /HAL_source/Middlewares/ST/STM32_USB_Host_Library/Core/Src/usbh_pipes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/Middlewares/ST/STM32_USB_Host_Library/Core/Src/usbh_pipes.c -------------------------------------------------------------------------------- /HAL_source/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/README.md -------------------------------------------------------------------------------- /HAL_source/jpeg_lib/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/jpeg_lib/integer.h -------------------------------------------------------------------------------- /HAL_source/jpeg_lib/mjpeg_dht.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/jpeg_lib/mjpeg_dht.h -------------------------------------------------------------------------------- /HAL_source/jpeg_lib/tjpgd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/jpeg_lib/tjpgd.c -------------------------------------------------------------------------------- /HAL_source/jpeg_lib/tjpgd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/jpeg_lib/tjpgd.h -------------------------------------------------------------------------------- /HAL_source/stm32F429_project/EWARM/Project.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/stm32F429_project/EWARM/Project.eww -------------------------------------------------------------------------------- /HAL_source/stm32F429_project/EWARM/cube_video_test1.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/stm32F429_project/EWARM/cube_video_test1.dep -------------------------------------------------------------------------------- /HAL_source/stm32F429_project/EWARM/cube_video_test1.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/stm32F429_project/EWARM/cube_video_test1.ewd -------------------------------------------------------------------------------- /HAL_source/stm32F429_project/EWARM/cube_video_test1.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/stm32F429_project/EWARM/cube_video_test1.ewp -------------------------------------------------------------------------------- /HAL_source/stm32F429_project/EWARM/cube_video_test1.ewt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/stm32F429_project/EWARM/cube_video_test1.ewt -------------------------------------------------------------------------------- /HAL_source/stm32F429_project/EWARM/settings/Project.wsdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/stm32F429_project/EWARM/settings/Project.wsdt -------------------------------------------------------------------------------- /HAL_source/stm32F429_project/EWARM/settings/Project.wspos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/stm32F429_project/EWARM/settings/Project.wspos -------------------------------------------------------------------------------- /HAL_source/stm32F429_project/EWARM/settings/cube_video_test1.crun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/stm32F429_project/EWARM/settings/cube_video_test1.crun -------------------------------------------------------------------------------- /HAL_source/stm32F429_project/EWARM/settings/cube_video_test1.cube_video_test1.cspy.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/stm32F429_project/EWARM/settings/cube_video_test1.cube_video_test1.cspy.bat -------------------------------------------------------------------------------- /HAL_source/stm32F429_project/EWARM/settings/cube_video_test1.cube_video_test1.driver.xcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/stm32F429_project/EWARM/settings/cube_video_test1.cube_video_test1.driver.xcl -------------------------------------------------------------------------------- /HAL_source/stm32F429_project/EWARM/settings/cube_video_test1.cube_video_test1.general.xcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/stm32F429_project/EWARM/settings/cube_video_test1.cube_video_test1.general.xcl -------------------------------------------------------------------------------- /HAL_source/stm32F429_project/EWARM/settings/cube_video_test1.dbgdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/stm32F429_project/EWARM/settings/cube_video_test1.dbgdt -------------------------------------------------------------------------------- /HAL_source/stm32F429_project/EWARM/settings/cube_video_test1.dni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/stm32F429_project/EWARM/settings/cube_video_test1.dni -------------------------------------------------------------------------------- /HAL_source/stm32F429_project/EWARM/stm32f429xx_flash.icf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/stm32F429_project/EWARM/stm32f429xx_flash.icf -------------------------------------------------------------------------------- /HAL_source/stm32F429_project/EWARM/stm32f429xx_sram.icf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/stm32F429_project/EWARM/stm32f429xx_sram.icf -------------------------------------------------------------------------------- /HAL_source/stm32F429_project/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/stm32F429_project/Inc/main.h -------------------------------------------------------------------------------- /HAL_source/stm32F429_project/Inc/mjpeg_decoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/stm32F429_project/Inc/mjpeg_decoding.h -------------------------------------------------------------------------------- /HAL_source/stm32F429_project/Inc/stm32f429_lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/stm32F429_project/Inc/stm32f429_lcd.h -------------------------------------------------------------------------------- /HAL_source/stm32F429_project/Inc/stm32f429_sdram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/stm32F429_project/Inc/stm32f429_sdram.h -------------------------------------------------------------------------------- /HAL_source/stm32F429_project/Inc/stm32f4xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/stm32F429_project/Inc/stm32f4xx_hal_conf.h -------------------------------------------------------------------------------- /HAL_source/stm32F429_project/Inc/stm32f4xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/stm32F429_project/Inc/stm32f4xx_it.h -------------------------------------------------------------------------------- /HAL_source/stm32F429_project/Inc/usb_host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/stm32F429_project/Inc/usb_host.h -------------------------------------------------------------------------------- /HAL_source/stm32F429_project/Inc/usbh_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/stm32F429_project/Inc/usbh_conf.h -------------------------------------------------------------------------------- /HAL_source/stm32F429_project/Src/fonts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/stm32F429_project/Src/fonts.c -------------------------------------------------------------------------------- /HAL_source/stm32F429_project/Src/fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/stm32F429_project/Src/fonts.h -------------------------------------------------------------------------------- /HAL_source/stm32F429_project/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/stm32F429_project/Src/main.c -------------------------------------------------------------------------------- /HAL_source/stm32F429_project/Src/mjpeg_decoding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/stm32F429_project/Src/mjpeg_decoding.c -------------------------------------------------------------------------------- /HAL_source/stm32F429_project/Src/stm32f429_lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/stm32F429_project/Src/stm32f429_lcd.c -------------------------------------------------------------------------------- /HAL_source/stm32F429_project/Src/stm32f429_sdram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/stm32F429_project/Src/stm32f429_sdram.c -------------------------------------------------------------------------------- /HAL_source/stm32F429_project/Src/stm32f4xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/stm32F429_project/Src/stm32f4xx_hal_msp.c -------------------------------------------------------------------------------- /HAL_source/stm32F429_project/Src/stm32f4xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/stm32F429_project/Src/stm32f4xx_it.c -------------------------------------------------------------------------------- /HAL_source/stm32F429_project/Src/system_stm32f4xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/stm32F429_project/Src/system_stm32f4xx.c -------------------------------------------------------------------------------- /HAL_source/stm32F429_project/Src/usb_host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/stm32F429_project/Src/usb_host.c -------------------------------------------------------------------------------- /HAL_source/stm32F429_project/Src/usbh_conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/stm32F429_project/Src/usbh_conf.c -------------------------------------------------------------------------------- /HAL_source/stm32F4_discovery_project/EWARM/Project.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/stm32F4_discovery_project/EWARM/Project.eww -------------------------------------------------------------------------------- /HAL_source/stm32F4_discovery_project/EWARM/host_testing.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/stm32F4_discovery_project/EWARM/host_testing.dep -------------------------------------------------------------------------------- /HAL_source/stm32F4_discovery_project/EWARM/host_testing.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/stm32F4_discovery_project/EWARM/host_testing.ewd -------------------------------------------------------------------------------- /HAL_source/stm32F4_discovery_project/EWARM/host_testing.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/stm32F4_discovery_project/EWARM/host_testing.ewp -------------------------------------------------------------------------------- /HAL_source/stm32F4_discovery_project/EWARM/host_testing.ewt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/stm32F4_discovery_project/EWARM/host_testing.ewt -------------------------------------------------------------------------------- /HAL_source/stm32F4_discovery_project/EWARM/host_testing/Exe/host_testing.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/stm32F4_discovery_project/EWARM/host_testing/Exe/host_testing.sim -------------------------------------------------------------------------------- /HAL_source/stm32F4_discovery_project/EWARM/host_testing/Obj/host_testing.pbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/stm32F4_discovery_project/EWARM/host_testing/Obj/host_testing.pbd -------------------------------------------------------------------------------- /HAL_source/stm32F4_discovery_project/EWARM/host_testing/Obj/host_testing.pbd.browse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/stm32F4_discovery_project/EWARM/host_testing/Obj/host_testing.pbd.browse -------------------------------------------------------------------------------- /HAL_source/stm32F4_discovery_project/EWARM/settings/Project.wsdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/stm32F4_discovery_project/EWARM/settings/Project.wsdt -------------------------------------------------------------------------------- /HAL_source/stm32F4_discovery_project/EWARM/settings/Project.wspos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/stm32F4_discovery_project/EWARM/settings/Project.wspos -------------------------------------------------------------------------------- /HAL_source/stm32F4_discovery_project/EWARM/settings/host_testing.crun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/stm32F4_discovery_project/EWARM/settings/host_testing.crun -------------------------------------------------------------------------------- /HAL_source/stm32F4_discovery_project/EWARM/settings/host_testing.dbgdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/stm32F4_discovery_project/EWARM/settings/host_testing.dbgdt -------------------------------------------------------------------------------- /HAL_source/stm32F4_discovery_project/EWARM/settings/host_testing.dni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/stm32F4_discovery_project/EWARM/settings/host_testing.dni -------------------------------------------------------------------------------- /HAL_source/stm32F4_discovery_project/EWARM/settings/host_testing.host_testing.cspy.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/stm32F4_discovery_project/EWARM/settings/host_testing.host_testing.cspy.bat -------------------------------------------------------------------------------- /HAL_source/stm32F4_discovery_project/EWARM/settings/host_testing.host_testing.driver.xcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/stm32F4_discovery_project/EWARM/settings/host_testing.host_testing.driver.xcl -------------------------------------------------------------------------------- /HAL_source/stm32F4_discovery_project/EWARM/settings/host_testing.host_testing.general.xcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/stm32F4_discovery_project/EWARM/settings/host_testing.host_testing.general.xcl -------------------------------------------------------------------------------- /HAL_source/stm32F4_discovery_project/EWARM/stm32f407xx_flash.icf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/stm32F4_discovery_project/EWARM/stm32f407xx_flash.icf -------------------------------------------------------------------------------- /HAL_source/stm32F4_discovery_project/EWARM/stm32f407xx_sram.icf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/stm32F4_discovery_project/EWARM/stm32f407xx_sram.icf -------------------------------------------------------------------------------- /HAL_source/stm32F4_discovery_project/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/stm32F4_discovery_project/Inc/main.h -------------------------------------------------------------------------------- /HAL_source/stm32F4_discovery_project/Inc/stm32f4xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/stm32F4_discovery_project/Inc/stm32f4xx_hal_conf.h -------------------------------------------------------------------------------- /HAL_source/stm32F4_discovery_project/Inc/stm32f4xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/stm32F4_discovery_project/Inc/stm32f4xx_it.h -------------------------------------------------------------------------------- /HAL_source/stm32F4_discovery_project/Inc/usb_host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/stm32F4_discovery_project/Inc/usb_host.h -------------------------------------------------------------------------------- /HAL_source/stm32F4_discovery_project/Inc/usbh_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/stm32F4_discovery_project/Inc/usbh_conf.h -------------------------------------------------------------------------------- /HAL_source/stm32F4_discovery_project/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/stm32F4_discovery_project/Src/main.c -------------------------------------------------------------------------------- /HAL_source/stm32F4_discovery_project/Src/stm32f4xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/stm32F4_discovery_project/Src/stm32f4xx_hal_msp.c -------------------------------------------------------------------------------- /HAL_source/stm32F4_discovery_project/Src/stm32f4xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/stm32F4_discovery_project/Src/stm32f4xx_it.c -------------------------------------------------------------------------------- /HAL_source/stm32F4_discovery_project/Src/system_stm32f4xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/stm32F4_discovery_project/Src/system_stm32f4xx.c -------------------------------------------------------------------------------- /HAL_source/stm32F4_discovery_project/Src/usb_host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/stm32F4_discovery_project/Src/usb_host.c -------------------------------------------------------------------------------- /HAL_source/stm32F4_discovery_project/Src/usbh_conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/HAL_source/stm32F4_discovery_project/Src/usbh_conf.c -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/LICENSE -------------------------------------------------------------------------------- /Pictures/ModuleSchematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/Pictures/ModuleSchematic.png -------------------------------------------------------------------------------- /Pictures/example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/Pictures/example.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliasam/STM32_HOST_UVC_Camera/HEAD/README.md --------------------------------------------------------------------------------