-
Notifications
You must be signed in to change notification settings - Fork 31
/
Tach.py
139 lines (116 loc) · 4.45 KB
/
Tach.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
import pyb
import micropython
red_led = pyb.LED(1)
green_led = pyb.LED(2)
blue_led = pyb.LED(3)
orange_len = pyb.LED(4)
pulse_detected_led = red_led
class Tachometer(object):
NUM_SAMPLES = 16
def __init__(self, timer_num, channel_num, pin_name, pulses_per_rev=2):
self.timestamp = [0] * Tachometer.NUM_SAMPLES
self.num_samples = -1
self.delta_time = 0
self.idx = 0
self.pulses_per_rev = pulses_per_rev
self.pulse_detected = False
# Setup the timer to run at 1MHz
# We assume that we're running on a 32-bit timer).
if timer_num != 2 and timer_num != 5:
raise ValueError("Tachometer needs a 32-bit timer")
self.timer = pyb.Timer(timer_num)
print("Initializing timer")
self.timer.init(prescaler=(int(self.timer.source_freq() / 1000000) - 1),
period=0x1fffffff)
self.pin = pyb.Pin(pin_name)
print("Initializing channel")
self.channel = self.timer.channel(channel_num, pyb.Timer.IC,
pin=self.pin,
polarity=pyb.Timer.RISING)
self.channel.callback(self.channel_callback)
print("self.channel =", self.channel)
print("Initialization done")
def channel_callback(self, tim):
"""The channel callback gets called everytime there is an edge on
the pin this channel is hooked up to.
"""
if pulse_detected_led:
pulse_detected_led.toggle()
self.pulse_detected = True
self.pulse_timestamp = self.channel.capture() & 0x1fffffff
if self.num_samples < Tachometer.NUM_SAMPLES:
prev_timestamp = self.timestamp[0]
self.num_samples += 1
else:
prev_timestamp = self.timestamp[self.idx]
self.timestamp[self.idx] = self.pulse_timestamp
if self.pulse_timestamp < prev_timestamp:
prev_timestamp -= 0x20000000
self.delta_time = self.pulse_timestamp - prev_timestamp
self.idx = (self.idx + 1) % Tachometer.NUM_SAMPLES
def dump(self):
ts = [0] * Tachometer.NUM_SAMPLES
pyb.disable_irq()
for i in range(Tachometer.NUM_SAMPLES):
ts[i] = self.timestamp[i]
last_pulse = self.pulse_timestamp
delta_time = self.delta_time
num_samples = self.num_samples
pyb.enable_irq()
print("last_pulse =", last_pulse)
print("delta_time =", delta_time)
print("num_samples =", num_samples)
for i in range(Tachometer.NUM_SAMPLES):
print("ts[%d] = %d" % (i, ts[i]))
def rpm(self):
if not self.pulse_detected:
return 0
timer_count = self.timer.counter() & 0x1fffffff
last_pulse = self.pulse_timestamp
if timer_count < last_pulse:
last_pulse -= 0x20000000
if (timer_count - last_pulse) > 1000000:
# No pulses in the past second.
self.pulse_detected = False
#print("timer_count =", timer_count, "last_pusle =", last_pulse)
#self.dump()
return 0
pyb.disable_irq()
delta_time = self.delta_time
num_samples = self.num_samples
pyb.enable_irq()
if delta_time == 0 or self.pulses_per_rev == 0:
return 0
return num_samples * 1000000 * 60 / (delta_time * self.pulses_per_rev)
def test():
"""Test program - assumes X2 is jumpered to X1."""
micropython.alloc_emergency_exception_buf(100)
print("Starting tach")
tach = Tachometer(timer_num=2, channel_num=1, pin_name='X1')
print("Starting pulses")
t5 = pyb.Timer(5, freq=4)
oc_pin = pyb.Pin.board.X2
oc = t5.channel(2, pyb.Timer.OC_TOGGLE, pin=oc_pin)
for freq in range(0, 600, 100):
if freq == 0:
freq = 1
else:
t5.freq(freq * 4) # x 2 for toggle, x2 for 2 pulses_per_rev
pyb.delay(1000)
print("RPM =", tach.rpm(), "Freq =", freq, " as RPM =", freq * 60)
# stop the pulses
print("Stopping pulses")
oc_pin.init(pyb.Pin.OUT_PP)
# wait for 1.5 seconds
pyb.delay(1500)
print("RPM =", tach.rpm())
print("RPM =", tach.rpm())
print("Starting pulses again")
# start the pulses up again
oc = t5.channel(2, pyb.Timer.OC_TOGGLE, pin=oc_pin)
pyb.delay(2000)
print("RPM =", tach.rpm())
print("RPM =", tach.rpm())
u6 = pyb.UART(6, 115200)
pyb.repl_uart(u6)
test()