View Single Post
  #4   Spotlight this post!  
Unread 14-01-2016, 09:17
jtwilson jtwilson is offline
Registered User
FRC #1730 (Team Driven)
Team Role: Programmer
 
Join Date: Jan 2016
Rookie Year: 2015
Location: Lee's Summit MO
Posts: 3
jtwilson is an unknown quantity at this point
Re: No robot code on roboRIO

We ran into the same error.

Are you using the simple robot template? If you are, try adding this code:

void Disabled()
{
while(IsDisabled()){}
}

and this:

void RobotInit()
{

}

it appears that these need to be overriden, or the robot will kill the process directly after you deploy it.
Reply With Quote