Coder Social home page Coder Social logo

moonbuggy / orange-pi-zero-gps-ntp Goto Github PK

View Code? Open in Web Editor NEW
2.0 1.0 0.0 10.16 MB

An Orange Pi Zero GPS disciplined NTP server, with an SPI TFT display.

clock clocks digital-clock digital-clock-and-date gps gps-data ntp ntp-server orange-pi orange-pi-zero

orange-pi-zero-gps-ntp's Introduction

Orange Pi Zero GPS NTP Server

An Orange Pi Zero with attached GPS, TFT and RTC devices, to create a stratum 1 NTP server.


Orange Pi Zero GPS NTP Server

moonbuggy/fbgpsclock is used to interface between the display and the other devices.

Hardware

Assembled


internals


internals (annotated)


top


rear


side

There's also a gallery (NSFW) with some images from various stages of testing and building.

Components

Orange Pi Zero

Although we're using an Orange Pi Zero (OPiZ) here, the specific single-board computer used isn't all that important. Any device with UART, SPI, I2C and GPIO interfaces should work, needing only one of each.

Any device tree overlays in this repository will, however, be specifically for the OPiZ and would need to be modified for use on other SBCs.

GPS (NEO-M8N)

We're using a u-blox NEO-M8N GPS, although any GPS device that gpsd can talk to should work.


u-blox NEO-M8N module

Soldering a wire to a point between the PPS LED and its current limiting resistor provides a usable PPS signal on this module.

The GPS is attached through a UART interface (UART2), while the PPS signal is connected separately through a GPIO pin (pin 15, PA03).

Bias tee

A bias tee is installed between the GPS module and the antenna. This allows us to run the antenna's internal low-noise amplifier (LNA) off the 5V enclosure supply, rather than the 3.3V that would be provided via the GPS module.Running the LNA at a higher power should give us better signal.

Antenna

There's a lot of antenna options available, it really depends on the use case

A standard panel antenna seems to be more than adequate indoors, inside a plastic enclosure with the rest of the hardware. Ideally the panel antenna should have mounting holes so it can be screwed securely to the enclosure, rather than being taped/glued to a circuit board as may be necessary with antenna included with the GPS module.

TFT display (ST7789V driver)

An LCD screen attached to the OPiZ's SPI bus gives us a way to display the current time and any other information that may be relevant.


2.0" SPI TFT

A TFT with an ST7789V driver chip and 240x320 pixel resolution has been used in this case, but a working device tree overlay for a 240x280 pixel display has also been provided. Other resolutions will work with some minor modifications to the DT overlay. Using a different driver chip is more complicated.

The exact dimensions of the display don't matter a great deal, it's really only limited by how much surface area is available on the enclosure to fit a screen.

The TFT display is attached to the SPI1 bus.

Real-time Clock (DS3231)

A real-time clock provides accurate time immediately after booting. This is useful because, coming from a cold start, the GPS module can take a little while to establish a fix and begin providing time data. Covering this gap with an RTC means we always have access to a time reference.

The DS3231 is a good option for a cheap and easy I2C RTC module.


DS3231 RTC module

Power Switch

A power switch from moonbuggy/GPIO-power-switch lets us properly shutdown and cut power to the whole enclosure (including the GPS module and bias tee).

Making use of the remaining free pins in the cable, we can use the following:

signal pin GPIO
GPIO_POWEROFF 21 PA16
KEY_POWER 12 PA07
READY_SIGNAL 16 PA19

Note

The GPIO_SHUTDOWN signal requires CONFIG_POWER_RESET_GPIO and CONFIG_POWER_RESET_GPIO_RESTART to be enabled in the kernel, which may not be the case for a default OS install.

Due to pin 16 (PA19) having an internal pull-up resistor, we'll use the verson of the power switch with the active low LED so the default LED state at power up is not-ready.

More details are available at moonbuggy/GPIO-power-switch.

Wiring

Schematic


GPIO wiring

Cable

The specific pins chosen allow us to make a convenient cable to connect the GPS, TFT and power control modules while leaving the I2C pins clear for the RTC module to plug directly in.


GPS + 2.0" TFT + power control cable schematic

Note

