You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bzt 7ace64ba9f Initial commit 7 years ago
..
Makefile Initial commit 7 years ago
OLVASSEL.md Initial commit 7 years ago
README.md Initial commit 7 years ago
delays.c Initial commit 7 years ago
delays.h Initial commit 7 years ago
gpio.h Initial commit 7 years ago
homer.h Initial commit 7 years ago
kernel8.img Initial commit 7 years ago
lfb.c Initial commit 7 years ago
lfb.h Initial commit 7 years ago
link.ld Initial commit 7 years ago
main.c Initial commit 7 years ago
mbox.c Initial commit 7 years ago
mbox.h Initial commit 7 years ago
start.S Initial commit 7 years ago
uart.c Initial commit 7 years ago
uart.h Initial commit 7 years ago

README.md

Tutorial 09 - Framebuffer

Okay, finaly some eyecandy :-) So far the screen was blank. Now we're about to change the resolution with several tags in a single mbox_call, then display a pixmap. I've put a lot of comments for each tag and argument to help you, see lfb.c. But at the end of the day it's nothing more than filling up an int array and call mbox_call, really simple. If you wish, you can try to remove or add more tags to the message and see what happens. Could have used MBOX_CH_FB (FrameBuffer channel), but MBOX_CH_PROP gives us more flexibility.

Important note on pitch: maybe you don't know, but video screens does not necessairly map raster lines continously in memory. For example it is possible that 800 pixels (8004=3200 bytes) are stored in 4096 bytes for every line. Therefore it's important to use the queried pitch value instead of width4 when calculating the postition for the Y coordinate.

Also note that the GPU on the Raspberry Pi is very powerful. You can create a large virtual screen (let's say 65536x768) but display only 1024x768 pixels at once. With mailbox messages you can move that window very fast without the need of copying pixel buffers, thus creating a smooth scrolling effect. In this tutorial both virtual screen and physical screen is set to 1024x768.

Lfb.h, lfb.c

lfb_init() sets up resolution, depth, and color channel order. Also queries framebuffer's address.

lfb_showpicture() displays a picture in the center of the screen by drawing pixels to the framebuffer.

Homer.h

The pixmap, saved with the Gimp as C header file. No compression, pixels are stored one-by-one.

Main

Very simple. We set the resolution and display the picture, that's all.