嵌入式学习---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.关闭显示设备

代码实现:

#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;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值