dhoer / bladeGPS

Real-time GPS signal simulator for bladeRF

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

bladeGPS

Very crude experimental implimentation of gps-sdr-sim for real-time signal generation. The code works with bladeRF and has been tested on Windows 10 and Ubuntu 17.10.

Usage: bladegps [options]
Options:
  -e <gps_nav>     RINEX navigation file for GPS ephemerides (required)
  -y <yuma_alm>    YUMA almanac file for GPS almanacs
  -u <user_motion> User motion file (dynamic mode)
  -g <nmea_gga>    NMEA GGA stream (dynamic mode)
  -l <location>    Lat,Lon,Hgt (static mode) e.g. 35.274,137.014,100
  -t <date,time>   Scenario start time YYYY/MM/DD,hh:mm:ss
  -T <date,time>   Overwrite TOC and TOE to scenario start time
  -d <duration>    Duration [sec] (max: 86400)
  -x <XB_number>   Enable XB board, e.g. '-x 200' for XB200
  -i               Interactive mode: North='w', South='s', East='d', West='a'
  -I               Disable ionospheric delay for spacecraft scenario
  -p               Disable path loss and hold power level constant

Build on Windows with Visual Studio

Follow the instructions at Nuand wiki page and build the bladeRF library from the source with Visual Studio 2013 Express for Windows Desktop. Assume you already downloaded pthread and libusb files and successfully built the bladeRF library for your Windows environment.

  1. Start Visual Studio.
  2. Create an empty project for a console application.
  3. On the Solution Explorer at right, add the following files to the project:
  • bladegps.c and bladegps.h
  • gpssim.c and gpssim.h
  • getopt.c and getopt.h
  1. Add the paths to the following folders in Configuration Properties -> C/C++ -> General -> Additional Include Directories:
  • pthreads-w32-2-9-1-release/Pre-built.2/include for pthread.h
  • bladeRF/include for libbladeRF.h
  1. Add the paths to the following folders in Configuration Properties -> Linker -> General -> Additional Library Directories:
  • pthreads-w32-2-9-1-release/Pre-built.2/lib/x64 for pthreadVC2.lib
  • bladeRF/x64 for bladeRF.lib
  1. Specify the name of the additional libraries in Configuration Properties -> Linker -> Input -> Additional Dependencies:
  • pthreadVC2.lib
  • bladeRF.lib
  1. Select Release in the Solution Configurations drop-down list.
  2. Select X64 in the Sofution Platforms drop-down list.
  3. Run Build -> Build Solution

After a successful build, you can find the executable in the Release folder. You should put the copies of the following DLLs in the same folder to run the code:

  • bladeRF.dll
  • libusb-1.0.dll
  • pthreadVC2.dll

Build on Linux (Ubuntu 17.10)

  1. Retrive the bladeRF source in a directory next to the current directory.
$ cd ..
$ git clone git@github.com:Nuand/bladeRF.git
  1. Build the bladeRF host library.
$ cd bladeRF/host
$ mkdir build
$ cd build
$ cmake ..
$ make
  1. Build bladeGPS.
$ cd ../../../bladeGPS
$ make

Build on Mac OS X (Catalina)

  1. Install Xcode

  2. Install Xcode Command Line Tools

$ xcode-select --install
  1. Install MacPorts

  2. Create a symlink to port

$ sudo ln -s /opt/local/bin/port /usr/local/bin/port
  1. Install bladeRF
$ sudo port install bladeRF +tecla
  1. Install cmake
$ sudo port install cmake
  1. Retrive the bladeRF source in a directory next to the current directory.
$ cd ..
$ git clone git@github.com:Nuand/bladeRF.git
  1. Build the bladeRF host library.
$ cd bladeRF/host
$ mkdir build
$ cd build
$ cmake ..
$ make && sudo make install
  1. Install libomp and wget.
$ sudo port install libomp
$ sudo port install wget
  1. Compile for _MACOSX with OpenMP path and build bladeGPS.
$ cd ../../../bladeGPS
$ make CFLAGS=”-I/opt/local/include/libomp _MACOSX”

License

Copyright © 2015 Takuji Ebinuma
Distributed under the MIT License.

About

Real-time GPS signal simulator for bladeRF


Languages

Language:C 91.8%Language:C++ 6.1%Language:Shell 1.8%Language:Makefile 0.3%