Commit f968a83f authored by Daniel Friesel's avatar Daniel Friesel
Browse files

Correctly report sample rate when using --skip or --limit

parent 05cd19da
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -361,7 +361,7 @@ def main():

    print(
        "{:d} measurements in {:.2f} s = {:.0f} Hz sample rate".format(
            data_count, m_duration_us * 1e-6, data_count / (m_duration_us * 1e-6)
            len(data), m_duration_us * 1e-6, len(data) / (m_duration_us * 1e-6)
        )
    )