mirror of https://github.com/ArduPilot/ardupilot
AP_Logger: add 1e-9 log multiplyer
This commit is contained in:
parent
717edae9ef
commit
0a0178988d
|
@ -101,6 +101,7 @@ const struct MultiplierStructure log_Multipliers[] = {
|
|||
{ 'E', 1e-5 },
|
||||
{ 'F', 1e-6 },
|
||||
{ 'G', 1e-7 },
|
||||
{ 'I', 1e-9 },
|
||||
// <leave a gap here, just in case....>
|
||||
{ '!', 3.6 }, // (ampere*second => milliampere*hour) and (km/h => m/s)
|
||||
{ '/', 3600 }, // (ampere*second => ampere*hour)
|
||||
|
|
|
@ -100,5 +100,6 @@ tl;dr a GCS shouldn't/mustn't infer any scaling from the unit name
|
|||
| 'E' | 1e-5 ||
|
||||
| 'F' | 1e-6 ||
|
||||
| 'G' | 1e-7 ||
|
||||
| 'I' | 1e-9 ||
|
||||
| '!' | 3.6 | (milliampere \* hour => ampere \* second) and (km/h => m/s)|
|
||||
| '/' | 3600 | (ampere \* hour => ampere \* second)|
|
||||
|
|
Loading…
Reference in New Issue