Hi,

 

I'm having problems getting the arducopter 2.0.38 software working through the arduino IDE. I'm tring to fix some camera issues (wrong direction and scaling) and this requires recompiling the code.

 

I used information from http://code.google.com/p/ardupilot-mega/wiki/Code . I downloaded Arducopter2.0.38.zip and moved ArduCopterMega an libraries in a new directory.

 

After that I could open ArduCopterMega.pde and according to the IDE it compiles fine.

When I upload it to the board, the orange LED's  blink, stop blinking and after at some time the IDE says 'Upload done' without any errors.

 

However when I fire up the board, nothing happens, no blinking lights, no CLI,  nothing... this is true for both WIndows and lkinux arduino.

 

When I upload the standard software through the Mission planner everything works fine. But I normally use linux and the Mission Planner doesn't work very well in anything other hen Windows. 

You need to be a member of diydrones to add comments!

Join diydrones

Email me when people reply –

Replies

  • Did you ever get this resolved? I'm having the same issue.

  • Developer

    Did you restart Arduino? That is needed when changing Libraries.

     

    also you can try to upload the most basic sketch:

     

    void setup(){

        Serial.begin(115200);

        delay(500);

        Serial.print("Hello World");

    }
    void loop(){}

This reply was deleted.

Activity