AP_ICEngine: Use SI units conventions in parameter units

Follow the rules from:
http://physics.nist.gov/cuu/Units/units.html
http://physics.nist.gov/cuu/Units/outside.html
and
http://physics.nist.gov/cuu/Units/checklist.html
one further constrain is that only printable (7bit) ASCII characters are allowed
This commit is contained in:
Dr.-Ing. Amilcar Do Carmo Lucas 2017-05-02 15:44:18 +02:00 committed by Andrew Tridgell
parent c892555c17
commit 6ac8aeff05

View File

@ -40,7 +40,7 @@ const AP_Param::GroupInfo AP_ICEngine::var_info[] = {
// @DisplayName: Time to run starter // @DisplayName: Time to run starter
// @Description: This is the number of seconds to run the starter when trying to start the engine // @Description: This is the number of seconds to run the starter when trying to start the engine
// @User: Standard // @User: Standard
// @Units: Seconds // @Units: s
// @Range: 0.1 5 // @Range: 0.1 5
AP_GROUPINFO("STARTER_TIME", 2, AP_ICEngine, starter_time, 3), AP_GROUPINFO("STARTER_TIME", 2, AP_ICEngine, starter_time, 3),
@ -48,7 +48,7 @@ const AP_Param::GroupInfo AP_ICEngine::var_info[] = {
// @DisplayName: Time to wait between starts // @DisplayName: Time to wait between starts
// @Description: Delay between start attempts // @Description: Delay between start attempts
// @User: Standard // @User: Standard
// @Units: Seconds // @Units: s
// @Range: 1 10 // @Range: 1 10
AP_GROUPINFO("START_DELAY", 3, AP_ICEngine, starter_delay, 2), AP_GROUPINFO("START_DELAY", 3, AP_ICEngine, starter_delay, 2),