// // Sample Battery Driver config file // At time of writing, battery driver supports up to 4 installed batteries. // This config file should reside in $AUV_CONFIG_DIR, and the file name should be passed // to batteryServer along with the -cfg flag. e.g. `$ battServer -cfg example_battery.cfg` // Copyright MBARI 2020 // Laughlin Barker // //Battery 1 - FWD b1Name = Batt1; b1IP = 134.89.32.147; b1Port = 20003; //Desired FET states at driver launch. Incorrect FET states will cause mission exit. b1DischFET = 1; b1AuxFET = 1; b1Aux2FET = 0; //Battery 2 - AFT b2Name = Batt2; b2IP = 134.89.32.128; b2Port= 20003; b2DischFET = 1; b2AuxFET = 0; b2Aux2FET = 0; //NOTE: Up to 4 batteries can be configured. // UNUSED BATTERIES SHOULD BE COMMENTED OUT. // Otherwise the driver will complain to Syslog periodically about having not received the // status updates from the batteries not connected on the system. //Battery 3 //b3Name = Batt3; //b3IP = 134.89.32.138; //b3Port = 20003; //b3DischFET = 1; //b3AuxFET = 0; //b3Aux2FET = 0; //Battery 4 //b4Name = Batt4; //b4IP = 134.89.32.148; //b4IPort = 20003; //b4DischFET = 1; //b4AuxFET = 0; //b4Aux2FET = 0;