REVLib - C++
ServoHub.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2024-2026 REV Robotics
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are met:
6 *
7 * 1. Redistributions of source code must retain the above copyright notice,
8 * this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
12 * 3. Neither the name of REV Robotics nor the names of its
13 * contributors may be used to endorse or promote products derived from
14 * this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
17 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
20 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
24 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
25 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
26 * POSSIBILITY OF SUCH DAMAGE.
27 */
28
29#pragma once
30
31#include <stdint.h>
32
33#include <vector>
34
35#include "rev/ConfigureTypes.h"
36#include "rev/REVLibError.h"
37#include "rev/ServoChannel.h"
41#include "rev/util/Signal.h"
42
43namespace rev::servohub {
44
45class ServoHub : public ServoHubLowLevel {
46 friend class ServoHubSim;
47
48public:
58
59public:
66 ServoHub(int busID, int deviceID);
67
71 ~ServoHub() override;
72
74
89 [[deprecated(
90 "Use Configure(rev::ResetMode) instead. This method will be removed in "
91 "2027.")]]
93 ServoHubConfig& config,
95
109 ServoHubConfig& config,
111
132 ServoHubConfig& config,
134
153 ServoHubConfig& config,
155
163
171
179
187
188 struct Faults {
190 bool hardware{};
191 bool firmware{};
193 uint16_t rawBits{};
194
195 Faults() = default;
196 explicit Faults(uint16_t faults);
197 };
198
206
217
218 struct Warnings {
219 bool brownout{};
221 bool canBusOff{};
222 bool hasReset{};
229 uint16_t rawBits{};
230
231 Warnings() = default;
232 explicit Warnings(uint16_t warnings);
233 };
234
243
255
262
267
272
277
285
286 enum class Bank { kBank0_2 = 0, kBank3_5 = 1 };
287
295 REVLibError SetBankPulsePeriod(Bank bank, int pulsePeriod_us);
296
297private:
298 std::vector<ServoChannel> m_servoChannels;
299};
300
301} // namespace rev::servohub
Definition: ServoChannel.h:42
ChannelId
Definition: ServoChannel.h:51
Definition: ServoHubConfigAccessor.h:35
Definition: ServoHubConfig.h:39
Definition: ServoHub.h:45
REVLibError ClearFaults()
Definition: ServoHub.cpp:208
rev::util::Signal< double > GetDeviceVoltage() const
Definition: ServoHub.cpp:215
ServoHub(int busID, int deviceID)
Definition: ServoHub.cpp:41
REVLibError Configure(ServoHubConfig &config, ResetMode resetMode=ResetMode::kNoResetSafeParameters)
Definition: ServoHub.cpp:54
REVLibError ConfigureAsync(ServoHubConfig &config, ResetMode resetMode=ResetMode::kNoResetSafeParameters)
Definition: ServoHub.cpp:72
rev::util::Signal< bool > HasActiveWarning() const
Definition: ServoHub.cpp:94
REVLibError SetBankPulsePeriod(Bank bank, int pulsePeriod_us)
Definition: ServoHub.cpp:240
Bank
Definition: ServoHub.h:286
rev::util::Signal< Warnings > GetStickyWarnings() const
Definition: ServoHub.cpp:184
~ServoHub() override
Definition: ServoHub.cpp:52
rev::util::Signal< Warnings > GetWarnings() const
Definition: ServoHub.cpp:160
ServoChannel & GetServoChannel(ServoChannel::ChannelId channelId)
Definition: ServoHub.cpp:233
rev::util::Signal< double > GetServoVoltage() const
Definition: ServoHub.cpp:225
rev::util::Signal< bool > HasStickyWarning() const
Definition: ServoHub.cpp:98
ResetMode
Definition: ServoHub.h:73
rev::util::Signal< bool > HasStickyFault() const
Definition: ServoHub.cpp:90
rev::util::Signal< Faults > GetFaults() const
Definition: ServoHub.cpp:112
rev::util::Signal< bool > HasActiveFault() const
Definition: ServoHub.cpp:86
ServoHubConfigAccessor configAccessor
Definition: ServoHub.h:57
rev::util::Signal< double > GetDeviceCurrent() const
Definition: ServoHub.cpp:220
rev::util::Signal< Faults > GetStickyFaults() const
Definition: ServoHub.cpp:126
Definition: ServoHubLowLevel.h:40
Definition: ServoHubSim.h:41
Definition: Signal.h:42
Definition: ServoChannelConfig.h:34
REVLibError
Definition: REVLibError.h:33
ResetMode
Definition: ConfigureTypes.h:33
Definition: ServoHub.h:188
bool lowBattery
Definition: ServoHub.h:192
bool hardware
Definition: ServoHub.h:190
bool regulatorPowerGood
Definition: ServoHub.h:189
bool firmware
Definition: ServoHub.h:191
uint16_t rawBits
Definition: ServoHub.h:193
Definition: ServoHub.h:218
bool hasReset
Definition: ServoHub.h:222
bool channel0Overcurrent
Definition: ServoHub.h:223
bool channel2Overcurrent
Definition: ServoHub.h:225
bool channel4Overcurrent
Definition: ServoHub.h:227
bool channel3Overcurrent
Definition: ServoHub.h:226
bool canBusOff
Definition: ServoHub.h:221
bool canWarning
Definition: ServoHub.h:220
bool brownout
Definition: ServoHub.h:219
bool channel1Overcurrent
Definition: ServoHub.h:224
bool channel5Overcurrent
Definition: ServoHub.h:228
uint16_t rawBits
Definition: ServoHub.h:229