|
Re: Setting custom disable behaviors
Quote:
Originally Posted by gappleto97
Tried the following snippet on DisabledInit() and DisabledPeriodic(). Neôther worked.
@Override
Public void DisabledInit()
{
Super.DisabledInit();
LED.disable();
}
It didn't like the override. I may have typed it in wrong, as I'm going off of 2-month old memory, but still.
How do I get this to work?
|
Should be
Code:
public void disabledInit()
{
super.disabledInit();
LED.disable();
}
Unfortunately annotations are not supported in the version of java that runs on the cRIO.
Last edited by notmattlythgoe : 01-05-2014 at 09:41.
|