【E1169】STM32F407移植玲珑GUI(简单易用)

2021-09-13 19:31:13      索炜达电子      1057     

项目编号:E1169

文件大小:6M

源码说明:带中文注释

开发环境:C编译器

简要概述:

STM32F407移植玲珑GUI(简单易用)

目录│文件列表:

 └ 玲珑GUI

    └ 玲珑GUI

       │ keilkilll.bat

       │ readme.txt

       ├ CORE

       │  │ core_cm4.h

       │  │ core_cm4_simd.h

       │  └ startup_stm32f40_41xxx.s

       ├ FWLIB

       │  ├ inc

       │  │  │ misc.h

       │  │  │ stm32f4xx_adc.h

       │  │  │ stm32f4xx_can.h

       │  │  │ stm32f4xx_crc.h

       │  │  │ stm32f4xx_cryp.h

       │  │  │ stm32f4xx_dac.h

       │  │  │ stm32f4xx_dbgmcu.h

       │  │  │ stm32f4xx_dcmi.h

       │  │  │ stm32f4xx_dma.h

       │  │  │ stm32f4xx_dma2d.h

       │  │  │ stm32f4xx_exti.h

       │  │  │ stm32f4xx_flash.h

       │  │  │ stm32f4xx_flash_ramfunc.h

       │  │  │ stm32f4xx_fmc.h

       │  │  │ stm32f4xx_fsmc.h

       │  │  │ stm32f4xx_gpio.h

       │  │  │ stm32f4xx_hash.h

       │  │  │ stm32f4xx_i2c.h

       │  │  │ stm32f4xx_iwdg.h

       │  │  │ stm32f4xx_ltdc.h

       │  │  │ stm32f4xx_pwr.h

       │  │  │ stm32f4xx_rcc.h

       │  │  │ stm32f4xx_rng.h

       │  │  │ stm32f4xx_rtc.h

       │  │  │ stm32f4xx_sai.h

       │  │  │ stm32f4xx_sdio.h

       │  │  │ stm32f4xx_spi.h

       │  │  │ stm32f4xx_syscfg.h

       │  │  │ stm32f4xx_tim.h

       │  │  │ stm32f4xx_usart.h

       │  │  └ stm32f4xx_wwdg.h

       │  └ src

       │     │ misc.c

       │     │ stm32f4xx_adc.c

       │     │ stm32f4xx_can.c

       │     │ stm32f4xx_crc.c

       │     │ stm32f4xx_cryp.c

       │     │ stm32f4xx_cryp_aes.c

       │     │ stm32f4xx_cryp_des.c

       │     │ stm32f4xx_cryp_tdes.c

       │     │ stm32f4xx_dac.c

       │     │ stm32f4xx_dbgmcu.c

       │     │ stm32f4xx_dcmi.c

       │     │ stm32f4xx_dma.c

       │     │ stm32f4xx_dma2d.c

       │     │ stm32f4xx_exti.c

       │     │ stm32f4xx_flash.c

       │     │ stm32f4xx_flash_ramfunc.c

       │     │ stm32f4xx_fmc.c

       │     │ stm32f4xx_fsmc.c

       │     │ stm32f4xx_gpio.c

       │     │ stm32f4xx_hash.c

       │     │ stm32f4xx_hash_md5.c

       │     │ stm32f4xx_hash_sha1.c

       │     │ stm32f4xx_i2c.c

       │     │ stm32f4xx_iwdg.c

       │     │ stm32f4xx_ltdc.c

       │     │ stm32f4xx_pwr.c

       │     │ stm32f4xx_rcc.c

       │     │ stm32f4xx_rng.c

       │     │ stm32f4xx_rtc.c

       │     │ stm32f4xx_sai.c

       │     │ stm32f4xx_sdio.c

       │     │ stm32f4xx_spi.c

       │     │ stm32f4xx_syscfg.c

       │     │ stm32f4xx_tim.c

       │     │ stm32f4xx_usart.c

       │     └ stm32f4xx_wwdg.c

       ├ HARDWARE

       │  ├ 24CXX

       │  │  │ 24cxx.c

       │  │  └ 24cxx.h

       │  ├ IIC

       │  │  │ myiic.c

       │  │  └ myiic.h

       │  ├ LCD

       │  │  │ FONT.H

       │  │  │ lcd.c

       │  │  └ lcd.h

       │  ├ LED

       │  │  │ led.c

       │  │  └ led.h

       │  ├ TIMER

       │  │  │ timer.c

       │  │  └ timer.h

       │  └ TOUCH

       │     │ ctiic.c

       │     │ ctiic.h

       │     │ gt9147.c

       │     │ gt9147.h

       │     │ ott2001a.c

       │     │ ott2001a.h

       │     │ touch.c

       │     └ touch.h

       ├ LingLongGUI

       │  │ .gitignore

       │  │ LICENSE

       │  │ LL_Config_S028H32240_01.c

       │  │ LL_Config_S028H32240_01.h

       │  │ LL_Config_S043H480272_05.c

       │  │ LL_Config_S043H480272_05.h

       │  │ LL_Config_SDL.c

       │  │ LL_Config_SDL.h

       │  │ LL_Config_template.c

       │  │ LL_Config_template.h

       │  │ README.en.md

       │  │ README.md

       │  ├ Gui

       │  │  │ LL_Background.c

       │  │  │ LL_Background.h

       │  │  │ LL_Button.c

       │  │  │ LL_Button.h

       │  │  │ LL_ButtonEx.c

       │  │  │ LL_ButtonEx.h

       │  │  │ LL_CheckBox.c

       │  │  │ LL_CheckBox.h

       │  │  │ LL_DateTime.c

       │  │  │ LL_DateTime.h

       │  │  │ LL_Gauge.c

       │  │  │ LL_Gauge.h

       │  │  │ LL_General.c

       │  │  │ LL_General.h

       │  │  │ LL_Graph.c

       │  │  │ LL_Graph.h

       │  │  │ LL_Handler.c

       │  │  │ LL_Handler.h

       │  │  │ LL_IconSlider.c

       │  │  │ LL_IconSlider.h

       │  │  │ LL_Image.c

       │  │  │ LL_Image.h

       │  │  │ LL_Keyboard.c

       │  │  │ LL_Keyboard.h

       │  │  │ LL_LineEdit.c

       │  │  │ LL_LineEdit.h

       │  │  │ LL_ProgressBar.c

       │  │  │ LL_ProgressBar.h

       │  │  │ LL_QRCode.c

       │  │  │ LL_QRCode.h

       │  │  │ LL_Slider.c

       │  │  │ LL_Slider.h

       │  │  │ LL_Text.c

       │  │  │ LL_Text.h

       │  │  │ LL_Window.c

       │  │  └ LL_Window.h

       │  └ Misc

       │     │ asciiDefine.h

       │     │ freeRtosHeap4.c

       │     │ freeRtosHeap4.h

       │     │ LL_Characters.c

       │     │ LL_Characters.h

       │     │ LL_Font.c

       │     │ LL_Font.h

       │     │ LL_Lattice.c

       │     │ LL_Lattice.h

       │     │ LL_Linked_List.c

       │     │ LL_Linked_List.h

       │     │ LL_Port.c

       │     │ LL_Port.h

       │     │ LL_Queue.c

       │     │ LL_Queue.h

       │     │ LL_String.c

       │     │ LL_String.h

       │     │ LL_Timer.c

       │     │ LL_Timer.h

       │     │ qrcodegen.c

       │     └ qrcodegen.h

       ├ LingLongGUI_Config

       │  │ LL_Config.c

       │  └ LL_Config.h

       ├ LingLongGUI_User

       │  │ image.bin

       │  │ LL_User.c

       │  │ LL_User.h

       │  │ ui_002.c

       │  │ ui_002.h

       │  │ ui_002Logic.c

       │  │ ui_002Logic.h

       │  └ Fonts

       │     │ SimSun_9.c

       │     └ SimSun_9.h

       ├ OBJ

       │  │ 24cxx.crf

       │  │ 24cxx.d

       │  │ 24cxx.o

       │  │ 24cxx.__i

       │  │ delay.crf

       │  │ delay.d

       │  │ delay.o

       │  │ delay.__i

       │  │ LCD.axf

       │  │ LCD.build_log.htm

       │  │ lcd.crf

       │  │ lcd.d

       │  │ LCD.hex

       │  │ LCD.htm

       │  │ LCD.lnp

       │  │ LCD.map

       │  │ lcd.o

       │  │ LCD.sct

       │  │ lcd.__i

       │  │ LCD_LCD.dep

       │  │ led.crf

       │  │ led.d

       │  │ led.o

       │  │ led.__i

       │  │ ll_background.crf

       │  │ ll_background.d

       │  │ ll_background.o

       │  │ ll_background.__i

       │  │ ll_button.crf

       │  │ ll_button.d

       │  │ ll_button.o

       │  │ ll_button.__i

       │  │ ll_buttonex.crf

       │  │ ll_buttonex.d

       │  │ ll_buttonex.o

       │  │ ll_buttonex.__i

       │  │ ll_characters.crf

       │  │ ll_characters.d

       │  │ ll_characters.o

       │  │ ll_characters.__i

       │  │ ll_checkbox.crf

       │  │ ll_checkbox.d

       │  │ ll_checkbox.o

       │  │ ll_checkbox.__i

       │  │ ll_config.crf

       │  │ ll_config.d

       │  │ ll_config.o

       │  │ ll_config.__i

       │  │ ll_datetime.crf

       │  │ ll_datetime.d

       │  │ ll_datetime.o

       │  │ ll_datetime.__i

       │  │ ll_font.crf

       │  │ ll_font.d

       │  │ ll_font.o

       │  │ ll_font.__i

       │  │ ll_gauge.crf

       │  │ ll_gauge.d

TAGSTM32F407
  • 17 次
  • 1 分