The cable is wired for the specific attached devices. The OPiZ end is static, but the other connectors will need to be adjusted to match the pinout of the particular TFT and GPS modules in use.

Most of the connectors are standard pin sockets, with a 2x8 socket being used for the OPiZ end 1x5 and 1x8 sockets on the GPS and TFT modules respectively. A JST XH2.54 connector is used for the GPIO signals to/from the power control board.


GPS + TFT + power control cable

The OPiZ end of the cable will attach to GPIO pins 11 to 26. Using a black wire for the ground connection to OPiZ pin 25 provides a convenient way to align the connector, regardless of the other wire colours.

Power Splitter


power splitter

In an ideal world there'd be enough room in the enclosure to combine this splitter and the power control circuit on a single PCB, to save a cable run (although it's not a big deal that they're separate).

Closing the jumper bypasses the switch in the power control circuit, directly connecting the OPiZ and bias tee to ground, and is useful during testing. The button and LED in the power control circuit will still work as expected, and the MOSFET will still switch, it just won't have any effect and actually cut power after a shutdown -h command or button press.

Software

Pre-built OS Image

There's a pre-built Armbian image in the releases which will work out of the box for a build using the same (or compatible) hardware wired as described above. All the setup and configuration steps below have been done during the image creation.

Simply write the *.img.xz file to an SD card, put the card in the OPiZ, power it up.

GPS devices other than the Neo M8N should work easily with this image, so long as they use uart2 (and use pin 15/PA03 for the PPS signal). A different display controller or RTC, however, would be incompatible with the device tree in the image.

It's possible to re-configure the pre-built OS after first boot, if necessary to adjust for differing hardware. Depending on how much modification is needed, it may be easier to start with a bare OS and do the manual steps described below.

Packages

The *.deb files in the release are packages which can be installed on top of an existing Armbian install, as an alternative to the pre-built image.

These packages just add the modules necessary for the GPIO power switch to work to the kernel. They do not install any GPS/NTP/TFT software or handle any of the configuration like the image does.

Install with: sudo dpkg -i *.deb

Manual Configuration

Armbian

We need to enable the i2c0, pps-gpio, tve and uart2 devices. It probably makes sense to enable clock-1.2GHz-1.3v as well, if it isn't by default. This can be done in armbian-config or by editing /boot/armbianEnv.txt.

A parameter for the PPS pin needs to be defined in /boot/armbianEnv.txt, regardless of how the hardware overlays above are enabled:

sudo sh -c "echo 'param_pps_pin=PA3' >> /boot/armbianEnv.txt"
Custom Devive Tree Overlays

The device tree source (DTS) files in this repo for the display are for an ST7789V SPI TFT controller with a 240x280 or 240x320 display. They can be modified for other resolutions.

The most relevant areas, if we're modifying these DTS files for a different display, are opiz_display_pins and the width, height and 0x1000037 values in opizdisplay.

The RTC DTS is for a DS3231N connected to i2c0 (pins 3 and 5).

The gpio-key-power.dts overlay allows a physical button to turn the SBC on (by pulling pin 12/PA07 low), and the sun8i-h3-gpio-poweroff.dts overlay allows the OS to signal it has shutdown (by pulling pin 21/PA16 high).

To install, pick the appropriate DTS for the display, then:

sudo armbian-add-overlay st7789v-<res>.dts
sudo armbian-add-overlay rtc-ds3231n.dts
sudo armbian-add-overlay gpio-key-power.dts
sudo armbian-add-overlay sun8i-h3-gpio-poweroff.dts
Display Driver Init

Both DTS files contain a custom init for the driver. This init sequence is based off that in the kernel driver (as opposed to that in the ST7789V datasheet, which differs in some places), with only the VSCSAD (37h): Vertical Scroll Start Address of RAM register being changed (and then only for the 240x280 DTS).

The VSCSAD (37h) register basically aligns the display area. Since the driver chip will support up to 240x320, for a lower resolution screen we need to make sure the pixels the driver is mapping to are in the visible portion.

i.e. for a 280px high screen, there's 40px of dead space. VSCSAD (37h) lets us scroll the vertical alignment up or down if that dead space is being displayed as a black area at the top or bottom of the screen.

