1
0
Fork 0
AVR driver for a group of 7-seg displays (with 70hc4094), controlled by UART.
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 
avr-7seg-shiftreg-mux/7seg_mux_drv.pro

58 linhas
973 B

TEMPLATE = app
CONFIG += console
CONFIG -= app_bundle
CONFIG -= qt
INCLUDEPATH += \
lib \
/usr/avr/include
DEFINES += __AVR_ATmega328P__ F_CPU=16000000UL
DISTFILES += \
style.astylerc \
Makefile
HEADERS += \
lib/adc.h \
lib/blockdev.h \
lib/calc.h \
lib/color.h \
lib/debounce.h \
lib/dht11.h \
lib/fat16.h \
lib/fat16_internal.h \
lib/iopins.h \
lib/lcd.h \
lib/nsdelay.h \
lib/onewire.h \
lib/sd.h \
lib/sd_blockdev.h \
lib/sd_fat.h \
lib/sipo_pwm.h \
lib/sonar.h \
lib/spi.h \
lib/stream.h \
lib/uart.h \
lib/wsrgb.h
SOURCES += \
lib/adc.c \
lib/color.c \
lib/debounce.c \
lib/dht11.c \
lib/fat16.c \
lib/iopins.c \
lib/lcd.c \
lib/onewire.c \
lib/sd.c \
lib/sd_blockdev.c \
lib/sd_fat.c \
lib/sipo_pwm.c \
lib/sonar.c \
lib/spi.c \
lib/stream.c \
lib/uart.c \
lib/wsrgb.c \
lib/main.c \
main.c