Re: Reset Loop after Debugging

2009-11-05 Thread Shorin
Yeah, I determined that it was my particular app. It doesn't matter if I'm debugging or not. My app always causes a reset loop if I use it. Also, it didn't free up the bluetooth resources either... even though I explicitly had it close the port and library. I've not had much luck trying to

Re: Reset Loop after Debugging

2009-11-05 Thread Shorin
What does that mean? I only want my app to respond to normal launch. Jim Morris wrote: One reason this can happen if your application's necessary minimal launch functions are not in the first segment. Shorin wrote: Hi, I'm attempting to use the Palm OS Debugger to debug my apps on a

Re: Reset Loop after Debugging

2009-11-05 Thread Jim Morris
It has been a while, but as I remember IF you handle any notifications or similar items only the first segment of your application is loaded and no global variables are available. I remember this restart behavior if a function or global wasn't available, but we were definitely handling some

Re: Reset Loop after Debugging

2009-11-05 Thread Jeff Loucks
Global variables are not available for some launch codes, including reset. You access globals (serial_port_choice and speed_choice) in PilotMain() before you know if globals are available, which will likely cause a reset, thus a reset loop. Check the launch code before doing anything else. On

Reset Loop after Debugging

2009-11-04 Thread Shorin
Hi, I'm attempting to use the Palm OS Debugger to debug my apps on a device. Whenever I'm finished, the device goes into a reset loop and continues to do so until I delete my app that I installed. I dunno why it does this. Its a bluetooth app, but I don't think I'm doing anything I

Re: Reset Loop after Debugging

2009-11-04 Thread Jim Morris
One reason this can happen if your application's necessary minimal launch functions are not in the first segment. Shorin wrote: Hi, I'm attempting to use the Palm OS Debugger to debug my apps on a device. Whenever I'm finished, the device goes into a reset loop and continues to do so until

Re: Reset Loop after Debugging

2009-11-04 Thread Kasny J.
Hi, I'm attempting to use the Palm OS Debugger to debug my apps on a device. Whenever I'm finished, the device goes into a reset loop and continues to do so until I delete my app that I installed. I dunno why it does this. Its a bluetooth app, but I don't think I'm doing anything I shouldn't.

Reset Loop after debugging

2009-11-03 Thread Shorin
Hi, I'm attempting to use the Palm OS Debugger to debug my apps on a device. Whenever I'm finished, the device goes into a reset loop and continues to do so until I delete my app that I installed. I dunno why it does this. Its a bluetooth app, but I don't think I'm doing anything I shouldn't.