我对 Atmegas ant AVR 编程非常陌生,所以我希望你能原谅我这个菜鸟问题:我有这个代码,它在 1MHZ 下完美运行,但是如果我将 Atmega 融合到内部 8 MHZ 同时将 F_CPU 频率更改为 8 MHZ同样,LED 快速闪烁,似乎 C 编译器忽略了我的新频率。有人可以帮助我;)?
#define F_CPU 8000000UL
#include <util/delay.h>
#include <avr/io.h>
int main(void)
{
while(1)
{
//TODO:: Please write your application code
/* set PC0 on PORTC (digital high) and delay for 500mS */
PORTD &= ~_BV(PD5);
_delay_ms(500);
/* PC0 on PORTC (digital 0) and delay for 500mS */
PORTD |= _BV(PD5);
_delay_ms(500);
}
}
它使用以下命令编译:
avr-gcc -g -Os -mmcu=atmega8 -c test.c
avr-gcc -g -mmcu=atmega8 -dF_CPU=8000000UL -o flash.elf test.o
avr-objcopy -j .text -j .data -O ihex flash.elf flash.hex
非常感谢您的时间和帮助;)Delay.h:http ://pastebin.com/wzppfma3