Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Colin Lee

Pages: [1]
1
Sydney / Diy Usb Host Cable, Cost Aud5.0
« on: August 30, 2005, 01:12:42 pm »
To whom want to DIY a USB host cable for C3xxx/C1xxx

1st of all, thks. great for the writer to publish the techniques about DIY USB host cable. Pls. find URL in Chinese

http://forum.palmislife.com/viewthread.php?tid=39702&fpage=1

I tried to translate procedures as below:

1. Buy a USB cable, one side is female MiniB (5pin) & other side is female normal (4pin)

2. cut out the connector of MiniB, then use solder paste to get short circuited between pin 4 & 5
(be careful and secure short circuited only between pin 4 & 5)

That's it, think u would carefully see the picture and follow procedures that u can DIY in success

Br/COLIN

2
C1000/3x00 General discussions / C3000 Connects With Sony Himd
« on: August 30, 2005, 12:50:37 pm »
Dear all Zaurus prof.....

I found encl. URL (in Japanese) about driving Sony HiMD by C3000, follow info fm that site, but not success, pls. teach my newbie if anyone got experience to be got succeed.......

http://styricum.org/index.php?Zaurus%2FHi-MD

Since info is written in japanese, may I rewrite the procedure that writer wrote.
(remark: thks. great about the writer to publish/share this topic to us)

Step 1 - create a mount directory
# mkdir /mnt/md

Step 2 - add the line into the file /etc/fstab
/dev/sda   /mnt/md   vfat noauto,users,iocharset=utf8,codepage=932,umask=000,noatime 0 0

Step 3 - Create a file /etc/usbmgr/md.sh
#!/bin/sh
 
 case $ACTION in
 add)
    RETRY=15
    /bin/mount /mnt/md
    while test "$RETRY" -gt 0 -a "$?" -gt 0
    do   sleep 1      
       RETRY=`expr $RETRY - 1`
       /bin/mount /mnt/md
    done
    ;;
 remove)
    /bin/umount /mnt/md
    ;;
 esac

Step 4 - change /etc/usbmgr/md.sh to be executable??
# chmod +x /etc/usbmgr/md.sh

Step 5 - add below line into /etc/usbmgr/usbmgr.conf
# Sony MD Walkman MZ-NH1
 vendor 0x54c product 0x17f script md.sh module scsi_mod , sr_mod , usb-storage

Step 6 - execute update_usbdb
# update_usbdb /etc/usbmgr/usbmgr.conf

Pages: [1]