Skip to content

Commit 1922b95

Browse files
committed
New comment.
1 parent cc063c6 commit 1922b95

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

src/dwgpsd.c

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
// 3.22 28 11 bullseye OK.
6969
// 3.23 29 12 OK.
7070
// 3.25 30 14 OK, Jan. 2023
71-
71+
// 3.25.1 30 14 bookworm TBD, Feb. 2025
7272

7373
// Previously the compilation would fail if the API version was later
7474
// than the last one tested. Now it is just a warning because it changes so
@@ -201,7 +201,14 @@ static void * read_gpsd_thread (void *arg);
201201
* scons prefix=/usr libdir=lib/aarch64-linux-gnu
202202
* [ scons check ]
203203
* sudo scons udev-install
204-
*
204+
*
205+
* Start and test
206+
*
207+
* sudo killall gpsd
208+
* cat /dev/ttyACM0
209+
*
210+
* sudo gpsd /dev/ttyACM0 -F /var/run/gpsd.sock
211+
* cgps
205212
*/
206213

207214

@@ -536,7 +543,8 @@ int main (int argc, char *argv[])
536543
while (1) {
537544
dwfix_t fix;
538545

539-
fix = dwgps_read (&info);
546+
fix = dwgps_read (&info)
547+
;
540548
text_color_set (DW_COLOR_INFO);
541549
switch (fix) {
542550
case DWFIX_2D:

0 commit comments

Comments
 (0)