├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── other-issue.md └── PULL_REQUEST_TEMPLATE.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Inc ├── Legacy │ └── stm32_hal_legacy.h ├── stm32_assert_template.h ├── stm32g4xx_hal.h ├── stm32g4xx_hal_adc.h ├── stm32g4xx_hal_adc_ex.h ├── stm32g4xx_hal_comp.h ├── stm32g4xx_hal_conf_template.h ├── stm32g4xx_hal_cordic.h ├── stm32g4xx_hal_cortex.h ├── stm32g4xx_hal_crc.h ├── stm32g4xx_hal_crc_ex.h ├── stm32g4xx_hal_cryp.h ├── stm32g4xx_hal_cryp_ex.h ├── stm32g4xx_hal_dac.h ├── stm32g4xx_hal_dac_ex.h ├── stm32g4xx_hal_def.h ├── stm32g4xx_hal_dma.h ├── stm32g4xx_hal_dma_ex.h ├── stm32g4xx_hal_exti.h ├── stm32g4xx_hal_fdcan.h ├── stm32g4xx_hal_flash.h ├── stm32g4xx_hal_flash_ex.h ├── stm32g4xx_hal_flash_ramfunc.h ├── stm32g4xx_hal_fmac.h ├── stm32g4xx_hal_gpio.h ├── stm32g4xx_hal_gpio_ex.h ├── stm32g4xx_hal_hrtim.h ├── stm32g4xx_hal_i2c.h ├── stm32g4xx_hal_i2c_ex.h ├── stm32g4xx_hal_i2s.h ├── stm32g4xx_hal_irda.h ├── stm32g4xx_hal_irda_ex.h ├── stm32g4xx_hal_iwdg.h ├── stm32g4xx_hal_lptim.h ├── stm32g4xx_hal_nand.h ├── stm32g4xx_hal_nor.h ├── stm32g4xx_hal_opamp.h ├── stm32g4xx_hal_opamp_ex.h ├── stm32g4xx_hal_pcd.h ├── stm32g4xx_hal_pcd_ex.h ├── stm32g4xx_hal_pwr.h ├── stm32g4xx_hal_pwr_ex.h ├── stm32g4xx_hal_qspi.h ├── stm32g4xx_hal_rcc.h ├── stm32g4xx_hal_rcc_ex.h ├── stm32g4xx_hal_rng.h ├── stm32g4xx_hal_rtc.h ├── stm32g4xx_hal_rtc_ex.h ├── stm32g4xx_hal_sai.h ├── stm32g4xx_hal_sai_ex.h ├── stm32g4xx_hal_smartcard.h ├── stm32g4xx_hal_smartcard_ex.h ├── stm32g4xx_hal_smbus.h ├── stm32g4xx_hal_smbus_ex.h ├── stm32g4xx_hal_spi.h ├── stm32g4xx_hal_spi_ex.h ├── stm32g4xx_hal_sram.h ├── stm32g4xx_hal_tim.h ├── stm32g4xx_hal_tim_ex.h ├── stm32g4xx_hal_uart.h ├── stm32g4xx_hal_uart_ex.h ├── stm32g4xx_hal_usart.h ├── stm32g4xx_hal_usart_ex.h ├── stm32g4xx_hal_wwdg.h ├── stm32g4xx_ll_adc.h ├── stm32g4xx_ll_bus.h ├── stm32g4xx_ll_comp.h ├── stm32g4xx_ll_cordic.h ├── stm32g4xx_ll_cortex.h ├── stm32g4xx_ll_crc.h ├── stm32g4xx_ll_crs.h ├── stm32g4xx_ll_dac.h ├── stm32g4xx_ll_dma.h ├── stm32g4xx_ll_dmamux.h ├── stm32g4xx_ll_exti.h ├── stm32g4xx_ll_fmac.h ├── stm32g4xx_ll_fmc.h ├── stm32g4xx_ll_gpio.h ├── stm32g4xx_ll_hrtim.h ├── stm32g4xx_ll_i2c.h ├── stm32g4xx_ll_iwdg.h ├── stm32g4xx_ll_lptim.h ├── stm32g4xx_ll_lpuart.h ├── stm32g4xx_ll_opamp.h ├── stm32g4xx_ll_pwr.h ├── stm32g4xx_ll_rcc.h ├── stm32g4xx_ll_rng.h ├── stm32g4xx_ll_rtc.h ├── stm32g4xx_ll_spi.h ├── stm32g4xx_ll_system.h ├── stm32g4xx_ll_tim.h ├── stm32g4xx_ll_ucpd.h ├── stm32g4xx_ll_usart.h ├── stm32g4xx_ll_usb.h ├── stm32g4xx_ll_utils.h └── stm32g4xx_ll_wwdg.h ├── LICENSE.md ├── README.md ├── Release_Notes.html ├── SECURITY.md ├── Src ├── stm32g4xx_hal.c ├── stm32g4xx_hal_adc.c ├── stm32g4xx_hal_adc_ex.c ├── stm32g4xx_hal_comp.c ├── stm32g4xx_hal_cordic.c ├── stm32g4xx_hal_cortex.c ├── stm32g4xx_hal_crc.c ├── stm32g4xx_hal_crc_ex.c ├── stm32g4xx_hal_cryp.c ├── stm32g4xx_hal_cryp_ex.c ├── stm32g4xx_hal_dac.c ├── stm32g4xx_hal_dac_ex.c ├── stm32g4xx_hal_dma.c ├── stm32g4xx_hal_dma_ex.c ├── stm32g4xx_hal_exti.c ├── stm32g4xx_hal_fdcan.c ├── stm32g4xx_hal_flash.c ├── stm32g4xx_hal_flash_ex.c ├── stm32g4xx_hal_flash_ramfunc.c ├── stm32g4xx_hal_fmac.c ├── stm32g4xx_hal_gpio.c ├── stm32g4xx_hal_hrtim.c ├── stm32g4xx_hal_i2c.c ├── stm32g4xx_hal_i2c_ex.c ├── stm32g4xx_hal_i2s.c ├── stm32g4xx_hal_irda.c ├── stm32g4xx_hal_iwdg.c ├── stm32g4xx_hal_lptim.c ├── stm32g4xx_hal_msp_template.c ├── stm32g4xx_hal_nand.c ├── stm32g4xx_hal_nor.c ├── stm32g4xx_hal_opamp.c ├── stm32g4xx_hal_opamp_ex.c ├── stm32g4xx_hal_pcd.c ├── stm32g4xx_hal_pcd_ex.c ├── stm32g4xx_hal_pwr.c ├── stm32g4xx_hal_pwr_ex.c ├── stm32g4xx_hal_qspi.c ├── stm32g4xx_hal_rcc.c ├── stm32g4xx_hal_rcc_ex.c ├── stm32g4xx_hal_rng.c ├── stm32g4xx_hal_rtc.c ├── stm32g4xx_hal_rtc_ex.c ├── stm32g4xx_hal_sai.c ├── stm32g4xx_hal_sai_ex.c ├── stm32g4xx_hal_smartcard.c ├── stm32g4xx_hal_smartcard_ex.c ├── stm32g4xx_hal_smbus.c ├── stm32g4xx_hal_smbus_ex.c ├── stm32g4xx_hal_spi.c ├── stm32g4xx_hal_spi_ex.c ├── stm32g4xx_hal_sram.c ├── stm32g4xx_hal_tim.c ├── stm32g4xx_hal_tim_ex.c ├── stm32g4xx_hal_timebase_tim_template.c ├── stm32g4xx_hal_uart.c ├── stm32g4xx_hal_uart_ex.c ├── stm32g4xx_hal_usart.c ├── stm32g4xx_hal_usart_ex.c ├── stm32g4xx_hal_wwdg.c ├── stm32g4xx_ll_adc.c ├── stm32g4xx_ll_comp.c ├── stm32g4xx_ll_cordic.c ├── stm32g4xx_ll_crc.c ├── stm32g4xx_ll_crs.c ├── stm32g4xx_ll_dac.c ├── stm32g4xx_ll_dma.c ├── stm32g4xx_ll_exti.c ├── stm32g4xx_ll_fmac.c ├── stm32g4xx_ll_fmc.c ├── stm32g4xx_ll_gpio.c ├── stm32g4xx_ll_hrtim.c ├── stm32g4xx_ll_i2c.c ├── stm32g4xx_ll_lptim.c ├── stm32g4xx_ll_lpuart.c ├── stm32g4xx_ll_opamp.c ├── stm32g4xx_ll_pwr.c ├── stm32g4xx_ll_rcc.c ├── stm32g4xx_ll_rng.c ├── stm32g4xx_ll_rtc.c ├── stm32g4xx_ll_spi.c ├── stm32g4xx_ll_tim.c ├── stm32g4xx_ll_ucpd.c ├── stm32g4xx_ll_usart.c ├── stm32g4xx_ll_usb.c └── stm32g4xx_ll_utils.c └── _htmresc ├── mini-st.css └── st_logo.png /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/other-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/.github/ISSUE_TEMPLATE/other-issue.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Inc/Legacy/stm32_hal_legacy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/Legacy/stm32_hal_legacy.h -------------------------------------------------------------------------------- /Inc/stm32_assert_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32_assert_template.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_hal.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_hal_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_hal_adc.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_hal_adc_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_hal_adc_ex.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_hal_comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_hal_comp.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_hal_conf_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_hal_conf_template.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_hal_cordic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_hal_cordic.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_hal_cortex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_hal_cortex.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_hal_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_hal_crc.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_hal_crc_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_hal_crc_ex.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_hal_cryp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_hal_cryp.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_hal_cryp_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_hal_cryp_ex.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_hal_dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_hal_dac.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_hal_dac_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_hal_dac_ex.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_hal_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_hal_def.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_hal_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_hal_dma.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_hal_dma_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_hal_dma_ex.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_hal_exti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_hal_exti.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_hal_fdcan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_hal_fdcan.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_hal_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_hal_flash.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_hal_flash_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_hal_flash_ex.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_hal_flash_ramfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_hal_flash_ramfunc.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_hal_fmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_hal_fmac.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_hal_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_hal_gpio.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_hal_gpio_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_hal_gpio_ex.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_hal_hrtim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_hal_hrtim.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_hal_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_hal_i2c.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_hal_i2c_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_hal_i2c_ex.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_hal_i2s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_hal_i2s.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_hal_irda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_hal_irda.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_hal_irda_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_hal_irda_ex.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_hal_iwdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_hal_iwdg.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_hal_lptim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_hal_lptim.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_hal_nand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_hal_nand.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_hal_nor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_hal_nor.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_hal_opamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_hal_opamp.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_hal_opamp_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_hal_opamp_ex.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_hal_pcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_hal_pcd.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_hal_pcd_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_hal_pcd_ex.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_hal_pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_hal_pwr.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_hal_pwr_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_hal_pwr_ex.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_hal_qspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_hal_qspi.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_hal_rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_hal_rcc.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_hal_rcc_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_hal_rcc_ex.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_hal_rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_hal_rng.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_hal_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_hal_rtc.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_hal_rtc_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_hal_rtc_ex.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_hal_sai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_hal_sai.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_hal_sai_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_hal_sai_ex.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_hal_smartcard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_hal_smartcard.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_hal_smartcard_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_hal_smartcard_ex.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_hal_smbus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_hal_smbus.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_hal_smbus_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_hal_smbus_ex.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_hal_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_hal_spi.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_hal_spi_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_hal_spi_ex.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_hal_sram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_hal_sram.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_hal_tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_hal_tim.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_hal_tim_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_hal_tim_ex.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_hal_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_hal_uart.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_hal_uart_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_hal_uart_ex.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_hal_usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_hal_usart.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_hal_usart_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_hal_usart_ex.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_hal_wwdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_hal_wwdg.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_ll_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_ll_adc.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_ll_bus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_ll_bus.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_ll_comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_ll_comp.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_ll_cordic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_ll_cordic.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_ll_cortex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_ll_cortex.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_ll_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_ll_crc.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_ll_crs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_ll_crs.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_ll_dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_ll_dac.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_ll_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_ll_dma.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_ll_dmamux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_ll_dmamux.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_ll_exti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_ll_exti.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_ll_fmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_ll_fmac.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_ll_fmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_ll_fmc.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_ll_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_ll_gpio.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_ll_hrtim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_ll_hrtim.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_ll_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_ll_i2c.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_ll_iwdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_ll_iwdg.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_ll_lptim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_ll_lptim.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_ll_lpuart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_ll_lpuart.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_ll_opamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_ll_opamp.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_ll_pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_ll_pwr.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_ll_rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_ll_rcc.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_ll_rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_ll_rng.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_ll_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_ll_rtc.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_ll_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_ll_spi.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_ll_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_ll_system.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_ll_tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_ll_tim.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_ll_ucpd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_ll_ucpd.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_ll_usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_ll_usart.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_ll_usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_ll_usb.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_ll_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_ll_utils.h -------------------------------------------------------------------------------- /Inc/stm32g4xx_ll_wwdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Inc/stm32g4xx_ll_wwdg.h -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/README.md -------------------------------------------------------------------------------- /Release_Notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Release_Notes.html -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Src/stm32g4xx_hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_hal.c -------------------------------------------------------------------------------- /Src/stm32g4xx_hal_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_hal_adc.c -------------------------------------------------------------------------------- /Src/stm32g4xx_hal_adc_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_hal_adc_ex.c -------------------------------------------------------------------------------- /Src/stm32g4xx_hal_comp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_hal_comp.c -------------------------------------------------------------------------------- /Src/stm32g4xx_hal_cordic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_hal_cordic.c -------------------------------------------------------------------------------- /Src/stm32g4xx_hal_cortex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_hal_cortex.c -------------------------------------------------------------------------------- /Src/stm32g4xx_hal_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_hal_crc.c -------------------------------------------------------------------------------- /Src/stm32g4xx_hal_crc_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_hal_crc_ex.c -------------------------------------------------------------------------------- /Src/stm32g4xx_hal_cryp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_hal_cryp.c -------------------------------------------------------------------------------- /Src/stm32g4xx_hal_cryp_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_hal_cryp_ex.c -------------------------------------------------------------------------------- /Src/stm32g4xx_hal_dac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_hal_dac.c -------------------------------------------------------------------------------- /Src/stm32g4xx_hal_dac_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_hal_dac_ex.c -------------------------------------------------------------------------------- /Src/stm32g4xx_hal_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_hal_dma.c -------------------------------------------------------------------------------- /Src/stm32g4xx_hal_dma_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_hal_dma_ex.c -------------------------------------------------------------------------------- /Src/stm32g4xx_hal_exti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_hal_exti.c -------------------------------------------------------------------------------- /Src/stm32g4xx_hal_fdcan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_hal_fdcan.c -------------------------------------------------------------------------------- /Src/stm32g4xx_hal_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_hal_flash.c -------------------------------------------------------------------------------- /Src/stm32g4xx_hal_flash_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_hal_flash_ex.c -------------------------------------------------------------------------------- /Src/stm32g4xx_hal_flash_ramfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_hal_flash_ramfunc.c -------------------------------------------------------------------------------- /Src/stm32g4xx_hal_fmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_hal_fmac.c -------------------------------------------------------------------------------- /Src/stm32g4xx_hal_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_hal_gpio.c -------------------------------------------------------------------------------- /Src/stm32g4xx_hal_hrtim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_hal_hrtim.c -------------------------------------------------------------------------------- /Src/stm32g4xx_hal_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_hal_i2c.c -------------------------------------------------------------------------------- /Src/stm32g4xx_hal_i2c_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_hal_i2c_ex.c -------------------------------------------------------------------------------- /Src/stm32g4xx_hal_i2s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_hal_i2s.c -------------------------------------------------------------------------------- /Src/stm32g4xx_hal_irda.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_hal_irda.c -------------------------------------------------------------------------------- /Src/stm32g4xx_hal_iwdg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_hal_iwdg.c -------------------------------------------------------------------------------- /Src/stm32g4xx_hal_lptim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_hal_lptim.c -------------------------------------------------------------------------------- /Src/stm32g4xx_hal_msp_template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_hal_msp_template.c -------------------------------------------------------------------------------- /Src/stm32g4xx_hal_nand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_hal_nand.c -------------------------------------------------------------------------------- /Src/stm32g4xx_hal_nor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_hal_nor.c -------------------------------------------------------------------------------- /Src/stm32g4xx_hal_opamp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_hal_opamp.c -------------------------------------------------------------------------------- /Src/stm32g4xx_hal_opamp_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_hal_opamp_ex.c -------------------------------------------------------------------------------- /Src/stm32g4xx_hal_pcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_hal_pcd.c -------------------------------------------------------------------------------- /Src/stm32g4xx_hal_pcd_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_hal_pcd_ex.c -------------------------------------------------------------------------------- /Src/stm32g4xx_hal_pwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_hal_pwr.c -------------------------------------------------------------------------------- /Src/stm32g4xx_hal_pwr_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_hal_pwr_ex.c -------------------------------------------------------------------------------- /Src/stm32g4xx_hal_qspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_hal_qspi.c -------------------------------------------------------------------------------- /Src/stm32g4xx_hal_rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_hal_rcc.c -------------------------------------------------------------------------------- /Src/stm32g4xx_hal_rcc_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_hal_rcc_ex.c -------------------------------------------------------------------------------- /Src/stm32g4xx_hal_rng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_hal_rng.c -------------------------------------------------------------------------------- /Src/stm32g4xx_hal_rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_hal_rtc.c -------------------------------------------------------------------------------- /Src/stm32g4xx_hal_rtc_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_hal_rtc_ex.c -------------------------------------------------------------------------------- /Src/stm32g4xx_hal_sai.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_hal_sai.c -------------------------------------------------------------------------------- /Src/stm32g4xx_hal_sai_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_hal_sai_ex.c -------------------------------------------------------------------------------- /Src/stm32g4xx_hal_smartcard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_hal_smartcard.c -------------------------------------------------------------------------------- /Src/stm32g4xx_hal_smartcard_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_hal_smartcard_ex.c -------------------------------------------------------------------------------- /Src/stm32g4xx_hal_smbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_hal_smbus.c -------------------------------------------------------------------------------- /Src/stm32g4xx_hal_smbus_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_hal_smbus_ex.c -------------------------------------------------------------------------------- /Src/stm32g4xx_hal_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_hal_spi.c -------------------------------------------------------------------------------- /Src/stm32g4xx_hal_spi_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_hal_spi_ex.c -------------------------------------------------------------------------------- /Src/stm32g4xx_hal_sram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_hal_sram.c -------------------------------------------------------------------------------- /Src/stm32g4xx_hal_tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_hal_tim.c -------------------------------------------------------------------------------- /Src/stm32g4xx_hal_tim_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_hal_tim_ex.c -------------------------------------------------------------------------------- /Src/stm32g4xx_hal_timebase_tim_template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_hal_timebase_tim_template.c -------------------------------------------------------------------------------- /Src/stm32g4xx_hal_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_hal_uart.c -------------------------------------------------------------------------------- /Src/stm32g4xx_hal_uart_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_hal_uart_ex.c -------------------------------------------------------------------------------- /Src/stm32g4xx_hal_usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_hal_usart.c -------------------------------------------------------------------------------- /Src/stm32g4xx_hal_usart_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_hal_usart_ex.c -------------------------------------------------------------------------------- /Src/stm32g4xx_hal_wwdg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_hal_wwdg.c -------------------------------------------------------------------------------- /Src/stm32g4xx_ll_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_ll_adc.c -------------------------------------------------------------------------------- /Src/stm32g4xx_ll_comp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_ll_comp.c -------------------------------------------------------------------------------- /Src/stm32g4xx_ll_cordic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_ll_cordic.c -------------------------------------------------------------------------------- /Src/stm32g4xx_ll_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_ll_crc.c -------------------------------------------------------------------------------- /Src/stm32g4xx_ll_crs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_ll_crs.c -------------------------------------------------------------------------------- /Src/stm32g4xx_ll_dac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_ll_dac.c -------------------------------------------------------------------------------- /Src/stm32g4xx_ll_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_ll_dma.c -------------------------------------------------------------------------------- /Src/stm32g4xx_ll_exti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_ll_exti.c -------------------------------------------------------------------------------- /Src/stm32g4xx_ll_fmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_ll_fmac.c -------------------------------------------------------------------------------- /Src/stm32g4xx_ll_fmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_ll_fmc.c -------------------------------------------------------------------------------- /Src/stm32g4xx_ll_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_ll_gpio.c -------------------------------------------------------------------------------- /Src/stm32g4xx_ll_hrtim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_ll_hrtim.c -------------------------------------------------------------------------------- /Src/stm32g4xx_ll_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_ll_i2c.c -------------------------------------------------------------------------------- /Src/stm32g4xx_ll_lptim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_ll_lptim.c -------------------------------------------------------------------------------- /Src/stm32g4xx_ll_lpuart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_ll_lpuart.c -------------------------------------------------------------------------------- /Src/stm32g4xx_ll_opamp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_ll_opamp.c -------------------------------------------------------------------------------- /Src/stm32g4xx_ll_pwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_ll_pwr.c -------------------------------------------------------------------------------- /Src/stm32g4xx_ll_rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_ll_rcc.c -------------------------------------------------------------------------------- /Src/stm32g4xx_ll_rng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_ll_rng.c -------------------------------------------------------------------------------- /Src/stm32g4xx_ll_rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_ll_rtc.c -------------------------------------------------------------------------------- /Src/stm32g4xx_ll_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_ll_spi.c -------------------------------------------------------------------------------- /Src/stm32g4xx_ll_tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_ll_tim.c -------------------------------------------------------------------------------- /Src/stm32g4xx_ll_ucpd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_ll_ucpd.c -------------------------------------------------------------------------------- /Src/stm32g4xx_ll_usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_ll_usart.c -------------------------------------------------------------------------------- /Src/stm32g4xx_ll_usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_ll_usb.c -------------------------------------------------------------------------------- /Src/stm32g4xx_ll_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/Src/stm32g4xx_ll_utils.c -------------------------------------------------------------------------------- /_htmresc/mini-st.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/_htmresc/mini-st.css -------------------------------------------------------------------------------- /_htmresc/st_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/stm32g4xx-hal-driver/HEAD/_htmresc/st_logo.png --------------------------------------------------------------------------------