mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-02-19 01:53:57 +08:00
* first ignore
* init gps test
* make LimeGPS git clone
* revert ignore
* .
* remove prebuilt bins
* gps test v1
* add static signal gen script
* update readme
* remove LD_PRELOAD by using rpath, update values after testing
* .
* remove LD_PRELOAD
* .
* fix README
* .
* .
* .
* gps test v1
* cleanUp
* init
* update fuzzy tests
* .
* finalize qcom gps tests
* .
* .
* .
* add downloader
* finalize unit tests
* .
* .
* inc limeGPS startup time
* tmp
* loosen init time
* .
* .
* .
* add ublox warmstart test
* .
* improve location tests
* .
* .
* .
* .
* .
* .
* .
* .
* last cleanUp
* .
* .
* add hackrf support
* hackrf support
* .
* .
* .
* .
* .
* .
Co-authored-by: Kurt Nistelberger <kurt.nistelberger@gmail.com>
old-commit-hash: a48ec655ac
22 lines
378 B
Bash
Executable File
22 lines
378 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
|
|
cd $DIR
|
|
|
|
if [ ! -d gps-sdr-sim ]; then
|
|
git clone https://github.com/osqzss/gps-sdr-sim.git
|
|
cd gps-sdr-sim
|
|
make
|
|
cd ..
|
|
fi
|
|
|
|
if [ ! -d hackrf ]; then
|
|
git clone https://github.com/greatscottgadgets/hackrf.git
|
|
cd hackrf/host
|
|
git apply ../../patches/hackrf.patch
|
|
cmake .
|
|
make
|
|
fi
|
|
|