当前位置:   article > 正文

Imx-6ull应用项目——基于双向链表的显示相册_imx6ull项目

imx6ull项目

        花了两天时间做了这个小项目,原因是平时很少用到数据结构,写这个小项目的目的是用一下“双向链表”,可能由于粤嵌培训的原因大家的这个项目都是基于6818开发板的,但是两个开发板还是有很大的区别,所以今天我用6ULL的开发板去做一下这个项目,代码量也到达了500多行的代码, 我自己在写过程中也移植了大量的代码,所以没必要反复去敲代码,会用就行,当然这些移植的代码是我以前写过的,移植拿来用了一下。

项目用到的技术栈: 数据结构“双向链表”,多进程并发,linuxC编程,交叉编译,文件I/O,触摸屏移植等

项目链接:(开发板一样的话可以直接用)

https://pan.baidu.com/s/10tNmc4xT7IIXy5ncC8i9Pw?pwd=43yx提取码:43yx --来自百度网盘超级会员V1的分享 

一.项目演示:

(放不了视频只能放个图了,可以滑动切换显示图片的,双向滑动进行双向的显示。)

        

 二:项目流程:

第一步:lcd显示图片,并且获取图像文件信息

第二步:获取触摸屏坐标

第三步:双向链表移植运用

其实就这么简单的几步而已,但是里面还是有一些其他问题在里面的,接下来一步一步的叙述下去。

第一步:lcd显示图片,并且获取图像文件信息:

①、首先打开/dev/fb0 设备文件

②、使用 ioctl()函数获取到当前显示设备的参数信息,譬如屏幕的分辨率大小、像素格式,根据屏幕参数计算显示缓冲区的大小

        获取到 LCD 屏幕的参数信息,譬如 LCD 的 X 轴分辨率、Y 轴分辨率以及像素格式等信息,通过这些参数计算出 LCD 显示缓冲区的大小

用法:

        FBIOGET_VSCREENINFO:表示获取 FrameBuffer 设备的可变参数信息,可变参数信息使用 structfb_var_screeninfo 结构体来描述:

  1. struct fb_var_screeninfo fb_var;
  2. ioctl(fd, FBIOGET_VSCREENINFO, &fb_var);

         FBIOPUT_VSCREENINFO :表示设置 FrameBuffer 设备的可变参数信息

  1. struct fb_var_screeninfo fb_var = {0};
  2. /* 对 fb_var 进行数据填充 */
  3. ......
  4. ......
  5. /* 设置可变参数信息 */
  6. ioctl(fd, FBIOPUT_VSCREENINFO, &fb_var);

        FBIOGET_FSCREENINFO :表示获取 FrameBuffer 设备的固定参数信息,既然是固定参数,那就意味着应用程序不可修改。

  1. struct fb_fix_screeninfo fb_fix;
  2. ioctl(fd, FBIOGET_FSCREENINFO, &fb_fix);

注意:

        上 面 所 提 到 的 三 个 宏 定 义 FBIOGET_VSCREENINFO 、 FBIOPUT_VSCREENINFO 、FBIOGET_FSCREENINFO 以及 2 个数据结构 struct fb_var_screeninfo 和 struct fb_fix_screeninfo 都定义在 <linux/fd.h>头文件中

③、通过存储映射 I/O 方式将屏幕的显示缓冲区映射到用户空间(mmap)过 mmap()将显示器的显示缓冲区(显存)映射到进程的地址空间中,这样应用程序便可直接对显示缓冲区进行读写操作

        为什么这里需要使用存储映射 I/O 这种方式呢?

        其实使用普通的 I/O 方式(譬如直接 read、write)也是可以的,只是,当数据量比较大时,普通 I/O 方式效率较低,在这种情况下,数据量是比较庞大的,使用普通 I/O 方式必然导致效率低下,所以才会采用存储映射I/O 方式。

④、映射成功后就可以直接读写屏幕的显示缓冲区,进行绘图或图片显示等操作了

⑤、完成显示后,调用 munmap()取消映射、并调用 close()关闭设备文件

这就是LCD显示一张图片的全部原理,这里需要注意:

显示图片格式这里非常有讲究的:需要显示像素800*480,位置深度是16位, RGB565 格式的  BMP 图像格式,这里错一点显示出来都不对!!!!

