|
|
|
|
||
|
|
Hi HK,
here are my results. Ardupilot with V2 shield: I confirm your readings, but Ardupilot with V1 shield: From Source 2 - Purple to: Source 1 - Purple - Good Connection #1 - Red - Good Connection #2 - Red - Good Connection #3 - Red - Good Connection From Source 2 - Cyan to: Source 1 - Cyan - Good Connection #1 - Yellow - Good Connection #2 - Yellow - No Connection #3 - Yellow - Good Connection Strange is that on V1, 5V GPS connector has TX-RX-5V-Gnd, instead of V2 IN-OUT-5V-Gnd. 3V GPS connector has RX-TX-3V-Gnd, that match with V2 IN-OUT-3V-Gnd. Don't know if this could be of interest, but it sounds a little strange to me. Hope this will help a little, chilo Quote:
|
|
|
||
|
|
|
|
Brunswick, OH
Joined Nov 2005
5,550 Posts
|
Thanks! My V1 readings are the same as yours
From Source 2 - Purple to: Source 1 - Purple - Good Connection #1 - Red - Good Connection #2 - Red - Good Connection #3 - Red - Good Connection From Source 2 - Cyan to: Source 1 - Cyan - Good Connection #1 - Yellow - Good Connection #2 - Yellow - No Connection #3 - Yellow - Good Connection I'm working on my step 2 instructions right now. I have figured out a solution to the GPS lock problem with the V2 shield. If you jumper the source 2 purple to the #2 red it goes solid and locks no problems. I put a detachable connector on it to confirm and sure enough. When it's connected, lock, disconnected, no lock. |
|
|
|
|
||
|
Australia, WA, Perth
Joined Apr 2010
31 Posts
|
Quote:
Correct me if I am wrong, but I remember reading somewhere that Remzibi did release a firmware set with artificial horizon already. |
|
|
||
|
|
|
|
Brunswick, OH
Joined Nov 2005
5,550 Posts
|
Yes, the issue is my config software doesn't really allow you to place it on the screen (yet). The firmware is called "Ardu" and although Remzibi is ready, my stuff is still a work in progress. It's going to be part of my work on step 5 of this thread (and provide me the motivation to get it done!!!!)
|
|
|
|
|
||
|
Brunswick, OH
Joined Nov 2005
5,550 Posts
|
Quote:
To the best of my knowledge, the shield allows connections for thermopiles (not used with ArduIMU), connections for GPS's (not used with ArduIMU) and a MPXV5004DP pressure sensor. You're right, it seems like it would make more sense to just use that sensor instead!?!? |
|
|
||
|
|
||
|
Brunswick, OH
Joined Nov 2005
5,550 Posts
|
Quote:
|
|
|
||
|
|
||
|
|
Quote:
http://www.rcgroups.com/forums/showp...5&postcount=63 This one for the true do-it-yourselfers: http://search.digikey.com/scripts/Dk...DP&FV=fffc0177 Datasheet: http://www.freescale.com/files/senso.../MPXV5004G.pdf Page 2 has the resistors and capacitors: http://www.freescale.com/files/senso...ote/AN1646.pdf |
|
|
|
|
|
Ontario, Canada
Joined May 2008
115 Posts
|
I'm attempting this project as well - shield, IMU, and Official cable on the way. Step1 went well up to the last paragraph ... attaching the Remzizi GPS. I get only a flashing blue and if I use Hyper Terminal I see a data stream but get the "no GPS for 20s". Turning down the servo tester does give "stabilization" prompts for a line or two - but no solid blue, even after 20 minutes.
I moved the GPS to the Remzibi OSD and saw (on TV) the lock on 4 satellites - so the GPS is OK (I am using the white-blue wires correctly). Any suggestions? Any continuity to check from the 4 GPS pins? |
|
|
||
|
Brunswick, OH
Joined Nov 2005
5,550 Posts
|
Quote:
When you power up your OSD what baud rate does it say your GPS is using? It's going to be 9600 or 38,400... Edit your GPS_NMEA tab Code:
void init_gps(void)
{
Serial.begin(9600);
delay(1000);
//Serial.print(LOCOSYS_BAUD_RATE_38400);
//Serial.begin(THIRTY_EIGHT_K_BAUD);
//delay(500);
Serial.print(NMEA_OUTPUT_1HZ);
delay(500);
Serial.print("$PMTK220,1000*5F\r\n");
delay(500);
Serial.print(SBAS_OFF);
Code:
void setup() {
#if GPS_PROTOCOL == 0
Serial.begin(9600);
#endif
#if GPS_PROTOCOL == 1
Serial.begin(FIFTY_SEVEN_K_BAUD);
#endif
#if GPS_PROTOCOL == 2
Serial.begin(THIRTY_EIGHT_K_BAUD);
#endif
#if GPS_PROTOCOL == 3
Serial.begin(THIRTY_EIGHT_K_BAUD);
#endif
#if GPS_PROTOCOL == 5
Serial.begin(THIRTY_EIGHT_K_BAUD);
#endif
init_ardupilot();
}
|
|
|
Last edited by HappyKillmore; Apr 28, 2010 at 05:10 PM.
|
||
|
| Thread Tools | |
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Discussion Remzibi OSD (Poor Man's OSD) integration with ArduPilot | HappyKillmore | Video Piloting (FPV/RPV) | 539 | Apr 28, 2012 04:32 AM |
| Video REmzibi OSD current sensor test | mmormota | Electric Plane Talk | 7 | Oct 10, 2009 10:13 AM |
| Video Fasst dropout test with Remzibi OSD | mmormota | Electric Plane Talk | 0 | May 29, 2009 11:48 AM |
| Discussion Getting "waiting for GPS data" on Dragon OSD | Vaportech | Video Piloting (FPV/RPV) | 9 | Aug 18, 2008 10:58 AM |