Quote:
Originally Posted by Antartica
Code:
ioctl(fd, FBIO_ERASE_WHITE, &Update);
|
Ups! I've just realized that the ioctl that you have selected is for clearing the screen, not for updating it. You have to use FBIO_DISPLAY to do a screen refresh (it has the same parameters as the ioctl to clear the screen, so the change to your code is smallish):
Code:
ioctl(fd, FBIO_DISPLAY, &Update);