├── .gitmodules ├── Core ├── core_cm3.c ├── core_cm3.h └── startup_stm32f10x_md.s ├── Driver ├── inc │ ├── driver.h │ ├── font.h │ ├── oled.h │ └── uart.h └── src │ ├── oled.c │ └── uart.c ├── Lib ├── inc │ ├── misc.h │ ├── stm32f10x_adc.h │ ├── stm32f10x_bkp.h │ ├── stm32f10x_can.h │ ├── stm32f10x_cec.h │ ├── stm32f10x_crc.h │ ├── stm32f10x_dac.h │ ├── stm32f10x_dbgmcu.h │ ├── stm32f10x_dma.h │ ├── stm32f10x_exti.h │ ├── stm32f10x_flash.h │ ├── stm32f10x_fsmc.h │ ├── stm32f10x_gpio.h │ ├── stm32f10x_i2c.h │ ├── stm32f10x_iwdg.h │ ├── stm32f10x_pwr.h │ ├── stm32f10x_rcc.h │ ├── stm32f10x_rtc.h │ ├── stm32f10x_sdio.h │ ├── stm32f10x_spi.h │ ├── stm32f10x_tim.h │ ├── stm32f10x_usart.h │ └── stm32f10x_wwdg.h └── src │ ├── misc.c │ ├── stm32f10x_adc.c │ ├── stm32f10x_bkp.c │ ├── stm32f10x_can.c │ ├── stm32f10x_cec.c │ ├── stm32f10x_crc.c │ ├── stm32f10x_dac.c │ ├── stm32f10x_dbgmcu.c │ ├── stm32f10x_dma.c │ ├── stm32f10x_exti.c │ ├── stm32f10x_flash.c │ ├── stm32f10x_fsmc.c │ ├── stm32f10x_gpio.c │ ├── stm32f10x_i2c.c │ ├── stm32f10x_iwdg.c │ ├── stm32f10x_pwr.c │ ├── stm32f10x_rcc.c │ ├── stm32f10x_rtc.c │ ├── stm32f10x_sdio.c │ ├── stm32f10x_spi.c │ ├── stm32f10x_tim.c │ ├── stm32f10x_usart.c │ └── stm32f10x_wwdg.c ├── Objects └── dma-i2c-oled.hex ├── README.md ├── User ├── ctrl.c ├── ctrl.h ├── main.c ├── stm32f10x.h ├── stm32f10x_conf.h ├── stm32f10x_it.c ├── stm32f10x_it.h ├── system_stm32f10x.c └── system_stm32f10x.h ├── dma-i2c-oled.uvprojx └── doc └── 原理图.png /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/.gitmodules -------------------------------------------------------------------------------- /Core/core_cm3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/Core/core_cm3.c -------------------------------------------------------------------------------- /Core/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/Core/core_cm3.h -------------------------------------------------------------------------------- /Core/startup_stm32f10x_md.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/Core/startup_stm32f10x_md.s -------------------------------------------------------------------------------- /Driver/inc/driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/Driver/inc/driver.h -------------------------------------------------------------------------------- /Driver/inc/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/Driver/inc/font.h -------------------------------------------------------------------------------- /Driver/inc/oled.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/Driver/inc/oled.h -------------------------------------------------------------------------------- /Driver/inc/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/Driver/inc/uart.h -------------------------------------------------------------------------------- /Driver/src/oled.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/Driver/src/oled.c -------------------------------------------------------------------------------- /Driver/src/uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/Driver/src/uart.c -------------------------------------------------------------------------------- /Lib/inc/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/Lib/inc/misc.h -------------------------------------------------------------------------------- /Lib/inc/stm32f10x_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/Lib/inc/stm32f10x_adc.h -------------------------------------------------------------------------------- /Lib/inc/stm32f10x_bkp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/Lib/inc/stm32f10x_bkp.h -------------------------------------------------------------------------------- /Lib/inc/stm32f10x_can.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/Lib/inc/stm32f10x_can.h -------------------------------------------------------------------------------- /Lib/inc/stm32f10x_cec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/Lib/inc/stm32f10x_cec.h -------------------------------------------------------------------------------- /Lib/inc/stm32f10x_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/Lib/inc/stm32f10x_crc.h -------------------------------------------------------------------------------- /Lib/inc/stm32f10x_dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/Lib/inc/stm32f10x_dac.h -------------------------------------------------------------------------------- /Lib/inc/stm32f10x_dbgmcu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/Lib/inc/stm32f10x_dbgmcu.h -------------------------------------------------------------------------------- /Lib/inc/stm32f10x_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/Lib/inc/stm32f10x_dma.h -------------------------------------------------------------------------------- /Lib/inc/stm32f10x_exti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/Lib/inc/stm32f10x_exti.h -------------------------------------------------------------------------------- /Lib/inc/stm32f10x_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/Lib/inc/stm32f10x_flash.h -------------------------------------------------------------------------------- /Lib/inc/stm32f10x_fsmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/Lib/inc/stm32f10x_fsmc.h -------------------------------------------------------------------------------- /Lib/inc/stm32f10x_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/Lib/inc/stm32f10x_gpio.h -------------------------------------------------------------------------------- /Lib/inc/stm32f10x_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/Lib/inc/stm32f10x_i2c.h -------------------------------------------------------------------------------- /Lib/inc/stm32f10x_iwdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/Lib/inc/stm32f10x_iwdg.h -------------------------------------------------------------------------------- /Lib/inc/stm32f10x_pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/Lib/inc/stm32f10x_pwr.h -------------------------------------------------------------------------------- /Lib/inc/stm32f10x_rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/Lib/inc/stm32f10x_rcc.h -------------------------------------------------------------------------------- /Lib/inc/stm32f10x_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/Lib/inc/stm32f10x_rtc.h -------------------------------------------------------------------------------- /Lib/inc/stm32f10x_sdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/Lib/inc/stm32f10x_sdio.h -------------------------------------------------------------------------------- /Lib/inc/stm32f10x_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/Lib/inc/stm32f10x_spi.h -------------------------------------------------------------------------------- /Lib/inc/stm32f10x_tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/Lib/inc/stm32f10x_tim.h -------------------------------------------------------------------------------- /Lib/inc/stm32f10x_usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/Lib/inc/stm32f10x_usart.h -------------------------------------------------------------------------------- /Lib/inc/stm32f10x_wwdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/Lib/inc/stm32f10x_wwdg.h -------------------------------------------------------------------------------- /Lib/src/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/Lib/src/misc.c -------------------------------------------------------------------------------- /Lib/src/stm32f10x_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/Lib/src/stm32f10x_adc.c -------------------------------------------------------------------------------- /Lib/src/stm32f10x_bkp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/Lib/src/stm32f10x_bkp.c -------------------------------------------------------------------------------- /Lib/src/stm32f10x_can.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/Lib/src/stm32f10x_can.c -------------------------------------------------------------------------------- /Lib/src/stm32f10x_cec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/Lib/src/stm32f10x_cec.c -------------------------------------------------------------------------------- /Lib/src/stm32f10x_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/Lib/src/stm32f10x_crc.c -------------------------------------------------------------------------------- /Lib/src/stm32f10x_dac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/Lib/src/stm32f10x_dac.c -------------------------------------------------------------------------------- /Lib/src/stm32f10x_dbgmcu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/Lib/src/stm32f10x_dbgmcu.c -------------------------------------------------------------------------------- /Lib/src/stm32f10x_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/Lib/src/stm32f10x_dma.c -------------------------------------------------------------------------------- /Lib/src/stm32f10x_exti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/Lib/src/stm32f10x_exti.c -------------------------------------------------------------------------------- /Lib/src/stm32f10x_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/Lib/src/stm32f10x_flash.c -------------------------------------------------------------------------------- /Lib/src/stm32f10x_fsmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/Lib/src/stm32f10x_fsmc.c -------------------------------------------------------------------------------- /Lib/src/stm32f10x_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/Lib/src/stm32f10x_gpio.c -------------------------------------------------------------------------------- /Lib/src/stm32f10x_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/Lib/src/stm32f10x_i2c.c -------------------------------------------------------------------------------- /Lib/src/stm32f10x_iwdg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/Lib/src/stm32f10x_iwdg.c -------------------------------------------------------------------------------- /Lib/src/stm32f10x_pwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/Lib/src/stm32f10x_pwr.c -------------------------------------------------------------------------------- /Lib/src/stm32f10x_rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/Lib/src/stm32f10x_rcc.c -------------------------------------------------------------------------------- /Lib/src/stm32f10x_rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/Lib/src/stm32f10x_rtc.c -------------------------------------------------------------------------------- /Lib/src/stm32f10x_sdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/Lib/src/stm32f10x_sdio.c -------------------------------------------------------------------------------- /Lib/src/stm32f10x_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/Lib/src/stm32f10x_spi.c -------------------------------------------------------------------------------- /Lib/src/stm32f10x_tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/Lib/src/stm32f10x_tim.c -------------------------------------------------------------------------------- /Lib/src/stm32f10x_usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/Lib/src/stm32f10x_usart.c -------------------------------------------------------------------------------- /Lib/src/stm32f10x_wwdg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/Lib/src/stm32f10x_wwdg.c -------------------------------------------------------------------------------- /Objects/dma-i2c-oled.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/Objects/dma-i2c-oled.hex -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/README.md -------------------------------------------------------------------------------- /User/ctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/User/ctrl.c -------------------------------------------------------------------------------- /User/ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/User/ctrl.h -------------------------------------------------------------------------------- /User/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/User/main.c -------------------------------------------------------------------------------- /User/stm32f10x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/User/stm32f10x.h -------------------------------------------------------------------------------- /User/stm32f10x_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/User/stm32f10x_conf.h -------------------------------------------------------------------------------- /User/stm32f10x_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/User/stm32f10x_it.c -------------------------------------------------------------------------------- /User/stm32f10x_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/User/stm32f10x_it.h -------------------------------------------------------------------------------- /User/system_stm32f10x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/User/system_stm32f10x.c -------------------------------------------------------------------------------- /User/system_stm32f10x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/User/system_stm32f10x.h -------------------------------------------------------------------------------- /dma-i2c-oled.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/dma-i2c-oled.uvprojx -------------------------------------------------------------------------------- /doc/原理图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnZhiran/STM32F1_SSD1306_IIC/HEAD/doc/原理图.png --------------------------------------------------------------------------------