Go to Post You don't need to prototype everything, just the stuff you want to work. - JVN [more]
Home
Go Back   Chief Delphi > Technical > Programming
CD-Media   CD-Spy  
portal register members calendar search Today's Posts Mark Forums Read FAQ rules

 
 
 
Thread Tools Rating: Thread Rating: 3 votes, 5.00 average. Display Modes
Prev Previous Post   Next Post Next
  #23   Spotlight this post!  
Unread 31-01-2014, 15:21
SpaceCows SpaceCows is offline
Registered User
FRC #5202
 
Join Date: Jan 2014
Location: New Rochelle
Posts: 15
SpaceCows is an unknown quantity at this point
Re: Help A Brotha Out. Error 44002 and 44004.

Quote:
Originally Posted by Joe Ross View Post
Please post your current program (with the disabled() method) as well as the complete netbeans output. It may be helpful to zip your entire project and post it.

If it really is printing that you haven't provided a disabled() method, even though you have, the fact that the speed controllers aren't receiving signal is another symptom, not the root cause.
Okay, that would make sense.

Here is the full code:

Code:
package edu.wpi.first.wpilibj.templates;

import edu.wpi.first.wpilibj.SimpleRobot;
import edu.wpi.first.wpilibj.Joystick;
import edu.wpi.first.wpilibj.Timer;
import edu.wpi.first.wpilibj.RobotDrive;

public class RobotTemplate extends SimpleRobot {
    
    RobotDrive chassis = new RobotDrive(1, 2);
    Joystick leftStick = new Joystick(1);
    Joystick rightStick = new Joystick(2);
 
    /**
     * This function is called once each time the robot enters autonomous mode.
     */
    public void autonomous() {
      chassis.setSafetyEnabled(false);
      chassis.drive(-0.5, 0.0);
      Timer.delay(2.0);
      chassis.drive(0.0, 0.0);
    }

    /**
     * This function is called once each time the robot enters operator control.
     */
    public void operatorControl() {
        chassis.setSafetyEnabled(true);
        while(isOperatorControl() && isEnabled()){
            chassis.tankDrive(leftStick, rightStick);
            Timer.delay(0.01);
        }
    }
    
    public void disabled() { //a test to see if disabled() is ever reached
        
      chassis.setSafetyEnabled(false);
      chassis.drive(-0.5, 0.0);
      Timer.delay(2.0);
      chassis.drive(0.0, 0.0);

    }
        
    public void test() {

    }

}
And here is the full console info:

Code:
ant -f "C:\\Users\\NRHS Skynet\\Desktop\\New Folder\\RobotTemplate" deploy run
clean:
Deleting directory C:\Users\NRHS Skynet\Desktop\New Folder\RobotTemplate\build
Created dir: C:\Users\NRHS Skynet\Desktop\New Folder\RobotTemplate\build
Created dir: C:\Users\NRHS Skynet\Desktop\New Folder\RobotTemplate\build\classes
[crio-compile] ./src, C:/Users/NRHS Skynet/sunspotfrcsdk\lib\wpilibj.jar;C:/Users/NRHS Skynet/sunspotfrcsdk\lib\networktables-crio.jar, C:/Users/NRHS Skynet/sunspotfrcsdk\lib\squawk.jar -> ./build/classes
Compiling 1 source file to C:\Users\NRHS Skynet\Desktop\New Folder\RobotTemplate\build\classes
compile:
preverify:
Created dir: C:\Users\NRHS Skynet\Desktop\New Folder\RobotTemplate\build\preverify
Created dir: C:\Users\NRHS Skynet\Desktop\New Folder\RobotTemplate\build\preverify.raw.util
[crio-preverify] ./build/classes, , C:/Users/NRHS Skynet/sunspotfrcsdk\lib\wpilibj.jar;C:/Users/NRHS Skynet/sunspotfrcsdk\lib\networktables-crio.jar, C:/Users/NRHS Skynet/sunspotfrcsdk\lib\squawk.jar -> ./build/preverify
Expanding: C:\Users\NRHS Skynet\sunspotfrcsdk\lib\wpilibj.jar into C:\Users\NRHS Skynet\Desktop\New Folder\RobotTemplate\build\preverify
Expanding: C:\Users\NRHS Skynet\sunspotfrcsdk\lib\networktables-crio.jar into C:\Users\NRHS Skynet\Desktop\New Folder\RobotTemplate\build\preverify
jar:
[crio-jar] ./build/preverify, ./resources -> ./build/app.jar
Building jar: C:\Users\NRHS Skynet\Desktop\New Folder\RobotTemplate\build\app.jar
suite:
Created dir: C:\Users\NRHS Skynet\Desktop\New Folder\RobotTemplate\build\suite
[crio-suite] ./build/app.jar -> ./build/suite/image
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
[Including resource: META-INF/MANIFEST.MF]
[Including resource: META-INF/maven/edu.wpi.first.wpilib.networktables.java/NetworkTablesAzalea/pom.properties]
[Including resource: META-INF/maven/edu.wpi.first.wpilib.networktables.java/NetworkTablesAzalea/pom.xml]
Romizer processed 388 classes and generated 4 files.
Expanding: C:\Users\NRHS Skynet\Desktop\New Folder\RobotTemplate\build\app.jar into C:\Users\NRHS Skynet\Desktop\New Folder\RobotTemplate\build\suite
Moving 1 file to C:\Users\NRHS Skynet\Desktop\New Folder\RobotTemplate\build\suite
Moving 1 file to C:\Users\NRHS Skynet\Desktop\New Folder\RobotTemplate\build\suite
Moving 1 file to C:\Users\NRHS Skynet\Desktop\New Folder\RobotTemplate\build\suite
Deleting: C:\Users\NRHS Skynet\Desktop\New Folder\RobotTemplate\image.suite.api
deploy:
[crio-configure] Configuration files not included in this version of the sdk
[crio-configure] Checking that crio is configured for Java
Host OS: Windows 7 6.1, 6.1
Host JVM: Java HotSpot(TM) 64-Bit Server VM 24.45-b08
Target IP: 10.52.2.2
Network interfaces on host:
    Realtek PCIe GBE Family Controller:  address: 10.52.2.5 netmask: 255.255.255.0 <--- on robot's subnet
    Intel(R) Centrino(R) Advanced-N 6230:  address: 10.251.20.251 netmask: 255.255.255.254
