├── Document ├── QCopterRCs_3Dpdf.pdf ├── QCopterRCs_BOM.pdf ├── QCopterRCs_Config.pdf ├── QCopterRCs_PCBLayer.pdf └── QCopterRCs_Schematic.pdf ├── Hardware ├── QCopterRCs.OutJob ├── QCopterRCs.PrjPCB ├── QCopterRCs_Pcb.PcbDoc └── QCopterRCs_Sch.SchDoc ├── LICENSE ├── README.md └── Software ├── QRCs_Module_IMU ├── Libraries │ ├── CMSIS │ │ ├── CMSIS_END_USER_LICENCE_AGREEMENT.pdf │ │ ├── DSP_Lib │ │ │ └── license.txt │ │ ├── Device │ │ │ ├── Release_Notes.html │ │ │ ├── startup_stm32f411xe.s │ │ │ ├── stm32f411xe.h │ │ │ ├── stm32f4xx.h │ │ │ ├── system_stm32f4xx.c │ │ │ └── system_stm32f4xx.h │ │ └── Include │ │ │ ├── arm_common_tables.h │ │ │ ├── arm_const_structs.h │ │ │ ├── arm_math.h │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armcc_V6.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── core_cm4.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 │ │ ├── stm32_assert_template.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_mmc.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_adc.h │ │ ├── stm32f4xx_ll_bus.h │ │ ├── stm32f4xx_ll_cortex.h │ │ ├── stm32f4xx_ll_crc.h │ │ ├── stm32f4xx_ll_dac.h │ │ ├── stm32f4xx_ll_dma.h │ │ ├── stm32f4xx_ll_dma2d.h │ │ ├── stm32f4xx_ll_exti.h │ │ ├── stm32f4xx_ll_fmc.h │ │ ├── stm32f4xx_ll_fsmc.h │ │ ├── stm32f4xx_ll_gpio.h │ │ ├── stm32f4xx_ll_i2c.h │ │ ├── stm32f4xx_ll_iwdg.h │ │ ├── stm32f4xx_ll_lptim.h │ │ ├── stm32f4xx_ll_pwr.h │ │ ├── stm32f4xx_ll_rcc.h │ │ ├── stm32f4xx_ll_rng.h │ │ ├── stm32f4xx_ll_rtc.h │ │ ├── stm32f4xx_ll_sdmmc.h │ │ ├── stm32f4xx_ll_spi.h │ │ ├── stm32f4xx_ll_system.h │ │ ├── stm32f4xx_ll_tim.h │ │ ├── stm32f4xx_ll_usart.h │ │ ├── stm32f4xx_ll_usb.h │ │ ├── stm32f4xx_ll_utils.h │ │ └── stm32f4xx_ll_wwdg.h │ │ ├── Release_Notes.html │ │ └── 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_mmc.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_adc.c │ │ ├── stm32f4xx_ll_crc.c │ │ ├── stm32f4xx_ll_dac.c │ │ ├── stm32f4xx_ll_dma.c │ │ ├── stm32f4xx_ll_dma2d.c │ │ ├── stm32f4xx_ll_exti.c │ │ ├── stm32f4xx_ll_fmc.c │ │ ├── stm32f4xx_ll_fsmc.c │ │ ├── stm32f4xx_ll_gpio.c │ │ ├── stm32f4xx_ll_i2c.c │ │ ├── stm32f4xx_ll_lptim.c │ │ ├── stm32f4xx_ll_pwr.c │ │ ├── stm32f4xx_ll_rcc.c │ │ ├── stm32f4xx_ll_rng.c │ │ ├── stm32f4xx_ll_rtc.c │ │ ├── stm32f4xx_ll_sdmmc.c │ │ ├── stm32f4xx_ll_spi.c │ │ ├── stm32f4xx_ll_tim.c │ │ ├── stm32f4xx_ll_usart.c │ │ ├── stm32f4xx_ll_usb.c │ │ └── stm32f4xx_ll_utils.c ├── Program │ ├── algorithms │ │ ├── mathUnit.h │ │ ├── string.c │ │ └── string.h │ ├── boardConfig.h │ ├── drivers │ │ ├── stm32f4_delay.c │ │ ├── stm32f4_delay.h │ │ ├── stm32f4_msp.c │ │ ├── stm32f4_spi.c │ │ ├── stm32f4_spi.h │ │ ├── stm32f4_system.h │ │ ├── stm32f4_uart.c │ │ └── stm32f4_uart.h │ ├── main.c │ ├── modules │ │ ├── imu.c │ │ ├── imu.h │ │ ├── kSerial.c │ │ ├── kSerial.h │ │ ├── mpu9250.c │ │ ├── mpu9250.h │ │ ├── serial.c │ │ └── serial.h │ ├── stm32f4xx_bsp.c │ ├── stm32f4xx_bsp.h │ ├── stm32f4xx_hal_conf.h │ └── stm32f4xx_it.c ├── Project │ ├── ClearFile.bat │ ├── DebugConfig │ │ ├── STM32F411C_STM32F411CEUx.dbgconf │ │ ├── STM32F412R_STM32F411CEUx.dbgconf │ │ └── STM32F412R_STM32F412RGTx.dbgconf │ ├── JLinkSettings.ini │ ├── ProjSTM32.uvguix.Hom │ ├── ProjSTM32.uvoptx │ └── ProjSTM32.uvprojx ├── kSerial.m ├── kSerial_Oscilloscope.m ├── serialOscilloscope.m └── serialPacket.m ├── QRCs_Module_NRF24 ├── Libraries │ ├── CMSIS │ │ ├── CMSIS_END_USER_LICENCE_AGREEMENT.pdf │ │ ├── DSP_Lib │ │ │ └── license.txt │ │ ├── Device │ │ │ ├── Release_Notes.html │ │ │ ├── startup_stm32f411xe.s │ │ │ ├── stm32f411xe.h │ │ │ ├── stm32f4xx.h │ │ │ ├── system_stm32f4xx.c │ │ │ └── system_stm32f4xx.h │ │ └── Include │ │ │ ├── arm_common_tables.h │ │ │ ├── arm_const_structs.h │ │ │ ├── arm_math.h │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armcc_V6.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── core_cm4.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 │ │ ├── stm32_assert_template.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_mmc.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_adc.h │ │ ├── stm32f4xx_ll_bus.h │ │ ├── stm32f4xx_ll_cortex.h │ │ ├── stm32f4xx_ll_crc.h │ │ ├── stm32f4xx_ll_dac.h │ │ ├── stm32f4xx_ll_dma.h │ │ ├── stm32f4xx_ll_dma2d.h │ │ ├── stm32f4xx_ll_exti.h │ │ ├── stm32f4xx_ll_fmc.h │ │ ├── stm32f4xx_ll_fsmc.h │ │ ├── stm32f4xx_ll_gpio.h │ │ ├── stm32f4xx_ll_i2c.h │ │ ├── stm32f4xx_ll_iwdg.h │ │ ├── stm32f4xx_ll_lptim.h │ │ ├── stm32f4xx_ll_pwr.h │ │ ├── stm32f4xx_ll_rcc.h │ │ ├── stm32f4xx_ll_rng.h │ │ ├── stm32f4xx_ll_rtc.h │ │ ├── stm32f4xx_ll_sdmmc.h │ │ ├── stm32f4xx_ll_spi.h │ │ ├── stm32f4xx_ll_system.h │ │ ├── stm32f4xx_ll_tim.h │ │ ├── stm32f4xx_ll_usart.h │ │ ├── stm32f4xx_ll_usb.h │ │ ├── stm32f4xx_ll_utils.h │ │ └── stm32f4xx_ll_wwdg.h │ │ ├── Release_Notes.html │ │ └── 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_mmc.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_adc.c │ │ ├── stm32f4xx_ll_crc.c │ │ ├── stm32f4xx_ll_dac.c │ │ ├── stm32f4xx_ll_dma.c │ │ ├── stm32f4xx_ll_dma2d.c │ │ ├── stm32f4xx_ll_exti.c │ │ ├── stm32f4xx_ll_fmc.c │ │ ├── stm32f4xx_ll_fsmc.c │ │ ├── stm32f4xx_ll_gpio.c │ │ ├── stm32f4xx_ll_i2c.c │ │ ├── stm32f4xx_ll_lptim.c │ │ ├── stm32f4xx_ll_pwr.c │ │ ├── stm32f4xx_ll_rcc.c │ │ ├── stm32f4xx_ll_rng.c │ │ ├── stm32f4xx_ll_rtc.c │ │ ├── stm32f4xx_ll_sdmmc.c │ │ ├── stm32f4xx_ll_spi.c │ │ ├── stm32f4xx_ll_tim.c │ │ ├── stm32f4xx_ll_usart.c │ │ ├── stm32f4xx_ll_usb.c │ │ └── stm32f4xx_ll_utils.c ├── Program │ ├── algorithms │ │ ├── mathUnit.h │ │ ├── string.c │ │ └── string.h │ ├── boardConfig.h │ ├── drivers │ │ ├── stm32f4_delay.c │ │ ├── stm32f4_delay.h │ │ ├── stm32f4_msp.c │ │ ├── stm32f4_spi.c │ │ ├── stm32f4_spi.h │ │ ├── stm32f4_system.h │ │ ├── stm32f4_uart.c │ │ └── stm32f4_uart.h │ ├── fonts │ │ ├── font16.c │ │ ├── font7.c │ │ ├── font8.c │ │ └── fontlib.h │ ├── main.c │ ├── modules │ │ ├── nrf24l01.c │ │ ├── nrf24l01.h │ │ ├── serial.c │ │ ├── serial.h │ │ ├── ssd1351.c │ │ └── ssd1351.h │ ├── stm32f4xx_bsp.c │ ├── stm32f4xx_bsp.h │ ├── stm32f4xx_hal_conf.h │ └── stm32f4xx_it.c └── Project │ ├── ClearFile.bat │ ├── DebugConfig │ ├── STM32F411C_STM32F411CEUx.dbgconf │ ├── STM32F412R_STM32F411CEUx.dbgconf │ └── STM32F412R_STM32F412RGTx.dbgconf │ ├── JLinkSettings.ini │ ├── ProjSTM32.uvguix.Hom │ ├── ProjSTM32.uvoptx │ └── ProjSTM32.uvprojx ├── QRCs_Module_OLED ├── Libraries │ ├── CMSIS │ │ ├── CMSIS_END_USER_LICENCE_AGREEMENT.pdf │ │ ├── DSP_Lib │ │ │ └── license.txt │ │ ├── Device │ │ │ ├── Release_Notes.html │ │ │ ├── startup_stm32f411xe.s │ │ │ ├── stm32f411xe.h │ │ │ ├── stm32f4xx.h │ │ │ ├── system_stm32f4xx.c │ │ │ └── system_stm32f4xx.h │ │ └── Include │ │ │ ├── arm_common_tables.h │ │ │ ├── arm_const_structs.h │ │ │ ├── arm_math.h │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armcc_V6.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── core_cm4.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 │ │ ├── stm32_assert_template.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_mmc.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_adc.h │ │ ├── stm32f4xx_ll_bus.h │ │ ├── stm32f4xx_ll_cortex.h │ │ ├── stm32f4xx_ll_crc.h │ │ ├── stm32f4xx_ll_dac.h │ │ ├── stm32f4xx_ll_dma.h │ │ ├── stm32f4xx_ll_dma2d.h │ │ ├── stm32f4xx_ll_exti.h │ │ ├── stm32f4xx_ll_fmc.h │ │ ├── stm32f4xx_ll_fsmc.h │ │ ├── stm32f4xx_ll_gpio.h │ │ ├── stm32f4xx_ll_i2c.h │ │ ├── stm32f4xx_ll_iwdg.h │ │ ├── stm32f4xx_ll_lptim.h │ │ ├── stm32f4xx_ll_pwr.h │ │ ├── stm32f4xx_ll_rcc.h │ │ ├── stm32f4xx_ll_rng.h │ │ ├── stm32f4xx_ll_rtc.h │ │ ├── stm32f4xx_ll_sdmmc.h │ │ ├── stm32f4xx_ll_spi.h │ │ ├── stm32f4xx_ll_system.h │ │ ├── stm32f4xx_ll_tim.h │ │ ├── stm32f4xx_ll_usart.h │ │ ├── stm32f4xx_ll_usb.h │ │ ├── stm32f4xx_ll_utils.h │ │ └── stm32f4xx_ll_wwdg.h │ │ ├── Release_Notes.html │ │ └── 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_mmc.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_adc.c │ │ ├── stm32f4xx_ll_crc.c │ │ ├── stm32f4xx_ll_dac.c │ │ ├── stm32f4xx_ll_dma.c │ │ ├── stm32f4xx_ll_dma2d.c │ │ ├── stm32f4xx_ll_exti.c │ │ ├── stm32f4xx_ll_fmc.c │ │ ├── stm32f4xx_ll_fsmc.c │ │ ├── stm32f4xx_ll_gpio.c │ │ ├── stm32f4xx_ll_i2c.c │ │ ├── stm32f4xx_ll_lptim.c │ │ ├── stm32f4xx_ll_pwr.c │ │ ├── stm32f4xx_ll_rcc.c │ │ ├── stm32f4xx_ll_rng.c │ │ ├── stm32f4xx_ll_rtc.c │ │ ├── stm32f4xx_ll_sdmmc.c │ │ ├── stm32f4xx_ll_spi.c │ │ ├── stm32f4xx_ll_tim.c │ │ ├── stm32f4xx_ll_usart.c │ │ ├── stm32f4xx_ll_usb.c │ │ └── stm32f4xx_ll_utils.c ├── Program │ ├── algorithms │ │ ├── mathUnit.h │ │ ├── string.c │ │ └── string.h │ ├── boardConfig.h │ ├── drivers │ │ ├── stm32f4_delay.c │ │ ├── stm32f4_delay.h │ │ ├── stm32f4_msp.c │ │ ├── stm32f4_spi.c │ │ ├── stm32f4_spi.h │ │ └── stm32f4_system.h │ ├── fonts │ │ ├── font16.c │ │ ├── font7.c │ │ ├── font8.c │ │ └── fontlib.h │ ├── main.c │ ├── modules │ │ ├── ssd1351.c │ │ └── ssd1351.h │ ├── stm32f4xx_bsp.c │ ├── stm32f4xx_bsp.h │ ├── stm32f4xx_hal_conf.h │ └── stm32f4xx_it.c └── Project │ ├── ClearFile.bat │ ├── DebugConfig │ ├── STM32F411C_STM32F411CEUx.dbgconf │ ├── STM32F412R_STM32F411CEUx.dbgconf │ └── STM32F412R_STM32F412RGTx.dbgconf │ ├── JLinkSettings.ini │ ├── ProjSTM32.uvguix.Hom │ ├── ProjSTM32.uvoptx │ └── ProjSTM32.uvprojx ├── QRCs_Peripheral_ADC ├── Libraries │ ├── CMSIS │ │ ├── CMSIS_END_USER_LICENCE_AGREEMENT.pdf │ │ ├── DSP_Lib │ │ │ └── license.txt │ │ ├── Device │ │ │ ├── Release_Notes.html │ │ │ ├── startup_stm32f411xe.s │ │ │ ├── stm32f411xe.h │ │ │ ├── stm32f4xx.h │ │ │ ├── system_stm32f4xx.c │ │ │ └── system_stm32f4xx.h │ │ └── Include │ │ │ ├── arm_common_tables.h │ │ │ ├── arm_const_structs.h │ │ │ ├── arm_math.h │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armcc_V6.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── core_cm4.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 │ │ ├── stm32_assert_template.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_mmc.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_adc.h │ │ ├── stm32f4xx_ll_bus.h │ │ ├── stm32f4xx_ll_cortex.h │ │ ├── stm32f4xx_ll_crc.h │ │ ├── stm32f4xx_ll_dac.h │ │ ├── stm32f4xx_ll_dma.h │ │ ├── stm32f4xx_ll_dma2d.h │ │ ├── stm32f4xx_ll_exti.h │ │ ├── stm32f4xx_ll_fmc.h │ │ ├── stm32f4xx_ll_fsmc.h │ │ ├── stm32f4xx_ll_gpio.h │ │ ├── stm32f4xx_ll_i2c.h │ │ ├── stm32f4xx_ll_iwdg.h │ │ ├── stm32f4xx_ll_lptim.h │ │ ├── stm32f4xx_ll_pwr.h │ │ ├── stm32f4xx_ll_rcc.h │ │ ├── stm32f4xx_ll_rng.h │ │ ├── stm32f4xx_ll_rtc.h │ │ ├── stm32f4xx_ll_sdmmc.h │ │ ├── stm32f4xx_ll_spi.h │ │ ├── stm32f4xx_ll_system.h │ │ ├── stm32f4xx_ll_tim.h │ │ ├── stm32f4xx_ll_usart.h │ │ ├── stm32f4xx_ll_usb.h │ │ ├── stm32f4xx_ll_utils.h │ │ └── stm32f4xx_ll_wwdg.h │ │ ├── Release_Notes.html │ │ └── 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_mmc.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_adc.c │ │ ├── stm32f4xx_ll_crc.c │ │ ├── stm32f4xx_ll_dac.c │ │ ├── stm32f4xx_ll_dma.c │ │ ├── stm32f4xx_ll_dma2d.c │ │ ├── stm32f4xx_ll_exti.c │ │ ├── stm32f4xx_ll_fmc.c │ │ ├── stm32f4xx_ll_fsmc.c │ │ ├── stm32f4xx_ll_gpio.c │ │ ├── stm32f4xx_ll_i2c.c │ │ ├── stm32f4xx_ll_lptim.c │ │ ├── stm32f4xx_ll_pwr.c │ │ ├── stm32f4xx_ll_rcc.c │ │ ├── stm32f4xx_ll_rng.c │ │ ├── stm32f4xx_ll_rtc.c │ │ ├── stm32f4xx_ll_sdmmc.c │ │ ├── stm32f4xx_ll_spi.c │ │ ├── stm32f4xx_ll_tim.c │ │ ├── stm32f4xx_ll_usart.c │ │ ├── stm32f4xx_ll_usb.c │ │ └── stm32f4xx_ll_utils.c ├── Program │ ├── algorithms │ │ ├── mathUnit.h │ │ ├── string.c │ │ └── string.h │ ├── boardConfig.h │ ├── drivers │ │ ├── stm32f4_adc.c │ │ ├── stm32f4_adc.h │ │ ├── stm32f4_delay.c │ │ ├── stm32f4_delay.h │ │ ├── stm32f4_msp.c │ │ ├── stm32f4_system.h │ │ ├── stm32f4_uart.c │ │ └── stm32f4_uart.h │ ├── main.c │ ├── modules │ │ ├── serial.c │ │ └── serial.h │ ├── stm32f4xx_bsp.c │ ├── stm32f4xx_bsp.h │ ├── stm32f4xx_hal_conf.h │ └── stm32f4xx_it.c └── Project │ ├── ClearFile.bat │ ├── DebugConfig │ ├── STM32F411C_STM32F411CEUx.dbgconf │ ├── STM32F412R_STM32F411CEUx.dbgconf │ └── STM32F412R_STM32F412RGTx.dbgconf │ ├── JLinkSettings.ini │ ├── ProjSTM32.uvguix.Hom │ ├── ProjSTM32.uvoptx │ └── ProjSTM32.uvprojx ├── QRCs_Peripheral_EXTI ├── Libraries │ ├── CMSIS │ │ ├── CMSIS_END_USER_LICENCE_AGREEMENT.pdf │ │ ├── DSP_Lib │ │ │ └── license.txt │ │ ├── Device │ │ │ ├── Release_Notes.html │ │ │ ├── startup_stm32f411xe.s │ │ │ ├── stm32f411xe.h │ │ │ ├── stm32f4xx.h │ │ │ ├── system_stm32f4xx.c │ │ │ └── system_stm32f4xx.h │ │ └── Include │ │ │ ├── arm_common_tables.h │ │ │ ├── arm_const_structs.h │ │ │ ├── arm_math.h │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armcc_V6.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── core_cm4.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 │ │ ├── stm32_assert_template.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_mmc.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_adc.h │ │ ├── stm32f4xx_ll_bus.h │ │ ├── stm32f4xx_ll_cortex.h │ │ ├── stm32f4xx_ll_crc.h │ │ ├── stm32f4xx_ll_dac.h │ │ ├── stm32f4xx_ll_dma.h │ │ ├── stm32f4xx_ll_dma2d.h │ │ ├── stm32f4xx_ll_exti.h │ │ ├── stm32f4xx_ll_fmc.h │ │ ├── stm32f4xx_ll_fsmc.h │ │ ├── stm32f4xx_ll_gpio.h │ │ ├── stm32f4xx_ll_i2c.h │ │ ├── stm32f4xx_ll_iwdg.h │ │ ├── stm32f4xx_ll_lptim.h │ │ ├── stm32f4xx_ll_pwr.h │ │ ├── stm32f4xx_ll_rcc.h │ │ ├── stm32f4xx_ll_rng.h │ │ ├── stm32f4xx_ll_rtc.h │ │ ├── stm32f4xx_ll_sdmmc.h │ │ ├── stm32f4xx_ll_spi.h │ │ ├── stm32f4xx_ll_system.h │ │ ├── stm32f4xx_ll_tim.h │ │ ├── stm32f4xx_ll_usart.h │ │ ├── stm32f4xx_ll_usb.h │ │ ├── stm32f4xx_ll_utils.h │ │ └── stm32f4xx_ll_wwdg.h │ │ ├── Release_Notes.html │ │ └── 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_mmc.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_adc.c │ │ ├── stm32f4xx_ll_crc.c │ │ ├── stm32f4xx_ll_dac.c │ │ ├── stm32f4xx_ll_dma.c │ │ ├── stm32f4xx_ll_dma2d.c │ │ ├── stm32f4xx_ll_exti.c │ │ ├── stm32f4xx_ll_fmc.c │ │ ├── stm32f4xx_ll_fsmc.c │ │ ├── stm32f4xx_ll_gpio.c │ │ ├── stm32f4xx_ll_i2c.c │ │ ├── stm32f4xx_ll_lptim.c │ │ ├── stm32f4xx_ll_pwr.c │ │ ├── stm32f4xx_ll_rcc.c │ │ ├── stm32f4xx_ll_rng.c │ │ ├── stm32f4xx_ll_rtc.c │ │ ├── stm32f4xx_ll_sdmmc.c │ │ ├── stm32f4xx_ll_spi.c │ │ ├── stm32f4xx_ll_tim.c │ │ ├── stm32f4xx_ll_usart.c │ │ ├── stm32f4xx_ll_usb.c │ │ └── stm32f4xx_ll_utils.c ├── Program │ ├── algorithms │ │ └── mathUnit.h │ ├── boardConfig.h │ ├── drivers │ │ ├── stm32f4_delay.c │ │ ├── stm32f4_delay.h │ │ ├── stm32f4_exti.c │ │ ├── stm32f4_exti.h │ │ ├── stm32f4_msp.c │ │ └── stm32f4_system.h │ ├── main.c │ ├── stm32f4xx_bsp.c │ ├── stm32f4xx_bsp.h │ ├── stm32f4xx_hal_conf.h │ └── stm32f4xx_it.c └── Project │ ├── ClearFile.bat │ ├── DebugConfig │ ├── STM32F411C_STM32F411CEUx.dbgconf │ ├── STM32F412R_STM32F411CEUx.dbgconf │ └── STM32F412R_STM32F412RGTx.dbgconf │ ├── JLinkSettings.ini │ ├── ProjSTM32.uvguix.Hom │ ├── ProjSTM32.uvoptx │ └── ProjSTM32.uvprojx ├── QRCs_Peripheral_FLASH ├── Libraries │ ├── CMSIS │ │ ├── CMSIS_END_USER_LICENCE_AGREEMENT.pdf │ │ ├── DSP_Lib │ │ │ └── license.txt │ │ ├── Device │ │ │ ├── Release_Notes.html │ │ │ ├── startup_stm32f411xe.s │ │ │ ├── stm32f411xe.h │ │ │ ├── stm32f4xx.h │ │ │ ├── system_stm32f4xx.c │ │ │ └── system_stm32f4xx.h │ │ └── Include │ │ │ ├── arm_common_tables.h │ │ │ ├── arm_const_structs.h │ │ │ ├── arm_math.h │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armcc_V6.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── core_cm4.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 │ │ ├── stm32_assert_template.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_mmc.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_adc.h │ │ ├── stm32f4xx_ll_bus.h │ │ ├── stm32f4xx_ll_cortex.h │ │ ├── stm32f4xx_ll_crc.h │ │ ├── stm32f4xx_ll_dac.h │ │ ├── stm32f4xx_ll_dma.h │ │ ├── stm32f4xx_ll_dma2d.h │ │ ├── stm32f4xx_ll_exti.h │ │ ├── stm32f4xx_ll_fmc.h │ │ ├── stm32f4xx_ll_fsmc.h │ │ ├── stm32f4xx_ll_gpio.h │ │ ├── stm32f4xx_ll_i2c.h │ │ ├── stm32f4xx_ll_iwdg.h │ │ ├── stm32f4xx_ll_lptim.h │ │ ├── stm32f4xx_ll_pwr.h │ │ ├── stm32f4xx_ll_rcc.h │ │ ├── stm32f4xx_ll_rng.h │ │ ├── stm32f4xx_ll_rtc.h │ │ ├── stm32f4xx_ll_sdmmc.h │ │ ├── stm32f4xx_ll_spi.h │ │ ├── stm32f4xx_ll_system.h │ │ ├── stm32f4xx_ll_tim.h │ │ ├── stm32f4xx_ll_usart.h │ │ ├── stm32f4xx_ll_usb.h │ │ ├── stm32f4xx_ll_utils.h │ │ └── stm32f4xx_ll_wwdg.h │ │ ├── Release_Notes.html │ │ └── 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_mmc.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_adc.c │ │ ├── stm32f4xx_ll_crc.c │ │ ├── stm32f4xx_ll_dac.c │ │ ├── stm32f4xx_ll_dma.c │ │ ├── stm32f4xx_ll_dma2d.c │ │ ├── stm32f4xx_ll_exti.c │ │ ├── stm32f4xx_ll_fmc.c │ │ ├── stm32f4xx_ll_fsmc.c │ │ ├── stm32f4xx_ll_gpio.c │ │ ├── stm32f4xx_ll_i2c.c │ │ ├── stm32f4xx_ll_lptim.c │ │ ├── stm32f4xx_ll_pwr.c │ │ ├── stm32f4xx_ll_rcc.c │ │ ├── stm32f4xx_ll_rng.c │ │ ├── stm32f4xx_ll_rtc.c │ │ ├── stm32f4xx_ll_sdmmc.c │ │ ├── stm32f4xx_ll_spi.c │ │ ├── stm32f4xx_ll_tim.c │ │ ├── stm32f4xx_ll_usart.c │ │ ├── stm32f4xx_ll_usb.c │ │ └── stm32f4xx_ll_utils.c ├── Program │ ├── algorithms │ │ ├── compare.c │ │ ├── compare.h │ │ └── mathUnit.h │ ├── boardConfig.h │ ├── drivers │ │ ├── stm32f4_delay.c │ │ ├── stm32f4_delay.h │ │ ├── stm32f4_flash.c │ │ ├── stm32f4_flash.h │ │ ├── stm32f4_msp.c │ │ └── stm32f4_system.h │ ├── main.c │ ├── stm32f4xx_bsp.c │ ├── stm32f4xx_bsp.h │ ├── stm32f4xx_hal_conf.h │ └── stm32f4xx_it.c └── Project │ ├── ClearFile.bat │ ├── DebugConfig │ ├── STM32F411C_STM32F411CEUx.dbgconf │ ├── STM32F412R_STM32F411CEUx.dbgconf │ └── STM32F412R_STM32F412RGTx.dbgconf │ ├── JLinkSettings.ini │ ├── ProjSTM32.uvguix.Hom │ ├── ProjSTM32.uvoptx │ └── ProjSTM32.uvprojx ├── QRCs_Peripheral_GPIO ├── Libraries │ ├── CMSIS │ │ ├── CMSIS_END_USER_LICENCE_AGREEMENT.pdf │ │ ├── DSP_Lib │ │ │ └── license.txt │ │ ├── Device │ │ │ ├── Release_Notes.html │ │ │ ├── startup_stm32f411xe.s │ │ │ ├── stm32f411xe.h │ │ │ ├── stm32f4xx.h │ │ │ ├── system_stm32f4xx.c │ │ │ └── system_stm32f4xx.h │ │ └── Include │ │ │ ├── arm_common_tables.h │ │ │ ├── arm_const_structs.h │ │ │ ├── arm_math.h │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armcc_V6.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── core_cm4.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 │ │ ├── stm32_assert_template.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_mmc.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_adc.h │ │ ├── stm32f4xx_ll_bus.h │ │ ├── stm32f4xx_ll_cortex.h │ │ ├── stm32f4xx_ll_crc.h │ │ ├── stm32f4xx_ll_dac.h │ │ ├── stm32f4xx_ll_dma.h │ │ ├── stm32f4xx_ll_dma2d.h │ │ ├── stm32f4xx_ll_exti.h │ │ ├── stm32f4xx_ll_fmc.h │ │ ├── stm32f4xx_ll_fsmc.h │ │ ├── stm32f4xx_ll_gpio.h │ │ ├── stm32f4xx_ll_i2c.h │ │ ├── stm32f4xx_ll_iwdg.h │ │ ├── stm32f4xx_ll_lptim.h │ │ ├── stm32f4xx_ll_pwr.h │ │ ├── stm32f4xx_ll_rcc.h │ │ ├── stm32f4xx_ll_rng.h │ │ ├── stm32f4xx_ll_rtc.h │ │ ├── stm32f4xx_ll_sdmmc.h │ │ ├── stm32f4xx_ll_spi.h │ │ ├── stm32f4xx_ll_system.h │ │ ├── stm32f4xx_ll_tim.h │ │ ├── stm32f4xx_ll_usart.h │ │ ├── stm32f4xx_ll_usb.h │ │ ├── stm32f4xx_ll_utils.h │ │ └── stm32f4xx_ll_wwdg.h │ │ ├── Release_Notes.html │ │ └── 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_mmc.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_adc.c │ │ ├── stm32f4xx_ll_crc.c │ │ ├── stm32f4xx_ll_dac.c │ │ ├── stm32f4xx_ll_dma.c │ │ ├── stm32f4xx_ll_dma2d.c │ │ ├── stm32f4xx_ll_exti.c │ │ ├── stm32f4xx_ll_fmc.c │ │ ├── stm32f4xx_ll_fsmc.c │ │ ├── stm32f4xx_ll_gpio.c │ │ ├── stm32f4xx_ll_i2c.c │ │ ├── stm32f4xx_ll_lptim.c │ │ ├── stm32f4xx_ll_pwr.c │ │ ├── stm32f4xx_ll_rcc.c │ │ ├── stm32f4xx_ll_rng.c │ │ ├── stm32f4xx_ll_rtc.c │ │ ├── stm32f4xx_ll_sdmmc.c │ │ ├── stm32f4xx_ll_spi.c │ │ ├── stm32f4xx_ll_tim.c │ │ ├── stm32f4xx_ll_usart.c │ │ ├── stm32f4xx_ll_usb.c │ │ └── stm32f4xx_ll_utils.c ├── Program │ ├── algorithms │ │ └── mathUnit.h │ ├── boardConfig.h │ ├── drivers │ │ ├── stm32f4_delay.c │ │ ├── stm32f4_delay.h │ │ ├── stm32f4_msp.c │ │ └── stm32f4_system.h │ ├── main.c │ ├── stm32f4xx_bsp.c │ ├── stm32f4xx_bsp.h │ ├── stm32f4xx_hal_conf.h │ └── stm32f4xx_it.c └── Project │ ├── ClearFile.bat │ ├── DebugConfig │ ├── STM32F411C_STM32F411CEUx.dbgconf │ ├── STM32F412R_STM32F411CEUx.dbgconf │ └── STM32F412R_STM32F412RGTx.dbgconf │ ├── JLinkSettings.ini │ ├── ProjSTM32.uvguix.Hom │ ├── ProjSTM32.uvoptx │ └── ProjSTM32.uvprojx ├── QRCs_Peripheral_TIM ├── Libraries │ ├── CMSIS │ │ ├── CMSIS_END_USER_LICENCE_AGREEMENT.pdf │ │ ├── DSP_Lib │ │ │ └── license.txt │ │ ├── Device │ │ │ ├── Release_Notes.html │ │ │ ├── startup_stm32f411xe.s │ │ │ ├── stm32f411xe.h │ │ │ ├── stm32f4xx.h │ │ │ ├── system_stm32f4xx.c │ │ │ └── system_stm32f4xx.h │ │ └── Include │ │ │ ├── arm_common_tables.h │ │ │ ├── arm_const_structs.h │ │ │ ├── arm_math.h │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armcc_V6.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── core_cm4.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 │ │ ├── stm32_assert_template.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_mmc.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_adc.h │ │ ├── stm32f4xx_ll_bus.h │ │ ├── stm32f4xx_ll_cortex.h │ │ ├── stm32f4xx_ll_crc.h │ │ ├── stm32f4xx_ll_dac.h │ │ ├── stm32f4xx_ll_dma.h │ │ ├── stm32f4xx_ll_dma2d.h │ │ ├── stm32f4xx_ll_exti.h │ │ ├── stm32f4xx_ll_fmc.h │ │ ├── stm32f4xx_ll_fsmc.h │ │ ├── stm32f4xx_ll_gpio.h │ │ ├── stm32f4xx_ll_i2c.h │ │ ├── stm32f4xx_ll_iwdg.h │ │ ├── stm32f4xx_ll_lptim.h │ │ ├── stm32f4xx_ll_pwr.h │ │ ├── stm32f4xx_ll_rcc.h │ │ ├── stm32f4xx_ll_rng.h │ │ ├── stm32f4xx_ll_rtc.h │ │ ├── stm32f4xx_ll_sdmmc.h │ │ ├── stm32f4xx_ll_spi.h │ │ ├── stm32f4xx_ll_system.h │ │ ├── stm32f4xx_ll_tim.h │ │ ├── stm32f4xx_ll_usart.h │ │ ├── stm32f4xx_ll_usb.h │ │ ├── stm32f4xx_ll_utils.h │ │ └── stm32f4xx_ll_wwdg.h │ │ ├── Release_Notes.html │ │ └── 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_mmc.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_adc.c │ │ ├── stm32f4xx_ll_crc.c │ │ ├── stm32f4xx_ll_dac.c │ │ ├── stm32f4xx_ll_dma.c │ │ ├── stm32f4xx_ll_dma2d.c │ │ ├── stm32f4xx_ll_exti.c │ │ ├── stm32f4xx_ll_fmc.c │ │ ├── stm32f4xx_ll_fsmc.c │ │ ├── stm32f4xx_ll_gpio.c │ │ ├── stm32f4xx_ll_i2c.c │ │ ├── stm32f4xx_ll_lptim.c │ │ ├── stm32f4xx_ll_pwr.c │ │ ├── stm32f4xx_ll_rcc.c │ │ ├── stm32f4xx_ll_rng.c │ │ ├── stm32f4xx_ll_rtc.c │ │ ├── stm32f4xx_ll_sdmmc.c │ │ ├── stm32f4xx_ll_spi.c │ │ ├── stm32f4xx_ll_tim.c │ │ ├── stm32f4xx_ll_usart.c │ │ ├── stm32f4xx_ll_usb.c │ │ └── stm32f4xx_ll_utils.c ├── Program │ ├── algorithms │ │ └── mathUnit.h │ ├── boardConfig.h │ ├── drivers │ │ ├── stm32f4_delay.c │ │ ├── stm32f4_delay.h │ │ ├── stm32f4_msp.c │ │ ├── stm32f4_system.h │ │ ├── stm32f4_tim.c │ │ └── stm32f4_tim.h │ ├── main.c │ ├── stm32f4xx_bsp.c │ ├── stm32f4xx_bsp.h │ ├── stm32f4xx_hal_conf.h │ └── stm32f4xx_it.c └── Project │ ├── ClearFile.bat │ ├── DebugConfig │ ├── STM32F411C_STM32F411CEUx.dbgconf │ ├── STM32F412R_STM32F411CEUx.dbgconf │ └── STM32F412R_STM32F412RGTx.dbgconf │ ├── JLinkSettings.ini │ ├── ProjSTM32.uvguix.Hom │ ├── ProjSTM32.uvoptx │ └── ProjSTM32.uvprojx └── QRCs_Peripheral_UART ├── Libraries ├── CMSIS │ ├── CMSIS_END_USER_LICENCE_AGREEMENT.pdf │ ├── DSP_Lib │ │ └── license.txt │ ├── Device │ │ ├── Release_Notes.html │ │ ├── startup_stm32f411xe.s │ │ ├── stm32f411xe.h │ │ ├── stm32f4xx.h │ │ ├── system_stm32f4xx.c │ │ └── system_stm32f4xx.h │ └── Include │ │ ├── arm_common_tables.h │ │ ├── arm_const_structs.h │ │ ├── arm_math.h │ │ ├── cmsis_armcc.h │ │ ├── cmsis_armcc_V6.h │ │ ├── cmsis_gcc.h │ │ ├── core_cm4.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 │ ├── stm32_assert_template.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_mmc.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_adc.h │ ├── stm32f4xx_ll_bus.h │ ├── stm32f4xx_ll_cortex.h │ ├── stm32f4xx_ll_crc.h │ ├── stm32f4xx_ll_dac.h │ ├── stm32f4xx_ll_dma.h │ ├── stm32f4xx_ll_dma2d.h │ ├── stm32f4xx_ll_exti.h │ ├── stm32f4xx_ll_fmc.h │ ├── stm32f4xx_ll_fsmc.h │ ├── stm32f4xx_ll_gpio.h │ ├── stm32f4xx_ll_i2c.h │ ├── stm32f4xx_ll_iwdg.h │ ├── stm32f4xx_ll_lptim.h │ ├── stm32f4xx_ll_pwr.h │ ├── stm32f4xx_ll_rcc.h │ ├── stm32f4xx_ll_rng.h │ ├── stm32f4xx_ll_rtc.h │ ├── stm32f4xx_ll_sdmmc.h │ ├── stm32f4xx_ll_spi.h │ ├── stm32f4xx_ll_system.h │ ├── stm32f4xx_ll_tim.h │ ├── stm32f4xx_ll_usart.h │ ├── stm32f4xx_ll_usb.h │ ├── stm32f4xx_ll_utils.h │ └── stm32f4xx_ll_wwdg.h │ ├── Release_Notes.html │ └── 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_mmc.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_adc.c │ ├── stm32f4xx_ll_crc.c │ ├── stm32f4xx_ll_dac.c │ ├── stm32f4xx_ll_dma.c │ ├── stm32f4xx_ll_dma2d.c │ ├── stm32f4xx_ll_exti.c │ ├── stm32f4xx_ll_fmc.c │ ├── stm32f4xx_ll_fsmc.c │ ├── stm32f4xx_ll_gpio.c │ ├── stm32f4xx_ll_i2c.c │ ├── stm32f4xx_ll_lptim.c │ ├── stm32f4xx_ll_pwr.c │ ├── stm32f4xx_ll_rcc.c │ ├── stm32f4xx_ll_rng.c │ ├── stm32f4xx_ll_rtc.c │ ├── stm32f4xx_ll_sdmmc.c │ ├── stm32f4xx_ll_spi.c │ ├── stm32f4xx_ll_tim.c │ ├── stm32f4xx_ll_usart.c │ ├── stm32f4xx_ll_usb.c │ └── stm32f4xx_ll_utils.c ├── Program ├── algorithms │ ├── mathUnit.h │ ├── string.c │ └── string.h ├── boardConfig.h ├── drivers │ ├── stm32f4_delay.c │ ├── stm32f4_delay.h │ ├── stm32f4_msp.c │ ├── stm32f4_system.h │ ├── stm32f4_uart.c │ └── stm32f4_uart.h ├── main.c ├── modules │ ├── serial.c │ └── serial.h ├── stm32f4xx_bsp.c ├── stm32f4xx_bsp.h ├── stm32f4xx_hal_conf.h └── stm32f4xx_it.c └── Project ├── ClearFile.bat ├── DebugConfig ├── STM32F411C_STM32F411CEUx.dbgconf ├── STM32F412R_STM32F411CEUx.dbgconf └── STM32F412R_STM32F412RGTx.dbgconf ├── JLinkSettings.ini ├── ProjSTM32.uvguix.Hom ├── ProjSTM32.uvoptx └── ProjSTM32.uvprojx /Document/QCopterRCs_3Dpdf.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Document/QCopterRCs_3Dpdf.pdf -------------------------------------------------------------------------------- /Document/QCopterRCs_BOM.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Document/QCopterRCs_BOM.pdf -------------------------------------------------------------------------------- /Document/QCopterRCs_Config.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Document/QCopterRCs_Config.pdf -------------------------------------------------------------------------------- /Document/QCopterRCs_PCBLayer.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Document/QCopterRCs_PCBLayer.pdf -------------------------------------------------------------------------------- /Document/QCopterRCs_Schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Document/QCopterRCs_Schematic.pdf -------------------------------------------------------------------------------- /Hardware/QCopterRCs.OutJob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Hardware/QCopterRCs.OutJob -------------------------------------------------------------------------------- /Hardware/QCopterRCs.PrjPCB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Hardware/QCopterRCs.PrjPCB -------------------------------------------------------------------------------- /Hardware/QCopterRCs_Pcb.PcbDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Hardware/QCopterRCs_Pcb.PcbDoc -------------------------------------------------------------------------------- /Hardware/QCopterRCs_Sch.SchDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Hardware/QCopterRCs_Sch.SchDoc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/README.md -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/CMSIS/CMSIS_END_USER_LICENCE_AGREEMENT.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/CMSIS/CMSIS_END_USER_LICENCE_AGREEMENT.pdf -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/CMSIS/DSP_Lib/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/CMSIS/DSP_Lib/license.txt -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/CMSIS/Device/Release_Notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/CMSIS/Device/Release_Notes.html -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/CMSIS/Device/startup_stm32f411xe.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/CMSIS/Device/startup_stm32f411xe.s -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/CMSIS/Device/stm32f411xe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/CMSIS/Device/stm32f411xe.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/CMSIS/Device/stm32f4xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/CMSIS/Device/stm32f4xx.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/CMSIS/Device/system_stm32f4xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/CMSIS/Device/system_stm32f4xx.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/CMSIS/Device/system_stm32f4xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/CMSIS/Device/system_stm32f4xx.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/CMSIS/Include/arm_common_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/CMSIS/Include/arm_common_tables.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/CMSIS/Include/arm_const_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/CMSIS/Include/arm_const_structs.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/CMSIS/Include/arm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/CMSIS/Include/arm_math.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/CMSIS/Include/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/CMSIS/Include/cmsis_armcc.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/CMSIS/Include/cmsis_armcc_V6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/CMSIS/Include/cmsis_armcc_V6.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/CMSIS/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/CMSIS/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/CMSIS/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/CMSIS/Include/core_cm4.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/CMSIS/Include/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/CMSIS/Include/core_cmFunc.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/CMSIS/Include/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/CMSIS/Include/core_cmInstr.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/CMSIS/Include/core_cmSimd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/CMSIS/Include/core_cmSimd.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/CMSIS/Include/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/CMSIS/Include/core_sc000.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/CMSIS/Include/core_sc300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/CMSIS/Include/core_sc300.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cec.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cryp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cryp.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dcmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dcmi.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dfsdm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dfsdm.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma2d.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dsi.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_eth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_eth.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_hash.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_hcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_hcd.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2s.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_irda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_irda.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_iwdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_iwdg.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_lptim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_lptim.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_ltdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_ltdc.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_mmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_mmc.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_nand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_nand.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_nor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_nor.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_qspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_qspi.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_sai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_sai.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_sd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_sd.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_sdram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_sdram.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_sram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_sram.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_usart.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_wwdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_wwdg.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_bus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_bus.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_cortex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_cortex.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_crc.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_dac.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_dma.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_dma2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_dma2d.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_exti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_exti.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_fmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_fmc.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_fsmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_fsmc.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_gpio.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_i2c.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_iwdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_iwdg.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_lptim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_lptim.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_pwr.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_rcc.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_rng.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_rtc.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_sdmmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_sdmmc.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_spi.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_system.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_tim.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usart.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_utils.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_wwdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_wwdg.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Release_Notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Release_Notes.html -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cec.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cryp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cryp.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dcmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dcmi.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dfsdm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dfsdm.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma2d.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dsi.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_eth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_eth.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_hash.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_hcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_hcd.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2s.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_irda.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_irda.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_iwdg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_iwdg.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_lptim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_lptim.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_ltdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_ltdc.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_mmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_mmc.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_nand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_nand.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_nor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_nor.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_qspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_qspi.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sai.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sai.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sd.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sdram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sdram.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sram.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_usart.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_wwdg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_wwdg.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_adc.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_crc.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_dac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_dac.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_dma.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_dma2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_dma2d.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_exti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_exti.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_fmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_fmc.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_fsmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_fsmc.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_gpio.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_i2c.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_lptim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_lptim.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_pwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_pwr.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_rcc.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_rng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_rng.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_rtc.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_sdmmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_sdmmc.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_spi.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_tim.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usart.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_utils.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Program/algorithms/mathUnit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Program/algorithms/mathUnit.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Program/algorithms/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Program/algorithms/string.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Program/algorithms/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Program/algorithms/string.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Program/boardConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Program/boardConfig.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Program/drivers/stm32f4_delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Program/drivers/stm32f4_delay.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Program/drivers/stm32f4_delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Program/drivers/stm32f4_delay.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Program/drivers/stm32f4_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Program/drivers/stm32f4_msp.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Program/drivers/stm32f4_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Program/drivers/stm32f4_spi.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Program/drivers/stm32f4_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Program/drivers/stm32f4_spi.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Program/drivers/stm32f4_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Program/drivers/stm32f4_system.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Program/drivers/stm32f4_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Program/drivers/stm32f4_uart.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Program/drivers/stm32f4_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Program/drivers/stm32f4_uart.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Program/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Program/main.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Program/modules/imu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Program/modules/imu.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Program/modules/imu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Program/modules/imu.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Program/modules/kSerial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Program/modules/kSerial.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Program/modules/kSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Program/modules/kSerial.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Program/modules/mpu9250.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Program/modules/mpu9250.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Program/modules/mpu9250.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Program/modules/mpu9250.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Program/modules/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Program/modules/serial.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Program/modules/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Program/modules/serial.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Program/stm32f4xx_bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Program/stm32f4xx_bsp.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Program/stm32f4xx_bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Program/stm32f4xx_bsp.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Program/stm32f4xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Program/stm32f4xx_hal_conf.h -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Program/stm32f4xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Program/stm32f4xx_it.c -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Project/ClearFile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Project/ClearFile.bat -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Project/DebugConfig/STM32F411C_STM32F411CEUx.dbgconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Project/DebugConfig/STM32F411C_STM32F411CEUx.dbgconf -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Project/DebugConfig/STM32F412R_STM32F411CEUx.dbgconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Project/DebugConfig/STM32F412R_STM32F411CEUx.dbgconf -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Project/DebugConfig/STM32F412R_STM32F412RGTx.dbgconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Project/DebugConfig/STM32F412R_STM32F412RGTx.dbgconf -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Project/JLinkSettings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Project/JLinkSettings.ini -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Project/ProjSTM32.uvguix.Hom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Project/ProjSTM32.uvguix.Hom -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Project/ProjSTM32.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Project/ProjSTM32.uvoptx -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/Project/ProjSTM32.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/Project/ProjSTM32.uvprojx -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/kSerial.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/kSerial.m -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/kSerial_Oscilloscope.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/kSerial_Oscilloscope.m -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/serialOscilloscope.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/serialOscilloscope.m -------------------------------------------------------------------------------- /Software/QRCs_Module_IMU/serialPacket.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_IMU/serialPacket.m -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/CMSIS/CMSIS_END_USER_LICENCE_AGREEMENT.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/CMSIS/CMSIS_END_USER_LICENCE_AGREEMENT.pdf -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/CMSIS/DSP_Lib/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/CMSIS/DSP_Lib/license.txt -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/CMSIS/Device/Release_Notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/CMSIS/Device/Release_Notes.html -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/CMSIS/Device/startup_stm32f411xe.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/CMSIS/Device/startup_stm32f411xe.s -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/CMSIS/Device/stm32f411xe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/CMSIS/Device/stm32f411xe.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/CMSIS/Device/stm32f4xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/CMSIS/Device/stm32f4xx.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/CMSIS/Device/system_stm32f4xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/CMSIS/Device/system_stm32f4xx.c -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/CMSIS/Device/system_stm32f4xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/CMSIS/Device/system_stm32f4xx.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/CMSIS/Include/arm_common_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/CMSIS/Include/arm_common_tables.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/CMSIS/Include/arm_const_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/CMSIS/Include/arm_const_structs.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/CMSIS/Include/arm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/CMSIS/Include/arm_math.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/CMSIS/Include/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/CMSIS/Include/cmsis_armcc.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/CMSIS/Include/cmsis_armcc_V6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/CMSIS/Include/cmsis_armcc_V6.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/CMSIS/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/CMSIS/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/CMSIS/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/CMSIS/Include/core_cm4.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/CMSIS/Include/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/CMSIS/Include/core_cmFunc.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/CMSIS/Include/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/CMSIS/Include/core_cmInstr.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/CMSIS/Include/core_cmSimd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/CMSIS/Include/core_cmSimd.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/CMSIS/Include/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/CMSIS/Include/core_sc000.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/CMSIS/Include/core_sc300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/CMSIS/Include/core_sc300.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cec.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dsi.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_eth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_eth.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_hcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_hcd.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2s.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_mmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_mmc.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_nor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_nor.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_sai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_sai.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_sd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_sd.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_bus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_bus.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_crc.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_dac.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_dma.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_exti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_exti.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_fmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_fmc.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_fsmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_fsmc.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_gpio.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_i2c.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_iwdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_iwdg.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_pwr.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_rcc.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_rng.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_rtc.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_spi.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_tim.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_wwdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_wwdg.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Release_Notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Release_Notes.html -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cec.c -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dsi.c -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_eth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_eth.c -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_hcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_hcd.c -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2s.c -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_mmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_mmc.c -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_nor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_nor.c -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sai.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sai.c -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_sd.c -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_adc.c -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_crc.c -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_dac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_dac.c -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_dma.c -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_exti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_exti.c -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_fmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_fmc.c -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_fsmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_fsmc.c -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_gpio.c -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_i2c.c -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_pwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_pwr.c -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_rcc.c -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_rng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_rng.c -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_rtc.c -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_spi.c -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_tim.c -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Program/algorithms/mathUnit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Program/algorithms/mathUnit.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Program/algorithms/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Program/algorithms/string.c -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Program/algorithms/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Program/algorithms/string.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Program/boardConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Program/boardConfig.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Program/drivers/stm32f4_delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Program/drivers/stm32f4_delay.c -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Program/drivers/stm32f4_delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Program/drivers/stm32f4_delay.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Program/drivers/stm32f4_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Program/drivers/stm32f4_msp.c -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Program/drivers/stm32f4_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Program/drivers/stm32f4_spi.c -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Program/drivers/stm32f4_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Program/drivers/stm32f4_spi.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Program/drivers/stm32f4_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Program/drivers/stm32f4_system.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Program/drivers/stm32f4_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Program/drivers/stm32f4_uart.c -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Program/drivers/stm32f4_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Program/drivers/stm32f4_uart.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Program/fonts/font16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Program/fonts/font16.c -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Program/fonts/font7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Program/fonts/font7.c -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Program/fonts/font8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Program/fonts/font8.c -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Program/fonts/fontlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Program/fonts/fontlib.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Program/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Program/main.c -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Program/modules/nrf24l01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Program/modules/nrf24l01.c -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Program/modules/nrf24l01.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Program/modules/nrf24l01.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Program/modules/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Program/modules/serial.c -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Program/modules/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Program/modules/serial.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Program/modules/ssd1351.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Program/modules/ssd1351.c -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Program/modules/ssd1351.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Program/modules/ssd1351.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Program/stm32f4xx_bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Program/stm32f4xx_bsp.c -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Program/stm32f4xx_bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Program/stm32f4xx_bsp.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Program/stm32f4xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Program/stm32f4xx_hal_conf.h -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Program/stm32f4xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Program/stm32f4xx_it.c -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Project/ClearFile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Project/ClearFile.bat -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Project/DebugConfig/STM32F411C_STM32F411CEUx.dbgconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Project/DebugConfig/STM32F411C_STM32F411CEUx.dbgconf -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Project/DebugConfig/STM32F412R_STM32F411CEUx.dbgconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Project/DebugConfig/STM32F412R_STM32F411CEUx.dbgconf -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Project/DebugConfig/STM32F412R_STM32F412RGTx.dbgconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Project/DebugConfig/STM32F412R_STM32F412RGTx.dbgconf -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Project/JLinkSettings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Project/JLinkSettings.ini -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Project/ProjSTM32.uvguix.Hom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Project/ProjSTM32.uvguix.Hom -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Project/ProjSTM32.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Project/ProjSTM32.uvoptx -------------------------------------------------------------------------------- /Software/QRCs_Module_NRF24/Project/ProjSTM32.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_NRF24/Project/ProjSTM32.uvprojx -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Libraries/CMSIS/CMSIS_END_USER_LICENCE_AGREEMENT.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Libraries/CMSIS/CMSIS_END_USER_LICENCE_AGREEMENT.pdf -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Libraries/CMSIS/DSP_Lib/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Libraries/CMSIS/DSP_Lib/license.txt -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Libraries/CMSIS/Device/Release_Notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Libraries/CMSIS/Device/Release_Notes.html -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Libraries/CMSIS/Device/startup_stm32f411xe.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Libraries/CMSIS/Device/startup_stm32f411xe.s -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Libraries/CMSIS/Device/stm32f411xe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Libraries/CMSIS/Device/stm32f411xe.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Libraries/CMSIS/Device/stm32f4xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Libraries/CMSIS/Device/stm32f4xx.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Libraries/CMSIS/Device/system_stm32f4xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Libraries/CMSIS/Device/system_stm32f4xx.c -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Libraries/CMSIS/Device/system_stm32f4xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Libraries/CMSIS/Device/system_stm32f4xx.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Libraries/CMSIS/Include/arm_common_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Libraries/CMSIS/Include/arm_common_tables.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Libraries/CMSIS/Include/arm_const_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Libraries/CMSIS/Include/arm_const_structs.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Libraries/CMSIS/Include/arm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Libraries/CMSIS/Include/arm_math.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Libraries/CMSIS/Include/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Libraries/CMSIS/Include/cmsis_armcc.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Libraries/CMSIS/Include/cmsis_armcc_V6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Libraries/CMSIS/Include/cmsis_armcc_V6.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Libraries/CMSIS/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Libraries/CMSIS/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Libraries/CMSIS/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Libraries/CMSIS/Include/core_cm4.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Libraries/CMSIS/Include/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Libraries/CMSIS/Include/core_cmFunc.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Libraries/CMSIS/Include/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Libraries/CMSIS/Include/core_cmInstr.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Libraries/CMSIS/Include/core_cmSimd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Libraries/CMSIS/Include/core_cmSimd.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Libraries/CMSIS/Include/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Libraries/CMSIS/Include/core_sc000.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Libraries/CMSIS/Include/core_sc300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Libraries/CMSIS/Include/core_sc300.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cec.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cryp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cryp.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dcmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dcmi.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dsi.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_eth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_eth.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_hash.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_hcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_hcd.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2s.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_irda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_irda.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_iwdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_iwdg.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_ltdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_ltdc.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_mmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_mmc.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_nand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_nand.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_nor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_nor.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_qspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_qspi.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_sai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_sai.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_sd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_sd.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_sram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_sram.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_wwdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_wwdg.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_bus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_bus.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_crc.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_dac.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_dma.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_dma2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_dma2d.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_exti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_exti.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_fmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_fmc.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_fsmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_fsmc.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Release_Notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Release_Notes.html -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Libraries/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Program/algorithms/mathUnit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Program/algorithms/mathUnit.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Program/algorithms/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Program/algorithms/string.c -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Program/algorithms/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Program/algorithms/string.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Program/boardConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Program/boardConfig.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Program/drivers/stm32f4_delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Program/drivers/stm32f4_delay.c -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Program/drivers/stm32f4_delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Program/drivers/stm32f4_delay.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Program/drivers/stm32f4_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Program/drivers/stm32f4_msp.c -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Program/drivers/stm32f4_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Program/drivers/stm32f4_spi.c -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Program/drivers/stm32f4_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Program/drivers/stm32f4_spi.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Program/drivers/stm32f4_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Program/drivers/stm32f4_system.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Program/fonts/font16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Program/fonts/font16.c -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Program/fonts/font7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Program/fonts/font7.c -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Program/fonts/font8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Program/fonts/font8.c -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Program/fonts/fontlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Program/fonts/fontlib.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Program/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Program/main.c -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Program/modules/ssd1351.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Program/modules/ssd1351.c -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Program/modules/ssd1351.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Program/modules/ssd1351.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Program/stm32f4xx_bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Program/stm32f4xx_bsp.c -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Program/stm32f4xx_bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Program/stm32f4xx_bsp.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Program/stm32f4xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Program/stm32f4xx_hal_conf.h -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Program/stm32f4xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Program/stm32f4xx_it.c -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Project/ClearFile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Project/ClearFile.bat -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Project/DebugConfig/STM32F411C_STM32F411CEUx.dbgconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Project/DebugConfig/STM32F411C_STM32F411CEUx.dbgconf -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Project/DebugConfig/STM32F412R_STM32F411CEUx.dbgconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Project/DebugConfig/STM32F412R_STM32F411CEUx.dbgconf -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Project/DebugConfig/STM32F412R_STM32F412RGTx.dbgconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Project/DebugConfig/STM32F412R_STM32F412RGTx.dbgconf -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Project/JLinkSettings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Project/JLinkSettings.ini -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Project/ProjSTM32.uvguix.Hom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Project/ProjSTM32.uvguix.Hom -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Project/ProjSTM32.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Project/ProjSTM32.uvoptx -------------------------------------------------------------------------------- /Software/QRCs_Module_OLED/Project/ProjSTM32.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Module_OLED/Project/ProjSTM32.uvprojx -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_ADC/Libraries/CMSIS/DSP_Lib/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_ADC/Libraries/CMSIS/DSP_Lib/license.txt -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_ADC/Libraries/CMSIS/Device/Release_Notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_ADC/Libraries/CMSIS/Device/Release_Notes.html -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_ADC/Libraries/CMSIS/Device/startup_stm32f411xe.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_ADC/Libraries/CMSIS/Device/startup_stm32f411xe.s -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_ADC/Libraries/CMSIS/Device/stm32f411xe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_ADC/Libraries/CMSIS/Device/stm32f411xe.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_ADC/Libraries/CMSIS/Device/stm32f4xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_ADC/Libraries/CMSIS/Device/stm32f4xx.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_ADC/Libraries/CMSIS/Device/system_stm32f4xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_ADC/Libraries/CMSIS/Device/system_stm32f4xx.c -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_ADC/Libraries/CMSIS/Device/system_stm32f4xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_ADC/Libraries/CMSIS/Device/system_stm32f4xx.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_ADC/Libraries/CMSIS/Include/arm_common_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_ADC/Libraries/CMSIS/Include/arm_common_tables.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_ADC/Libraries/CMSIS/Include/arm_const_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_ADC/Libraries/CMSIS/Include/arm_const_structs.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_ADC/Libraries/CMSIS/Include/arm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_ADC/Libraries/CMSIS/Include/arm_math.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_ADC/Libraries/CMSIS/Include/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_ADC/Libraries/CMSIS/Include/cmsis_armcc.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_ADC/Libraries/CMSIS/Include/cmsis_armcc_V6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_ADC/Libraries/CMSIS/Include/cmsis_armcc_V6.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_ADC/Libraries/CMSIS/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_ADC/Libraries/CMSIS/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_ADC/Libraries/CMSIS/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_ADC/Libraries/CMSIS/Include/core_cm4.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_ADC/Libraries/CMSIS/Include/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_ADC/Libraries/CMSIS/Include/core_cmFunc.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_ADC/Libraries/CMSIS/Include/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_ADC/Libraries/CMSIS/Include/core_cmInstr.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_ADC/Libraries/CMSIS/Include/core_cmSimd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_ADC/Libraries/CMSIS/Include/core_cmSimd.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_ADC/Libraries/CMSIS/Include/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_ADC/Libraries/CMSIS/Include/core_sc000.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_ADC/Libraries/CMSIS/Include/core_sc300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_ADC/Libraries/CMSIS/Include/core_sc300.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_ADC/Libraries/STM32F4xx_HAL_Driver/Release_Notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_ADC/Libraries/STM32F4xx_HAL_Driver/Release_Notes.html -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_ADC/Program/algorithms/mathUnit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_ADC/Program/algorithms/mathUnit.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_ADC/Program/algorithms/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_ADC/Program/algorithms/string.c -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_ADC/Program/algorithms/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_ADC/Program/algorithms/string.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_ADC/Program/boardConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_ADC/Program/boardConfig.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_ADC/Program/drivers/stm32f4_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_ADC/Program/drivers/stm32f4_adc.c -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_ADC/Program/drivers/stm32f4_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_ADC/Program/drivers/stm32f4_adc.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_ADC/Program/drivers/stm32f4_delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_ADC/Program/drivers/stm32f4_delay.c -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_ADC/Program/drivers/stm32f4_delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_ADC/Program/drivers/stm32f4_delay.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_ADC/Program/drivers/stm32f4_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_ADC/Program/drivers/stm32f4_msp.c -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_ADC/Program/drivers/stm32f4_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_ADC/Program/drivers/stm32f4_system.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_ADC/Program/drivers/stm32f4_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_ADC/Program/drivers/stm32f4_uart.c -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_ADC/Program/drivers/stm32f4_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_ADC/Program/drivers/stm32f4_uart.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_ADC/Program/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_ADC/Program/main.c -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_ADC/Program/modules/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_ADC/Program/modules/serial.c -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_ADC/Program/modules/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_ADC/Program/modules/serial.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_ADC/Program/stm32f4xx_bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_ADC/Program/stm32f4xx_bsp.c -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_ADC/Program/stm32f4xx_bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_ADC/Program/stm32f4xx_bsp.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_ADC/Program/stm32f4xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_ADC/Program/stm32f4xx_hal_conf.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_ADC/Program/stm32f4xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_ADC/Program/stm32f4xx_it.c -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_ADC/Project/ClearFile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_ADC/Project/ClearFile.bat -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_ADC/Project/JLinkSettings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_ADC/Project/JLinkSettings.ini -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_ADC/Project/ProjSTM32.uvguix.Hom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_ADC/Project/ProjSTM32.uvguix.Hom -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_ADC/Project/ProjSTM32.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_ADC/Project/ProjSTM32.uvoptx -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_ADC/Project/ProjSTM32.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_ADC/Project/ProjSTM32.uvprojx -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_EXTI/Libraries/CMSIS/DSP_Lib/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_EXTI/Libraries/CMSIS/DSP_Lib/license.txt -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_EXTI/Libraries/CMSIS/Device/Release_Notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_EXTI/Libraries/CMSIS/Device/Release_Notes.html -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_EXTI/Libraries/CMSIS/Device/startup_stm32f411xe.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_EXTI/Libraries/CMSIS/Device/startup_stm32f411xe.s -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_EXTI/Libraries/CMSIS/Device/stm32f411xe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_EXTI/Libraries/CMSIS/Device/stm32f411xe.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_EXTI/Libraries/CMSIS/Device/stm32f4xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_EXTI/Libraries/CMSIS/Device/stm32f4xx.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_EXTI/Libraries/CMSIS/Device/system_stm32f4xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_EXTI/Libraries/CMSIS/Device/system_stm32f4xx.c -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_EXTI/Libraries/CMSIS/Device/system_stm32f4xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_EXTI/Libraries/CMSIS/Device/system_stm32f4xx.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_EXTI/Libraries/CMSIS/Include/arm_common_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_EXTI/Libraries/CMSIS/Include/arm_common_tables.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_EXTI/Libraries/CMSIS/Include/arm_const_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_EXTI/Libraries/CMSIS/Include/arm_const_structs.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_EXTI/Libraries/CMSIS/Include/arm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_EXTI/Libraries/CMSIS/Include/arm_math.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_EXTI/Libraries/CMSIS/Include/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_EXTI/Libraries/CMSIS/Include/cmsis_armcc.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_EXTI/Libraries/CMSIS/Include/cmsis_armcc_V6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_EXTI/Libraries/CMSIS/Include/cmsis_armcc_V6.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_EXTI/Libraries/CMSIS/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_EXTI/Libraries/CMSIS/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_EXTI/Libraries/CMSIS/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_EXTI/Libraries/CMSIS/Include/core_cm4.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_EXTI/Libraries/CMSIS/Include/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_EXTI/Libraries/CMSIS/Include/core_cmFunc.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_EXTI/Libraries/CMSIS/Include/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_EXTI/Libraries/CMSIS/Include/core_cmInstr.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_EXTI/Libraries/CMSIS/Include/core_cmSimd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_EXTI/Libraries/CMSIS/Include/core_cmSimd.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_EXTI/Libraries/CMSIS/Include/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_EXTI/Libraries/CMSIS/Include/core_sc000.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_EXTI/Libraries/CMSIS/Include/core_sc300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_EXTI/Libraries/CMSIS/Include/core_sc300.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_EXTI/Program/algorithms/mathUnit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_EXTI/Program/algorithms/mathUnit.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_EXTI/Program/boardConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_EXTI/Program/boardConfig.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_EXTI/Program/drivers/stm32f4_delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_EXTI/Program/drivers/stm32f4_delay.c -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_EXTI/Program/drivers/stm32f4_delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_EXTI/Program/drivers/stm32f4_delay.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_EXTI/Program/drivers/stm32f4_exti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_EXTI/Program/drivers/stm32f4_exti.c -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_EXTI/Program/drivers/stm32f4_exti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_EXTI/Program/drivers/stm32f4_exti.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_EXTI/Program/drivers/stm32f4_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_EXTI/Program/drivers/stm32f4_msp.c -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_EXTI/Program/drivers/stm32f4_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_EXTI/Program/drivers/stm32f4_system.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_EXTI/Program/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_EXTI/Program/main.c -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_EXTI/Program/stm32f4xx_bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_EXTI/Program/stm32f4xx_bsp.c -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_EXTI/Program/stm32f4xx_bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_EXTI/Program/stm32f4xx_bsp.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_EXTI/Program/stm32f4xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_EXTI/Program/stm32f4xx_hal_conf.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_EXTI/Program/stm32f4xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_EXTI/Program/stm32f4xx_it.c -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_EXTI/Project/ClearFile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_EXTI/Project/ClearFile.bat -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_EXTI/Project/JLinkSettings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_EXTI/Project/JLinkSettings.ini -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_EXTI/Project/ProjSTM32.uvguix.Hom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_EXTI/Project/ProjSTM32.uvguix.Hom -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_EXTI/Project/ProjSTM32.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_EXTI/Project/ProjSTM32.uvoptx -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_EXTI/Project/ProjSTM32.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_EXTI/Project/ProjSTM32.uvprojx -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_FLASH/Libraries/CMSIS/DSP_Lib/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_FLASH/Libraries/CMSIS/DSP_Lib/license.txt -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_FLASH/Libraries/CMSIS/Device/Release_Notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_FLASH/Libraries/CMSIS/Device/Release_Notes.html -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_FLASH/Libraries/CMSIS/Device/startup_stm32f411xe.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_FLASH/Libraries/CMSIS/Device/startup_stm32f411xe.s -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_FLASH/Libraries/CMSIS/Device/stm32f411xe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_FLASH/Libraries/CMSIS/Device/stm32f411xe.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_FLASH/Libraries/CMSIS/Device/stm32f4xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_FLASH/Libraries/CMSIS/Device/stm32f4xx.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_FLASH/Libraries/CMSIS/Device/system_stm32f4xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_FLASH/Libraries/CMSIS/Device/system_stm32f4xx.c -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_FLASH/Libraries/CMSIS/Device/system_stm32f4xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_FLASH/Libraries/CMSIS/Device/system_stm32f4xx.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_FLASH/Libraries/CMSIS/Include/arm_common_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_FLASH/Libraries/CMSIS/Include/arm_common_tables.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_FLASH/Libraries/CMSIS/Include/arm_const_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_FLASH/Libraries/CMSIS/Include/arm_const_structs.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_FLASH/Libraries/CMSIS/Include/arm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_FLASH/Libraries/CMSIS/Include/arm_math.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_FLASH/Libraries/CMSIS/Include/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_FLASH/Libraries/CMSIS/Include/cmsis_armcc.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_FLASH/Libraries/CMSIS/Include/cmsis_armcc_V6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_FLASH/Libraries/CMSIS/Include/cmsis_armcc_V6.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_FLASH/Libraries/CMSIS/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_FLASH/Libraries/CMSIS/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_FLASH/Libraries/CMSIS/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_FLASH/Libraries/CMSIS/Include/core_cm4.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_FLASH/Libraries/CMSIS/Include/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_FLASH/Libraries/CMSIS/Include/core_cmFunc.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_FLASH/Libraries/CMSIS/Include/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_FLASH/Libraries/CMSIS/Include/core_cmInstr.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_FLASH/Libraries/CMSIS/Include/core_cmSimd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_FLASH/Libraries/CMSIS/Include/core_cmSimd.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_FLASH/Libraries/CMSIS/Include/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_FLASH/Libraries/CMSIS/Include/core_sc000.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_FLASH/Libraries/CMSIS/Include/core_sc300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_FLASH/Libraries/CMSIS/Include/core_sc300.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_FLASH/Program/algorithms/compare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_FLASH/Program/algorithms/compare.c -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_FLASH/Program/algorithms/compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_FLASH/Program/algorithms/compare.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_FLASH/Program/algorithms/mathUnit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_FLASH/Program/algorithms/mathUnit.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_FLASH/Program/boardConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_FLASH/Program/boardConfig.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_FLASH/Program/drivers/stm32f4_delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_FLASH/Program/drivers/stm32f4_delay.c -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_FLASH/Program/drivers/stm32f4_delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_FLASH/Program/drivers/stm32f4_delay.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_FLASH/Program/drivers/stm32f4_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_FLASH/Program/drivers/stm32f4_flash.c -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_FLASH/Program/drivers/stm32f4_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_FLASH/Program/drivers/stm32f4_flash.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_FLASH/Program/drivers/stm32f4_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_FLASH/Program/drivers/stm32f4_msp.c -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_FLASH/Program/drivers/stm32f4_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_FLASH/Program/drivers/stm32f4_system.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_FLASH/Program/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_FLASH/Program/main.c -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_FLASH/Program/stm32f4xx_bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_FLASH/Program/stm32f4xx_bsp.c -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_FLASH/Program/stm32f4xx_bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_FLASH/Program/stm32f4xx_bsp.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_FLASH/Program/stm32f4xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_FLASH/Program/stm32f4xx_hal_conf.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_FLASH/Program/stm32f4xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_FLASH/Program/stm32f4xx_it.c -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_FLASH/Project/ClearFile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_FLASH/Project/ClearFile.bat -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_FLASH/Project/JLinkSettings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_FLASH/Project/JLinkSettings.ini -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_FLASH/Project/ProjSTM32.uvguix.Hom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_FLASH/Project/ProjSTM32.uvguix.Hom -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_FLASH/Project/ProjSTM32.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_FLASH/Project/ProjSTM32.uvoptx -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_FLASH/Project/ProjSTM32.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_FLASH/Project/ProjSTM32.uvprojx -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_GPIO/Libraries/CMSIS/DSP_Lib/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_GPIO/Libraries/CMSIS/DSP_Lib/license.txt -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_GPIO/Libraries/CMSIS/Device/Release_Notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_GPIO/Libraries/CMSIS/Device/Release_Notes.html -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_GPIO/Libraries/CMSIS/Device/startup_stm32f411xe.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_GPIO/Libraries/CMSIS/Device/startup_stm32f411xe.s -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_GPIO/Libraries/CMSIS/Device/stm32f411xe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_GPIO/Libraries/CMSIS/Device/stm32f411xe.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_GPIO/Libraries/CMSIS/Device/stm32f4xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_GPIO/Libraries/CMSIS/Device/stm32f4xx.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_GPIO/Libraries/CMSIS/Device/system_stm32f4xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_GPIO/Libraries/CMSIS/Device/system_stm32f4xx.c -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_GPIO/Libraries/CMSIS/Device/system_stm32f4xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_GPIO/Libraries/CMSIS/Device/system_stm32f4xx.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_GPIO/Libraries/CMSIS/Include/arm_common_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_GPIO/Libraries/CMSIS/Include/arm_common_tables.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_GPIO/Libraries/CMSIS/Include/arm_const_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_GPIO/Libraries/CMSIS/Include/arm_const_structs.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_GPIO/Libraries/CMSIS/Include/arm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_GPIO/Libraries/CMSIS/Include/arm_math.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_GPIO/Libraries/CMSIS/Include/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_GPIO/Libraries/CMSIS/Include/cmsis_armcc.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_GPIO/Libraries/CMSIS/Include/cmsis_armcc_V6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_GPIO/Libraries/CMSIS/Include/cmsis_armcc_V6.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_GPIO/Libraries/CMSIS/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_GPIO/Libraries/CMSIS/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_GPIO/Libraries/CMSIS/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_GPIO/Libraries/CMSIS/Include/core_cm4.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_GPIO/Libraries/CMSIS/Include/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_GPIO/Libraries/CMSIS/Include/core_cmFunc.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_GPIO/Libraries/CMSIS/Include/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_GPIO/Libraries/CMSIS/Include/core_cmInstr.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_GPIO/Libraries/CMSIS/Include/core_cmSimd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_GPIO/Libraries/CMSIS/Include/core_cmSimd.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_GPIO/Libraries/CMSIS/Include/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_GPIO/Libraries/CMSIS/Include/core_sc000.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_GPIO/Libraries/CMSIS/Include/core_sc300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_GPIO/Libraries/CMSIS/Include/core_sc300.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_GPIO/Program/algorithms/mathUnit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_GPIO/Program/algorithms/mathUnit.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_GPIO/Program/boardConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_GPIO/Program/boardConfig.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_GPIO/Program/drivers/stm32f4_delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_GPIO/Program/drivers/stm32f4_delay.c -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_GPIO/Program/drivers/stm32f4_delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_GPIO/Program/drivers/stm32f4_delay.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_GPIO/Program/drivers/stm32f4_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_GPIO/Program/drivers/stm32f4_msp.c -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_GPIO/Program/drivers/stm32f4_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_GPIO/Program/drivers/stm32f4_system.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_GPIO/Program/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_GPIO/Program/main.c -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_GPIO/Program/stm32f4xx_bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_GPIO/Program/stm32f4xx_bsp.c -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_GPIO/Program/stm32f4xx_bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_GPIO/Program/stm32f4xx_bsp.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_GPIO/Program/stm32f4xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_GPIO/Program/stm32f4xx_hal_conf.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_GPIO/Program/stm32f4xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_GPIO/Program/stm32f4xx_it.c -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_GPIO/Project/ClearFile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_GPIO/Project/ClearFile.bat -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_GPIO/Project/JLinkSettings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_GPIO/Project/JLinkSettings.ini -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_GPIO/Project/ProjSTM32.uvguix.Hom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_GPIO/Project/ProjSTM32.uvguix.Hom -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_GPIO/Project/ProjSTM32.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_GPIO/Project/ProjSTM32.uvoptx -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_GPIO/Project/ProjSTM32.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_GPIO/Project/ProjSTM32.uvprojx -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_TIM/Libraries/CMSIS/DSP_Lib/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_TIM/Libraries/CMSIS/DSP_Lib/license.txt -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_TIM/Libraries/CMSIS/Device/Release_Notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_TIM/Libraries/CMSIS/Device/Release_Notes.html -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_TIM/Libraries/CMSIS/Device/startup_stm32f411xe.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_TIM/Libraries/CMSIS/Device/startup_stm32f411xe.s -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_TIM/Libraries/CMSIS/Device/stm32f411xe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_TIM/Libraries/CMSIS/Device/stm32f411xe.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_TIM/Libraries/CMSIS/Device/stm32f4xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_TIM/Libraries/CMSIS/Device/stm32f4xx.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_TIM/Libraries/CMSIS/Device/system_stm32f4xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_TIM/Libraries/CMSIS/Device/system_stm32f4xx.c -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_TIM/Libraries/CMSIS/Device/system_stm32f4xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_TIM/Libraries/CMSIS/Device/system_stm32f4xx.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_TIM/Libraries/CMSIS/Include/arm_common_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_TIM/Libraries/CMSIS/Include/arm_common_tables.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_TIM/Libraries/CMSIS/Include/arm_const_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_TIM/Libraries/CMSIS/Include/arm_const_structs.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_TIM/Libraries/CMSIS/Include/arm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_TIM/Libraries/CMSIS/Include/arm_math.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_TIM/Libraries/CMSIS/Include/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_TIM/Libraries/CMSIS/Include/cmsis_armcc.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_TIM/Libraries/CMSIS/Include/cmsis_armcc_V6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_TIM/Libraries/CMSIS/Include/cmsis_armcc_V6.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_TIM/Libraries/CMSIS/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_TIM/Libraries/CMSIS/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_TIM/Libraries/CMSIS/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_TIM/Libraries/CMSIS/Include/core_cm4.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_TIM/Libraries/CMSIS/Include/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_TIM/Libraries/CMSIS/Include/core_cmFunc.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_TIM/Libraries/CMSIS/Include/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_TIM/Libraries/CMSIS/Include/core_cmInstr.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_TIM/Libraries/CMSIS/Include/core_cmSimd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_TIM/Libraries/CMSIS/Include/core_cmSimd.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_TIM/Libraries/CMSIS/Include/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_TIM/Libraries/CMSIS/Include/core_sc000.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_TIM/Libraries/CMSIS/Include/core_sc300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_TIM/Libraries/CMSIS/Include/core_sc300.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_TIM/Libraries/STM32F4xx_HAL_Driver/Release_Notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_TIM/Libraries/STM32F4xx_HAL_Driver/Release_Notes.html -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_TIM/Program/algorithms/mathUnit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_TIM/Program/algorithms/mathUnit.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_TIM/Program/boardConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_TIM/Program/boardConfig.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_TIM/Program/drivers/stm32f4_delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_TIM/Program/drivers/stm32f4_delay.c -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_TIM/Program/drivers/stm32f4_delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_TIM/Program/drivers/stm32f4_delay.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_TIM/Program/drivers/stm32f4_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_TIM/Program/drivers/stm32f4_msp.c -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_TIM/Program/drivers/stm32f4_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_TIM/Program/drivers/stm32f4_system.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_TIM/Program/drivers/stm32f4_tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_TIM/Program/drivers/stm32f4_tim.c -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_TIM/Program/drivers/stm32f4_tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_TIM/Program/drivers/stm32f4_tim.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_TIM/Program/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_TIM/Program/main.c -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_TIM/Program/stm32f4xx_bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_TIM/Program/stm32f4xx_bsp.c -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_TIM/Program/stm32f4xx_bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_TIM/Program/stm32f4xx_bsp.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_TIM/Program/stm32f4xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_TIM/Program/stm32f4xx_hal_conf.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_TIM/Program/stm32f4xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_TIM/Program/stm32f4xx_it.c -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_TIM/Project/ClearFile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_TIM/Project/ClearFile.bat -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_TIM/Project/JLinkSettings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_TIM/Project/JLinkSettings.ini -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_TIM/Project/ProjSTM32.uvguix.Hom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_TIM/Project/ProjSTM32.uvguix.Hom -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_TIM/Project/ProjSTM32.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_TIM/Project/ProjSTM32.uvoptx -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_TIM/Project/ProjSTM32.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_TIM/Project/ProjSTM32.uvprojx -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_UART/Libraries/CMSIS/DSP_Lib/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_UART/Libraries/CMSIS/DSP_Lib/license.txt -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_UART/Libraries/CMSIS/Device/Release_Notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_UART/Libraries/CMSIS/Device/Release_Notes.html -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_UART/Libraries/CMSIS/Device/startup_stm32f411xe.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_UART/Libraries/CMSIS/Device/startup_stm32f411xe.s -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_UART/Libraries/CMSIS/Device/stm32f411xe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_UART/Libraries/CMSIS/Device/stm32f411xe.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_UART/Libraries/CMSIS/Device/stm32f4xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_UART/Libraries/CMSIS/Device/stm32f4xx.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_UART/Libraries/CMSIS/Device/system_stm32f4xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_UART/Libraries/CMSIS/Device/system_stm32f4xx.c -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_UART/Libraries/CMSIS/Device/system_stm32f4xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_UART/Libraries/CMSIS/Device/system_stm32f4xx.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_UART/Libraries/CMSIS/Include/arm_common_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_UART/Libraries/CMSIS/Include/arm_common_tables.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_UART/Libraries/CMSIS/Include/arm_const_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_UART/Libraries/CMSIS/Include/arm_const_structs.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_UART/Libraries/CMSIS/Include/arm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_UART/Libraries/CMSIS/Include/arm_math.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_UART/Libraries/CMSIS/Include/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_UART/Libraries/CMSIS/Include/cmsis_armcc.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_UART/Libraries/CMSIS/Include/cmsis_armcc_V6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_UART/Libraries/CMSIS/Include/cmsis_armcc_V6.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_UART/Libraries/CMSIS/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_UART/Libraries/CMSIS/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_UART/Libraries/CMSIS/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_UART/Libraries/CMSIS/Include/core_cm4.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_UART/Libraries/CMSIS/Include/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_UART/Libraries/CMSIS/Include/core_cmFunc.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_UART/Libraries/CMSIS/Include/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_UART/Libraries/CMSIS/Include/core_cmInstr.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_UART/Libraries/CMSIS/Include/core_cmSimd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_UART/Libraries/CMSIS/Include/core_cmSimd.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_UART/Libraries/CMSIS/Include/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_UART/Libraries/CMSIS/Include/core_sc000.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_UART/Libraries/CMSIS/Include/core_sc300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_UART/Libraries/CMSIS/Include/core_sc300.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_UART/Program/algorithms/mathUnit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_UART/Program/algorithms/mathUnit.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_UART/Program/algorithms/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_UART/Program/algorithms/string.c -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_UART/Program/algorithms/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_UART/Program/algorithms/string.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_UART/Program/boardConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_UART/Program/boardConfig.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_UART/Program/drivers/stm32f4_delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_UART/Program/drivers/stm32f4_delay.c -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_UART/Program/drivers/stm32f4_delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_UART/Program/drivers/stm32f4_delay.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_UART/Program/drivers/stm32f4_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_UART/Program/drivers/stm32f4_msp.c -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_UART/Program/drivers/stm32f4_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_UART/Program/drivers/stm32f4_system.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_UART/Program/drivers/stm32f4_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_UART/Program/drivers/stm32f4_uart.c -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_UART/Program/drivers/stm32f4_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_UART/Program/drivers/stm32f4_uart.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_UART/Program/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_UART/Program/main.c -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_UART/Program/modules/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_UART/Program/modules/serial.c -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_UART/Program/modules/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_UART/Program/modules/serial.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_UART/Program/stm32f4xx_bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_UART/Program/stm32f4xx_bsp.c -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_UART/Program/stm32f4xx_bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_UART/Program/stm32f4xx_bsp.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_UART/Program/stm32f4xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_UART/Program/stm32f4xx_hal_conf.h -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_UART/Program/stm32f4xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_UART/Program/stm32f4xx_it.c -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_UART/Project/ClearFile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_UART/Project/ClearFile.bat -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_UART/Project/JLinkSettings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_UART/Project/JLinkSettings.ini -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_UART/Project/ProjSTM32.uvguix.Hom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_UART/Project/ProjSTM32.uvguix.Hom -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_UART/Project/ProjSTM32.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_UART/Project/ProjSTM32.uvoptx -------------------------------------------------------------------------------- /Software/QRCs_Peripheral_UART/Project/ProjSTM32.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitSprout/QCopterRemoteControl/HEAD/Software/QRCs_Peripheral_UART/Project/ProjSTM32.uvprojx --------------------------------------------------------------------------------