summaryrefslogtreecommitdiff
path: root/src/stationary_wiggle_filter_interpreter.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/stationary_wiggle_filter_interpreter.cc')
-rw-r--r--src/stationary_wiggle_filter_interpreter.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/stationary_wiggle_filter_interpreter.cc b/src/stationary_wiggle_filter_interpreter.cc
index bcde6e9..3ec85b1 100644
--- a/src/stationary_wiggle_filter_interpreter.cc
+++ b/src/stationary_wiggle_filter_interpreter.cc
@@ -110,8 +110,13 @@ StationaryWiggleFilterInterpreter::StationaryWiggleFilterInterpreter(
void StationaryWiggleFilterInterpreter::SyncInterpretImpl(
HardwareState& hwstate, stime_t* timeout) {
+ const char name[] = "StationaryWiggleFilterInterpreter::SyncInterpretImpl";
+ LogHardwareStatePre(name, hwstate);
+
if (enabled_.val_)
UpdateStationaryFlags(hwstate);
+
+ LogHardwareStatePost(name, hwstate);
next_->SyncInterpret(hwstate, timeout);
}