Shop OBEX P1 Docs P2 Docs Learn Events
Javelin IDE Error Codes — Parallax Forums

Javelin IDE Error Codes

Ryan ClarkeRyan Clarke Posts: 738
edited 2010-01-27 08:19 in General Discussion
Here is a list of the error codes you may get from the JVM, LINKER or IDE.

▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Ryan Clarke
Parallax Tech Support

RClarke@Parallax.com

Comments

  • bxgirtenbxgirten Posts: 79
    edited 2005-11-24 17:38
    I just read the Error Codes pdf. I'll download the latest IDE and see what happens.
  • Peter VerkaikPeter Verkaik Posts: 3,956
    edited 2007-10-03 13:48
    Here is the error list from the beta IDE sources (as I received them).

    regards peter

    Post Edited (Peter Verkaik) : 10/3/2007 2:11:28 PM GMT
  • HeroHero Posts: 24
    edited 2008-10-25 17:18
    Error IDE-0022 (Error reading from serial port) (Timeout)


    ANY ONE TO HELP.
  • HeroHero Posts: 24
    edited 2008-11-29 14:25
    Hi any one know how to deal with the lexical: illegal Token on a Servo control.
  • Peter VerkaikPeter Verkaik Posts: 3,956
    edited 2008-11-29 14:29
    Which error code is generated?
    And which code generated the error?

    regards peter
  • HeroHero Posts: 24
    edited 2008-11-29 18:04
    [noparse][[/noparse]Java Error] ServoControl. java (16): Lexical:illegal token

    including 20 and 24
  • Peter VerkaikPeter Verkaik Posts: 3,956
    edited 2008-11-29 19:56
    Here is ServoControl.java as found in my ...\Projects\examples\manual_v1_0··folder.

    Compiles without error. Apparently your copy is corrupted.

    regards peter
  • HeroHero Posts: 24
    edited 2008-11-30 12:42
    Thanks its now working.
  • Istha PowronIstha Powron Posts: 74
    edited 2010-01-27 08:19
    OK, I have the error;

    [noparse][[/noparse]Error IDE-0024] Unknown bytecode in the JEM file{wide}.

    I have looked at the error code table which says that I should try not to do anything dodgy......which I try not to do anyway.

    This occurs about half an hour after the software has been running happily. I have isolated the problem to this loop (i.e. if I remove everything else, the problem persists with the code below);

    ·// START - Main Program Loop
    ···· while (true)
    ········· {

    //Clear string buffers

    ·····InBuffer.clear();
    ···· gpsBuffer.clear();

    ···· c = 0xff;

    ···· while (c != '\r' && rxIn.byteAvailable())
    ······· {
    ········· c = (char)rxIn.receiveByte();
    ········· InBuffer.append(c);
    ······· }
    ········· dispOut.sendString(InBuffer.toString());
    ········· System.out.println(InBuffer.toString());
    }// End main loop



    Any idea why this would run for about 9000 loops then die?

    Any help greatly appreciated.

    As well..has anyone written a NMEA parsing library??

    Regards,

    Istha

    ▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔





    The robot is going to lose. Not by much. But when the final score is tallied, flesh and blood will beat the damn monster.
    Adam Smith
Sign In or Register to comment.