Skip to content

kaustubhdoval/ili9481-rpi

Repository files navigation

A lightweight C Library to control a TFT Display via a Raspberry Pi

To Run

cd into the ili9481-rpi directory and run make and then to run the main.c program

sudo ./main

To compile ili9481_parallel.c on Windows WSL (Ubuntu based)

cd into correct windows directory

cd /mnt/c/Users/YourUsername/Desktop

full compile

arm-linux-gnueabihf-gcc \
  -Wall -Wextra -std=c11 \
  ili9481_parallel.c \
  -o ili9481_parallel.c

compile without checking libs (not recommended)

arm-linux-gnueabihf-gcc \
  -fsyntax-only \
  -Wall -Wextra -Werror -pedantic \
  ili9481_parallel.c

Compiling main.c

Cd into the correct directory and then:

arm-linux-gnueabihf-gcc \
  -fsyntax-only \
  -Wall -Wextra -Werror -pedantic \
  main.c

About

8 Bit Parallel C Library for ILI9481 TFT Driver IC

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Contributors