//////////////////////////////////////////////////////////////////// // // PURPOSE: List of logging parameters, such as mass properties. // // NOTES: All values (except "strings") must be followed by // a unit abbreviation (or one of the unit-like // abbreviations: n/a, bool, enum, count). // // The control gains are adjusted for an Easy-Servo sampling // period of 2 seconds. // // //////////////////////////////////////////////////////////////////// // For config commands below see "help configSet" command for syntax (but omit the "configSet" keyword). // logCourier items: These are the most important bits of information sent before anything else logCourier mostRecent latitude_fix; logCourier mostRecent longitude_fix; logCourier mostRecent time_fix; logCourier mostRecent platform_battery_charge 1.0 Wh; logCourier mostRecent platform_battery_voltage 0.1 V; // logExpress items: These will be sent, even via expensive data pathways, but after logCourier items // Engineering data logExpress linearApprox depth 1 m; logExpress linearApprox latitude 0.0002 arcdeg; logExpress linearApprox longitude 0.0002 arcdeg; //logExpress linearApprox platform_battery_charge 1.0 Wh; // moved to logCourier mostRecent logExpress linearApprox platform_average_current 500 mA; //logExpress linearApprox platform_battery_voltage 0.1 V; // moved to logCourier mostRecent // Science data logExpress linearApprox mass_concentration_of_chlorophyll_in_sea_water 5.0 ug/l; logExpress linearApprox sea_water_temperature 1.0 kelvin; // logExpress linearApprox sea_water_salinity XX psu; // logExpress linearApprox volume_scattering_470_nm 0.001 1/m/sr; // logExpress linearApprox volume_scattering_650_nm 0.001 1/m/sr; // logExpress linearApprox mass_concentration_of_oxygen_in_sea_water 1000.0 ug/l; // logExpress linearApprox downwelling_photosynthetic_photon_flux_in_sea_water 50 umol/s/m2; // logExpress linearApprox upward_derivative_of_sea_water_temperature 0.01 degC/m; // PeakChl is always reported to shore if active in Missions/Insert/Science.xml // logPriority items: These will only be sent via medium expense data pathways (3G?), but after logExpress items // higher resolution engineering data logPriority linearApprox depth 0.1 m; logPriority linearApprox latitude 0.00001 arcdeg; logPriority linearApprox longitude 0.00001 arcdeg; // logNormal items: These will only be sent via low expense data pathways (802.11?), but after logPriority items // full resolution engineering data //logNormal all depth; //logNormal all latitude; //logNormal all longitude;