Compare commits

..

No commits in common. "1cbc6063d6d9730a87109b7a5f99f44167090873" and "368ceb43739713fc395f8fbbc89200ee4cf254ca" have entirely different histories.

3 changed files with 0 additions and 30 deletions

4
firmware/.gitignore vendored
View File

@ -1,4 +0,0 @@
*.o
*.hex
*.obj
*.hex

View File

@ -1,20 +0,0 @@
MCU=atmega88
CFLAGS=-g -Wall -mcall-prologues -mmcu=$(MCU) -Os -DF_CPU=8000000
LDFLAGS=-Wl,-gc-sections -Wl,-relax
CC=avr-gcc
TARGET=main
OBJECT_FILES=main.o
all: $(TARGET).hex
clean:
rm -f *.o *.hex *.obj *.hex
%.hex: %.obj
avr-objcopy -R .eeprom -O ihex $< $@
%.obj: $(OBJECT_FILES)
$(CC) $(CFLAGS) $(OBJECT_FILES) $(LDFLAGS) -o $@
program: $(TARGET).hex
avrdude -p $(MCU) -c usbasp -U flash:w:$(TARGET).hex

View File

@ -1,6 +0,0 @@
#include <avr/io.h>
int main()
{
}