Improve definitions

This commit is contained in:
2025-12-26 16:07:17 +01:00
parent 8a62a65805
commit d40b003f51
+11 -11
View File
@@ -1,14 +1,14 @@
MCU = attiny85
F_CPU = 1000000UL
TARGET = clockinator
SRCS = clockinator.S
CC = avr-gcc
OBJCOPY = avr-objcopy
PORT = /dev/tty.usbmodem101
BAUD = 19200
PROGRAMMER = usbasp
AVRDUDE = avrdude -P $(PORT) -b $(BAUD)
CFLAGS = -mmcu=$(MCU) -Wall -Os -DF_CPU=$(F_CPU)
MCU = attiny85
F_CPU = 1000000UL
TARGET = clockinator
SRCS = $(TARGET).S
CC = avr-gcc
OBJCOPY = avr-objcopy
PORT = /dev/tty.usbmodem101
BAUD = 19200
PROGRAMMER = usbasp
AVRDUDE = avrdude -P $(PORT) -b $(BAUD)
CFLAGS = -mmcu=$(MCU) -Wall -Os -DF_CPU=$(F_CPU)
all: $(TARGET).hex