Documentation

I have been trying to program the motors using the RobotDrive function but I don’t know what to do if I have more than one drive system, for example I will be having two motors for driving and one for a lift, etc. If I try to initalize more than one RobotDrive there are errors. Can anyone help with this?

Also, it seems as though the C/C++ Documentation is lacking and the Doxygen documentation isn’t very clear. Where is the best place to learn the WindRiver/WPILib functions for FIRST? Thank you very much.

the documentation called C_Programming guide for FRc (or something like that) at http://first.wpi.edu/Images/CMS/First/FRC1718Docs.zip
but
RobotDrive myRobot(1,2);//pwm ports 1 and 2
myRobot.Drive(1,0); speed, curve (1 to -1)
Jaguar jag(3);//create jaguar (or Victor) on PWM port 3
jag.Set(1);//set speed to full

Thank you very much. Finally a manual that is not full of blank pages