Go to Post Definitely read through ALL the documentation, and if you still have questions, ask. - Joe Ross [more]
Home
Go Back   Chief Delphi > Technical > Programming > Java
CD-Media   CD-Spy  
portal register members calendar search Today's Posts Mark Forums Read FAQ rules

 
Reply
Thread Tools Rate Thread Display Modes
  #16   Spotlight this post!  
Unread 05-02-2010, 08:18
cilginbilgin cilginbilgin is offline
Registered User
FRC #2905
 
Join Date: Jan 2010
Location: Istanbul,Turkey
Posts: 188
cilginbilgin is a jewel in the roughcilginbilgin is a jewel in the roughcilginbilgin is a jewel in the roughcilginbilgin is a jewel in the rough
Re: NetBeans not talking to the cRio

We have the same problem, Netbeans do not continue to working. We have the latest updates but we can not load or run our program through NetBeans.

We need help, please!!!
Reply With Quote
  #17   Spotlight this post!  
Unread 05-02-2010, 12:00
derekwhite's Avatar
derekwhite derekwhite is offline
Java Virtual Machine Hacker
no team (FIRST@Oracle)
Team Role: Programmer
 
Join Date: May 2009
Rookie Year: 2009
Location: Burlington, MA
Posts: 127
derekwhite is on a distinguished road
Re: NetBeans not talking to the cRio

Please post the run output.
Reply With Quote
  #18   Spotlight this post!  
Unread 05-02-2010, 15:08
omalleyj omalleyj is offline
Registered User
AKA: Jim O'Malley
FRC #1279 (Cold Fusion)
Team Role: Mentor
 
Join Date: Jan 2008
Rookie Year: 2008
Location: New Jersey
Posts: 132
omalleyj is a splendid one to beholdomalleyj is a splendid one to beholdomalleyj is a splendid one to beholdomalleyj is a splendid one to beholdomalleyj is a splendid one to beholdomalleyj is a splendid one to beholdomalleyj is a splendid one to beholdomalleyj is a splendid one to behold
Re: NetBeans not talking to the cRio

Besides setting the update URL you also need to keep an eye out for new updates and select the Updates tab, and press 'Update'. Here is an attachment of what it looks like for NetBeans updates, my FRC is up to date so I couldn't show that.
Attached Thumbnails
Click image for larger version

Name:	Screenshot-Plugins.png
Views:	25
Size:	47.0 KB
ID:	8528  
Reply With Quote
  #19   Spotlight this post!  
Unread 05-02-2010, 21:41
SGK's Avatar
SGK SGK is offline
Registered User
None #0175 (BUZZ Robotics)
Team Role: Photography
 
Join Date: Jan 2002
Rookie Year: 2000
Location: Enfield, CT
Posts: 69
SGK is just really niceSGK is just really niceSGK is just really niceSGK is just really niceSGK is just really nice
Re: NetBeans not talking to the cRio

We just started having problems with our JAVA to the cRIO ever since NetBeans AutoUpdater updated and then 2 FRC plugins got upgraded too. One of them was FRCSquak which was upgraded from 1.15 to 1.17. Getting "Feed Watchdog" Error oscilating on Dashboard. Plugged in a machine w/o the upgrade and no issues.

Anybody got a solution? Who needs to go back and check these plugins?
Reply With Quote
  #20   Spotlight this post!  
Unread 06-02-2010, 15:37
bsudduth bsudduth is offline
Registered User
None #2751
 
Join Date: Oct 2009
Location: Clemson, SC
Posts: 6
bsudduth is an unknown quantity at this point
Re: NetBeans not talking to the cRio

We had this problem immediately after we updated the cRIO to v19 and used the latest FRC Plugin updates. We set the NoApp DIP Switch on the cRIO to on and redeployed and it started working.

Hope this helps and was not a coincidence.
Reply With Quote
  #21   Spotlight this post!  
Unread 07-02-2010, 14:04
cilginbilgin cilginbilgin is offline
Registered User
FRC #2905
 