In the 240x280 DTS file we're moving 300px, because we've got 20px dead space top and bottom. Moving just 20px moves in the wrong direction. Converting 300 to hex gives us 012C, which then looks like this in the DTS: 0x1000037 0x01 0x2c

The 240x320 DTS is just using the kernel driver's default init unmodified. The init section probably doesn't need to be in this DTS, but it's a convenient reference for the defaults.

Status LED

If using the moonbuggy/GPIO-power-switch module, the status LED can be changed from red to green to indicate the device is ready by pulling pin 16 (PA19) low. In this case we'll indicate 'ready' with a systemd service, once both the gpsd and chrony services are running.

/usr/lib/systemd/system/ready.target
[Unit]
Description=System is booted and ready (for toggling status LED)
Requires=fbgpsclock.service chrony.service gpsd.service gpsd.socket multi-user.target
After=fbgpsclock.service chrony.service gpsd.service gpsd.socket multi-user.target
AllowIsolate=yes
/usr/lib/systemd/system/ready-led.service
[Unit]
Description='ready' status indicator LED
After=fbgpsclock.service chrony.service gpsd.service gpsd.socket
Requires=fbgpsclock.service chrony.service gpsd.service gpsd.socket

[Service]
Type=oneshot
ExecStart=gpioset 0 19=0
ExecStop=gpioset 0 19=1
RemainAfterExit=yes

[Install]
WantedBy=ready.target

To enable the service:

sudo systemctl daemon-reload
sudo systemctl enable ready-led
sudo systemctl set-default ready.target

gpsd

Installation
sudo apt install gpsd

# optional tools
sudo apt install gpsd-tools pps-tools
/etc/default/gpsd
# Devices gpsd should connect to at boot time.
# They need to be read/writeable, either by user gpsd or the group dialout.
DEVICES="/dev/ttyS2 /dev/pps0"

# Other options you want to pass to gpsd
GPSD_OPTIONS="-n -s 115200"

# Automatically hot add/remove USB GPS devices via gpsdctl
USBAUTO="true"

/bin/stty -F /dev/ttyS2 115200
/bin/setserial /dev/ttyS2 low_latency

The GPS device may need to be configured to run at 115200bps, with commands appropriate for the particular device. Alternatively, the serial port could be run at a slower speed, but I found my u-blox NEO M8N defaulted to 9600bps and this was slow enough to generate complaints in logs about missing data.

Once configured:

sudo systemctl daemon-reload
sudo systemctl enable gpsd
sudo systemctl start gpsd

chrony

Installation
sudo apt install chrony
/etc/chrony/conf.d/gpsd.conf
refclock SHM 0 refid NMEA offset 0.110
refclock PPS /dev/pps0 refid PPS lock NMEA

The offset value is estimated from gpsmon -n, and should be set to something appropriate for any individual setup as it will vary. It makes sense to do a proper calibration based on a period of GPS data collection, rather than just an the instantaneous estimate from real-time monitoring.

The default configuration for the RTC is for chrony to tell the system to set it every 11 minutes. To let chrony set the time from the RTC (as a backup if there's some issue with the GPS), it needs to be run with the -s argument.

/etc/default/chrony
# This is a configuration file for /etc/init.d/chrony and
# /lib/systemd/system/chrony.service; it allows you to pass various options to
# the chrony daemon without editing the init script or service file.

# Options to pass to chrony.
DAEMON_OPTS="-F 1 -r -m -s"

fbgpsclock

The fbgpsclock repo contains software for displaying time and GPS information on the TFT display.


fbgpsclock screenshot

Installation

Check build dependencies are installed (this may not be a complete dependency list):

sudo apt install gcc libgps-dev make

Then build and install:

git clone --depth=1 https://github.com/moonbuggy/fbgpsclock.git
cd fbgpsclock/
make
sudo make install
sudo systemctl enable fbgpsclock
sudo systemctl start fbgpsclock

More detail and configuration information is available at moonbuggy/fbgpsclock.

Links

Software

Hardware

Datasheets

orange-pi-zero-gps-ntp's People

Contributors

moonbuggy avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.