├── CLK_WIZARD ├── clk_wizard_config.c └── clk_wizard_config.h ├── DELAY ├── delay.c └── delay.h ├── GPIO ├── gpiopl_config.c └── gpiopl_config.h ├── GUI ├── ui.c └── ui.h ├── IIC ├── iic_config.c └── iic_config.h ├── LCD ├── pwm_config.c ├── pwm_config.h ├── vdma_config.c ├── vdma_config.h ├── vtc_config.c └── vtc_config.h ├── README.md ├── SYS ├── sys_config.c └── sys_config.h ├── TASK_TIMER ├── tick_inc.c └── tick_inc.h ├── Xilinx.spec ├── init.c ├── init.h ├── lscript.ld ├── lv_conf.h ├── lvgl.tar └── main.c /CLK_WIZARD/clk_wizard_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxwellWjj/Zynq_LCD_LittleVGL/HEAD/CLK_WIZARD/clk_wizard_config.c -------------------------------------------------------------------------------- /CLK_WIZARD/clk_wizard_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxwellWjj/Zynq_LCD_LittleVGL/HEAD/CLK_WIZARD/clk_wizard_config.h -------------------------------------------------------------------------------- /DELAY/delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxwellWjj/Zynq_LCD_LittleVGL/HEAD/DELAY/delay.c -------------------------------------------------------------------------------- /DELAY/delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxwellWjj/Zynq_LCD_LittleVGL/HEAD/DELAY/delay.h -------------------------------------------------------------------------------- /GPIO/gpiopl_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxwellWjj/Zynq_LCD_LittleVGL/HEAD/GPIO/gpiopl_config.c -------------------------------------------------------------------------------- /GPIO/gpiopl_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxwellWjj/Zynq_LCD_LittleVGL/HEAD/GPIO/gpiopl_config.h -------------------------------------------------------------------------------- /GUI/ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxwellWjj/Zynq_LCD_LittleVGL/HEAD/GUI/ui.c -------------------------------------------------------------------------------- /GUI/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxwellWjj/Zynq_LCD_LittleVGL/HEAD/GUI/ui.h -------------------------------------------------------------------------------- /IIC/iic_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxwellWjj/Zynq_LCD_LittleVGL/HEAD/IIC/iic_config.c -------------------------------------------------------------------------------- /IIC/iic_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxwellWjj/Zynq_LCD_LittleVGL/HEAD/IIC/iic_config.h -------------------------------------------------------------------------------- /LCD/pwm_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxwellWjj/Zynq_LCD_LittleVGL/HEAD/LCD/pwm_config.c -------------------------------------------------------------------------------- /LCD/pwm_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxwellWjj/Zynq_LCD_LittleVGL/HEAD/LCD/pwm_config.h -------------------------------------------------------------------------------- /LCD/vdma_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxwellWjj/Zynq_LCD_LittleVGL/HEAD/LCD/vdma_config.c -------------------------------------------------------------------------------- /LCD/vdma_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxwellWjj/Zynq_LCD_LittleVGL/HEAD/LCD/vdma_config.h -------------------------------------------------------------------------------- /LCD/vtc_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxwellWjj/Zynq_LCD_LittleVGL/HEAD/LCD/vtc_config.c -------------------------------------------------------------------------------- /LCD/vtc_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxwellWjj/Zynq_LCD_LittleVGL/HEAD/LCD/vtc_config.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxwellWjj/Zynq_LCD_LittleVGL/HEAD/README.md -------------------------------------------------------------------------------- /SYS/sys_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxwellWjj/Zynq_LCD_LittleVGL/HEAD/SYS/sys_config.c -------------------------------------------------------------------------------- /SYS/sys_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxwellWjj/Zynq_LCD_LittleVGL/HEAD/SYS/sys_config.h -------------------------------------------------------------------------------- /TASK_TIMER/tick_inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxwellWjj/Zynq_LCD_LittleVGL/HEAD/TASK_TIMER/tick_inc.c -------------------------------------------------------------------------------- /TASK_TIMER/tick_inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxwellWjj/Zynq_LCD_LittleVGL/HEAD/TASK_TIMER/tick_inc.h -------------------------------------------------------------------------------- /Xilinx.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxwellWjj/Zynq_LCD_LittleVGL/HEAD/Xilinx.spec -------------------------------------------------------------------------------- /init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxwellWjj/Zynq_LCD_LittleVGL/HEAD/init.c -------------------------------------------------------------------------------- /init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxwellWjj/Zynq_LCD_LittleVGL/HEAD/init.h -------------------------------------------------------------------------------- /lscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxwellWjj/Zynq_LCD_LittleVGL/HEAD/lscript.ld -------------------------------------------------------------------------------- /lv_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxwellWjj/Zynq_LCD_LittleVGL/HEAD/lv_conf.h -------------------------------------------------------------------------------- /lvgl.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxwellWjj/Zynq_LCD_LittleVGL/HEAD/lvgl.tar -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxwellWjj/Zynq_LCD_LittleVGL/HEAD/main.c --------------------------------------------------------------------------------