mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-07-13 21:32:14 +08:00
90aff8c6fb
* first ignore * init gps test * make LimeGPS git clone * revert ignore * . * remove prebuilt bins * Update README.md Co-authored-by: Kurt Nistelberger <kurt.nistelberger@gmail.com> Co-authored-by: Adeeb Shihadeh <adeebshihadeh@gmail.com> old-commit-hash: 784246cf54505660afd0ebc6b8a5b43915543aef
9 lines
205 B
Bash
Executable File
9 lines
205 B
Bash
Executable File
#!/bin/bash
|
|
|
|
LimeGPS_BIN=LimeGPS/LimeGPS
|
|
if test -f "$LimeGPS_BIN"; then
|
|
LD_PRELOAD=LimeSuite/builddir/src/libLimeSuite.so $LimeGPS_BIN $@
|
|
else
|
|
echo "LimeGPS binary not found, run 'setup.sh' first"
|
|
fi
|