News:

As usual while waiting for the next release - don't forget to check the nightly builds in the forum.

Main Menu

AVRGCC-> srec_cat error

Started by gfcwfzkm, March 10, 2014, 09:48:25 PM

Previous topic - Next topic

gfcwfzkm

Hi community,

im moving (slowly) to linux and CodeBlocks looks like a nice IDE for AVR to replace my Windows Atmel-Studio 6.
#include <avr/io.h>

int main(void)
{
DDRD = 0xFF;
while(1)
{
PORTD ^= 0xFF;
}
return 0;
}


But when im trying to compile a little sample code, it crashes with the following error:
srec_cat: bin/Debug/test32.fuse: l: file contains no data
Process terminated with status one

Where can i change the fuses so i doesnt crash?

Thanks for your help (and sorry for my english)

oBFusCATed

(most of the time I ignore long posts)
[strangers don't send me private messages, I'll ignore them; post a topic in the forum, but first read the rules!]

scarphin

There should be a fuse (named something like fusexxx.c) file in the same directory as your source file (main.c probably). Try that one.