Join Date: Jan 2010
Location: Istanbul,Turkey
Posts: 188
cilginbilgin is a jewel in the roughcilginbilgin is a jewel in the roughcilginbilgin is a jewel in the roughcilginbilgin is a jewel in the rough
Re: NetBeans not talking to the cRio

@DerekWhite :
We found our problem we just forgot to update crio to v19 sorry about that. I think it is fixed now. But after installing the v19 a watchdog problem occured. We now try bsudduth's solution. I will send our feedback again.
Reply With Quote
  #22   Spotlight this post!  
Unread 07-02-2010, 14:19
cilginbilgin cilginbilgin is offline
Registered User
FRC #2905
 
Join Date: Jan 2010
Location: Istanbul,Turkey
Posts: 188
cilginbilgin is a jewel in the roughcilginbilgin is a jewel in the roughcilginbilgin is a jewel in the roughcilginbilgin is a jewel in the rough
Re: NetBeans not talking to the cRio

Here is the situation:

We are trying to use our joysticks and jaguars.Serial port was only a try, you can ignore it if you want.

Our java code:
Code:
package edu.wpi.first.wpilibj.templates;


import edu.wpi.first.wpilibj.GenericHID.Hand;
import edu.wpi.first.wpilibj.SimpleRobot;
import edu.wpi.first.wpilibj.RobotDrive;
import edu.wpi.first.wpilibj.Joystick;
import edu.wpi.first.wpilibj.Jaguar;
import edu.wpi.first.wpilibj.Watchdog;
import edu.wpi.first.wpilibj.SerialPort;
import edu.wpi.first.wpilibj.visa.VisaException;
import edu.wpi.first.wpilibj.RobotBase;

public class RobotTemplate extends SimpleRobot {

    
    RobotDrive drive = new RobotDrive(1,2);
    final int baud = 9600;
    final int dataBits =8;
    SerialPort sp;
    Watchdog wd;

    public void autonomous() {

   System.out.println("autonomous OK");
        wd.feed();
    wd.setEnabled(false);

        drive.tankDrive(2, 2);
        
    }

    public void operatorControl() {
        System.out.println("Operator OK");
        wd.feed();

        try
        {
        sp = new SerialPort(baud,dataBits);
        }
        catch(VisaException vs)
        {
        }
        Joystick driveJoy= new Joystick(1);
        Jaguar leftControl = new Jaguar(1);
        Jaguar rightControl = new Jaguar(2);

        if(driveJoy.getTrigger())
        {
            leftControl.set(driveJoy.getY());
            rightControl.set(driveJoy.getAxis(Joystick.AxisType.kX));
        }
        else if(driveJoy.getRawButton(2))
        {
            leftControl.set(driveJoy.getThrottle());
            rightControl.set(driveJoy.getAxis(Joystick.AxisType.kThrottle));
        }
        else if(driveJoy.getRawButton(4))
        {
            leftControl.set(driveJoy.getMagnitude());
        }

    }
}

And here is the console output:
Code:
init:
init:
No to.jar.file specified.
Using "suite\RobotTemplate_1.0.0.jar"
Deleting directory C:\Documents and Settings\Developer\My Documents\NetBeansProjects\RobotTemplate\build
Deleting directory C:\Documents and Settings\Developer\My Documents\NetBeansProjects\RobotTemplate\suite
Deleting directory C:\Documents and Settings\Developer\My Documents\NetBeansProjects\RobotTemplate\j2meclasses
clean:
Created dir: C:\Documents and Settings\Developer\My Documents\NetBeansProjects\RobotTemplate\build
Compiling 1 source file to C:\Documents and Settings\Developer\My Documents\NetBeansProjects\RobotTemplate\build
compile:
Created dir: C:\Documents and Settings\Developer\My Documents\NetBeansProjects\RobotTemplate\j2meclasses
preverify:
Created dir: C:\Documents and Settings\Developer\My Documents\NetBeansProjects\RobotTemplate\suite
Building jar: C:\Documents and Settings\Developer\My Documents\NetBeansProjects\RobotTemplate\suite\RobotTemplate_1.0.0.jar
jar-app:
Using "suite\RobotTemplate_1.0.0.jar"
CompilerOracle: exclude com/sun/squawk/Method.getParameterTypes
CompilerOracle: exclude com/sun/squawk/SymbolParser.getSignatureTypeAt
CompilerOracle: exclude com/sun/squawk/SymbolParser.stripMethods
[translating suite image [closed: false, parent: squawk] ...]
### Excluding compile: com.sun.squawk.Method::getParameterTypes
### Excluding compile: com.sun.squawk.SymbolParser::getSignatureTypeAt
Romizer processed 77 classes and generated these files:
  C:\Documents and Settings\Developer\My Documents\NetBeansProjects\RobotTemplate\image.sym
  C:\Documents and Settings\Developer\My Documents\NetBeansProjects\RobotTemplate\image.suite
  C:\Documents and Settings\Developer\My Documents\NetBeansProjects\RobotTemplate\image.suite.metadata
  C:\Documents and Settings\Developer\My Documents\NetBeansProjects\RobotTemplate\image.suite.api
