2010年9月21日 星期二

Using hso on Linux x86

Step1: Installing hso dirver
dpkg -i hso-dkms_1.3.0_all.deb
Step2: modprobe hso
Step3: Attached 3G modules
Step4: Find out device note
dev/ttyHS0, dev/ttyHS1, dev/ttyHS2, dev/ttyHS3
Step5: Using "cutecom" on Linux
Step6: Send "at" command by cutecome

2010年9月14日 星期二

Turn off wifi power off script

while [ 1 ]
do
iwconfig > /data/powersave.log
cat /data/powersave.log | grep mlan0
if [ $? -ne 0 ] ; then
echo "mlan0 not exist"
else
echo "turn off power saving mode"
iwconfig mlan0 power off
fi
sleep 10
done