From 7579b9671b8954be3c5aadb381aca285350a8fbd Mon Sep 17 00:00:00 2001
From: Kevin O'Connor <kevin@koconnor.net>
Date: Wed, 8 Mar 2017 13:55:47 -0500
Subject: [PATCH] stepstats: Add documentation clarification

Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
---
 scripts/stepstats.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/scripts/stepstats.py b/scripts/stepstats.py
index 161ac5c38..4292a5258 100755
--- a/scripts/stepstats.py
+++ b/scripts/stepstats.py
@@ -22,6 +22,7 @@ def main():
             continue
         args = dict([p.split('=', 1) for p in parts[1:]])
         if parts[0] == 'config_stepper':
+            # steppers[oid] = [dir_cmds, dir, queue_cmds, pos steps, neg steps]
             steppers[args['oid']] = [0, 0, 0, 0, 0]
         elif parts[0] == 'set_next_step_dir':
             so = steppers[args['oid']]