A lightweight C Library to control a TFT Display via a Raspberry Pi
- The display is a generic arduino uno TFT shield
- ILI9481 Datasheet (https://www.displayfuture.com/Display/datasheet/controller/ILI9481.pdf)
cd into the ili9481-rpi directory and run make and then to run the main.c program
sudo ./maincd into correct windows directory
cd /mnt/c/Users/YourUsername/Desktopfull compile
arm-linux-gnueabihf-gcc \
-Wall -Wextra -std=c11 \
ili9481_parallel.c \
-o ili9481_parallel.ccompile without checking libs (not recommended)
arm-linux-gnueabihf-gcc \
-fsyntax-only \
-Wall -Wextra -Werror -pedantic \
ili9481_parallel.cCd into the correct directory and then:
arm-linux-gnueabihf-gcc \
-fsyntax-only \
-Wall -Wextra -Werror -pedantic \
main.c