It does not work on Zire 71. It seems Serial Library is no longer available on this model. Application runs fine in Zire 71 simulator though, it only does not work on real hardware.
Do I have to rewrite the application using new Serial data manager?
I'm using following code to open serial library (the fatal alert is displayed):
global.serial_lib_num = 0; error = SysLibFind ("Serial Library", &global.serial_lib_num); ErrFatalDisplayIf(error, "Cannot find serial library");
On Palm OS 5, the older serial library isn't loaded by default, but it still exists. You need to modify your code to do a SysLibLoad to load the library when the SysLibFind fails, and it should also do a SysLibRemove to unload the library when its done.
-- Ben Combee, DTS technical lead, PalmSource, Inc. "Combee on Palm OS" weblog: http://palmos.combee.net/ Palm OS Dev Fourm Archives: http://news.palmos.com/read/all_forums/
-- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/
