Arduinio Nano Error Exit Status 1

Hello,

I have a problem with my Arduinio Board's.
Im trying to program LED's on my own using Arduinio Nano board and even when i pluged my board to my pc and selected the COM 9 (usb where my Arduinio is pluged in) and i try to run an Blink Example the Error pop's up "Exit Status 1"
What should i do because im new in the Arduinio world i can't figure it out.
I also tryed doing it on my older board, Arduinio UNO and from time to time it work's, but still it worked only once and then the 2 out of 4 build in LED's stoped working and when i try to run an Blink Example on it, it will upload till the end of the world.
Please help me by sending me solution to my problem, also talk to me like im dumb because i wont understand any of this stuff in near future.

Thank's
Matthew

I don't see anything. Read the pinned post re 'How to get the most from the forum' then try again.

Hi

The thing is the Nano board is getting read by my pc and when i plug it in every thing seem's to be working but when i run the Blink example in file's it just getting uploaded and then this error pop's up, i was looking through this error here and saw so many people having the same problem as me and the code's other people sends just dont work for me, and i dont know why, first i though i picked the wrong processor so i changed it to old bootloader but it still wouldnt work, I even reinstalled Arduinio IDE but again it didnt worked and i think its because the old program code for this error debug but i dont really know so im looking for help

See post #2

Hello. The road to beginning to find the solution to your problems can be found here:

How to get the best out of this forum

Follow these steps:

  1. Read the topic to be found at the above link.
  2. Follow the advice to be found there.
  3. Provide the required information in the needed format.
  4. Receive help.
  5. Solve problem.
  6. Profit.

We eagerly await your revised submission in order to begin providing assistance.

Hello,

"My main language is not English so i wanted to say that some word's could be misspelled and im sorry about it."

Im using an Arduino Nano board, i did my research tryed every code that could help me but nothing work's, the processor im using is ATmega328P the hardware is from the Nano Family and the code im trying to run is an example code from Adruino called Blink, but every time im trying to do it the error Exit Status 1 is poping up, i also wanted to say that i bought this board from Aliexpress

https://pl.aliexpress.com/item/1005007539665675.html?spm=a2g0o.order_list.order_list_main.4.63821c24KhEGe3&gatewayAdapt=glo2pol
This is the link from the site i bought it from, i want to know if that site sell's off brand board's and if yes i also want to know why my orginal Arduino UNO board is NOT working on every processor i try.

The code im trying to use:
void setup() {
// initialize digital pin LED_BUILTIN as an output.
pinMode(LED_BUILTIN, OUTPUT);
}

// the loop function runs over and over again forever
void loop() {
digitalWrite(LED_BUILTIN, HIGH); // turn the LED on (HIGH is the voltage level)
delay(1000); // wait for a second
digitalWrite(LED_BUILTIN, LOW); // turn the LED off by making the voltage LOW
delay(1000); // wait for a second
}

this is the error message that pop's up after trying to run the code
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 1 of 10: not in sync: resp=0x2c
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 2 of 10: not in sync: resp=0x2c
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 3 of 10: not in sync: resp=0x2c
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 4 of 10: not in sync: resp=0x2c
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 5 of 10: not in sync: resp=0x2c
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 6 of 10: not in sync: resp=0x2c
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 7 of 10: not in sync: resp=0x2c
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 8 of 10: not in sync: resp=0x2c
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 9 of 10: not in sync: resp=0x2c
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 10 of 10: not in sync: resp=0x2c
Failed uploading: uploading error: exit status 1

Have you installed the CH340 driver?
https://learn.sparkfun.com/tutorials/how-to-install-ch340-drivers/all

Are you running WIN10?

I just bought this board and didnt installedn it, also im running Win 11

Update:
I instaled CH340 driver and on IDE it were showing my port but still the error appeared

Have you tried the 328P (Old bootloader) under tools/processor? If that also does not solve the problem, try the 168 option. If that also does not solve the issue, please provide a link to the board that you bought.

1 Like

Hi,

Thanks, just tryed that it totally works thank you very much, i forgot to try other processor

Did Old Bootloader option solve your problem?

Yes, it did

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.