GPS on Crius AIOP Extend Board

This forum is dedicated to software development related to MultiWii.
It is not the right place to submit a setup problem.
Software download
Post Reply
User avatar
brettwal
Posts: 93
Joined: Mon Jun 18, 2012 4:51 pm
Location: Louisiana

GPS on Crius AIOP Extend Board

Post by brettwal »

Have a Crius AIO Pro board with the Extend Board. Was running MW2.1 w/ a few patches on a DJI 450 clone and all was well. Moved the FC over to a DialFonzo V-Tail 500 frame and downloaded the latest DEV. Setup config.h and DL'd to the FC. No matter what I try, I cannot get the GPS to show in the GUI. I don't even get the GPS option in the AUX switch setup. There's not much to do to get a serial GPS going and all the HW worked before. ANy ideas on what to look for?

PatrikE
Posts: 1976
Joined: Tue Apr 12, 2011 6:35 pm
Location: Sweden
Contact:

Re: GPS on Crius AIOP Extend Board

Post by PatrikE »

This should be set depending on your gps

Code: Select all

#define GPS_SERIAL 2
//#define NMEA
//#define UBLOX

pm1
Posts: 136
Joined: Sun Jan 22, 2012 7:26 pm

Re: GPS on Crius AIOP Extend Board

Post by pm1 »

brettwal wrote:Have a Crius AIO Pro board with the Extend Board. Was running MW2.1 w/ a few patches on a DJI 450 clone and all was well. Moved the FC over to a DialFonzo V-Tail 500 frame and downloaded the latest DEV. Setup config.h and DL'd to the FC. No matter what I try, I cannot get the GPS to show in the GUI. I don't even get the GPS option in the AUX switch setup. There's not much to do to get a serial GPS going and all the HW worked before. ANy ideas on what to look for?

Maybe you ran into the same problem as me..

Just to verify: MultiWii.ino, function setup:

/************************************/
#if defined(GPS_SERIAL)
GPS_SerialInit();
GPS_Enable = 1;
GPS_Present = 1;
#endif

/*
#if defined(GPS_SERIAL)
GPS_SerialInit();
for(uint8_t i=0;i<=5;i++){
GPS_NewData();
LEDPIN_ON
delay(20);
LEDPIN_OFF
delay(80);
}
if(!GPS_Present){
SerialEnd(GPS_SERIAL);
SerialOpen(0,SERIAL0_COM_SPEED);
}
#if !defined(GPS_PROMINI)
GPS_Present = 1;
#endif
GPS_Enable = GPS_Present;
#endif
*/
/************************************/

User avatar
brettwal
Posts: 93
Joined: Mon Jun 18, 2012 4:51 pm
Location: Louisiana

Re: GPS on Crius AIOP Extend Board

Post by brettwal »

I'll check when I get back. I'm out of town all week.

Post Reply