如何设置这样的图片修改格式:

        在 Windows 下我们转换得到的 BMP 位图通常是 24 位色的 RGB888 格式图像,所以我们找一张图片,图片格式无所谓,只要Photoshop软件能打开即可;确定图片之后,我们启动Photoshop软件,并且使用 Photoshop 软件打开这张图片,打开之后点击菜单栏中的文件--->存储为,然后选择自己需要的格式图片(像素800*480,位置深度是16位, RGB565 格式的  BMP 图像格式

接下来我们来看显示一张图片,并获取图像信息的代码:

  1. char str[100]={0};
  2. /**** 静态全局变量 ****/
  3. int width=0; //LCD X 分辨率
  4. int height=0; //LCD Y 分辨率
  5. unsigned short *screen_base = NULL; //映射后的显存基地址
  6. unsigned long line_length=0; //LCD 一行的长度(字节为单位)
  7. unsigned short *screen_base_flag = NULL; //映射后的显存基地址Flag
  8. void print_bothway_list(struct List *list);
  9. //功能描述: 在LCD上显示指定的BMP图片
  10. static int show_bmp_image(char * str)
  11. {
  12. bmp_file_header file_h;
  13. bmp_info_header info_h;
  14. unsigned short *line_buf = NULL; //行缓冲区
  15. unsigned long line_bytes; //BMP图像一行的字节的大小
  16. unsigned int min_h, min_bytes;
  17. int fd = -1;
  18. int j;
  19. /* 打开文件 */
  20. if (0 > (fd = open(str, O_RDONLY))) {
  21. perror("open error");
  22. return -1;
  23. }
  24. /* 读取BMP文件头 */
  25. if (sizeof(bmp_file_header) !=
  26. read(fd, &file_h, sizeof(bmp_file_header))) {
  27. perror("read error");
  28. close(fd);
  29. return -1;
  30. }
  31. if (0 != memcmp(file_h.type, "BM", 2)) {
  32. fprintf(stderr, "it's not a BMP file\n");
  33. close(fd);
  34. return -1;
  35. }
  36. /* 读取位图信息头 */
  37. if (sizeof(bmp_info_header) !=
  38. read(fd, &info_h, sizeof(bmp_info_header))) {
  39. perror("read error2");
  40. close(fd);
  41. return -1;
  42. }
  43. /* 打印信息 */
  44. printf("文件大小: %d\n"
  45. "位图数据的偏移量: %d\n"
  46. "位图信息头大小: %d\n"
  47. "图像分辨率: %d*%d\n"
  48. "像素深度: %d\n", file_h.size, file_h.offset,
  49. info_h.size, info_h.width, info_h.height,
  50. info_h.bpp);
  51. /* 将文件读写位置移动到图像数据开始处 */
  52. if (-1 == lseek(fd,file_h.offset, SEEK_SET))
  53. {
  54. perror("lseek error");
  55. close(fd);
  56. return -1;
  57. }
  58. ;
  59. /* 申请一个buf、暂存bmp图像的一行数据 */
  60. line_bytes = info_h.width * info_h.bpp / 8;
  61. line_buf = malloc(line_bytes);
  62. if (NULL == line_buf)
  63. {
  64. fprintf(stderr, "malloc error\n");
  65. close(fd);
  66. return -1;
  67. }
  68. if (line_length > line_bytes)
  69. min_bytes = line_bytes;
  70. else
  71. min_bytes = line_length;
  72. /**** 读取图像数据显示到LCD ****/
  73. if (0 < info_h.height)
  74. {//倒向位图
  75. if (info_h.height > height)
  76. {
  77. min_h = height;
  78. lseek(fd, (info_h.height - height) * line_bytes, SEEK_CUR);
  79. screen_base += width * (height - 1); //定位到屏幕左下角位置
  80. }
  81. else
  82. {
  83. min_h = info_h.height;
  84. screen_base += width * (info_h.height - 1); //定位到....不知怎么描述 懂的人自然懂!
  85. }
  86. for (j = min_h; j > 0; screen_base -= width, j--)
  87. {
  88. read(fd, line_buf, line_bytes); //读取出图像数据
  89. memcpy(screen_base, line_buf, min_bytes);//刷入LCD显存
  90. }
  91. }
  92. else
  93. { //正向位图
  94. int temp = 0 - info_h.height; //负数转成正数
  95. if (temp > height)
  96. min_h = height;
  97. else
  98. min_h = temp;
  99. for (j = 0; j < min_h; j++, screen_base += width)
  100. {
  101. read(fd, line_buf, line_bytes);
  102. memcpy(screen_base, line_buf, min_bytes);
  103. }
  104. }
  105. // width=0; //LCD X 分辨率
  106. // height=0; //LCD Y 分辨率
  107. // short *screen_base = NULL; //映射后的显存基地址
  108. // long line_length=0; //LCD 一行的长度(字节为单位)
  109. /* 关闭文件、函数返回 */
  110. screen_base = NULL;
  111. close(fd);
  112. free(line_buf);
  113. return 0;
  114. }
  115. void bmp_init(int m_signal )
  116. {
  117. struct fb_fix_screeninfo fb_fix;
  118. struct fb_var_screeninfo fb_var;
  119. unsigned int screen_size;
  120. int fd;
  121. /* 打开 framebuffer 设备 */
  122. if (0 > (fd = open("/dev/fb0", O_RDWR))) {
  123. perror("open erro1");
  124. exit(EXIT_FAILURE);
  125. }
  126. /* 获取参数信息 */
  127. ioctl(fd, FBIOGET_VSCREENINFO, &fb_var);
  128. ioctl(fd, FBIOGET_FSCREENINFO, &fb_fix);
  129. screen_size = fb_fix.line_length * fb_var.yres;
  130. line_length = fb_fix.line_length;
  131. width = fb_var.xres;
  132. height = fb_var.yres;
  133. /* 将显示缓冲区映射到进程地址空间 */
  134. screen_base = mmap(NULL, 4*screen_size, PROT_WRITE, MAP_SHARED, fd, 0);
  135. if (MAP_FAILED == (void *)screen_base)
  136. {
  137. perror("mmap error");
  138. close(fd);
  139. exit(EXIT_FAILURE);
  140. }
  141. //serve
  142. screen_base_flag=screen_base;
  143. /* 显示 BMP 图片 */
  144. memset(screen_base, 0xFF, 4*screen_size);
  145. struct List *List_Photo=create_bothway_list();//创建链表
  146. print_bothway_list(List_Photo);
  147. // show_bmp_image(m_signal);
  148. /* 退出 */
  149. munmap(screen_base, 4*screen_size); //取消映射
  150. close(fd); //关闭文件
  151. exit(EXIT_SUCCESS); //退出进程
  152. }

第二步:获取触摸屏坐标

         tslib 提供的 API 接口来编写触摸屏应用程序,使用 tslib 库函数需要在我们的应用
程序中包含 tslib 的头文件 tslib.h,使用 tslib 编程其实非常简单,基本步骤如下所示:

第一步打开触摸屏设备:

  1. #include "tslib.h"
  2. struct tsdev *ts_open(const char *dev_name, int nonblock);

参数 dev_name 指定了触摸屏的设备节点;参数 nonblock 表示是否以非阻塞方式打开触摸屏设备,如果nonblock 等于 0 表示阻塞方式,如果为非 0 值则表示以非阻塞方式打开。

第二步配置触摸屏设备:

  1. #include "tslib.h"
  2. int ts_config(struct tsdev *ts)

调用 ts_config()函数进行配置

第三步读取触摸屏数据:

读取触摸屏数据使用 ts_read()或 ts_read_mt()函数,区别在于 ts_read 用于读取单点触摸数据,而
ts_read_mt 则用于读取多点触摸数据:

  1. #include "tslib.h"
  2. int ts_read(struct tsdev *ts, struct ts_sample *samp, int nr)
  3. int ts_read_mt(struct tsdev *ts, struct ts_sample_mt **samp, int max_slots, int nr)

参数 ts 指向一个触摸屏设备句柄,参数 nr 表示对一个触摸点的采样数,设置为 1 即可!

ts_read_mt()函数有一个 max_slots 参数,表示触摸屏支持的最大触摸点数,应用程序可以通过调用 ioctl()函数来获取触摸屏支持的最大触摸点数以及触摸屏坐标的最大分辨率等信息
ts_read()函数的 samp 参数是一个 struct ts_sample *类型的指针,指向一个 struct ts_sample 对象,structts_sample 数据结构描述了触摸点的信息;调用 ts_read()函数获取到的数据会存放在 samp 指针所指向的内存中。struct ts_sample 结构体内容如下所示:

  1. struct ts_sample {
  2. int x; //X 坐标
  3. int y; //Y 坐标
  4. unsigned int pressure; //按压力大小
  5. struct timeval tv; //时间
  6. };

ts_read_mt()函数的 samp 参数是一个 struct ts_sample_mt **类型的指针,多点触摸应用程序,每一个触摸点的信息使用 struct ts_sample_mt 数据结构来描述;

  1. struct ts_sample_mt {
  2. int x; //X 坐标
  3. int y; //Y 坐标
  4. unsigned int pressure; //按压力大小
  5. int slot; //触摸点 slot
  6. int tracking_id; //ID
  7. int tool_type;
  8. int tool_x;
  9. int tool_y;
  10. unsigned int touch_major;
  11. unsigned int width_major;
  12. unsigned int touch_minor;
  13. unsigned int width_minor;
  14. int orientation;
  15. int distance;
  16. int blob_id;
  17. struct timeval tv; //时间
  18. /* BTN_TOUCH state */
  19. short pen_down; //BTN_TOUCH 的状态
  20. short valid; //此次样本是否有效标志 触摸点数据是否发生更新
  21. };

提示:我的代码用的是多点触摸的运用,你们也可以单点触摸,这里还是看你自己的选择的

代码演示:(多点触摸配置:)

  1. #include "ts_touch.h"
  2. struct input_absinfo slot;
  3. struct ts_mt *mt = NULL;
  4. int max_slots;
  5. int fd;
  6. int i;
  7. int Press_x=0;
  8. int Press_Y=0;
  9. static int ts_read(const int fd, const int max_slots,
  10. struct ts_mt *mt)
  11. {
  12. struct input_event in_ev;
  13. static int slot = 0;//用于保存上一个slot
  14. static struct tp_xy xy[12] = {0};//用于保存上一次的x和y坐标值,假设触摸屏支持的最大触摸点数不会超过12
  15. int i;
  16. /* 对缓冲区初始化操作 */
  17. memset(mt, 0x0, max_slots * sizeof(struct ts_mt)); //清零
  18. for (i = 0; i < max_slots; i++)
  19. mt[i].id = -2;//将id初始化为-2, id=-1表示触摸点删除, id>=0表示创建
  20. for ( ; ; ) {
  21. if (sizeof(struct input_event) !=
  22. read(fd, &in_ev, sizeof(struct input_event))) {
  23. perror("read error");
  24. return -1;
  25. }
  26. switch (in_ev.type) {
  27. case EV_ABS:
  28. switch (in_ev.code) {
  29. case ABS_MT_SLOT:
  30. slot = in_ev.value;
  31. break;
  32. case ABS_MT_POSITION_X:
  33. xy[slot].x = in_ev.value;
  34. mt[slot].valid = 1;
  35. break;
  36. case ABS_MT_POSITION_Y:
  37. xy[slot].y = in_ev.value;
  38. mt[slot].valid = 1;
  39. break;
  40. case ABS_MT_TRACKING_ID:
  41. mt[slot].id = in_ev.value;
  42. mt[slot].valid = 1;
  43. break;
  44. }
  45. break;
  46. //case EV_KEY://按键事件对单点触摸应用比较有用
  47. // break;
  48. case EV_SYN:
  49. if (SYN_REPORT == in_ev.code) {
  50. for (i = 0; i < max_slots; i++) {
  51. mt[i].x = xy[i].x;
  52. mt[i].y = xy[i].y;
  53. }
  54. }
  55. return 0;
  56. }
  57. }
  58. }
  59. int touch_get()
  60. {
  61. /* 打开文件 */
  62. fd = open("/dev/input/event1", O_RDONLY);
  63. if (0 > fd)
  64. {
  65. perror("open error");
  66. exit(EXIT_FAILURE);
  67. }
  68. /* 获取触摸屏支持的最大触摸点数 */
  69. if (0 > ioctl(fd, EVIOCGABS(ABS_MT_SLOT), &slot))
  70. {
  71. perror("ioctl error");
  72. close(fd);
  73. exit(EXIT_FAILURE);
  74. }
  75. max_slots = slot.maximum + 1 - slot.minimum;
  76. /* 申请内存空间并清零 */
  77. mt = calloc(max_slots, sizeof(struct ts_mt));
  78. /* 读数据 */
  79. for ( ; ; ) {
  80. if (0 > ts_read(fd, max_slots, mt))
  81. break;
  82. for (i = 0; i < max_slots; i++) {
  83. if (mt[i].valid) {//判断每一个触摸点信息是否发生更新(关注的信息发生更新)
  84. if (0 <= mt[i].id)
  85. {
  86. printf("slot<%d>, 按下(%d, %d)\n", i, mt[i].x, mt[i].y);
  87. Press_x=mt[i].x;
  88. Press_Y=mt[i].y;
  89. }
  90. else if (-1 == mt[i].id)
  91. {
  92. printf("slot<%d>, 松开(%d, %d)\n", i, mt[i].x, mt[i].y);
  93. if(mt[i].x>Press_x)
  94. {
  95. return 1;
  96. }
  97. if(mt[i].x<Press_x)
  98. {
  99. return 0;
  100. }
  101. }
  102. else
  103. printf("slot<%d>, 移动(%d, %d)\n", i, mt[i].x, mt[i].y);
  104. }
  105. }
  106. }
  107. /* 关闭设备、退出 */
  108. close(fd);
  109. free(mt);
  110. exit(EXIT_FAILURE);
  111. }

第三步:双向链表移植运用

        这里最主要的因为我平时也没用过什么数据结构,这次用了一下,本来的这个双向链表是用来保存数据的,现在我把用来保存字符串了,因为一张图对应一个路径,就用来保存路径了。

  1. #include "BothwayLinkedListWithHead.h"
  2. #include <stdio.h>
  3. #include <stdlib.h>
  4. char Photo_Path[4][100]={"./photo/1.bmp","./photo/2.bmp","./photo/3.bmp","./photo/4.bmp"};
  5. /*
  6. 根据用户输入数据的顺序,创建一个带头节点的双向链表,
  7. 将新链表返回,并打印输出
  8. */
  9. struct List * create_bothway_list()
  10. {
  11. //1.创建一个头节点,并初始化
  12. struct List *list = malloc(sizeof(struct List));
  13. list->first = NULL;
  14. list->last = NULL;
  15. list->num = 0;
  16. int i=0;
  17. while(1)
  18. {
  19. //3.创建数据节点 并初始化
  20. struct node *pnew = malloc(sizeof(struct node));
  21. pnew->path = Photo_Path[i];
  22. pnew->next = NULL;
  23. pnew->prev = NULL;
  24. //4.把新节点 加入到链表中
  25. if( list->first == NULL ) //从无到有
  26. {
  27. list->first = pnew;
  28. list->last = pnew;
  29. }
  30. else //从少到多
  31. {
  32. //尾插法
  33. list->last->next = pnew;
  34. pnew->prev = list->last;
  35. list->last = pnew;
  36. //头插法
  37. //pnew->next = list->first;
  38. //list->first->prev = pnew;
  39. //list->first = pnew;
  40. }
  41. list->num ++ ;
  42. i++;
  43. if(i==4)
  44. {
  45. break;//over
  46. }
  47. }
  48. //5.返回新创建的链表的头节点
  49. return list;
  50. }

注意这里我有四个图片所以判断到了4就停止了。

最终主程序代码:

        这里就简简单单的用了一下父子进程吧,本来两个进程可以用管道,还有信号量进行通讯的,我用了是可以实现的,但是多此一举了,所以就没去用了,你们可以去用一下,这里我就不想去把代码复杂化了

  1. int main(int argc,char **argv)
  2. {
  3. pid_t pid= fork();
  4. if(pid<0)
  5. {
  6. perror("fork()");
  7. }
  8. else if(pid==0)//child
  9. {
  10. bmp_init(m_signal);
  11. }
  12. else //partent
  13. {
  14. touch_get();//touch
  15. }
  16. exit(0);
  17. }

总结:

        项目一共花了我两天的时间,项目可以继续的升华下去,但是这个项目对于我来说结果达到了,数据结构使用了就行,网上还是有人去把项目神升华的,加入了音乐,播放器啥的,这里我就不去演示了,也是一些文件的调用罢了,想要把这个项目写在简历里的话我建议还是要去多做点东西的,进程间的通信都可以加在吗里面,交给你们了,祝大家在嵌入式的路越走越顺!

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/爱喝兽奶帝天荒/article/detail/1018698
推荐阅读
相关标签
  

闽ICP备14008679号