├── .gitignore ├── F4_disco_example ├── .cproject ├── .project ├── 16x2_lcd Run.cfg ├── 16x2_lcd.ioc ├── 32F411EDISCOVERY.xml ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F4xx │ │ │ │ └── Include │ │ │ │ ├── stm32f411xe.h │ │ │ │ ├── stm32f4xx.h │ │ │ │ └── system_stm32f4xx.h │ │ └── Include │ │ │ ├── arm_common_tables.h │ │ │ ├── arm_const_structs.h │ │ │ ├── arm_math.h │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armcc_V6.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm0plus.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_cmFunc.h │ │ │ ├── core_cmInstr.h │ │ │ ├── core_cmSimd.h │ │ │ ├── core_sc000.h │ │ │ └── core_sc300.h │ └── STM32F4xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f4xx_hal.h │ │ ├── stm32f4xx_hal_cortex.h │ │ ├── stm32f4xx_hal_def.h │ │ ├── stm32f4xx_hal_dma.h │ │ ├── stm32f4xx_hal_dma_ex.h │ │ ├── stm32f4xx_hal_flash.h │ │ ├── stm32f4xx_hal_flash_ex.h │ │ ├── stm32f4xx_hal_flash_ramfunc.h │ │ ├── stm32f4xx_hal_gpio.h │ │ ├── stm32f4xx_hal_gpio_ex.h │ │ ├── stm32f4xx_hal_pwr.h │ │ ├── stm32f4xx_hal_pwr_ex.h │ │ ├── stm32f4xx_hal_rcc.h │ │ ├── stm32f4xx_hal_rcc_ex.h │ │ ├── stm32f4xx_hal_tim.h │ │ └── stm32f4xx_hal_tim_ex.h │ │ └── Src │ │ ├── stm32f4xx_hal.c │ │ ├── stm32f4xx_hal_cortex.c │ │ ├── stm32f4xx_hal_dma.c │ │ ├── stm32f4xx_hal_dma_ex.c │ │ ├── stm32f4xx_hal_flash.c │ │ ├── stm32f4xx_hal_flash_ex.c │ │ ├── stm32f4xx_hal_flash_ramfunc.c │ │ ├── stm32f4xx_hal_gpio.c │ │ ├── stm32f4xx_hal_pwr.c │ │ ├── stm32f4xx_hal_pwr_ex.c │ │ ├── stm32f4xx_hal_rcc.c │ │ ├── stm32f4xx_hal_rcc_ex.c │ │ ├── stm32f4xx_hal_tim.c │ │ └── stm32f4xx_hal_tim_ex.c ├── Inc │ ├── lcd.h │ ├── main.h │ ├── stm32f4xx_hal_conf.h │ └── stm32f4xx_it.h ├── STM32F411VETx_FLASH.ld ├── Src │ ├── lcd.c │ ├── main.c │ ├── stm32f4xx_hal_msp.c │ ├── stm32f4xx_it.c │ └── system_stm32f4xx.c └── startup │ └── startup_stm32f411xe.s ├── LICENSE.md ├── lcd_lib ├── lcd.c └── lcd.h └── readme.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/.gitignore -------------------------------------------------------------------------------- /F4_disco_example/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/F4_disco_example/.cproject -------------------------------------------------------------------------------- /F4_disco_example/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/F4_disco_example/.project -------------------------------------------------------------------------------- /F4_disco_example/16x2_lcd Run.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/F4_disco_example/16x2_lcd Run.cfg -------------------------------------------------------------------------------- /F4_disco_example/16x2_lcd.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/F4_disco_example/16x2_lcd.ioc -------------------------------------------------------------------------------- /F4_disco_example/32F411EDISCOVERY.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/F4_disco_example/32F411EDISCOVERY.xml -------------------------------------------------------------------------------- /F4_disco_example/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f411xe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/F4_disco_example/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f411xe.h -------------------------------------------------------------------------------- /F4_disco_example/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/F4_disco_example/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h -------------------------------------------------------------------------------- /F4_disco_example/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/F4_disco_example/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h -------------------------------------------------------------------------------- /F4_disco_example/Drivers/CMSIS/Include/arm_common_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/F4_disco_example/Drivers/CMSIS/Include/arm_common_tables.h -------------------------------------------------------------------------------- /F4_disco_example/Drivers/CMSIS/Include/arm_const_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/F4_disco_example/Drivers/CMSIS/Include/arm_const_structs.h -------------------------------------------------------------------------------- /F4_disco_example/Drivers/CMSIS/Include/arm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/F4_disco_example/Drivers/CMSIS/Include/arm_math.h -------------------------------------------------------------------------------- /F4_disco_example/Drivers/CMSIS/Include/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/F4_disco_example/Drivers/CMSIS/Include/cmsis_armcc.h -------------------------------------------------------------------------------- /F4_disco_example/Drivers/CMSIS/Include/cmsis_armcc_V6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/F4_disco_example/Drivers/CMSIS/Include/cmsis_armcc_V6.h -------------------------------------------------------------------------------- /F4_disco_example/Drivers/CMSIS/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/F4_disco_example/Drivers/CMSIS/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /F4_disco_example/Drivers/CMSIS/Include/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/F4_disco_example/Drivers/CMSIS/Include/core_cm0.h -------------------------------------------------------------------------------- /F4_disco_example/Drivers/CMSIS/Include/core_cm0plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/F4_disco_example/Drivers/CMSIS/Include/core_cm0plus.h -------------------------------------------------------------------------------- /F4_disco_example/Drivers/CMSIS/Include/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/F4_disco_example/Drivers/CMSIS/Include/core_cm3.h -------------------------------------------------------------------------------- /F4_disco_example/Drivers/CMSIS/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/F4_disco_example/Drivers/CMSIS/Include/core_cm4.h -------------------------------------------------------------------------------- /F4_disco_example/Drivers/CMSIS/Include/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/F4_disco_example/Drivers/CMSIS/Include/core_cm7.h -------------------------------------------------------------------------------- /F4_disco_example/Drivers/CMSIS/Include/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/F4_disco_example/Drivers/CMSIS/Include/core_cmFunc.h -------------------------------------------------------------------------------- /F4_disco_example/Drivers/CMSIS/Include/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/F4_disco_example/Drivers/CMSIS/Include/core_cmInstr.h -------------------------------------------------------------------------------- /F4_disco_example/Drivers/CMSIS/Include/core_cmSimd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/F4_disco_example/Drivers/CMSIS/Include/core_cmSimd.h -------------------------------------------------------------------------------- /F4_disco_example/Drivers/CMSIS/Include/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/F4_disco_example/Drivers/CMSIS/Include/core_sc000.h -------------------------------------------------------------------------------- /F4_disco_example/Drivers/CMSIS/Include/core_sc300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/F4_disco_example/Drivers/CMSIS/Include/core_sc300.h -------------------------------------------------------------------------------- /F4_disco_example/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/F4_disco_example/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h -------------------------------------------------------------------------------- /F4_disco_example/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/F4_disco_example/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h -------------------------------------------------------------------------------- /F4_disco_example/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/F4_disco_example/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h -------------------------------------------------------------------------------- /F4_disco_example/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/F4_disco_example/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h -------------------------------------------------------------------------------- /F4_disco_example/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/F4_disco_example/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h -------------------------------------------------------------------------------- /F4_disco_example/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/F4_disco_example/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h -------------------------------------------------------------------------------- /F4_disco_example/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/F4_disco_example/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h -------------------------------------------------------------------------------- /F4_disco_example/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/F4_disco_example/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h -------------------------------------------------------------------------------- /F4_disco_example/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/F4_disco_example/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h -------------------------------------------------------------------------------- /F4_disco_example/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/F4_disco_example/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h -------------------------------------------------------------------------------- /F4_disco_example/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/F4_disco_example/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h -------------------------------------------------------------------------------- /F4_disco_example/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/F4_disco_example/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h -------------------------------------------------------------------------------- /F4_disco_example/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/F4_disco_example/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h -------------------------------------------------------------------------------- /F4_disco_example/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/F4_disco_example/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h -------------------------------------------------------------------------------- /F4_disco_example/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/F4_disco_example/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h -------------------------------------------------------------------------------- /F4_disco_example/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/F4_disco_example/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h -------------------------------------------------------------------------------- /F4_disco_example/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/F4_disco_example/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h -------------------------------------------------------------------------------- /F4_disco_example/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/F4_disco_example/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c -------------------------------------------------------------------------------- /F4_disco_example/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/F4_disco_example/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c -------------------------------------------------------------------------------- /F4_disco_example/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/F4_disco_example/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c -------------------------------------------------------------------------------- /F4_disco_example/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/F4_disco_example/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c -------------------------------------------------------------------------------- /F4_disco_example/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/F4_disco_example/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c -------------------------------------------------------------------------------- /F4_disco_example/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/F4_disco_example/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c -------------------------------------------------------------------------------- /F4_disco_example/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/F4_disco_example/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c -------------------------------------------------------------------------------- /F4_disco_example/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/F4_disco_example/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c -------------------------------------------------------------------------------- /F4_disco_example/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/F4_disco_example/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c -------------------------------------------------------------------------------- /F4_disco_example/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/F4_disco_example/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c -------------------------------------------------------------------------------- /F4_disco_example/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/F4_disco_example/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c -------------------------------------------------------------------------------- /F4_disco_example/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/F4_disco_example/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c -------------------------------------------------------------------------------- /F4_disco_example/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/F4_disco_example/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c -------------------------------------------------------------------------------- /F4_disco_example/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/F4_disco_example/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c -------------------------------------------------------------------------------- /F4_disco_example/Inc/lcd.h: -------------------------------------------------------------------------------- 1 | ../../lcd_lib/lcd.h -------------------------------------------------------------------------------- /F4_disco_example/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/F4_disco_example/Inc/main.h -------------------------------------------------------------------------------- /F4_disco_example/Inc/stm32f4xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/F4_disco_example/Inc/stm32f4xx_hal_conf.h -------------------------------------------------------------------------------- /F4_disco_example/Inc/stm32f4xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/F4_disco_example/Inc/stm32f4xx_it.h -------------------------------------------------------------------------------- /F4_disco_example/STM32F411VETx_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/F4_disco_example/STM32F411VETx_FLASH.ld -------------------------------------------------------------------------------- /F4_disco_example/Src/lcd.c: -------------------------------------------------------------------------------- 1 | ../../lcd_lib/lcd.c -------------------------------------------------------------------------------- /F4_disco_example/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/F4_disco_example/Src/main.c -------------------------------------------------------------------------------- /F4_disco_example/Src/stm32f4xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/F4_disco_example/Src/stm32f4xx_hal_msp.c -------------------------------------------------------------------------------- /F4_disco_example/Src/stm32f4xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/F4_disco_example/Src/stm32f4xx_it.c -------------------------------------------------------------------------------- /F4_disco_example/Src/system_stm32f4xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/F4_disco_example/Src/system_stm32f4xx.c -------------------------------------------------------------------------------- /F4_disco_example/startup/startup_stm32f411xe.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/F4_disco_example/startup/startup_stm32f411xe.s -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/LICENSE.md -------------------------------------------------------------------------------- /lcd_lib/lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/lcd_lib/lcd.c -------------------------------------------------------------------------------- /lcd_lib/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/lcd_lib/lcd.h -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4ilo/HD44780-Stm32HAL/HEAD/readme.md --------------------------------------------------------------------------------