Giter Club home page Giter Club logo

rtk-gps-python's Introduction

RTK-GPS-Python

Hardware components:

  • Ublox RTK Package C94-M8P buy!
  • Intel UP Squared Board buy!

Testing the hardware

To identify the tty device node number in Linux corresponding to a particular hardware uart open a terminal and execute the following command

ls /sys/bus/pci/devices/0000\:00\:18.?/dw-apb-uart.*/tty/ | grep tty

/sys/bus/pci/devices/0000:00:18.0/dw-apb-uart.8/tty/:
ttyS0
/sys/bus/pci/devices/0000:00:18.1/dw-apb-uart.9/tty/:
ttyS1

The first UART (associated to dw-apb-uart.8) is the uart on the M10 connector, and the one associated with dw-apb-uart.9 is the one on the HAT. So to access the uart on the HAT on ubilinux I have to open the device file /devttyS1

sudo screen /dev/ttyS1 115200

Connection:

Up_Squared pin8 <---------> ublox pin9 Up_Squared pin10 <---------> ublox pin10 ublox_pinout Up_squared pinout

Example code:

import mraa
import time
import sys

# serial port
port = "/dev/ttyS5"
u = mraa.Uart(port)

u.setBaudRate(19200)
u.setMode(8, mraa.UART_PARITY_NONE, 1)
u.setFlowcontrol(False, False)

# Start a neverending loop waiting for data to arrive.
# Press Ctrl+C to get out of it.
while True:
    if u.dataAvailable():
        # We are doing 1-byte reads here
        data = u.readStr(1)
        print(data)

rtk-gps-python's People

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.