Hallo epistula,
ich vermute, dass in deinem makefile ein Fehler ist.
Dort muss auch angegeben werden, dass du die Datei asuro.c mit linken möchtest.
Hier ist mal ein Ausschnitt (im oberen Teil vom makefile):
Code:
# Target file name (without extension).
TARGET = test
# Optimization level, can be [0, 1, 2, 3, s]. 0 turns off optimization.
# (Note: 3 is not always the best optimization level. See avr-libc FAQ.)
OPT = s
# List C source files here. (C dependencies are automatically generated.)
SRC = $(TARGET).c
# If there is more than one source file, append them above, or adjust and
# uncomment the following:
SRC += asuro.c
In der von mir angegebenen letzten Zeile vermute ich deinen Fehler.
Lesezeichen