Serial Wombat Arduino Library
Loading...
Searching...
No Matches
SerialWombat18ABDataLogger.h
Go to the documentation of this file.
1#pragma once
2/*
3Copyright 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#include <stdint.h>
28#include "SerialWombat.h"
29
30
44
48
49
51{
52public:
56 */
57 SerialWombat18ABDataLogger(SerialWombatChip& serialWombat):_sw(serialWombat)
58 {
59 _sw = serialWombat;
60 }
61
71 */
72 int16_t begin(uint16_t queueAddress, uint16_t queueSizeBytes, bool queueFrameIndex, bool queueOnChange = false, DataLoggerPeriod period = DataLoggerPeriod::PERIOD_1mS)
73{
74 SerialWombatQueue swq(_sw);
75 int16_t result = swq.begin(queueAddress,queueSizeBytes);
76 if (result < 0) return (result);
77 {
79 0, //Initial Config
80 SW_LE16(queueAddress),
81 (uint8_t)(period),
82 queueFrameIndex?(uint8_t)1:(uint8_t)0,
83 queueOnChange?(uint8_t)1:(uint8_t)0,
84 };
85 return(_sw.sendPacket(tx));
86 }
87}
88
89 int16_t enable(bool enable = true)
90 {
92 1, //Logger total Enable / Disable
93 enable?(uint8_t)1:(uint8_t)0,
94 };
95 return (_sw.sendPacket(tx));
96 }
97
98 int16_t configurePin(uint8_t pin, bool queueLowByte, bool queueHighByte)
99 {
101 2, //Configure individual pins
102 pin,
103 queueLowByte?(uint8_t)1:(uint8_t)0,
104 queueHighByte?(uint8_t)1:(uint8_t)0,
105 };
106 return (_sw.sendPacket(tx));
107 }
108private:
109 SerialWombatChip& _sw;
110
111};
#define SW_LE16(_a)
Convert a uint16_t to two bytes in little endian format for array initialization.
@ COMMAND_BINARY_CONFIG_DATALOGGER
(0x96)
Class for a Serial Wombat chip. Each Serial Wombat chip on a project should have its own instance.
SerialWombat18ABDataLogger(SerialWombatChip &serialWombat)
Constructor for SerialWombat18ABDataLogger class /.
int16_t begin(uint16_t queueAddress, uint16_t queueSizeBytes, bool queueFrameIndex, bool queueOnChange=false, DataLoggerPeriod period=DataLoggerPeriod::PERIOD_1mS)
Initialize the Serial Wombat Data logger. It will create a queue with the given parameters / /.
int16_t configurePin(uint8_t pin, bool queueLowByte, bool queueHighByte)
A Class representing a Queue in the User Ram area on the Serial Wombat Chip.
int16_t begin(uint16_t index, uint16_t length, SerialWombatQueueType qtype=SerialWombatQueueType::QUEUE_TYPE_RAM_BYTE)
Initialize a Serial Wombat Queue (RAM Bytes) in User Memory Area on Serial Wombat Chip / /.