princeriley / ardupilot-mega

Automatically exported from code.google.com/p/ardupilot-mega
0 stars 0 forks source link

Enhancement to Debug_Subsystem: XBee X-CTU Range test #52

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. N/A
2. N/A
3. N/A

What is the expected output? N/A What do you see instead?

What version of the product are you using? Alpha 1.03 On what operating system? 
Win7

Please provide any additional information below.

Here is code I'm using to test XBee via X-CTU Range test. Would like to see 
confirmation from others that it works without issue, and if approved added to 
the debug.h in the SVN.

#if DEBUG_SUBSYSTEM == 16
void debug_subsystem()
{
      while(1){
         Serial.println("Begin Debug: XBee X-CTU Range and RSSI Test ");
         for(int n = 0; n < 1; n++){
         delay(250);     
         // Timeout set high enough for X-CTU RSSI Calc over XBee @ 115200
         Serial3.print("0123456789:;<=>?@ABCDEFGHIJKLMNO");     
         // Default 32bit data from X-CTU Range Test
    }
    }
}
#endif

Original issue reported on code.google.com by Draconis...@gmail.com on 27 Aug 2010 at 1:27

GoogleCodeExporter commented 9 years ago
Status changed to enhancement

Original comment by analogue...@gmail.com on 27 Aug 2010 at 1:32

GoogleCodeExporter commented 9 years ago
Now verifying...

Original comment by analogue...@gmail.com on 27 Aug 2010 at 8:51

GoogleCodeExporter commented 9 years ago
I added it to test

Original comment by jasonshort on 29 Aug 2010 at 5:59