├── .cproject ├── .gitattributes ├── .mxproject ├── .project ├── .settings ├── language.settings.xml └── stm32cubeide.project.prefs ├── Core ├── Inc │ ├── main.h │ ├── stm32_assert.h │ └── stm32f4xx_it.h ├── Src │ ├── main.c │ ├── stm32f4xx_it.c │ ├── syscalls.c │ ├── sysmem.c │ └── system_stm32f4xx.c └── Startup │ └── startup_stm32f401ccux.s ├── Display ├── display.c ├── display.h ├── fonts.c ├── fonts.h ├── ili9341.c ├── ili9341.h ├── st7789.c └── st7789.h ├── Drivers ├── CMSIS │ ├── Device │ │ └── ST │ │ │ └── STM32F4xx │ │ │ ├── Include │ │ │ ├── stm32f401xc.h │ │ │ ├── stm32f4xx.h │ │ │ └── system_stm32f4xx.h │ │ │ └── LICENSE.txt │ ├── Include │ │ ├── cmsis_armcc.h │ │ ├── cmsis_armclang.h │ │ ├── cmsis_compiler.h │ │ ├── cmsis_gcc.h │ │ ├── cmsis_iccarm.h │ │ ├── cmsis_version.h │ │ ├── core_armv8mbl.h │ │ ├── core_armv8mml.h │ │ ├── core_cm0.h │ │ ├── core_cm0plus.h │ │ ├── core_cm1.h │ │ ├── core_cm23.h │ │ ├── core_cm3.h │ │ ├── core_cm33.h │ │ ├── core_cm4.h │ │ ├── core_cm7.h │ │ ├── core_sc000.h │ │ ├── core_sc300.h │ │ ├── mpu_armv7.h │ │ ├── mpu_armv8.h │ │ └── tz_context.h │ └── LICENSE.txt └── STM32F4xx_HAL_Driver │ ├── Inc │ ├── stm32f4xx_ll_bus.h │ ├── stm32f4xx_ll_cortex.h │ ├── stm32f4xx_ll_dma.h │ ├── stm32f4xx_ll_exti.h │ ├── stm32f4xx_ll_gpio.h │ ├── stm32f4xx_ll_pwr.h │ ├── stm32f4xx_ll_rcc.h │ ├── stm32f4xx_ll_spi.h │ ├── stm32f4xx_ll_system.h │ ├── stm32f4xx_ll_tim.h │ └── stm32f4xx_ll_utils.h │ ├── LICENSE.txt │ └── Src │ ├── stm32f4xx_ll_dma.c │ ├── stm32f4xx_ll_exti.c │ ├── stm32f4xx_ll_gpio.c │ ├── stm32f4xx_ll_rcc.c │ ├── stm32f4xx_ll_spi.c │ ├── stm32f4xx_ll_tim.c │ └── stm32f4xx_ll_utils.c ├── LICENSE.md ├── README.md ├── Release ├── Core │ ├── Src │ │ ├── main.cyclo │ │ ├── main.d │ │ ├── main.o │ │ ├── main.su │ │ ├── stm32f4xx_it.cyclo │ │ ├── stm32f4xx_it.d │ │ ├── stm32f4xx_it.o │ │ ├── stm32f4xx_it.su │ │ ├── subdir.mk │ │ ├── syscalls.cyclo │ │ ├── syscalls.d │ │ ├── syscalls.o │ │ ├── syscalls.su │ │ ├── sysmem.cyclo │ │ ├── sysmem.d │ │ ├── sysmem.o │ │ ├── sysmem.su │ │ ├── system_stm32f4xx.cyclo │ │ ├── system_stm32f4xx.d │ │ ├── system_stm32f4xx.o │ │ └── system_stm32f4xx.su │ └── Startup │ │ ├── startup_stm32f401ccux.d │ │ ├── startup_stm32f401ccux.o │ │ └── subdir.mk ├── Display │ ├── display.cyclo │ ├── display.d │ ├── display.o │ ├── display.su │ ├── fonts.cyclo │ ├── fonts.d │ ├── fonts.o │ ├── fonts.su │ ├── ili9341.cyclo │ ├── ili9341.d │ ├── ili9341.o │ ├── ili9341.su │ ├── st7789.cyclo │ ├── st7789.d │ ├── st7789.o │ ├── st7789.su │ └── subdir.mk ├── Drivers │ └── STM32F4xx_HAL_Driver │ │ └── Src │ │ ├── stm32f4xx_ll_dma.cyclo │ │ ├── stm32f4xx_ll_dma.d │ │ ├── stm32f4xx_ll_dma.o │ │ ├── stm32f4xx_ll_dma.su │ │ ├── stm32f4xx_ll_exti.cyclo │ │ ├── stm32f4xx_ll_exti.d │ │ ├── stm32f4xx_ll_exti.o │ │ ├── stm32f4xx_ll_exti.su │ │ ├── stm32f4xx_ll_gpio.cyclo │ │ ├── stm32f4xx_ll_gpio.d │ │ ├── stm32f4xx_ll_gpio.o │ │ ├── stm32f4xx_ll_gpio.su │ │ ├── stm32f4xx_ll_rcc.cyclo │ │ ├── stm32f4xx_ll_rcc.d │ │ ├── stm32f4xx_ll_rcc.o │ │ ├── stm32f4xx_ll_rcc.su │ │ ├── stm32f4xx_ll_spi.cyclo │ │ ├── stm32f4xx_ll_spi.d │ │ ├── stm32f4xx_ll_spi.o │ │ ├── stm32f4xx_ll_spi.su │ │ ├── stm32f4xx_ll_tim.cyclo │ │ ├── stm32f4xx_ll_tim.d │ │ ├── stm32f4xx_ll_tim.o │ │ ├── stm32f4xx_ll_tim.su │ │ ├── stm32f4xx_ll_utils.cyclo │ │ ├── stm32f4xx_ll_utils.d │ │ ├── stm32f4xx_ll_utils.o │ │ ├── stm32f4xx_ll_utils.su │ │ └── subdir.mk ├── makefile ├── objects.list ├── objects.mk ├── sources.mk ├── stm32-display-spi-dma.bin ├── stm32-display-spi-dma.elf ├── stm32-display-spi-dma.hex ├── stm32-display-spi-dma.list └── stm32-display-spi-dma.map ├── STM32F401CCUX_FLASH.ld ├── stm32-display-spi-dma.ioc └── подключение дисплея к МК по SPI.png /.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/.cproject -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/.gitattributes -------------------------------------------------------------------------------- /.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/.mxproject -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/.project -------------------------------------------------------------------------------- /.settings/language.settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/.settings/language.settings.xml -------------------------------------------------------------------------------- /.settings/stm32cubeide.project.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/.settings/stm32cubeide.project.prefs -------------------------------------------------------------------------------- /Core/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Core/Inc/main.h -------------------------------------------------------------------------------- /Core/Inc/stm32_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Core/Inc/stm32_assert.h -------------------------------------------------------------------------------- /Core/Inc/stm32f4xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Core/Inc/stm32f4xx_it.h -------------------------------------------------------------------------------- /Core/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Core/Src/main.c -------------------------------------------------------------------------------- /Core/Src/stm32f4xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Core/Src/stm32f4xx_it.c -------------------------------------------------------------------------------- /Core/Src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Core/Src/syscalls.c -------------------------------------------------------------------------------- /Core/Src/sysmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Core/Src/sysmem.c -------------------------------------------------------------------------------- /Core/Src/system_stm32f4xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Core/Src/system_stm32f4xx.c -------------------------------------------------------------------------------- /Core/Startup/startup_stm32f401ccux.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Core/Startup/startup_stm32f401ccux.s -------------------------------------------------------------------------------- /Display/display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Display/display.c -------------------------------------------------------------------------------- /Display/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Display/display.h -------------------------------------------------------------------------------- /Display/fonts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Display/fonts.c -------------------------------------------------------------------------------- /Display/fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Display/fonts.h -------------------------------------------------------------------------------- /Display/ili9341.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Display/ili9341.c -------------------------------------------------------------------------------- /Display/ili9341.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Display/ili9341.h -------------------------------------------------------------------------------- /Display/st7789.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Display/st7789.c -------------------------------------------------------------------------------- /Display/st7789.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Display/st7789.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xc.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Device/ST/STM32F4xx/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Drivers/CMSIS/Device/ST/STM32F4xx/LICENSE.txt -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Drivers/CMSIS/Include/cmsis_armcc.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/cmsis_armclang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Drivers/CMSIS/Include/cmsis_armclang.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/cmsis_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Drivers/CMSIS/Include/cmsis_compiler.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Drivers/CMSIS/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/cmsis_iccarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Drivers/CMSIS/Include/cmsis_iccarm.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/cmsis_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Drivers/CMSIS/Include/cmsis_version.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_armv8mbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Drivers/CMSIS/Include/core_armv8mbl.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_armv8mml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Drivers/CMSIS/Include/core_armv8mml.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Drivers/CMSIS/Include/core_cm0.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm0plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Drivers/CMSIS/Include/core_cm0plus.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Drivers/CMSIS/Include/core_cm1.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm23.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Drivers/CMSIS/Include/core_cm23.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Drivers/CMSIS/Include/core_cm3.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm33.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Drivers/CMSIS/Include/core_cm33.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Drivers/CMSIS/Include/core_cm4.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Drivers/CMSIS/Include/core_cm7.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Drivers/CMSIS/Include/core_sc000.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/core_sc300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Drivers/CMSIS/Include/core_sc300.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/mpu_armv7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Drivers/CMSIS/Include/mpu_armv7.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/mpu_armv8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Drivers/CMSIS/Include/mpu_armv8.h -------------------------------------------------------------------------------- /Drivers/CMSIS/Include/tz_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Drivers/CMSIS/Include/tz_context.h -------------------------------------------------------------------------------- /Drivers/CMSIS/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Drivers/CMSIS/LICENSE.txt -------------------------------------------------------------------------------- /Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_bus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_bus.h -------------------------------------------------------------------------------- /Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_cortex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_cortex.h -------------------------------------------------------------------------------- /Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_dma.h -------------------------------------------------------------------------------- /Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_exti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_exti.h -------------------------------------------------------------------------------- /Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_gpio.h -------------------------------------------------------------------------------- /Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_pwr.h -------------------------------------------------------------------------------- /Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_rcc.h -------------------------------------------------------------------------------- /Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_spi.h -------------------------------------------------------------------------------- /Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_system.h -------------------------------------------------------------------------------- /Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_tim.h -------------------------------------------------------------------------------- /Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_utils.h -------------------------------------------------------------------------------- /Drivers/STM32F4xx_HAL_Driver/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Drivers/STM32F4xx_HAL_Driver/LICENSE.txt -------------------------------------------------------------------------------- /Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_dma.c -------------------------------------------------------------------------------- /Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_exti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_exti.c -------------------------------------------------------------------------------- /Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_gpio.c -------------------------------------------------------------------------------- /Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_rcc.c -------------------------------------------------------------------------------- /Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_spi.c -------------------------------------------------------------------------------- /Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_tim.c -------------------------------------------------------------------------------- /Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_utils.c -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/README.md -------------------------------------------------------------------------------- /Release/Core/Src/main.cyclo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/Core/Src/main.cyclo -------------------------------------------------------------------------------- /Release/Core/Src/main.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/Core/Src/main.d -------------------------------------------------------------------------------- /Release/Core/Src/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/Core/Src/main.o -------------------------------------------------------------------------------- /Release/Core/Src/main.su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/Core/Src/main.su -------------------------------------------------------------------------------- /Release/Core/Src/stm32f4xx_it.cyclo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/Core/Src/stm32f4xx_it.cyclo -------------------------------------------------------------------------------- /Release/Core/Src/stm32f4xx_it.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/Core/Src/stm32f4xx_it.d -------------------------------------------------------------------------------- /Release/Core/Src/stm32f4xx_it.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/Core/Src/stm32f4xx_it.o -------------------------------------------------------------------------------- /Release/Core/Src/stm32f4xx_it.su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/Core/Src/stm32f4xx_it.su -------------------------------------------------------------------------------- /Release/Core/Src/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/Core/Src/subdir.mk -------------------------------------------------------------------------------- /Release/Core/Src/syscalls.cyclo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/Core/Src/syscalls.cyclo -------------------------------------------------------------------------------- /Release/Core/Src/syscalls.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/Core/Src/syscalls.d -------------------------------------------------------------------------------- /Release/Core/Src/syscalls.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/Core/Src/syscalls.o -------------------------------------------------------------------------------- /Release/Core/Src/syscalls.su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/Core/Src/syscalls.su -------------------------------------------------------------------------------- /Release/Core/Src/sysmem.cyclo: -------------------------------------------------------------------------------- 1 | ../Core/Src/sysmem.c:53:7:_sbrk 3 2 | -------------------------------------------------------------------------------- /Release/Core/Src/sysmem.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/Core/Src/sysmem.d -------------------------------------------------------------------------------- /Release/Core/Src/sysmem.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/Core/Src/sysmem.o -------------------------------------------------------------------------------- /Release/Core/Src/sysmem.su: -------------------------------------------------------------------------------- 1 | ../Core/Src/sysmem.c:53:7:_sbrk 8 static 2 | -------------------------------------------------------------------------------- /Release/Core/Src/system_stm32f4xx.cyclo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/Core/Src/system_stm32f4xx.cyclo -------------------------------------------------------------------------------- /Release/Core/Src/system_stm32f4xx.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/Core/Src/system_stm32f4xx.d -------------------------------------------------------------------------------- /Release/Core/Src/system_stm32f4xx.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/Core/Src/system_stm32f4xx.o -------------------------------------------------------------------------------- /Release/Core/Src/system_stm32f4xx.su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/Core/Src/system_stm32f4xx.su -------------------------------------------------------------------------------- /Release/Core/Startup/startup_stm32f401ccux.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/Core/Startup/startup_stm32f401ccux.d -------------------------------------------------------------------------------- /Release/Core/Startup/startup_stm32f401ccux.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/Core/Startup/startup_stm32f401ccux.o -------------------------------------------------------------------------------- /Release/Core/Startup/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/Core/Startup/subdir.mk -------------------------------------------------------------------------------- /Release/Display/display.cyclo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/Display/display.cyclo -------------------------------------------------------------------------------- /Release/Display/display.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/Display/display.d -------------------------------------------------------------------------------- /Release/Display/display.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/Display/display.o -------------------------------------------------------------------------------- /Release/Display/display.su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/Display/display.su -------------------------------------------------------------------------------- /Release/Display/fonts.cyclo: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Release/Display/fonts.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/Display/fonts.d -------------------------------------------------------------------------------- /Release/Display/fonts.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/Display/fonts.o -------------------------------------------------------------------------------- /Release/Display/fonts.su: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Release/Display/ili9341.cyclo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/Display/ili9341.cyclo -------------------------------------------------------------------------------- /Release/Display/ili9341.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/Display/ili9341.d -------------------------------------------------------------------------------- /Release/Display/ili9341.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/Display/ili9341.o -------------------------------------------------------------------------------- /Release/Display/ili9341.su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/Display/ili9341.su -------------------------------------------------------------------------------- /Release/Display/st7789.cyclo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/Display/st7789.cyclo -------------------------------------------------------------------------------- /Release/Display/st7789.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/Display/st7789.d -------------------------------------------------------------------------------- /Release/Display/st7789.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/Display/st7789.o -------------------------------------------------------------------------------- /Release/Display/st7789.su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/Display/st7789.su -------------------------------------------------------------------------------- /Release/Display/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/Display/subdir.mk -------------------------------------------------------------------------------- /Release/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_dma.cyclo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_dma.cyclo -------------------------------------------------------------------------------- /Release/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_dma.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_dma.d -------------------------------------------------------------------------------- /Release/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_dma.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_dma.o -------------------------------------------------------------------------------- /Release/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_dma.su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_dma.su -------------------------------------------------------------------------------- /Release/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_exti.cyclo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_exti.cyclo -------------------------------------------------------------------------------- /Release/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_exti.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_exti.d -------------------------------------------------------------------------------- /Release/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_exti.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_exti.o -------------------------------------------------------------------------------- /Release/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_exti.su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_exti.su -------------------------------------------------------------------------------- /Release/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_gpio.cyclo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_gpio.cyclo -------------------------------------------------------------------------------- /Release/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_gpio.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_gpio.d -------------------------------------------------------------------------------- /Release/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_gpio.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_gpio.o -------------------------------------------------------------------------------- /Release/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_gpio.su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_gpio.su -------------------------------------------------------------------------------- /Release/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_rcc.cyclo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_rcc.cyclo -------------------------------------------------------------------------------- /Release/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_rcc.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_rcc.d -------------------------------------------------------------------------------- /Release/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_rcc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_rcc.o -------------------------------------------------------------------------------- /Release/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_rcc.su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_rcc.su -------------------------------------------------------------------------------- /Release/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_spi.cyclo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_spi.cyclo -------------------------------------------------------------------------------- /Release/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_spi.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_spi.d -------------------------------------------------------------------------------- /Release/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_spi.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_spi.o -------------------------------------------------------------------------------- /Release/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_spi.su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_spi.su -------------------------------------------------------------------------------- /Release/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_tim.cyclo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_tim.cyclo -------------------------------------------------------------------------------- /Release/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_tim.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_tim.d -------------------------------------------------------------------------------- /Release/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_tim.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_tim.o -------------------------------------------------------------------------------- /Release/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_tim.su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_tim.su -------------------------------------------------------------------------------- /Release/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_utils.cyclo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_utils.cyclo -------------------------------------------------------------------------------- /Release/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_utils.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_utils.d -------------------------------------------------------------------------------- /Release/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_utils.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_utils.o -------------------------------------------------------------------------------- /Release/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_utils.su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_utils.su -------------------------------------------------------------------------------- /Release/Drivers/STM32F4xx_HAL_Driver/Src/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/Drivers/STM32F4xx_HAL_Driver/Src/subdir.mk -------------------------------------------------------------------------------- /Release/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/makefile -------------------------------------------------------------------------------- /Release/objects.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/objects.list -------------------------------------------------------------------------------- /Release/objects.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/objects.mk -------------------------------------------------------------------------------- /Release/sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/sources.mk -------------------------------------------------------------------------------- /Release/stm32-display-spi-dma.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/stm32-display-spi-dma.bin -------------------------------------------------------------------------------- /Release/stm32-display-spi-dma.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/stm32-display-spi-dma.elf -------------------------------------------------------------------------------- /Release/stm32-display-spi-dma.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/stm32-display-spi-dma.hex -------------------------------------------------------------------------------- /Release/stm32-display-spi-dma.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/stm32-display-spi-dma.list -------------------------------------------------------------------------------- /Release/stm32-display-spi-dma.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/Release/stm32-display-spi-dma.map -------------------------------------------------------------------------------- /STM32F401CCUX_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/STM32F401CCUX_FLASH.ld -------------------------------------------------------------------------------- /stm32-display-spi-dma.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/stm32-display-spi-dma.ioc -------------------------------------------------------------------------------- /подключение дисплея к МК по SPI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadrov/stm32-display-spi-dma/HEAD/подключение дисплея к МК по SPI.png --------------------------------------------------------------------------------