Connecting FTP @10.52.2.2
[crio-deploy] ./build/suite/image.suite -> 10.52.2.2
Sending local file image.suite
run:
[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)
   Waiting for cRIO to reboot (8s)
   Waiting for cRIO to reboot (9s)
   Waiting for cRIO to reboot (10s)
   Waiting for cRIO to reboot (11s)
[cRIO] 
[cRIO] -> * Loading debug.o: debug
[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: cRIO-FRC II
[cRIO]     Runtime Name: VxWorks
[cRIO]  Runtime Version: 6.3
[cRIO]      BSP version: 1.0/0
[cRIO]          Created: May 23 2013, 16:00:09
[cRIO] ED&R Policy Mode: Deployed
[cRIO]    WDB Comm Type: WDB_COMM_END
[cRIO]              WDB: Ready.
[cRIO] 
[cRIO] * Loading nisysrpc.out: nisysrpc
[cRIO] * Loading NiRioRpc.out: NiRioRpc
[cRIO] task 0x18a70e8 (VISA Jungo Init Thread) deleted: errno=196709 (0x30065) status=-1073807360 (0xbfff0000)
[cRIO] * Loading nivissvc.out: nivissvc
[cRIO] * Loading nivision.out: nivision
[cRIO] task 0x1a15a40 (Service Locator Thread 5) deleted: errno=0 (0) status=0 (0)
[cRIO] NI-RIO Server 13.0 started successfully.
[cRIO] task 0x187f668 (NiRioRpc) deleted: errno=0 (0) status=0 (0)
[cRIO] task 0x1a1ede8 (Service Locator Thread 6) deleted: errno=0 (0) status=0 (0)
[cRIO] task 0x1a1ede8 (Service Locator Thread 7) deleted: errno=0 (0) status=0 (0)
[cRIO] task 0x1a1ede8 (Service Locator Thread 8) deleted: errno=0 (0) status=0 (0)
[cRIO] task 0x1658320 (nisysapi-mDns) deleted: errno=0 (0) status=0 (0)
[cRIO] * Loading visa32.out: visa32
[cRIO] * Loading niserial.out: niserial
[cRIO] * Loading NiFpgaLv.out: NiFpgaLv
[cRIO] * Loading FRC_FPGA_ChipObject.out: FRC_FPGA_ChipObject
[cRIO] * Loading FRC_NetworkCommunication.out: FRC_NetworkCommunication
[cRIO] FRC_NetworkCommunication version: p4-1.4.0a18
[cRIO] FPGA Hardware GUID: 0x1394F6DC1FEB42EC6910E5767ED1D22C
[cRIO] FPGA Software GUID: 0x1394F6DC1FEB42EC6910E5767ED1D22C
[cRIO] FPGA Hardware Version: 2012
[cRIO] FPGA Software Version: 2012
[cRIO] FPGA Hardware Revision: 1.6.4
[cRIO] FPGA Software Revision: 1.6.4
[cRIO] * Loading FRC_JavaVM.out: FRC_JavaVM
[cRIO] 
[cRIO] 
[cRIO] [OTA Server] Version: 2012 FRC, Jan  5 2012, 17:20:48
[cRIO] 
[cRIO] 
[cRIO] Welcome to LabVIEW Real-Time 13.0
[cRIO] task 0x18773c8 (sysapi-rpc) deleted: errno=0 (0) status=0 (0)
[cRIO] 
[cRIO] [Squawk VM] Version: 2011 FRC, Nov  5 2011, 14:34:13
[cRIO] FPGA Hardware GUID: 0x1394f6dc1feb42ec6910e5767ed1d22c
[cRIO] FPGA Software GUID: 0xa14c11bde4bb64aef6a86fc52a294cd9
[cRIO] Default robotInit() method running, consider providing your own
[cRIO] Default disabled() method running, consider providing your own
Would you need the whole project in a .zip or just the .java code?
 


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


All times are GMT -5. The time now is 02:00.

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