1 Star 0 Fork 1

AX0424/stm32f429_graphics

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
lcd.h 426 Bytes
一键复制 编辑 原始数据 按行查看 历史
Peter Sovietov 提交于 11年前 . Hello, world
#ifndef LCD_H
#define LCD_H
#define VRAM ((uint16_t*) 0xd0000000)
#define LCD_BUFFER_MASK 0x1ffff
#define LCD_WIDTH 480
#define LCD_HEIGHT 272
#define VSYNC 10
#define HSYNC 10
#define VBP 12
#define VFP 4
#define HBP 43
#define HFP 8
#define RGB(r, g, b) ((((r) >> 3) << 11) | (((g) >> 2) << 5) | ((b) >> 3))
extern uint16_t* LCD_buffer;
void begin_draw(void);
void end_draw(void);
void configure_lcd(void);
#endif
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/arthurxu424/stm32f429_graphics.git
git@gitee.com:arthurxu424/stm32f429_graphics.git
arthurxu424
stm32f429_graphics
stm32f429_graphics
master

搜索帮助