Skip to content

Commit

Permalink
Fix rc_smoothing_type blackbox header
Browse files Browse the repository at this point in the history
Fixes a copy/paste error introduced in #8282.

Only a cosmetic bug that affected the informational blackbox header. Had no effect on RC smoothing operation.
  • Loading branch information
etracer65 committed Nov 1, 2019
1 parent 086c75b commit 03be64e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/blackbox/blackbox.c
Expand Up @@ -1412,7 +1412,7 @@ static bool blackboxWriteSysinfo(void)
BLACKBOX_PRINT_HEADER_LINE("features", "%d", featureConfig()->enabledFeatures);

#ifdef USE_RC_SMOOTHING_FILTER
BLACKBOX_PRINT_HEADER_LINE("rc_smoothing_type", "%d", rcSmoothingData->inputFilterType);
BLACKBOX_PRINT_HEADER_LINE("rc_smoothing_type", "%d", rxConfig()->rc_smoothing_type);
BLACKBOX_PRINT_HEADER_LINE("rc_smoothing_debug_axis", "%d", rcSmoothingData->debugAxis);
BLACKBOX_PRINT_HEADER_LINE("rc_smoothing_cutoffs", "%d, %d", rcSmoothingData->inputCutoffSetting,
rcSmoothingData->derivativeCutoffSetting);
Expand Down

0 comments on commit 03be64e

Please sign in to comment.