PDA

View Full Version : Using a Palm III as LDCproc display.


mungewell
October 10th, 2007, 09:14 PM
Brain dump of bits for others to play with.

Basical concept:
Palm III hardware to serial port running LCDproc client, powered from PC supply, hacked to ensure that the palm always turns on when PC powered (think shorting power switch will work).

Applications:
http://palmorb.sourceforge.net/
http://www.palmbytes.coolfreepages.com/autoexec.html
and/or
http://docwhat.gerf.org/code/powerbutton/

Have fun,
Mungewell.

laga
October 10th, 2007, 09:31 PM
Thx.

laga
October 14th, 2007, 11:08 AM
I tried this the other day - it worked, but not very well. I could see the output of lcdproc and mythlcdserver, but I'd get some quare blocks in the output on my Palm M100. Have you ever seen this on yours?

mungewell
October 15th, 2007, 12:37 PM
but I'd get some quare blocks in the output on my Palm M100. Have you ever seen this on yours?

Yes, I also see the blocks. :-(

I think that the mythlcdserver is not as advanced as it could be, lots of problems with the screens not being updated when exiting a menus, etc. I believe that these issues are applicable to all LCDproc screens (saw the same thing with the ncurses 'display' as well).

Basically it is not really a suitable method of navigating through menus and selecting content.

My next plan is to use the VNC server, and use a palm vnc client to connect to that. Started experimenting and had some success with:
http://palmvnc2.free.fr/

Needed to patch and rebuild VNC server to support server side scalling (to get mythtv menus to fit on such a small screen), but blew up my installation (filled the disk... and corrupted database on the test machine).

Intend to grab RC tonight and have a further play.
Munge.

mungewell
October 25th, 2007, 11:28 AM
Needed to patch and rebuild VNC server to support server side scalling

Just a follow up to says it's never as easy as it seems. The patch was for an older version of VNC (3. something), whilst the VNC built into X (vnc4server) has moved on quite a bit wrt to the code. I'll take a better man than me to merge this in.....

There is an older version of VNC in the ubuntu repo's but this isn't as 'clean' as vnc4.


On the up side, the palm end does work (albeit without server side scaling). Just a note to other that might try I have had most luck running the serial link at 38400, any higher than that and the vnc client gets stuck when transfering data.

You need to config PPP settings...
/etc/ppp/peers/palm
---
/dev/ttyACM0 38400 cdtrcts
connect '/usr/sbin/chat -v -f /etc/ppp/palm.chat'
noauth
nodetach
debug
local
192.168.55.101:192.168.55.100
---

and
/etc/ppp/palm.chat
---
TIMEOUT 3600
---

Under the palm's settings configure the network to use a 'direct connection' @38400 and set (any) username/password with automatic IP.

Start the Linux machine listening with the command 'sudo pppd call palm' and do a 'connect' on the palm. Then start palmvnc and connect to '192.168.55.101' (the linux machine).

I am experimenting with changing the vnc4server parameters using 'vncconfig -set <param>'.

Have fun,
Simon.