File tree 1 file changed +5
-2
lines changed 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -3124,7 +3124,6 @@ def LoggerDocumentation_greylist(self):
3124
3124
"SMVZ", # Sim-Volz
3125
3125
3126
3126
"SORC", # Soaring
3127
- "VAR", # soaring
3128
3127
3129
3128
"TCLR", # tempcal
3130
3129
"TEMP", # temperature sensor library
@@ -3141,7 +3140,6 @@ def LoggerDocumentation_greylist(self):
3141
3140
"GMB2", # sologimbal
3142
3141
"QBRK", # quadplane
3143
3142
"SURF", # surface-tracking
3144
- "ATUN", # Copter autotune
3145
3143
])
3146
3144
3147
3145
def LoggerDocumentation_whitelist(self):
@@ -3308,6 +3306,11 @@ def LoggerDocumentation(self):
3308
3306
if len(missing) > 0:
3309
3307
raise NotAchievedException("Documented messages (%s) not in code" % missing)
3310
3308
3309
+ # ensure things in the whitelist are not documented:
3310
+ for g in greylist:
3311
+ if g in docco_ids:
3312
+ raise NotAchievedException(f"greylisted ({g}) is actually documented")
3313
+
3311
3314
def initialise_after_reboot_sitl(self):
3312
3315
3313
3316
# after reboot stream-rates may be zero. Request streams.
You can’t perform that action at this time.
0 commit comments