guides:falcom_fsa03
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
guides:falcom_fsa03 [2011/11/07 09:26] – jcoxon | guides:falcom_fsa03 [2012/06/03 14:42] (current) – upu | ||
---|---|---|---|
Line 4: | Line 4: | ||
The [[http:// | The [[http:// | ||
+ | |||
+ | Although still available this unit is end of life. | ||
Ublox modules are capable of operating above 60,000 feet, provided they are configured and placed in airborne mode. The FSA03 does not include any EEPROM or Flash memory, and as such is unable to retain settings unless its RAM is buffered by backup battery. The module should be programmed with UBX whenever power has been lost to place it in airborne mode. | Ublox modules are capable of operating above 60,000 feet, provided they are configured and placed in airborne mode. The FSA03 does not include any EEPROM or Flash memory, and as such is unable to retain settings unless its RAM is buffered by backup battery. The module should be programmed with UBX whenever power has been lost to place it in airborne mode. | ||
Line 148: | Line 150: | ||
#include < | #include < | ||
- | NewSoftSerial nss(3, 2); | + | NewSoftSerial nss(2, 3); |
+ | |||
+ | // GPS Tx output is connected to Arduino input on pin 2 | ||
+ | // GPS Rx input is connected to Arduino output on pin 3 | ||
+ | |||
+ | byte navmode = 99; | ||
void setup() { | void setup() { | ||
Line 287: | Line 294: | ||
uint8_t getNAV5[] = { 0xB5, 0x62, 0x06, 0x24, 0x00, 0x00, 0x2A, 0x84 }; //Poll NAV5 status | uint8_t getNAV5[] = { 0xB5, 0x62, 0x06, 0x24, 0x00, 0x00, 0x2A, 0x84 }; //Poll NAV5 status | ||
| | ||
- | | + | |
unsigned long startTime = millis(); | unsigned long startTime = millis(); | ||
sendUBX(getNAV5, | sendUBX(getNAV5, | ||
Line 293: | Line 300: | ||
while (1) { | while (1) { | ||
// Make sure data is available to read | // Make sure data is available to read | ||
- | if (Serial.available()) { | + | if (nss.available()) { |
- | b = Serial.read(); | + | b = nss.read(); |
| | ||
if(bytePos == 8){ | if(bytePos == 8){ | ||
Line 311: | Line 318: | ||
} | } | ||
</ | </ | ||
- | |||
==== NMEA ==== | ==== NMEA ==== | ||
Line 358: | Line 364: | ||
|0|$PUBX|string|$PUBX|-|Message ID, UBX protocol header, proprietary sentence| | |0|$PUBX|string|$PUBX|-|Message ID, UBX protocol header, proprietary sentence| | ||
|1|00|numeric|ID|-|Propietary message identifier: 00| | |1|00|numeric|ID|-|Propietary message identifier: 00| | ||
- | |2|081350.00|hhmmss.sss|hhmmss.ss|-|UTC Time, Current time| | + | |2|081350.00|hhmmss.ss|hhmmss.ss|-|UTC Time, Current time| |
|3|4717.113210|ddmm.mmmm|Latitude|-|Latitude, | |3|4717.113210|ddmm.mmmm|Latitude|-|Latitude, | ||
|4|N|character|N|-|N/ | |4|N|character|N|-|N/ | ||
Line 364: | Line 370: | ||
|6|E|character|E|-|E/ | |6|E|character|E|-|E/ | ||
|7|546.589|numeric|AltRef|m|Altitude above user datum ellipsoid.| | |7|546.589|numeric|AltRef|m|Altitude above user datum ellipsoid.| | ||
- | |8|G3|string|NavStat|-|Navigation Status, | + | |8|G3|string|NavStat|-|Navigation Status |
|9|2.1|numeric|Hacc|m|Horizontal accuracy estimate.| | |9|2.1|numeric|Hacc|m|Horizontal accuracy estimate.| | ||
|10|2.0|numeric|Vacc|m|Vertical accuracy estimate.| | |10|2.0|numeric|Vacc|m|Vertical accuracy estimate.| |
guides/falcom_fsa03.1320657973.txt.gz · Last modified: 2011/11/07 09:26 by jcoxon