Unable to upload sketch to Board

avrdude: Version 6.3-20190619
Copyright (c) 2000-2005 Brian Dean, http://www.bdmicro.com/
Copyright (c) 2007-2014 Joerg Wunsch

     System wide configuration file is "C:\Users\Produ\AppData\Local\Arduino15\packages\arduino\tools\avrdude\6.3.0-arduino17/etc/avrdude.conf"

avrdude: can't open config file "C:\Users\Produ\AppData\Local\Arduino15\packages\arduino\tools\avrdude\6.3.0-arduino17/etc/avrdude.conf": No such file or directory
avrdude: error reading system wide configuration file "C:\Users\Produ\AppData\Local\Arduino15\packages\arduino\tools\avrdude\6.3.0-arduino17/etc/avrdude.conf"
Failed uploading: uploading error: exit status 1

Show code...

Is the board Arduino uno ?

using arduino nano

You might want to look at this How to get the best out of this forum before you proceed any further.
We only know what you tell us, and without knowing what you have, we don't stand a chance.

NEVER post code as an image it uses too much space and is totally useless for us because we can't try it ourselves.

Look at that link for how to post code correctly. Also post any compiler messages as if they are code.

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
}

sorry I'm new using this platform

Try this .......

this also can use for arduino Nano 33 IoT ?,

also other problem this board i need power supply to connect with pc

Since your Google appears to be broken.......

So I guess I should have asked, but here goes.

What sort of Nano ?

Normally when people say Nano they mean a Nano classic, but there are at least 6 different types of Nano and counting. It seems that Arduino marketing regard the term Nano as a form factor for a number of very different processors.

So are you using a Nano 33 IoT ?

EDIT @bluejets beat me to it.

Why is that? Are you using a clone and not a real Nano 33 IoT?

yes Nano 33 IoT

Your program conpiles OK but for some reason it can't find the avrdude config file.
Which version of the IDE are you using?
Did you recently install a new board or update the IDE?

If your board is a Nano 33 IoT, the Nano 33 IoT is not prgrammed with avrdude. So I suspect that you selected the wrong board under tools/board. You should have the exact version to select from; if not, you will need to install the board package.

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