Javelin error ide-0028
Kibalo
Posts: 9
I have been putting the finshing touches on a automatic irrigation system for EARTHBOXES. The system deploys one-wire, UART for serial display, DS1302 Timer .
The system is functional but after 10-13 mminutes of operation the JAVELIN stops and the IDE displays ERROR IDE-0028 Unhandled Exception in JVM: java.lang.Out of memory Error.
I tried to capture this exception in a try/catch block to better understand the problem--but this did not work. I know that I build my objects during initialization only once . My debug memory shows less then 30% utilization.
Does any one have any suggestions?
Tom K.···
Comments
Stab in the dark:
Are you combining strings anywhere? (like "text"+ variable)
They seem to be a common cause of this error.
If so try the stringbuffer instead.
If you can post your code, that would definatly help someone track down your problem.
-Jon