30.03.2016, 19:24
Hallo!
Ich für mein GPS GPS-Modul GY-GPS6MV2 setzt es unmöglich, das Modul fti ich ein Kabel zu parametrieren mit ihm verbunden.
und ich habe keine Signale, die xbmc erreicht
StartCarPC :
GPSD:
Est ce qu'il y a une erreur dans mes fichiers?
Ich für mein GPS GPS-Modul GY-GPS6MV2 setzt es unmöglich, das Modul fti ich ein Kabel zu parametrieren mit ihm verbunden.
und ich habe keine Signale, die xbmc erreicht
StartCarPC :
Code:
#!/bin/bash
# Start XBMC
#sudo killall xbmc.bin
#/usr/local/lib/xbmc/xbmc.bin &
#sudo renice -n -5 -p $(pgrep xbmc.bin)
#sudo killall kodi.bin
#/usr/local/lib/kodi/kodi.bin &
#sudo renice -n -5 -p $(pgrep kodi.bin)
# Start gpsd FOR 7WAYS
sudo killall gpsd
sudo chmod a+rwx /var/run/gps d.sock
gpsd /dev/ttyUSB0
sudo stty -F /dev/ttyUSB0 9600&
gpsctl -f -n /dev/ttyUSB0&
sudo killall 7ways
# Start 7ways with a low priority
cd /opt/carpc/7ways/
./7ways &
# Start Time synchronization tool with a low priority
cd /opt/carpc/tools/
nice -n 11 ./update-date.sh &
# Start Update check tool with low priority
nice -n 11 python /opt/carpc/tools/carpc-check-for-updates.py &
cd /opt/carpc/startup/
./StartCarPC_stage2 &
GPSD:
Code:
# Default settings for the gpsd init script and the hotplug wrapper.
# Start the gpsd daemon automatically at boot time
START_DAEMON="true"
# Use USB hotplugging to add new USB devices automatically to the daemon
USBAUTO="true"
# Devices gpsd should collect to at boot time.
# They need to be read/writeable, either by user gpsd or the group dialout.
DEVICES="/dev/ttyUSB0"
# Other options you want to pass to gpsd
GPSD_# Default settings for the gpsd init script and the hotplug wrapper.
# Start the gpsd daemon automatically at boot time
START_DAEMON="true"
# Use USB hotplugging to add new USB devices automatically to the daemon
USBAUTO="true"
# Devices gpsd should collect to at boot time.
# They need to be read/writeable, either by user gpsd or the group dialout.
DEVICES="/dev/ttyUSB0"
# Other options you want to pass to gpsd
GPSD_OPTIONS="-n"OPTIONS="-n"
Est ce qu'il y a une erreur dans mes fichiers?