oncore-shmem.html revision 132451
1132451Sroberto<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2132451Sroberto
3132451Sroberto<html>
4132451Sroberto
5132451Sroberto    <head>
6132451Sroberto        <title>ONCORE - SHMEM</title>
7132451Sroberto        <link href="../scripts/style.css" type="text/css" rel="stylesheet">
8132451Sroberto    </head>
9132451Sroberto
10132451Sroberto    <body>
11132451Sroberto        <h3>Motorola ONCORE - The Shared Memory Interface</h3>
12132451Sroberto        <hr>
13132451Sroberto        <h4>Introduction</h4>
14132451Sroberto        <p>In NMEA mode, the Oncore GPS receiver provides the user with the same information as other GPS receivers. In BINARY mode, it can provide a lot of additional information.</p>
15132451Sroberto        <p>In particular, you can ask for satellite positions, satellite health, signal levels, the ephemeris and the almanac, and you can set many operational parameters. In the case of the VP, you can get the pseudorange corrections necessary to act as a DGPS base station, and you can see the raw satellite data messages themselves.</p>
16132451Sroberto        <p>When using the Oncore GPS receiver with NTP, this additional information is usually not available since the receiver is only talking to the oncore driver in NTPD. To make this information available for use in other programs, (say graphic displays of satellites positions, plots of SA, etc.), a shared memory interface (SHMEM) has been added to the refclock_oncore driver on those operating systems that support shared memory.</p>
17132451Sroberto        <p>To make use of this information you will need an Oncore Reference Manual for the Oncore GPS receiver that you have. The Manual for the VP only exists as a paper document, the UT+/GT+/M12 manuals are available as a pdf documents at <a href="http://www.synergy-gps.com/Mot_Manuals.html">Synergy</a> .</p>
18132451Sroberto        <p>This interface was written by Poul-Henning Kamp (phk@FreeBSD.org), and modified by Reg Clemens (reg@dwf.com). The interface is known to work in FreeBSD, Linux, and Solaris.</p>
19132451Sroberto        <h4>Activating the Interface</h4>
20132451Sroberto        <p>Although the Shared Memory Interface will be compiled into the Oncore driver on those systems where Shared Memory is supported, to activate this interface you must include a <b>STATUS</b> or <b>SHMEM</b> line in the <tt>/etc/ntp.oncore</tt> data file that looks like</p>
21132451Sroberto        <pre>
22132451Sroberto        STATUS &lt; file_name &gt;<br>
23132451Sroberto        or<br>
24132451Sroberto        SHMEM &lt; file_name &gt;
25132451Sroberto</pre>
26132451Sroberto        Thus a line like
27132451Sroberto        <pre>
28132451Sroberto        SHMEM /var/adm/ntpstats/ONCORE
29132451Sroberto</pre>
30132451Sroberto        <p>would be acceptable. This file name will be used to access the Shared Memory.</p>
31132451Sroberto        <p>In addition, one the two keywords <b>Posn2D</b> and <b>Posn3D</b> can be added to see @@Ea records containing the 2D or 3D position of the station (see below). Thus to activate the interface, and see 3D positions, something like</p>
32132451Sroberto        <pre>
33132451Sroberto        SHMEM /var/adm/ntpstats/ONCORE
34132451Sroberto        Posn3D
35132451Sroberto</pre>
36132451Sroberto        <p>would be required.</p>
37132451Sroberto        <h4>Storage of Messages in Shared Memory</h4>
38132451Sroberto        <p>With the shared memory interface, the oncore driver (refclock_oncore) allocates space for all of the messages that it is configured to receive, and then puts each message in the appropriate slot in shared memory as it arrives from the receiver. Since there is no easy way for a client program to know when the shared memory has been updated, a sequence number is associated with each message, and is incremented when a new message arrives. With the sequence number it is easy to check through the shared memory segment for messages that have changed.</p>
39132451Sroberto        <p>The Oncore binary messages are kept in their full length, as described in the Reference manual, that is everything from the @@ prefix thru the &lt;checksum&gt;&lt;CR&gt;&lt;LF&gt;.</p>
40132451Sroberto        <p>The data starts at location ONE of SHMEM (NOT location ZERO).</p>
41132451Sroberto        <p>The messages are stacked in a series of variable length structures, that look like</p>
42132451Sroberto        <pre>
43132451Sroberto        struct message {
44132451Sroberto                u_int   length;
45132451Sroberto                u_char  sequence;
46132451Sroberto                u_char  message[length];
47132451Sroberto        }
48132451Sroberto</pre>
49132451Sroberto        <p>if something like that were legal. That is, there are two bytes (caution, these may NOT be aligned with word boundaries, so the field needs to be treated as a pair of u_char), that contains the length of the next message. This is followed by a u_char sequence number, that is incremented whenever a new message of this type is received. This is followed by 'length' characters of the actual message.</p>
50132451Sroberto        <p>The next structure starts immediately following the last char of the previous message (no alignment). Thus, each structure starts a distance of 'length+3' from the previous structure.</p>
51132451Sroberto        <p>Following the last structure, is a u_int containing a zero length to indicate the end of the data.</p>
52132451Sroberto        <p>The messages are recognized by reading the headers in the data itself, viz @@Ea or whatever.</p>
53132451Sroberto        <p>There are two special cases.</p>
54132451Sroberto        <p>(1) The almanac takes a total of 34 submessages all starting with @@Cb.<br>
55132451Sroberto            35 slots are allocated in shared memory. Each @@Cb message is initially placed in the first of these locations, and then later it is moved to the appropriate location for that submessage. The submessages can be distinguished by the first two characters following the @@Cb header, and new data is received only when the almanac changes.</p>
56132451Sroberto        <p>(2) The @@Ea message contains the calculated location of the antenna, and is received once per second. However, when in timekeeping mode, the receiver is normally put in 0D mode, with the position fixed, to get better accuracy. In 0D mode no position is calculated.</p>
57132451Sroberto        <p>When the SHMEM option is active, and if one of <b>Posn2D</b> or <b>Posn3D</b> is specified, one @@Ea record is hijacked each 15s, and the receiver is put back in 2D/3D mode so the the current location can be determined (for position determination, or for tracking SA). The timekeeping code is careful NOT to use the time associated with this (less accurate) 2D/3D tick in its timekeeping functions.</p>
58132451Sroberto        <p>Following the initial @@Ea message are 3 additional slots for a total of four. As with the almanac, the first gets filled each time a new record becomes available, later in the code, the message is distributed to the appropriate slot. The additional slots are for messages containing 0D, 2D and 3D positions. These messages can be distinguished by different bit patterns in the last data byte of the record.</p>
59132451Sroberto        <h4>Opening the Shared Memory File</h4>
60132451Sroberto        <p>The shared memory segment is accessed through a file name given on a <b>SHMEM</b> card in the <tt>/etc/ntp.oncore</tt> input file. The following code could be used to open the Shared Memory Segment:</p>
61132451Sroberto        <pre>
62132451Sroberto        char *Buf, *file;
63132451Sroberto        int size, fd;
64132451Sroberto        struct stat statbuf;
65132451Sroberto
66132451Sroberto        file = &quot;/var/adm/ntpstats/ONCORE&quot;;  /* the file name on my ACCESS card */
67132451Sroberto        if ((fd=open(file, O_RDONLY)) &lt; 0) {
68132451Sroberto                fprintf(stderr, &quot;Cant open %s\n&quot;, file);
69132451Sroberto                exit(1);
70132451Sroberto        }
71132451Sroberto
72132451Sroberto        if (stat(file, &amp;statbuf) &lt; 0) {
73132451Sroberto                fprintf(stderr, &quot;Cant stat %s\n&quot;, file);
74132451Sroberto                exit(1);
75132451Sroberto        }
76132451Sroberto
77132451Sroberto        size = statbuf.st_size;
78132451Sroberto        if ((Buf=mmap(0, size, PROT_READ, MAP_SHARED, fd, (off_t) 0)) &lt; 0) {
79132451Sroberto                fprintf(stderr, &quot;MMAP failed\n&quot;);
80132451Sroberto                exit(1);
81132451Sroberto        }
82132451Sroberto</pre>
83132451Sroberto        <h4>Accessing the data</h4>
84132451Sroberto        <p>The following code shows how to get to the individual records.</p>
85132451Sroberto        <pre>
86132451Sroberto        void    oncore_msg_Ea(), oncore_msg_As(), oncore_msg_Bb();
87132451Sroberto
88132451Sroberto        struct Msg {
89132451Sroberto            char         c[5];
90132451Sroberto            unsigned int seq;
91132451Sroberto            void         (*go_to)(uchar *);
92132451Sroberto        };
93132451Sroberto
94132451Sroberto        struct Msg Hdr[] = { {&quot;@@Bb&quot;, 0, &amp;oncore_msg_Bb},
95132451Sroberto                             {&quot;@@Ea&quot;, 0, &amp;oncore_msg_Ea},
96132451Sroberto                             {&quot;@@As&quot;, 0, &amp;oncore_msg_As}};
97132451Sroberto
98132451Sroberto        void
99132451Sroberto        read_data()
100132451Sroberto        {
101132451Sroberto            int     i, j, k, n, iseq, jseq;
102132451Sroberto            uchar   *cp, *cp1;
103132451Sroberto
104132451Sroberto
105132451Sroberto            for(cp=Buf+1; (n = 256*(*cp) + *(cp+1)) != 0;  cp+=(n+3)) {
106132451Sroberto                for (k=0; k &lt; sizeof(Hdr)/sizeof(Hdr[0]);  k++) {
107132451Sroberto                    if (!strncmp(cp+3, Hdr[k].c, 4)) {      /* am I interested? */
108132451Sroberto                        iseq = *(cp+2);
109132451Sroberto                        jseq = Hdr[k].seq;
110132451Sroberto                        Hdr[k].seq = iseq;
111132451Sroberto                        if (iseq &gt; jseq) {              /* has it changed? */
112132451Sroberto                            /* verify checksum */
113132451Sroberto                            j = 0;
114132451Sroberto                            cp1 = cp+3;             /* points to start of oncore response */
115132451Sroberto                            for (i=2; i &lt; n-3; i++)
116132451Sroberto                                j ^= cp1[i];
117132451Sroberto                            if (j == cp1[n-3]) {    /* good checksum */
118132451Sroberto                                    Hdr[k].go_to(cp1);
119132451Sroberto                            } else {
120132451Sroberto                                fprintf(stderr, &quot;Bad Checksum for %s\n&quot;, Hdr[k].c);
121132451Sroberto                                break;
122132451Sroberto                            }
123132451Sroberto                        }
124132451Sroberto                    }
125132451Sroberto                }
126132451Sroberto                if (!strncmp(cp+3, &quot;@@Ea&quot;, 4))
127132451Sroberto                    cp += 3*(n+3);
128132451Sroberto                if (!strncmp(cp+3, &quot;@@Cb&quot;, 4))
129132451Sroberto                    cp += 34*(n+3);
130132451Sroberto            }
131132451Sroberto        }
132132451Sroberto
133132451Sroberto        oncore_msg_Bb(uchar *buf)
134132451Sroberto        {
135132451Sroberto                /* process Bb messages */
136132451Sroberto        }
137132451Sroberto
138132451Sroberto        oncore_msg_Ea(uchar *buf)
139132451Sroberto        {
140132451Sroberto                /* process Ea messages */
141132451Sroberto        }
142132451Sroberto
143132451Sroberto        oncore_msg_As(uchar *buf)
144132451Sroberto        {
145132451Sroberto                /* process As messages */
146132451Sroberto        }
147132451Sroberto</pre>
148132451Sroberto        <p>The structure Hdr contains the Identifying string for each of the messages that we want to examine, and the name of a program to call when a new message of that type is arrives. The loop can be run every few seconds to check for new data.</p>
149132451Sroberto        <h4>Examples</h4>
150132451Sroberto        <p>There are two complete examples available. The first plots satellite positions and the station position as affected by SA, and keeps track of the mean station position, so you can run it for periods of days to get a better station position. The second shows the effective horizon by watching satellite tracks. The examples will be found in the GNU-zipped tar file <a href="ftp://ftp.udel.edu/pub/ntp/software/OncorePlot.tar.gz">ftp://ftp.udel.edu/pub/ntp/software/OncorePlot.tar.gz</a>.</p>
151132451Sroberto        <p>Try the new interface, enjoy.</p>
152132451Sroberto        <hr>
153132451Sroberto        <address>Reg.Clemens (reg@dwf.com), Poul-Henning Kamp (phk@FreeBSD.org)</address>
154132451Sroberto        <hr>
155132451Sroberto        <script type="text/javascript" language="javascript" src="../scripts/footer.txt"></script>
156132451Sroberto    </body>
157132451Sroberto
158132451Sroberto</html>
159