You mail box was full but I was going to send you example of a trip I can take (just about anywhere)
Send mapthis (older code)- maps - and gps recording. So you could see if this was something to pursue in the code. Or I guess I could append to a trip both to the destination and back and save as 1 route.
Only problem I see is when a bizarre intersection is being crossed. Like I have an intersection like a triangle - at that one point it gives a crazy response but the map still shows correct.
Or if you are pretty happy with the speech as is - I wont pursue any changes.
I do like this idea (with a twist):
"Prevent the screen from changing to lower brightness and then to off when power is plugged in (it should be easy to make a config directive for "keep brightness=always,adapter,never")"
At night going a store - set it to recognize if there is power or running from a battery. Power would be from the cigarette lighter. When no more power but running on battery - turn off screen but not program - so it is not so attractive
code example:
int Ridepower=0;
if (scePowerIsPowerOnline()) RidePower=1;
..
if (RidePower ==1 && !scePowerIsPowerOnline) {
sceDisplayDisable();
RidePower=-1;
}
if (RidePower ==-1 && scePowerIsPowerOnline) {
sceDisplayEnable();
RidePower=1;
}
====
the sceDisplayDis/Enable() always locked up my psp so I couldnt do this myself