|
|
|
![]() |
|
|||||||
|
||||||||
![]() |
| Thread Tools | Rate Thread | Display Modes |
|
#1
|
||||
|
||||
|
Java Code Deploying Help
Hey CD
we have recently decided to use Java to code our robot. but here we have a problem: everytime we build/deploy the code in Netbeans we get the following message Waiting to Connect to OTA command server of 10.21.85.2:8001 for the past 10 sec this message keeps going on and never stops Would you please help us and tell us what should so or what we did wrong |
|
#2
|
||||
|
||||
|
Re: Java Code Deploying Help
Netbeans deploys code by FTPing it into your cRIO. My guess is that you aren't making the network connection into the robot.
The first thing to check is whether your Netbeans is configured with your team number, since that will determine what IP address it's trying to connect to. Open the Netbeans preferences dialog and select Miscellaneous / FRC configuration to set it. Next check that your computer is on the correct subnet for the cRIO. The subnet IP addresses are based on your team number. If you open a command window, you should be able to "ping" or "ftp" straight to the cRIO. This will help diagnosing network problems. |
|
#3
|
||||
|
||||
|
Re: Java Code Deploying Help
Are you sure that the robot is connected properly to your computer/laptop? If connecting times out, that probably means that it is not connected right. Make sure you've set the IP correctly.
|
|
#4
|
||||
|
||||
|
Thanks very much, we fixed that problem but now a new message pops up.
This time when we deploy the code: if does everything but it gets stuck on this line: Code:
[cRIO] GCs: 1 full, 0 partial [cRIO] ** VM stopped: exit code = 1 ** [cRIO] task 0xdaa8c0 (SquawkRobotTask) deleted: errno=0 (0) status = 1 (0x1) Could you please help me solve this issue |
|
#5
|
||||
|
||||
|
Re: Java Code Deploying Help
That means that somewhere (I'm assuming in the WPIlibj or squawk), this is called.
Code:
System.exit(1); |
|
#6
|
||||
|
||||
|
Re: Java Code Deploying Help
Quote:
The way we deployed the code, was basically connected to our cRIO using a direct ethernet cable, we opened the Driver Station program and it showed us that we had communication. Then we opened netbeans and pressed the green play button to deploy the code. It did all the stuff it shoudl (built the project, downloaded it, rebooted the cRIO) and then it stops at the line that i posted before. I am not sure if this is a programming issue or electrical issue. and also if it would be helpful, i can post my code in this thread |
|
#7
|
||||
|
||||
|
Re: Java Code Deploying Help
Quote:
|
|
#8
|
||||
|
||||
|
Re: Java Code Deploying Help
sure here it is:
Code:
package team2185.code.exhibtionCode;
import edu.wpi.first.wpilibj.IterativeRobot;
import edu.wpi.first.wpilibj.Jaguar;
import edu.wpi.first.wpilibj.Joystick;
import edu.wpi.first.wpilibj.RobotDrive;
import edu.wpi.first.wpilibj.Timer;
import edu.wpi.first.wpilibj.Watchdog;
public class ExhibtionCode extends IterativeRobot {
// DEFINING THE JAGUARS
Jaguar lm1 = new Jaguar(1); // left motor
Jaguar lm2 = new Jaguar(2);
Jaguar rm1 = new Jaguar(3); // right motor
Jaguar rm2 = new Jaguar(4);
RobotDrive driveSys = new RobotDrive (lm1, lm2, rm1, rm2);
Joystick control = new Joystick(1);
//****************************************************************************//
public void robotInit() {
// INITIALIZATION CODE
// code in here runs when the robot first starts up
}
public void autonomousInit() {
for(int i=0; i<4; i++){
driveSys.drive(0.5,0);
Timer.delay(2.0);
driveSys.drive(0,0.75);
Timer.delay(1.0);
}
}
public void teleopInit() {
// TELEOPERATED INTIALIZATION CODE
// runs only once at the start of the teleop period
}
//****************************************************************************//
public void autonomousPeriodic() {
// called periodically during the autonomous period
}
public void teleopPeriodic() {
if (control.getRawButton(1)){ // if button 1 pressed drive at full speed
driveSys.tankDrive(control, 2, control, 5);
}else { // else drive at half speed
driveSys.tankDrive(control, 2, control, 5);
driveSys.setMaxOutput(0.5);
}
}
//****************************************************************************//
public void disabledInit() {
driveSys.drive(0.0, 0.0);
}
}
|
|
#9
|
||||
|
||||
|
Re: Java Code Deploying Help
That code looks all right. Not sure of your intentions for it (A button to go full speed?), but from an error standpoint, it looks all good. If I were you, I'd reimage the CRIO and possibly reinstall the FRC plugins (Maybe compiling is going wrong and the bytecode won't run).
|
|
#10
|
||||
|
||||
|
Re: Java Code Deploying Help
Okay, I did that and I will try that out tmw in school.
Also is any other advice you can give me |
|
#11
|
||||
|
||||
|
Re: Java Code Deploying Help
In this :
Code:
public void teleopPeriodic() {
if (control.getRawButton(1)){ // if button 1 pressed drive at full speed
driveSys.tankDrive(control, 2, control, 5);
}else { // else drive at half speed
driveSys.tankDrive(control, 2, control, 5);
driveSys.setMaxOutput(0.5);
}
}
Code:
public void teleopPeriodic() {
if (control.getRawButton(1)){ // if button 1 pressed drive at full speed
driveSys.tankDrive(control, 2, control, 5);
driveSys.setMaxOutput(1);
}else { // else drive at half speed
driveSys.tankDrive(control, 2, control, 5);
driveSys.setMaxOutput(0.5);
}
}
|
|
#12
|
||||
|
||||
|
Re: Java Code Deploying Help
I meant some advice that would help me to deloy the code. Could you like tell me how teams deploy the code and what should the ip address be of the pc and crio
|
|
#13
|
||||
|
||||
|
Re: Java Code Deploying Help
Okay never mind
I got the robot running. Thanks for all your help, i really appreciate it And also i will looking forward to see ur team at GTR West and east |
|
#14
|
||||
|
||||
|
Re: Java Code Deploying Help
Quote:
Quote:
![]() Last edited by joelg236 : 11-13-2012 at 06:36 PM. Reason: Mis-quote |
![]() |
| Thread Tools | |
| Display Modes | Rate This Thread |
|
|