Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update README #80

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ Build locally
-------------

To get started, make sure you have a C++17 compiler (like g++ 8 or higher),
git, protobuf-compiler. Then run 'make ubxtool navdump' to build the
git, protobuf-compiler. Then run 'make ubxtool navdump navparse' to build the
receiver-only tools.

To build everything, including the webserver, try:
Expand All @@ -78,6 +78,8 @@ library installed. If you get an error about 'wslay', do the following, and run
echo WSLAY=-lwslay > Makefile.local
```

Some additional help or tips on building for specific platforms is found in __Building.md__

Build in Docker
---------------

Expand All @@ -99,7 +101,7 @@ Running
-------

Once compiled, run for example `./ubxtool --wait --port /dev/ttyACM0
--station 1 --stdout --galileo | ./navparse 127.0.0.1:10000 html null`
--stdout --galileo | ./navparse 127.0.0.1:10000 html null`

Next up, browse to http://[::1]:10000 (or try http://localhost:10000/ and
you should be in business. ubxtool changes (non-permanently) the
Expand All @@ -120,13 +122,13 @@ the `--ubxport <id>` option using one of the following numeric IDs:
To see what is going on, try:

```
./ubxtool --wait --port /dev/ttyACM0 --station 1 --stdout --galileo | ./navdump
./ubxtool --wait --port /dev/ttyACM0 --stdout --galileo | ./navdump
```

To distribute data to a remote `navrecv`, use:

```
./ubxtool --wait --port /dev/ttyACM0 --galileo --station 255 --dest 127.0.0.1
./ubxtool --wait --port /dev/ttyACM0 --galileo --dest 127.0.0.1
```

This will send protobuf to 127.0.0.1:29603. You can add as many destinations
Expand Down Expand Up @@ -272,6 +274,7 @@ In alphabetical order:
* California (Santa Cruz, Los Angeles area, etc)
* Massachusetts (Boston area)
* Uruguay
* and others (see galmon.eu map)

Additional sites are welcome (and encouraged) as the more data receiving sites that exist, then more accurate data and absolute coverage of each constellation can be had.

Expand Down