Cannot upload any sketch

Discussion in 'UDOO NEO' started by Gonzalo Calandria, May 19, 2020.

  1. Gonzalo Calandria

    Gonzalo Calandria New Member

    Joined:
    Dec 22, 2015
    Messages:
    9
    Likes Received:
    0
    Hello, I'm trying to upload a simple sketch like the following
    Code:
    void setup() {
        pinMode(13, OUTPUT);
    }
    
    void loop(){
        digitalWrite(13, HIGH);
        delay(1000);
        digitalWrite(13, LOW);
        delay(1000);
    }
    But I'm not able to do it.. using Arduino Web Editor I get a message "Cannot flash sketch!" and using the Arduino IDE from Windows (v1.8) keeps Uploading and then fails with no error.

    What I'm doing wrong?
     
  2. waltervl

    waltervl UDOOer

    Joined:
    Dec 12, 2015
    Messages:
    2,314
    Likes Received:
    580

Share This Page