Last change
on this file since 80 was 59, checked in by DHERBOMEZ Gérald, 10 years ago |
Integration of new modules:
- GPS NMEA0183 decoder
- Span CPT Decoder
Update of:
|
File size:
968 bytes
|
Rev | Line | |
---|
[59] | 1 | #include "nmea0183.h"
|
---|
| 2 | #pragma hdrstop
|
---|
| 3 |
|
---|
| 4 | /*
|
---|
| 5 | ** Author: Samuel R. Blackburn
|
---|
| 6 | ** Internet: sam_blackburn@pobox.com
|
---|
| 7 | **
|
---|
| 8 | ** You can use it any way you like as long as you don't try to sell it.
|
---|
| 9 | **
|
---|
| 10 | ** Copyright, 1996, Samuel R. Blackburn
|
---|
| 11 | **
|
---|
| 12 | ** $Workfile: asd.cpp $
|
---|
| 13 | ** $Revision: 5 $
|
---|
| 14 | ** $Modtime: 10/10/98 2:45p $
|
---|
| 15 | */
|
---|
| 16 |
|
---|
| 17 |
|
---|
| 18 |
|
---|
| 19 | ASD::ASD()
|
---|
| 20 | {
|
---|
| 21 | Mnemonic = "ASD";
|
---|
| 22 | }
|
---|
| 23 |
|
---|
| 24 | ASD::~ASD()
|
---|
| 25 | {
|
---|
| 26 | //Mnemonic.Empty();
|
---|
| 27 | }
|
---|
| 28 |
|
---|
| 29 | void ASD::Empty( void )
|
---|
| 30 | {
|
---|
| 31 | }
|
---|
| 32 |
|
---|
| 33 | #pragma warning( disable : 4100 )
|
---|
| 34 |
|
---|
| 35 | BOOL ASD::Parse( const SENTENCE& sentence )
|
---|
| 36 | {
|
---|
| 37 | /*
|
---|
| 38 | ** ASD - Autopilot System Data
|
---|
| 39 | **
|
---|
| 40 | ** FORMAT TO BE DETERMINED
|
---|
| 41 | **
|
---|
| 42 | ** As soon as NMEA makes up their mind and publishes this we can't do anything but return TRUE
|
---|
| 43 | */
|
---|
| 44 |
|
---|
| 45 | return( TRUE );
|
---|
| 46 | }
|
---|
| 47 |
|
---|
| 48 | #pragma warning( default : 4100 )
|
---|
| 49 |
|
---|
| 50 | BOOL ASD::Write( SENTENCE& sentence )
|
---|
| 51 | {
|
---|
| 52 | /*
|
---|
| 53 | ** Let the parent do its thing
|
---|
| 54 | */
|
---|
| 55 |
|
---|
| 56 | RESPONSE::Write( sentence );
|
---|
| 57 |
|
---|
| 58 | sentence.Finish();
|
---|
| 59 |
|
---|
| 60 | return( TRUE );
|
---|
| 61 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.