Changes between Version 15 and Version 16 of expansion/gw16143


Ignore:
Timestamp:
10/08/2021 09:43:06 PM (3 years ago)
Author:
Tim Harvey
Comment:

updated quick start

Legend:

Unmodified
Added
Removed
Modified
  • expansion/gw16143

    v15 v16  
    9595The goal of this section is to provide a surface level understanding of the software components related beginning development on the [https://www.gateworks.com/products/mini-pcie-expansion-cards/gw16143-high-precision-gps-mini-pcie-card/ GW16143]. The primary component on the GW16143 is the [https://www.u-blox.com/en/product/zed-f9p-module U-Blox ZED-F9P] high precision gps module, and is overall comparable to the [https://www.u-blox.com/en/product/c099-f9p-application-board C099-F9P application board] in a mini-PCIe form factor. Notable differences between the C099-F9P and the GW16143 would be the absence of the ODIN-W2 (networking) module and the the addition of an antenna supervisor circuit.
    9696
     97
    9798== Quick Start
     99The ZED-F9P modem will enumerate as a USB CDC ACM device: Communication Device CDC (ACM): Communication Device Class (Abstract Control Model)
     100
    98101Viewing standard (<15m accuracy) GNSS data using the GW16143 is simple on a Gateworks board.
    99102
    100 This section has been moved [wiki:/gps#gpsd here].
     103{{{#!bash
     104root@focal-venice:~# ls -l /dev/ttyACM*
     105crw-rw---- 1 root dialout 166, 0 Oct  8 21:34 /dev/ttyACM0
     106root@focal-venice:~# cat /dev/ttyACM0
     107$GNRMC,214005.00,A,3515.48752,N,12040.13290,W,0.004,,081021,,,A,V*0A
     108$GNVTG,,T,,M,0.004,N,0.007,K,A*3E
     109$GNGGA,214005.00,3515.48752,N,12040.13290,W,1,12,0.55,32.0,M,-32.4,M,,*48
     110$GNGSA,A,3,10,21,22,31,32,01,03,04,26,,,,1.07,0.55,0.91,1*0C
     111$GNGSA,A,3,79,78,80,70,69,,,,,,,,1.07,0.55,0.91,2*0D
     112$GNGSA,A,3,01,04,36,11,09,31,05,,,,,,1.07,0.55,0.91,3*03
     113$GNGSA,A,3,20,32,29,37,35,19,,,,,,,1.07,0.55,0.91,4*08
     114$GPGSV,3,1,12,01,55,284,42,03,32,311,36,04,17,255,31,08,00,216,,1*67
     115$GPGSV,3,2,12,10,13,112,42,17,03,314,,21,57,242,47,22,54,320,45,1*65
     116}}}
     117 * Note if the device is also outputting binary data, directly reading the device as serial data can have unexpected behavior
     118
     119You can also use {{{gpsd}}} to interact with the modem:
     120 - see wiki/gps#gpsd
    101121
    102122See the following sections for information on setting up [wiki:gw16143#DPGS differential GPS] to achieve fix data with <2cm levels of accuracy.