This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdlib.h> | |
#include <string.h> | |
#include <stdio.h> | |
#include <unistd.h> | |
#include <fcntl.h> | |
#include <termios.h> | |
#include <argp.h> | |
/* | |
Simple program to read configuration of U-Blox GPS serial port. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <unistd.h> | |
#include <fcntl.h> | |
#include <termios.h> | |
/* | |
Simple program that sets stationary mode in U-Blox GPS connected to serial 0 on a Raspberry Pi 3 running Jessie. This | |
was not tested on any other system. This program assumes the GPS is using its default 9600 baud, 8 data bits, 1 stop bit, | |
and no parity. I'm using the expansion board from Uputronics. | |
This program worked for me when I set up my Pi as a stratum 1 NTP server per the directions on this |