|
|
|
![]() |
|
|||||||
|
||||||||
![]() |
|
|
Thread Tools |
Rating:
|
Display Modes |
|
|
|
#1
|
||||
|
||||
|
Re: Eclipse WPILib Problem C++
This isn't likely not be related, but thought I would mention this C++ driver station update just in case.
http://www.usfirst.org/sites/default...Bundle0210.pdf |
|
#2
|
||||
|
||||
|
Re: Eclipse WPILib Problem C++
Note that I am attempting to answer this question having not looked at the WPILib in several years...
The error you are describing sounds like you are trying to instantiate an interface rather than a fully implemented class. Posting a code snipit might help diagnose the exact problem. Do you have a line in your code like: Code:
SpeedController sc = new SpeedController(); Code:
SpeedController sc = new IVictorSP(); Code:
SpeedController sc = new VictorSP(); Check your documentation and make sure you are instantiating the correct class. |
|
#3
|
||||
|
||||
|
Re: Eclipse WPILib Problem C++
Do you at least see an FRCUserProgram binary under the Binaries tree node in the Project explorer? If so then your code is building ok, in which case the IDE parser is likely showing stale info. In which case this should fix it....
http://www.chiefdelphi.com/forums/sh...63&postcount=5 |
|
#4
|
||||
|
||||
|
Re: Eclipse WPILib Problem C++
Quote:
Quote:
|
|
#5
|
||||
|
||||
|
Re: Eclipse WPILib Problem C++
http://wpilib.screenstepslive.com/s/...to-the-roborio
Look at the eclipse screenshots. There is a tree node called "Binaries" in the project explorer. It's above "Includes", which is above "Debug", etc... |
![]() |
| Thread Tools | |
| Display Modes | Rate This Thread |
|
|