summaryrefslogtreecommitdiff
path: root/navit/script/gps_emu
diff options
context:
space:
mode:
Diffstat (limited to 'navit/script/gps_emu')
-rwxr-xr-xnavit/script/gps_emu19
1 files changed, 0 insertions, 19 deletions
diff --git a/navit/script/gps_emu b/navit/script/gps_emu
deleted file mode 100755
index f2eef3e50..000000000
--- a/navit/script/gps_emu
+++ /dev/null
@@ -1,19 +0,0 @@
-#! /bin/bash
-function send_data
-{
- trap send_data SIGPIPE
- while read line
- do
- case $line in
- \$GPVTG*)
- echo "$line"
- sleep 1
- ;;
- *)
- echo "$line"
- ;;
- esac
- done <track/all.txt >/tmp/gpsdata
-}
-
-send_data