-1

I am writing this AVR code on eclipse.

To test if everything is fine as this is my first time downloading avr on eclipse.

#define F_CPU 8000000UL
#include <avr/io.h>
#include <util/delay.h>

int main() {
    while(1)
    {

    }
}

And I got this error

make: *** [main.o] Error -1073741502

I don't what is wrong here.

T tried to run the code. Expected to Run without any problem.

Jabberwocky
  • 48,281
  • 17
  • 65
  • 115
  • Looks like a problem with the toolchain, not with your code. Probably a missing or outdated DLL file somewhere. – Paul Aug 29 '23 at 12:08
  • 2
    [What does ExitCode -1073741502 mean?](https://stackoverflow.com/questions/38246420/what-does-exitcode-1073741502-mean) – BoP Aug 29 '23 at 12:15

0 Answers0