use the BCM2835 library to abstract out the GPIO details

This commit is contained in:
2019-12-01 14:18:31 -07:00
parent 69c5261ec4
commit 3a5befa36f
3 changed files with 245 additions and 159 deletions

View File

@@ -1,5 +1,5 @@
OBJS=main.o sysinput.o log.o gpio.o msg_queue.o time_func.o
LIBS=-lpthread
LIBS=-lbcm2835 -lpthread
upiwin: $(OBJS)
gcc -o upiwin $(OBJS) $(LIBS)