Hi many thanks for your post !
About the reboot on exit : In fact it is not a bug but a required process.
In fact you can modify the tomplayergui.sh to directly relaunch the nav software :
At the end of the file , change the lines :
- Code: Select all
# Launch navigation software if needed
if [ $IS_TTN_NOT_RUNNING -eq 0 ] ; then
if [ $NO_TS -eq 0 ] ; then
#Directly relaunch nav software
echo "Start TTN"
/etc/rc.restartgps
/bin/ttn
else
#Reboot to relaunch the nav software
sync
killall refresh_wdg
./force_reboot
fi
fi
by
- Code: Select all
# Launch navigation software if needed
#Directly relaunch nav software
echo "Start TTN"
/etc/rc.restartgps
/bin/ttn
But you are likely to experience a few troubles with such a direct relaunch (voice recognition that does not work any longer , unable to launch again tomplayer from the menu ...) That's why i have choosen to reboot by default ...
Regards...