Can't open the serial

Post Reply
Hermios
Posts: 10
Joined: Tue Dec 30, 2014 8:31 pm

Can't open the serial

Post by Hermios »

Hi
First of all, I'm new on bulding drones and I am really lost too!
So
I have a Nanowii, that I try to upload with the Arduino Software, version 1.0.6
I soldered a led to check and it behaves as I want. The only difficulty is, each time I want to upload a code in the board, I need to reset my board synchronously. Else, I get the following message :

Found programmer: Id = "Bª_"; type =
Software Version = . ; Hardware Version = .
avrdude: error: buffered memory access not supported. Maybe it isn't
a butterfly/AVR109 but a AVR910 device?



This is actually not the main subject of this topic, but if someone has a solution for this, it could be great.

This is the last code I wrote :

Code: Select all

void setup() {
  pinMode(testLed,OUTPUT);
  pinMode(analogInPin,INPUT);
  pinMode(analogOutPin,OUTPUT);
 
  // initialize serial communications at 9600 bps:
  Serial.begin(9600);
  while (!Serial) {
      digitalWrite(testLed,HIGH);
      delay(500);
      digitalWrite(testLed,LOW);
      delay(500);
    ; // wait for serial port to connect. Needed for Leonardo only
  }

}

The problem : The led never stop blinking-> The Serial can't be open
My board is connected with the USB port only
I open the monitor on the Arduino software. I selected COM1, then COM3, but there is no change
Has anyone any idea?

Thanks a lot

Niko

Post Reply