嵌入式学习---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;
}
相关推荐
技术小齐8 分钟前
网络运维学习笔记 016网工初级(HCIA-Datacom与CCNA-EI)PPP点对点协议和PPPoE以太网上的点对点协议(此处只讲华为)
运维·网络·学习
竹言笙熙17 分钟前
代码审计初探
学习·web安全
日记成书18 分钟前
物联网智能项目
物联网·学习
虾球xz1 小时前
游戏引擎学习第118天
学习·游戏引擎
gz927cool1 小时前
大模型做导师之开源项目学习(lightRAG)
学习·开源·mfc
世事如云有卷舒3 小时前
FreeRTOS学习笔记
笔记·学习
靡不有初1113 小时前
CCF-CSP第18次认证第一题——报数【两个与string相关的函数的使用】
c++·学习·ccfcsp
gu204 小时前
c#编程:学习Linq,重几个简单示例开始
开发语言·学习·c#·linq
小蒜学长5 小时前
医疗报销系统的设计与实现(代码+数据库+LW)
数据库·spring boot·学习·oracle·课程设计
羊小猪~~6 小时前
MYSQL学习笔记(九):MYSQL表的“增删改查”
数据库·笔记·后端·sql·学习·mysql·考研