]> sigrok.org Git - libsigrokdecode.git/blame - decoders/stepper_motor/pd.py
all decoders: introduce a reset() method
[libsigrokdecode.git] / decoders / stepper_motor / pd.py
CommitLineData
d2bcb32b
PA
1##
2## This file is part of the libsigrokdecode project.
3##
4## Copyright (C) 2015 Petteri Aimonen <jpa@sigrok.mail.kapsi.fi>
5##
6## This program is free software; you can redistribute it and/or modify
7## it under the terms of the GNU General Public License as published by
8## the Free Software Foundation; either version 2 of the License, or
9## (at your option) any later version.
10##
11## This program is distributed in the hope that it will be useful,
12## but WITHOUT ANY WARRANTY; without even the implied warranty of
13## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14## GNU General Public License for more details.
15##
16## You should have received a copy of the GNU General Public License
4539e9ca 17## along with this program; if not, see <http://www.gnu.org/licenses/>.
d2bcb32b
PA
18##
19
20import sigrokdecode as srd
21
22class SamplerateError(Exception):
23 pass
24
25class Decoder(srd.Decoder):
e500b376 26 api_version = 3
d2bcb32b
PA
27 id = 'stepper_motor'
28 name = 'Stepper motor'
29 longname = 'Stepper motor position / speed'
a7c8dc5e 30 desc = 'Absolute position and movement speed from step/dir.'
d2bcb32b
PA
31 license = 'gplv2+'
32 inputs = ['logic']
33 outputs = ['stepper_motor']
34 channels = (
35 {'id': 'step', 'name': 'Step', 'desc': 'Step pulse'},
36 {'id': 'dir', 'name': 'Direction', 'desc': 'Direction select'},
37 )
38 options = (
39 {'id': 'unit', 'desc': 'Unit', 'default': 'steps',
40 'values': ('steps', 'mm')},
41 {'id': 'steps_per_mm', 'desc': 'Steps per mm', 'default': 100.0},
42 )
43 annotations = (
44 ('speed', 'Speed'),
45 ('position', 'Position')
46 )
47 annotation_rows = (
48 ('speed', 'Speed', (0,)),
49 ('position', 'Position', (1,)),
50 )
51
92b7b49f 52 def __init__(self):
10aeb8ea
GS
53 self.reset()
54
55 def reset(self):
d2bcb32b 56 self.oldstep = None
5b0b88ce 57 self.ss_prev_step = None
d2bcb32b
PA
58 self.pos = 0
59 self.prev_speed = None
60 self.prev_pos = None
61
62 def start(self):
63 self.out_ann = self.register(srd.OUTPUT_ANN)
64
65 if self.options['unit'] == 'steps':
66 self.scale = 1
67 self.format = '%0.0f'
68 self.unit = 'steps'
69 else:
70 self.scale = self.options['steps_per_mm']
71 self.format = '%0.2f'
72 self.unit = 'mm'
73
74 def step(self, ss, direction):
5b0b88ce
UH
75 if self.ss_prev_step is not None:
76 delta = ss - self.ss_prev_step
d2bcb32b
PA
77 speed = self.samplerate / delta / self.scale
78 speed_txt = self.format % speed
79 pos_txt = self.format % (self.pos / self.scale)
5b0b88ce 80 self.put(self.ss_prev_step, ss, self.out_ann,
d2bcb32b 81 [0, [speed_txt + ' ' + self.unit + '/s', speed_txt]])
5b0b88ce 82 self.put(self.ss_prev_step, ss, self.out_ann,
d2bcb32b
PA
83 [1, [pos_txt + ' ' + self.unit, pos_txt]])
84
85 self.pos += (1 if direction else -1)
5b0b88ce 86 self.ss_prev_step = ss
d2bcb32b
PA
87
88 def metadata(self, key, value):
89 if key == srd.SRD_CONF_SAMPLERATE:
90 self.samplerate = value
91
e500b376 92 def decode(self):
d2bcb32b
PA
93 if not self.samplerate:
94 raise SamplerateError('Cannot decode without samplerate.')
e500b376
UH
95 while True:
96 step, direction = self.wait({0: 'r'})
97 self.step(self.samplenum, direction)