|
Re: Never found a solution for this problem
In our case, this error meant that Eclipse cannot find the roboRIO. The most reliable solution (at least for my team) was to log into the web dashboard and assign a static IP address to the roboRIO. Then, in your build.properties file, you add the following line (inside the <project> tags):
<property name="target" value="Your static IP"/>
For example, the full build.xml file for one of our projects is:
<?xml version="1.0" encoding="UTF-8"?>
<project name="FRC Deployment" default="deploy">
<property file="build.properties"/>
<property file="${user.home}/wpilib/cpp/${version}/ant/build.properties"/>
<import file="${user.home}/wpilib/cpp/${version}/ant/build.xml"/>
<property name="target" value="10.37.94.26"/>
</project>
Good luck!
__________________
When Henry Ford made cheap, reliable cars people said, 'Nah, what's wrong with a horse?' That was a huge bet he made, and it worked. - Elon Musk
|