That problem is likely not compressor related.
You're using the RobotDrive class. If you don't update the ouputs frequently enough you will get that error. It's a safety feature. If your code goes off to lala land, the robot will stop itself automatically.
Do disable this feature take a look at the
setSafetyEnabled method:
example:
Code:
drive.setSafetyEnabled(false)