mirror of https://github.com/ArduPilot/ardupilot
autotest: include EK2,EK3 and DAL LogStructures in code-defined messages
This commit is contained in:
parent
42d9727f49
commit
3f6b398a01
|
@ -1571,7 +1571,10 @@ class AutoTest(ABC):
|
||||||
# blank line
|
# blank line
|
||||||
continue
|
continue
|
||||||
if state == state_outside:
|
if state == state_outside:
|
||||||
if "#define LOG_BASE_STRUCTURES" in line:
|
if ("#define LOG_BASE_STRUCTURES" in line or
|
||||||
|
"#define LOG_STRUCTURE_FROM_DAL" in line or
|
||||||
|
"#define LOG_STRUCTURE_FROM_NAVEKF2" in line or
|
||||||
|
"#define LOG_STRUCTURE_FROM_NAVEKF3" in line):
|
||||||
# self.progress("Moving inside")
|
# self.progress("Moving inside")
|
||||||
state = state_inside
|
state = state_inside
|
||||||
continue
|
continue
|
||||||
|
|
Loading…
Reference in New Issue