Appendix
AO-IBR117
User’s Manual
39
J.
LVDS Test
//Open the file for reading and writing
framebuffer_fd = open("/dev/fb0", O_RDWR);
// Get fixed screen information
ioctl(framebuffer_fd, FBIOGET_FSCREENINFO, &finfo)
// Get variable screen information
ioctl(framebuffer_fd, FBIOGET_VSCREENINFO, &vinfo)
// Figure out the size of the screen in bytes
screensize = vinfo.xres * vinfo.yres * vinfo.bits_per_pixel / 8;
// Map the device to memory
fbp = (char *)mmap(0, screensize, PROT_READ | PROT_WRITE, MAP_SHARED, framebuffer_fd, 0);
// Figure out where in memory to put the pixel
memset(fbp, 0x00,screensize);
//draw point by fbp
long int location = 0;
location = (x+g_xoffset) * (g_bits_per_pixel/8) +
(y+g_yoffset) * g_line_length;
*(fbp + lo 0) = color_b;
*(fbp + lo 1) = color_g;
*(fbp + lo 2) = color_r;
//close framebuffer fd
close(framebuffer_fd);
Содержание AO-IBR117
Страница 8: ...viii AO IBR117 User s Manual This page is intentionally left blank...
Страница 15: ...General Information AO IBR117 User s Manual 7 1 1 7 Dimensions Unit mm...
Страница 16: ...8 AO IBR117 User s Manual AO IBR117 Reference Heat Sink...
Страница 20: ...12 AO IBR117 User s Manual 2 3 Jumper Connector Locations on AO IBR117 Board diagram of AO IBR117...
Страница 39: ...31 Appendix This section provides the information of reference code...