View Single Post
  #5   Spotlight this post!  
Unread 03-02-2016, 00:55
spat's Avatar
spat spat is offline
QDriverStation Developer
AKA: Alex Spataru
FRC #3794 (WinT)
Team Role: College Student
 
Join Date: Sep 2015
Rookie Year: 2013
Location: Mexico
Posts: 44
spat is on a distinguished road
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
Reply With Quote