本帖最后由 lichuanfa 于 2012-3-14 09:38 编辑
win7系统,安装avr studio 4.19,GCC版本WinAVR-20100110-install
总是提示avr-objcopy: 'ff.elf': No such file
,大侠们指点指点。
#include <io.h>
int main ()
{
DDRB = 0xff;
while ( 1 )
{
PORTB = 0x55;
asm ( "nop" );
PORTB = 0xaa;
asm ( "nop" );
}
return 0 ;
}
程序如下: |