嵌入式学习---Linux中的画面显示

framebuffer:帧缓冲、帧缓存

Linux内核为显示提供的一套应用程序接口(驱动内核支持)

**分辨率:**像素点的总和

像素点:

显示屏:800*600(横向有800个像素点,纵向有600个像素点)

显卡(显存(保存像素点的值))

RGB颜色模式:(8个bitR,8个bitG,8个bitB)

常用的有两种:

1.RGB888(PC,4412)

2.RGB565(S3C2440)

原理:

通过内存映射技术,向显存空间写入RGB值

操作步骤:

1.打开显示设备(/dev/fb0)

2.获取显示设备相关参数(分辨率、位深度)

3.建立内存映射

4.写入RGB颜色值

5.解除映射

6.关闭显示设备

代码实现:

cs 复制代码
#include<stdio.h>
#include "framebuffer.h"
#include <linux/fb.h>
#include <stdlib.h>
#include <sys/mman.h>
#include <sys/ioctl.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/types.h>
#include <sys/stat.h>
#include<math.h>
void *pmem;
struct fb_var_screeninfo vinf;

int init_fb(char *devname)
{
    int fd = open(devname,O_RDWR);
    if(-1 == fd)
    {
        perror("fail open ");
        return -1;
    }

    int ret = ioctl(fd,FBIOGET_VSCREENINFO,&vinf);
    if(-1 == ret)
    {
        perror("fail ioctl");
        return -1;
    }
    printf("xres = %d ,yres = %d\n",vinf.xres,vinf.yres);
    printf("xres_virtual = %d, yres_virtual = %d\n",vinf.xres_virtual,vinf.yres_virtual);
    printf("bits_per_pixel : %d\n",vinf.bits_per_pixel);

    size_t len = vinf.xres_virtual *vinf.yres_virtual *vinf.bits_per_pixel/8;
    pmem = mmap(NULL,len,PROT_READ|PROT_WRITE,MAP_SHARED,fd,0);
    if((void *)-1 == pmem)
    {
        perror("fail mmap");
        return -1;
    }

    return fd;

}

void draw_point(int x,int y,unsigned int col)
{
    if(x >= vinf.xres || y >= vinf.yres)
    {
        return;
    }
    if(vinf.bits_per_pixel == RGB888_FMT)
    {
        unsigned int *p = pmem;
        *(p + y* vinf.xres_virtual + x)= col;
    }
    else if(vinf.bits_per_pixel == RGB565_FMT)
    {
        unsigned short *p = pmem;
        *(p + y *vinf.xres_virtual + x)= col;
    }
    return;
}
int main(int argc,char*argv[])
{
    int fd_fb = init_fb("/dev/fb0");
    if(fd_fb == -1)
    {
        return -1;
    }
    draw_point(400,300,0x00ff0000);
    uninit_fb(fd_fb);

    return 0;
}
相关推荐
fanged2 分钟前
Agent的Skills(TODO)
学习
是隼人15 分钟前
buuctf-pwn picoctf_2018_shellcode(ret2shellcode)题解(学习过程持续更新)
c语言·学习·安全·pwn入门·ctf入门
m4Rk_38 分钟前
【论文阅读】Agent 记忆机制(69):STITCH——用上下文意图解决“语义相关但情境错误”的记忆检索
论文阅读·人工智能·学习·开源·github
2601_949950631 小时前
个人在线刷题的工具
学习·考研·小程序·刷题·小程序推荐
一尘之中1 小时前
深入解析面向服务的架构(SOA):从特性到实施
学习·架构·ai写作
秦哈哈2 小时前
【Hello Agents】学习笔记(二)
笔记·学习·microsoft
sunshine22 girl3 小时前
Java学习三 高级语法3, 方法
java·学习
传奇开心果编程3 小时前
【dioxus0.7基础语法学与练】第8课:RSX 宏 — Dioxus 声明式 UI 语法
开发语言·学习·rust
一条破秋裤4 小时前
24_MPU6050结构参数与寄存器基础
stm32·嵌入式硬件·学习
诗词在线5 小时前
江上渔者|原文+注释+译文+赏析+考点
学习