Serial Wombat Arduino Library
Loading...
Searching...
No Matches
SerialWombatPulseTimer.h
Go to the documentation of this file.
1#pragma once
2/*
3Copyright 2020-2024 Broadwell Consulting Inc.
4
5"Serial Wombat" is a registered trademark of Broadwell Consulting Inc. in
6the United States. See SerialWombat.com for usage guidance.
7
8Permission is hereby granted, free of charge, to any person obtaining a
9 * copy of this software and associated documentation files (the "Software"),
10 * to deal in the Software without restriction, including without limitation
11 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
12 * and/or sell copies of the Software, and to permit persons to whom the
13 * Software is furnished to do so, subject to the following conditions:
14
15The above copyright notice and this permission notice shall be included in
16 * all copies or substantial portions of the Software.
17
18THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
21 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
22 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
23 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
24 * OTHER DEALINGS IN THE SOFTWARE.
25*/
26
27
28#include <stdint.h>
29#include "SerialWombat.h"
30
31class SerialWombat;
32
40
81
83{
84public:
90 {
91 }
92
100 int16_t begin(uint8_t pin, SerialWombatPulseTimerUnits units = SW_PULSETIMER_uS, bool pullUpEnabled = false)
101 {
102 _pin = pin;
104 return initPacketNoResponse(0,(uint8_t)pullUpEnabled,(uint8_t)units);
105 }
106
112 void refresh()
113 {
115 {
116 uint8_t tx[] = { 202,_pin,_pinMode,0x55,0x55,0x55,0x55,0x55 };
117 uint8_t rx[8];
118 _sw.sendPacket(tx, rx);
119 Pulses = rx[5] + 256 * rx[6];
121 }
122 }
123
131 {
132 uint8_t tx[] = { 201,_pin,_pinMode,0x55,0x55,0x55,0x55,0x55 };
133 uint8_t rx[8];
134 _sw.sendPacket(tx, rx);
135 HighCounts = rx[3] + 256 * rx[4];
136 LowCounts = rx[5] + 256 * rx[6];
137 }
138
139 /*
140 \brief Retreive the High counts and number of pulses Serial Wombat chip in a single transaction
141
142 This command will retreive consecutive high and low periods from the Serial Wombat chip.
143 It it not guaranteed which is the most recent.
144 */
146 {
147 uint8_t tx[] = { 202,_pin,_pinMode,0x55,0x55,0x55,0x55,0x55 };
148 uint8_t rx[8];
149 _sw.sendPacket(tx, rx);
150 HighCounts = rx[3] + 256 * rx[4];
151 Pulses = rx[5] + 256 * rx[6];
153 }
154
155 /*
156 \brief Retreives the most recent Counts in the configured units for the most recent high pulse
157
158 \return Counts in mS or uS depending on configuration.
159 */
160 uint16_t readHighCounts()
161 {
163 return (HighCounts);
164 }
165
166
167 /*
168 \brief Retreives the most recent Counts in the configured units for the most recent low pulse
169
170 \return Counts in mS or uS depending on configuration.
171 */
172 uint16_t readLowCounts()
173 {
175 return (LowCounts);
176 }
177
178 /*
179 \brief Retreives the number of pulses
180
181 This value overflows at 65535. Reading this value does not clear it.
182 This function has a side effect of reading MeasurementOverflowOccured from the Serial Wombat chip,
183 which clears it for future readings.
184 \return Number of pulses counted (1 count per high/low cycle). Rolls over at 65535 to 0
185 */
186 uint16_t readPulses()
187 {
189 return(Pulses);
190 }
191
192 /*
193 \brief Count in selected units of last retreived high pulse
194
195 This value is updated by refresh, refreshHighCountsLowCounts, refreshHighCountsPulses, readHighCounts, readLowCounts
196 */
197 uint16_t HighCounts = 0;
198 /*
199 \brief Count in selected units of last retreived low pulse
200
201 This value is updated by refresh, refreshHighCountsLowCounts, readHighCounts, readLowCounts
202 */
203 uint16_t LowCounts = 0;
204
205 /*
206 \brief Count of last retreived pulses
207
208 This value is updated by refresh, and refreshHighCountsPulses
209 */
210 uint16_t Pulses = 0;
212
213private:
214
215};
216
220This class adds functionality that is specific to the SW18AB firmware in addition
221to generic SerialWombatPulseTimer functionality avaialble on all Serial Wombat chips
222*/
223
225{
226public:
238
246
247 /*
248 \brief configures which measurement is the Public Data Output of this pin mode
249
250 This function sets what data is avaialble through the public data
251 This function is only avaialble on the Serial Wombat 18AB chip
252
253 \param publicDataOutput An enumerated type indicating what data to output
254 \return returns 0 or higher for success or a negative error code.
255 */
257 {
258
259 uint8_t tx[] = { 203,_pin,_pinMode,(uint8_t) publicDataOutput};
260 return _sw.sendPacket(tx);
261// return initPacketNoResponse(3,(uint8_t)publicDataOutput);
262 }
263
265 uint8_t pin() { return _pin; }
267 uint8_t swPinModeNumber() { return _pinMode; }
268};
@ PIN_MODE_PULSETIMER
(18)
SerialWombatPulseTimerUnits
@ SW_PULSETIMER_mS
@ SW_PULSETIMER_uS
Class for a Serial Wombat chip. Each Serial Wombat chip on a project should have its own instance.
This class name is depricated. Do not use for new development. Use SerialWombatChip instead.
SerialWombatAbstractProcessedInput(SerialWombatChip &sw)
Constructor for the SerialWombatAbstractScaledOutput Class.
SerialWombatChip & _sw
SerialWombatPin(SerialWombatChip &serialWombatChip)
Instantiates a Serial Wombat Pin.
int16_t initPacketNoResponse(uint8_t packetNumber, uint8_t param0=0x55, uint8_t param1=0x55, uint8_t param2=0x55, uint8_t param3=0x55, uint8_t param4=0x55)
uint8_t pin()
Returns the current SW pin number. Used primarily for virtual calls by derived classes.
void refresh()
Retreive the latest values for HighCounts, LowCounts, Pulses, and MeasurementOverflowOccured.
SerialWombatPulseTimer(SerialWombatChip &serialWombat)
Class constructor for SerialWombatPulseTimer.
int16_t begin(uint8_t pin, SerialWombatPulseTimerUnits units=SW_PULSETIMER_uS, bool pullUpEnabled=false)
Initialization routine for SerialWombatPulseTimer.
void refreshHighCountsLowCounts()
Retreive the High and Low counts from the Serial Wombat chip in a single transaction.
@ LOW_TIME
the pulse low time in uS. Update on each low to high transition.
@ PERIOD_ON_LTH_TRANSITION
The period of the pulse in uS, based on the previous high and low times, updated on low to high trans...
@ DUTYCYCLE_ON_HTL_TRANSITION
Duty cycle of the pulse as a ratio from 0 to 65535, updated on high to low transition.
@ PULSE_COUNT
The number of pulses that have occured since initialization. Updated on each high to low transition.
@ FREQUENCY_ON_HTL_TRANSITION
The frequency of the pulse in Hz, based on the previous high and low times, updated on high to low tr...
@ DUTYCYCLE_ON_LTH_TRANSITION
Duty cycle of the pulse as a ratio from 0 to 65535, updated on low to high transition.
@ PERIOD_ON_HTL_TRANSITION
The period of the pulse in uS, based on the previous high and low times, updated on high to low trans...
@ HIGH_TIME
The pulse high time in uS. Updated on each high to low transition.
@ FREQUENCY_ON_LTH_TRANSITION
The frequency of the pulse in Hz, based on the previous high and low times, updated on low to high tr...
int16_t configurePublicDataOutput(SerialWombatPulseTimer_18AB::publicDataOutput publicDataOutput)
SerialWombatPulseTimer_18AB(SerialWombatChip &serialWombat)
constructor for SerialWombatPulseTimer_18AB
uint8_t pin()
Facilitates multi-inheritance.
uint8_t swPinModeNumber()
Facilitates multi-inheritance.