Disclaimer

This information HAS errors and is made available WITHOUT ANY WARRANTY OF ANY KIND and without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. It is not permissible to be read by anyone who has ever met a lawyer or attorney. Use is confined to Engineers with more than 370 course hours of engineering.
If you see an error contact:
+1(785) 841 3089
inform@xtronics.com

Jpilot


How to USB sync by hand (Debian)

You need to hit the sync button on the cable - count to 3 and then hit the sync button in jpilot. Assuming udev is installed.

Under preferences/ settings/ Serial port - set it to /dev/pilot

Modem Dialing script

#!/bin/bash
# Version 0.04
# modem-dial
# (C)1994-2019
# t
# http://www.example.net
# device is your modem
DEVICE="/dev/modem"
#Your areacode
AREA="785"
#AT dial string - most will want just "AT DT"
LINE="AT DT9,"
HANGUP="atho"
RESET="atz"
# Put your special ointment here - runt it twice to test - s11 can speeds up the dialing
CONFIG="at S11=45 S8=1"
#in jpilot set your 'Dial Command' to "~/bin/modem-dial %n"
#,.,.,.,.,.,.,.,.,.

DSTRING=$1
# strip anything that isn't a digit
DSTRING="${DSTRING//[![:digit:]]/}"
#Strip off the 1 before area code
DSTRING="${DSTRING##1}"
#The next line was grabbed after minicom started and then exited. For some reason, this script won't work after boot until minicom has run once?
# If you know why please email lrak@lrak.net Not yet sure this line will work - not going to reboot right now.
stty -F $DEVICE 2102:5:800018b1:8a3b:3:1c:7f:15:4:0:1:0:11:13:1a:0:12:f:17:16:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0

# is this in your area code?
if [ "$DSTRING" != "${DSTRING#$AREA}" ]
then
# strip Area code
DSTRING="${DSTRING##$AREA}"
#dial local number
echo -n -e $LINE$DSTRING"\r" > $DEVICE
else
echo -n -e $LINE"1"$DSTRING"\r" > $DEVICE
fi

sleep 9
echo -n -e $HANGUP"\r" > $DEVICE
echo -n -e $RESET"\r" > $DEVICE
#Yes the config is at the end - so most of the time it will be quicker to dial
echo -n -e $CONFIG"\r" > $DEVICE

#echo $DSTRING
exit = 0

Treo 700P Card Reader fix

The key is to beam over the file from a 680
"SlotDriver:SDIO-sdsd"


Top Page wiki Index

Email lrak@lrak.net

(C) Copyright 1994-2019 reserved
All trademarks are the property of their respective owners.