Raspberry Pi Framebuffer Copy. This program used for copy primary framebuffer to secondary framebuffer (eg. FBTFT).
 
 
Go to file
masbog 7040928a22
Update README.md
typo fix
2018-02-18 20:11:27 +07:00
.gitignore Init 2013-07-16 19:54:36 +07:00
CMakeLists.txt Add missing include path 2013-07-17 09:13:13 +07:00
README.md Update README.md 2018-02-18 20:11:27 +07:00
main.c Update main.c 2018-02-18 04:39:02 +07:00

README.md

Raspberry Pi Framebuffer Copy

This program used for copy primary framebuffer to secondary framebuffer (eg. FBTFT). It require lastest raspberry pi firmware (> 2013-07-11) to working properly.

Tested on Raspberry Pi

2017-11-29-raspbian-stretch

Build

$ mkdir build

$ cd build

$ cmake ..

$ make 

How To Use

$ ./fbcp

Wanna to run from booting

$ sudo cp fbcopy /usr/bin $ sudo chmod +x /usr/bin/fbcp $ sudo nano /etc/rc.local -> add new line before "exit 0" with "/usr/bin/fbcp &" without quote $ sudo reboot