今日、ついにArduino Uno経由でattiny2313aをプログラムすることができました。テストまばたきプログラムでした。アップロードした後、LED が 1 秒ではなく 8 秒遅れて点滅するのを確認したので、Makefile と main.c のクロック設定を変更して、チップを再度書き込むことにしました。そのため、Makefile と main.c の両方で 8000000 を 1000000 に変更しただけでmake flash
、cmd (Windows シェル) で実行しました。以下は出力です。
avr-gcc -Wall -Os -DF_CPU=1000000 -mmcu=attiny2313 -F -c main.c -o main.o
cc1.exe: error: avr25: No such file or directory
make: *** [main.o] Error 1
このエラーが発生するのはなぜですか? プログラムを一度しかコンパイルして書き込むことができなかったのはなぜですか? 新しいものを削除したり追加したりしませんでした。実際、私はそれらのクロック設定以外には何も触れていません。しかし、元の設定 (8000000) に戻しても、同じエラーが発生します。
私のメイクファイル
DEVICE = attiny2313 -F
CLOCK = 1000000
PROGRAMMER = -c arduino -P COM5 -b 19200
OBJECTS = main.o
FUSES = -U lfuse:w:0x5e:m -U hfuse:w:0xdd:m -U efuse:w:0xff:m
######################################################################
######################################################################
# Tune the lines below only if you know what you are doing:
AVRDUDE = avrdude $(PROGRAMMER) -p $(DEVICE)
COMPILE = avr-gcc -Wall -Os -DF_CPU=$(CLOCK) -mmcu=$(DEVICE)
# symbolic targets:
all: main.hex
.c.o:
$(COMPILE) -c $< -o $@
.S.o:
$(COMPILE) -x assembler-with-cpp -c $< -o $@
# "-x assembler-with-cpp" should not be necessary since this is the default
# file type for the .S (with capital S) extension. However, upper case
# characters are not always preserved on Windows. To ensure WinAVR
# compatibility define the file type manually.
.c.s:
$(COMPILE) -S $< -o $@
flash: all
$(AVRDUDE) -U flash:w:main.hex:i
fuse:
$(AVRDUDE) $(FUSES)
install: flash fuse
# if you use a bootloader, change the command below appropriately:
load: all
bootloadHID main.hex
clean:
rm -f main.hex main.elf $(OBJECTS)
# file targets:
main.elf: $(OBJECTS)
$(COMPILE) -o main.elf $(OBJECTS)
main.hex: main.elf
rm -f main.hex
avr-objcopy -j .text -j .data -O ihex main.elf main.hex
# If you have an EEPROM section, you must also create a hex file for the
# EEPROM and add it to the "flash" target.
# Targets for code debugging and analysis:
disasm: main.elf
avr-objdump -d main.elf
cpp:
$(COMPILE) -E main.c
私のmain.c
#define F_CPU 1000000 // CPU frequency for proper time calculation in delay function
#include <avr/io.h>
#include <util/delay.h>
int main (void){
DDRD |= (1 << PD6); // make PD6 an output
for(;;){
PORTD ^= (1 << PD6); // toggle PD6
_delay_ms(1000); // delay for a second
}
return 0; // the program executed successfully
}