用C#读取GPS数据的基类,适用于wince操作系统。 适合自带GPS模块的PDA或智能手机的设备

这是一个C#基类,用于在Windows CE操作系统下读取带有GPS模块的PDA或智能手机的GPS数据。类中包含了串口设置、通信超时配置以及读写方法,还提供了从GPS数据中提取特定信息的函数。
摘要由CSDN通过智能技术生成

在多普达p800 , windows Mobile 5.0 操作系统下测试通过. 


 

  1. using System;
  2. using System.Runtime.InteropServices;
  3. using System.Text;
  4. namespace BaseStationPDA 
  5. {
  6.  class GPS 
  7.  {
  8.   public string PortNum; 
  9.   public int BaudRate;
  10.   public byte ByteSize;
  11.   public byte Parity; // 0-4=no,odd,even,mark,space 
  12.   public byte StopBits; // 0,1,2 = 1, 1.5, 2 
  13.   public int ReadTimeout;
  14.   
  15.   //comm port win32 file handle
  16.   private int hComm = -1;
  17.   
  18.   public bool Opened = false;
  19.    
  20.   //win32 api constants
  21.   private const uint GENERIC_READ = 0x80000000;
  22.   private const uint GENERIC_WRITE = 0x40000000;
  23.   private const int OPEN_EXISTING = 3;  
  24.   private const int INVALID_HANDLE_VALUE = -1;
  25.   
  26.   [StructLayout(LayoutKind.Sequential)]
  27.    public struct DCB 
  28.   {
  29.    //taken from c struct in platform sdk 
  30.    public int DCBlength;           // sizeof(DCB) 
  31.    public int BaudRate;            // 指定当前波特率 current baud rate
  32.    // these are the c struct bit fields, bit twiddle flag to set
  33.    public int fBinary;          // 指定是否允许二进制模式,在windows95中必须主TRUE binary mode, no EOF check 
  34.    public int fParity;          // 指定是否允许奇偶校验 enable parity checking 
  35.    public int fOutxCtsFlow;      // 指定CTS是否用于检测发送控制,当为TRUE是CTS为OFF,发送将被挂起。 CTS output flow control 
  36.    public int fOutxDsrFlow;      // 指定CTS是否用于检测发送控制 DSR output flow control 
  37.    public int fDtrControl;       // DTR_CONTROL_DISABLE值将DTR置为OFF, DTR_CONTROL_ENABLE值将DTR置为ON, DTR_CONTROL_HANDSHAKE允许DTR"握手" DTR flow control type 
  38.    public int fDsrSensitivity;   // 当该值为TRUE时DSR为OFF时接收的字节被忽略 DSR sensitivity 
  39.    public int fTXContinueOnXoff; // 指定当接收缓冲区已满,并且驱动程序已经发送出XoffChar字符时发送是否停止。TRUE时,在接收缓冲区接收到缓冲区已满的字节XoffLim且驱动程序已经发送出XoffChar字符中止接收字节之后,发送继续进行。 FALSE时,在接收缓冲区接收到代表缓冲区已空的字节XonChar且驱动程序已经发送出恢复发送的XonChar之后,发送继续进行。XOFF continues Tx 
  40.    public int fOutX;          // TRUE时,接收到XoffChar之后便停止发送接收到XonChar之后将重新开始 XON/XOFF out flow control 
  41.    public int fInX;           // TRUE时,接收缓冲区接收到代表缓冲区满的XoffLim之后,XoffChar发送出去接收缓冲区接收到代表缓冲区空的XonLim之后,XonChar发送出去 XON/XOFF in flow control 
  42.    public int fErrorChar;     // 该值为TRUE且fParity为TRUE时,用ErrorChar 成员指定的字符代替奇偶校验错误的接收字符 enable error replacement 
  43.    public int fNull;          // eTRUE时,接收时去掉空(0值)字节 enable null stripping 
  44.    public int fRtsControl;     // RTS flow control 
  45.    /*RTS_CONTROL_DISABLE时,RTS置为OFF
  46.             RTS_CONTROL_ENABLE时, RTS置为ON
  47.             RTS_CONTROL_HANDSHAKE时,
  48.             当接收缓冲区小于半满时RTS为ON
  49.              当接收缓冲区超过四分之三满时RTS为OFF
  50.             RTS_CONTROL_TOGGLE时,
  51.             当接收缓冲区仍有剩余字节时RTS为ON ,否则缺省为OFF*/
  52.    public int fAbortOnError;   // TRUE时,有错误发生时中止读和写操作 abort on error 
  53.    public int fDummy2;        // 未使用 reserved 
  54.    
  55.    public uint flags;
  56.    public ushort wReserved;          // 未使用,必须为0 not currently used 
  57.    public ushort XonLim;             // 指定在XON字符发送这前接收缓冲区中可允许的最小字节数 transmit XON threshold 
  58.    public ushort XoffLim;            // 指定在XOFF字符发送这前接收缓冲区中可允许的最小字节数 transmit XOFF threshold 
  59.    public byte ByteSize;           // 指定端口当前使用的数据位 number of bits/byte, 4-8 
  60.    public byte Parity;             // 指定端口当前使用的奇偶校验方法,可能为:EVENPARITY,MARKPARITY,NOPARITY,ODDPARITY  0-4=no,odd,even,mark,space 
  61.    public byte StopBits;           // 指定端口当前使用的停止位数,可能为:ONESTO
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值