Expanding: C:\Documents and Settings\Developer\My Documents\NetBeansProjects\RobotTemplate\suite\RobotTemplate_1.0.0.jar into C:\Documents and Settings\Developer\My Documents\NetBeansProjects\RobotTemplate\suite
Moving 1 file to C:\Documents and Settings\Developer\My Documents\NetBeansProjects\RobotTemplate\suite
Moving 1 file to C:\Documents and Settings\Developer\My Documents\NetBeansProjects\RobotTemplate\suite
Moving 1 file to C:\Documents and Settings\Developer\My Documents\NetBeansProjects\RobotTemplate\suite
Deleting: C:\Documents and Settings\Developer\My Documents\NetBeansProjects\RobotTemplate\image.suite.api
Connecting FTP @10.29.5.2
upgrade:
Sending local file image.suite
flashapp:
deploy:
init:
[cRIO] [OTA Server] ********* REBOOTING cRIO *********
[cRIO] 
   Waiting for cRIO to reboot (1s)
   Waiting for cRIO to reboot (2s)
   Waiting for cRIO to reboot (3s)
   Waiting for cRIO to reboot (4s)
   Waiting for cRIO to reboot (5s)
   Waiting for cRIO to reboot (6s)
   Waiting for cRIO to reboot (7s)
[cRIO] 
[cRIO] -> * Loading StartupDlls: debug
[cRIO] Entering debug.o StartupLibraryInit
[cRIO] Debugging is up, target server mounted at /tsfs
[cRIO] 
[cRIO] 
[cRIO]                 VxWorks
[cRIO] 
[cRIO] Copyright 1984-2006  Wind River Systems, Inc.
[cRIO] 
[cRIO]              CPU: MPC5200 -- Wind River Lite5200 BSP.
[cRIO]     Runtime Name: VxWorks
[cRIO]  Runtime Version: 6.3
[cRIO]      BSP version: 2.0/10
[cRIO]          Created: Jul 29 2009, 13:41:47
[cRIO] ED&R Policy Mode: Deployed
[cRIO]    WDB Comm Type: WDB_COMM_END
[cRIO]              WDB: Ready.
[cRIO] 
[cRIO] Leaving debug.o StartupLibraryInit
[cRIO] * Loading StartupDlls: NiRioRpc
[cRIO] * Loading StartupDlls: niorbs
[cRIO] * Loading StartupDlls: NiViSrvr
[cRIO] * Loading StartupDlls: nivissvc
[cRIO] task 0xee3da8 (PAL00fb5148) deleted: errno=0 (0) status=0 (0)
[cRIO] NI-RIO Server 3.2 started successfully.
[cRIO] task 0xc5f1f8 (NiRioRpc) deleted: errno=0 (0) status=0 (0)
[cRIO] * Loading StartupDlls: nivision
[cRIO] * Loading StartupDlls: niserial
[cRIO] * Loading StartupDlls: FRC_FPGA
[cRIO] * Loading StartupDlls: FRC_NetworkCommunication
[cRIO] FRC_NetworkCommunication was compiled from SVN revision 2064
[cRIO] FPGA Hardware GUID: 0xAD9A5591CC64E4DF756D77D1B57A549E
[cRIO] FPGA Software GUID: 0xAD9A5591CC64E4DF756D77D1B57A549E
[cRIO] FPGA Hardware Version: 2010
[cRIO] FPGA Software Version: 2010
[cRIO] FPGA Hardware Revision: 1.3.0
[cRIO] FPGA Software Revision: 1.3.0
[cRIO] * Loading StartupDlls: FRC_JavaVM
[cRIO] 
[cRIO] 
[cRIO] [OTA Server] Version: 2010 FRC, Feb  4 2010, 21:33:36
[cRIO] 
[cRIO] task 0x214b2d0 (t2) deleted: errno=0 (0) status=0 (0)
[cRIO] 
[cRIO] Welcome to LabVIEW Real-Time 8.6.1f2
[cRIO] 
[cRIO] NI-VISA Server 4.5 started successfully.
[cRIO] task 0xe623d0 (t1) deleted: errno=1835009 (0x1c0001) status=1 (0x1)
[cRIO] 
[cRIO] [Squawk VM] Version: 2010 FRC, Feb  4 2010, 21:35:40
[cRIO] FPGA Hardware GUID: 0xad9a5591cc64e4df756d77d1b57a549e
[cRIO] FPGA Software GUID: 0xad9a5591cc64e4df756d77d1b57a549e
[cRIO] Information: No user-supplied robotMain()
[cRIO] task 0xe5f610 (FTP Server Connection Thread) deleted: errno=70 (0x46) status=0 (0)
[cRIO] task 0xe5f610 (FTP Server Connection Thread) deleted: errno=70 (0x46) status=0 (0)
[cRIO] Operator OK
[cRIO] java.lang.NullPointerException
[cRIO]     at java.lang.Throwable.<init>(Throwable.java:88)
[cRIO]     at java.lang.Exception.<init>(Exception.java:44)
[cRIO]     at java.lang.RuntimeException.<init>(RuntimeException.java:48)
[cRIO]     at java.lang.NullPointerException.<init>(NullPointerException.java:54)
[cRIO]     at com.sun.squawk.VM.nullPointerException(VM.java:391)
[cRIO]     at edu.wpi.first.wpilibj.templates.RobotTemplate.operatorControl(RobotTemplate.java:57)
[cRIO]     at edu.wpi.first.wpilibj.SimpleRobot.startCompetition(SimpleRobot.java:83)
[cRIO]     at edu.wpi.first.wpilibj.RobotBase.startApp(RobotBase.java:132)
[cRIO]     at javax.microedition.midlet.MIDletTunnelImpl.callStartApp(MIDletTunnelImpl.java:60)
[cRIO]     at com.sun.squawk.imp.MIDletMainWrapper.main(MIDletMainWrapper.java:110)
[cRIO]     at com.sun.squawk.Klass.main(Klass.java:2997)
[cRIO]     at com.sun.squawk.Isolate.run(Isolate.java:1554)
[cRIO]     at java.lang.Thread.run(Thread.java:231)
[cRIO]     at com.sun.squawk.VMThread.callRun(VMThread.java:1499)
[cRIO]     at com.sun.squawk.VM.callRun(VM.java:305)
The driver sitation do not permit me to control both teleoperated and autonomous control. When i press enable the clock starts but stops after 3 seconds. Than it says "Teleoperated/Autonomous Disabled" and "Watchdog Not Fed".
Is the problem about my code? What should i do?
Reply With Quote
Reply


Thread Tools
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Downloading code: Netbeans does not reset cRIO ellisk Java 8 31-01-2010 19:02
Laptop is not finding the cRIO properly? Studentish Electrical 4 07-05-2009 12:03
Reimaging the cRio Issues there are no cRio devices on the subnet Stuart FRC Control System 2 25-02-2009 23:41
Heres a big problem that I think Discreet does not know what they are talking about. wes16zeus 3D Animation and Competition 9 09-01-2002 23:31


All times are GMT -5. The time now is 11:12.

The Chief Delphi Forums are sponsored by Innovation First International, Inc.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2017, Jelsoft Enterprises Ltd.
Copyright © Chief Delphi