C# serial communication with u-blox gps

前端 未结 9 1911
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-01-06 11:12

I have a GPS from u-blox.com with a USB-connection and driver. The driver installs a virual COM port that pops up when you plug the USB in. Using a hyperterminal I can then

9条回答
  •  忘掉有多难
    2021-01-06 11:41

    Got this from u-blox support.

    The following hex command will force a watchdog reset on the GPS module.

    B5 62 06 04 04 00 00 00 00 00 0E 64

    this a low level command for the ARM7 uP in the GPS It works with all u-blox GPS receiver.

    byte[] data = new byte[]{0xB5, 0x62, 0x06, 0x04, 0x04, 0x00,
                             0x00, 0x00, 0x00, 0x00, 0x0E, 0x64}; 
    sp.Write(data, 0, data.Length);
    

    It works for me.

提交回复
热议问题