Hey guys, first post here.
We are also having trouble with using DriverStationLCD. The code that I am attempting to use is as follows:
Code:
textOut.println(DriverStationLCD.Line.kUser3, 2, message);
textOut.updateLCD();
where 'textOut' is an instance of DriverStationLCD retrieved with DriverStationLCD.getInstance() and 'message' is a String that is never more than 15 characters.
This code is executed periodically. The problem is that after it executes a few times the DS stops responding and must be restarted to regain functionality. This does not happen if I remove those two lines, so I'm fairly sure that they are the cause.
Has anyone gotten this to work? Any help is greatly appreciated.