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 [2010/08/12 10:20] – How to preserve configuration settings on FSA03 mixio | 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. | ||
Some FSA03 modules have been found to have a default baud rate of 9600, whilst others have a default baud rate of 38400, which may be difficult to parse if not using a UART (ie software serial). | Some FSA03 modules have been found to have a default baud rate of 9600, whilst others have a default baud rate of 38400, which may be difficult to parse if not using a UART (ie software serial). | ||
+ | |||
Line 20: | Line 23: | ||
The module draws around 40mA typically, though upto 100mA when acquiring lock. | The module draws around 40mA typically, though upto 100mA when acquiring lock. | ||
- | The antenna on this module appears to be slightly wobbly and this may be one of the causes of the module not getting a lock for long periods of time. Its recommended that you secure it (perhaps with glue) in a position that works. | + | The antenna on this module appears to be slightly wobbly and this may be one of the causes of the module not getting a lock for long periods of time. It' |
===== Configuration ===== | ===== Configuration ===== | ||
Line 26: | Line 29: | ||
The FSA03 is primarily configured through Ublox' | The FSA03 is primarily configured through Ublox' | ||
- | == UBX == | + | |
+ | |||
+ | ==== Common | ||
+ | |||
+ | < | ||
+ | ====== CONFIG NAV MODE (Airbone < 1g) + (Auto 2D/3D) ====== | ||
+ | |||
+ | 09: | ||
+ | SEND 00 00 05 00 FA 00 FA 00 64 00 2C 01 00 00 00 00 | ||
+ | SEND 00 00 00 00 00 00 00 00 00 00 16 DC | ||
+ | 09: | ||
+ | |||
+ | ====== SBAS DISABLE ====== | ||
+ | |||
+ | 10: | ||
+ | 10: | ||
+ | |||
+ | ====== SBAS - EGNOS - FOR EU ====== | ||
+ | |||
+ | 10: | ||
+ | 10: | ||
+ | |||
+ | ====== DISABLE GPGGA ON ALL PORTS ====== | ||
+ | |||
+ | 10: | ||
+ | 10: | ||
+ | |||
+ | ====== DISABLE GPGLL ON ALL PORTS ====== | ||
+ | |||
+ | 10: | ||
+ | 10: | ||
+ | |||
+ | ====== DISABLE GPGSA ON ALL PORTS ====== | ||
+ | |||
+ | 10: | ||
+ | 10: | ||
+ | |||
+ | ====== DISABLE GPGSV ON ALL PORTS ====== | ||
+ | |||
+ | 10: | ||
+ | 10: | ||
+ | |||
+ | ====== DISABLE GPRMC ON ALL PORTS ====== | ||
+ | |||
+ | 10: | ||
+ | 10: | ||
+ | |||
+ | ====== DISABLE GPVTG ON ALL PORTS ====== | ||
+ | |||
+ | 10: | ||
+ | 10: | ||
+ | |||
+ | ====== DISABLE GPGRS ON ALL PORTS ====== | ||
+ | |||
+ | 10: | ||
+ | 10: | ||
+ | |||
+ | ====== DISABLE GPGST ON ALL PORTS ====== | ||
+ | |||
+ | 10: | ||
+ | 10: | ||
+ | |||
+ | ====== DISABLE GPZDA ON ALL PORTS ====== | ||
+ | |||
+ | 10: | ||
+ | 10: | ||
+ | |||
+ | ====== DISABLE GPGBS ON ALL PORTS ====== | ||
+ | |||
+ | 10: | ||
+ | 10: | ||
+ | |||
+ | ====== DISABLE GPDTM ON ALL PORTS ====== | ||
+ | |||
+ | 10: | ||
+ | 10: | ||
+ | |||
+ | ====== START GPS ====== | ||
+ | |||
+ | 09: | ||
+ | 09: | ||
+ | RECV 53 74 61 72 74 69 6E 67 20 47 50 53 2A 30 39 0D 0A // Starting GPS*09 | ||
+ | 09: | ||
+ | |||
+ | ====== STOP GPS ====== | ||
+ | |||
+ | 09: | ||
+ | 09: | ||
+ | RECV 53 74 6F 70 70 69 6E 67 20 47 50 53 2A 30 31 0D 0A // Stopping GPS*01 | ||
+ | 09: | ||
+ | |||
+ | ====== MAX PERFORMANCE MODE ====== | ||
+ | |||
+ | 11: | ||
+ | 11: | ||
+ | | ||
+ | ====== ECO MODE ====== | ||
+ | |||
+ | 11: | ||
+ | 11: | ||
+ | |||
+ | ===== CONFIG DATUM ====== | ||
+ | |||
+ | 09: | ||
+ | 09: | ||
+ | |||
+ | ===== Baud rate to 4800 ===== | ||
+ | |||
+ | 09: | ||
+ | SEND 00 00 03 00 03 00 00 00 00 00 CB C4 | ||
+ | 09: | ||
+ | </ | ||
+ | |||
+ | |||
+ | ==== Sample code ==== | ||
<code c> | <code c> | ||
Line 33: | 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 108: | Line 230: | ||
uint8_t ackByteID = 0; | uint8_t ackByteID = 0; | ||
uint8_t ackPacket[10]; | uint8_t ackPacket[10]; | ||
- | int startTime = millis(); | + | unsigned long startTime = millis(); |
Serial.print(" | Serial.print(" | ||
| | ||
Line 159: | Line 281: | ||
} | } | ||
} | } | ||
+ | |||
+ | //Function to poll the NAV5 status of a Ublox GPS module (5/6) | ||
+ | //Sends a UBX command (requires the function sendUBX()) and waits 3 seconds | ||
+ | // for a reply from the module. The then isolates the byte which contains | ||
+ | // the information regarding the NAV5 mode, | ||
+ | // 0 = Pedestrian mode (default, will not work above 12km) | ||
+ | // 6 = Airborne 1G (works up to 50km altitude) | ||
+ | //Adapted by jcoxon from getUBX_ACK() from the example code on UKHAS wiki | ||
+ | // http:// | ||
+ | boolean checkNAV(){ | ||
+ | uint8_t b, bytePos = 0; | ||
+ | uint8_t getNAV5[] = { 0xB5, 0x62, 0x06, 0x24, 0x00, 0x00, 0x2A, 0x84 }; //Poll NAV5 status | ||
| | ||
+ | nss.flush(); | ||
+ | unsigned long startTime = millis(); | ||
+ | sendUBX(getNAV5, | ||
+ | | ||
+ | while (1) { | ||
+ | // Make sure data is available to read | ||
+ | if (nss.available()) { | ||
+ | b = nss.read(); | ||
+ | | ||
+ | if(bytePos == 8){ | ||
+ | navmode = b; | ||
+ | return true; | ||
+ | } | ||
+ | | ||
+ | bytePos++; | ||
+ | } | ||
+ | // Timeout if no valid response in 3 seconds | ||
+ | if (millis() - startTime > 3000) { | ||
+ | navmode = 0; | ||
+ | return false; | ||
+ | } | ||
+ | } | ||
+ | } | ||
</ | </ | ||
- | + | ==== NMEA ==== | |
- | === NMEA === | + | |
If you only need to turn of the sentances then you can just use NMEA commands: | If you only need to turn of the sentances then you can just use NMEA commands: | ||
Line 175: | Line 331: | ||
</ | </ | ||
- | === USE ON-REQUEST SENTENCE CONTAINING ALL NECESSARY INFO FOR HABING | + | ==== Saving your settings ==== |
- | == Disable all NMEA once and for all (ZDA is disabled | + | As the FSA03 doesn' |
+ | |||
+ | ===== Navigation data ===== | ||
+ | |||
+ | By default, FSA03 modules are configured to output several | ||
+ | |||
+ | ==== Polling the module ==== | ||
+ | |||
+ | Ublox 5 based GPS modules implement a proprietary NMEA extension in the form of a polled sentence which reports all navigation parameters of interest (to us at least) in a single sentence when requested. Using this provides advantages in that you can request an update exactly when you need it, and you only need to parse one specific sentence to capture latitude, longitude, altitude, speed, course, etc. For those using a SoftwareSerial library, this method fixes the buffer overrun issues. | ||
+ | |||
+ | To use the sentence firstly disable any GPS sentences which are currently switched on: | ||
<code c> | <code c> | ||
+ | Serial.println(" | ||
Serial.println(" | Serial.println(" | ||
Serial.println(" | Serial.println(" | ||
Line 186: | Line 353: | ||
</ | </ | ||
- | == Then just request the UBX00 sentence | + | The sentence |
<code c> | <code c> | ||
Serial.println(" | Serial.println(" | ||
</ | </ | ||
- | == A response | + | The module responds (within 1 second) |
- | < | + | < |
- | $PUBX, | + | |
- | </ | + | |
- | For details datasheet p.52 " | + | ^Field No.^Example^Format^Name^Unit^Description^ |
+ | |0|$PUBX|string|$PUBX|-|Message ID, UBX protocol header, proprietary sentence| | ||
+ | |1|00|numeric|ID|-|Propietary message identifier: 00| | ||
+ | |2|081350.00|hhmmss.ss|hhmmss.ss|-|UTC Time, Current time| | ||
+ | |3|4717.113210|ddmm.mmmm|Latitude|-|Latitude, | ||
+ | |4|N|character|N|-|N/ | ||
+ | |5|00833.915187|dddmm.mmmm|Longitude|-|Longitude, | ||
+ | |6|E|character|E|-|E/ | ||
+ | |7|546.589|numeric|AltRef|m|Altitude above user datum ellipsoid.| | ||
+ | |8|G3|string|NavStat|-|Navigation Status - Example: G3 =Stand alone 3D solution, NF =No Fix| | ||
+ | |9|2.1|numeric|Hacc|m|Horizontal accuracy estimate.| | ||
+ | |10|2.0|numeric|Vacc|m|Vertical accuracy estimate.| | ||
+ | |11|0.007|numeric|SOG|km/ | ||
+ | |12|77.52|numeric|COG|degrees|Course over ground| | ||
+ | |13|0.007|numeric|Vvel|m/ | ||
+ | |14|-|numeric|ageC|s|Age of most recent DGPS corrections, | ||
+ | |15|0.92|numeric|HDOP|-|HDOP, | ||
+ | |16|1.19|numeric|VDOP|-|VDOP, | ||
+ | |17|0.77|numeric|TDOP|-|TDOP, | ||
+ | |18|9|numeric|GU|-|Number of GPS satellites used in the navigation solution| | ||
+ | |19|0|numeric|RU|-|Number of GLONASS satellites used in the navigation solution| | ||
+ | |20|0|numeric|DR|-|DR used| | ||
+ | |21|*5B|hexadecimal|cs|-|Checksum| | ||
+ | |22|-|character|< | ||
- | === PRESERVING YOUR SETTINGS === | + | For details see page 52 of the UBX protocol specification " |
- | FSA03 has the ability to preserve your configuration settings. | ||
- | To achieve this the manufacturers have added a battery support. | ||
- | So, in order to keep your settings alive: | + | ==== Modified TinyGPS ==== |
- | < | + | |
- | 1. Add a battery | + | {{code: |
- | 2. Issue the "Save current configuration" | + | |
- | </ | + |
guides/falcom_fsa03.1281608424.txt.gz · Last modified: 2010/08/12 10:20 by mixio