yet another update of WinCE/iPAQ

Ohshima, Yoshiki Yoshiki.Ohshima at disney.com
Tue Jul 24 18:27:13 UTC 2001


  Hello,

  The serial port and IR port on iPAQ wasn't working for
Squeak/WinCE.  That's because the small difference of normal
Win32 and WinCE.

  For those who want to use the ports and able to build the
VM, change 

  wsprintf(name,TEXT("COM%d"),portNum);

line of serialPortOpen() in sqWin32SerialPort.c to something
like

#ifndef _WIN32_WCE
  wsprintf(name,TEXT("COM%d"),portNum);
#else
  wsprintf(name,TEXT("COM%d:"),portNum);
#endif

-- Yoshiki




More information about the Squeak-dev mailing list