From 1468f66ed8e5a4367574c28262844ffa3edf4894 Mon Sep 17 00:00:00 2001 From: Peter Barker Date: Mon, 8 Jul 2024 19:06:08 +1000 Subject: [PATCH] autotest: param_metadata: add jerk as a known unit --- Tools/autotest/param_metadata/param.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Tools/autotest/param_metadata/param.py b/Tools/autotest/param_metadata/param.py index 8ba842c3ea138..b1fc8302bb554 100644 --- a/Tools/autotest/param_metadata/param.py +++ b/Tools/autotest/param_metadata/param.py @@ -86,6 +86,7 @@ def has_param(self, pname): 'deg' : 'degrees' , # Not SI, but is some situations more user-friendly than radians 'deg/s' : 'degrees per second' , # Not SI, but is some situations more user-friendly than radians 'deg/s/s' : 'degrees per square second', # Not SI, but is some situations more user-friendly than radians + 'deg/s/s/s' : 'degrees per cube second', # Not SI, but is some situations more user-friendly than radians 'cdeg' : 'centidegrees' , # Not SI, but is some situations more user-friendly than radians 'cdeg/s' : 'centidegrees per second', # Not SI, but is some situations more user-friendly than radians 'cdeg/s/s': 'centidegrees per square second' , # Not SI, but is some situations more user-friendly than radians