You might want to have Commandbase.init() in your robotInit.
Like so:
Code:
public void robotInit() {
oi = new OI();
// instantiate the command used for the autonomous period
CommandBase.init();
That's a snippet from our code.
I'm not positive that's the issue, but it might be a problem.