|
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.
|