CTRE Phoenix 6 C++ 24.3.0
Diff_VelocityTorqueCurrentFOC_Position.hpp
Go to the documentation of this file.
1/*
2 * Copyright (C) Cross The Road Electronics.  All rights reserved.
3 * License information can be found in CTRE_LICENSE.txt
4 * For support and suggestions contact support@ctr-electronics.com or file
5 * an issue tracker at https://github.com/CrossTheRoadElec/Phoenix-Releases
6 */
7#pragma once
8
12#include <sstream>
15#include <units/frequency.h>
16#include <units/time.h>
17
18
19namespace ctre {
20namespace phoenix6 {
21namespace controls {
22namespace compound {
23
24/**
25 * \private
26 * Requires Phoenix Pro and CANivore;
27 * Differential control with velocity average target and position difference
28 * target using torque current control.
29 */
30class Diff_VelocityTorqueCurrentFOC_Position : public ControlRequest
31{
32 ctre::phoenix::StatusCode SendRequest(const char *network, uint32_t deviceHash, bool cancelOtherRequests, std::shared_ptr<ControlRequest> &req) override
33 {
34 if (req.get() != this)
35 {
36 auto const reqCast = dynamic_cast<Diff_VelocityTorqueCurrentFOC_Position *>(req.get());
37 if (reqCast != nullptr)
38 {
39 *reqCast = *this;
40 }
41 else
42 {
43 req = std::make_shared<Diff_VelocityTorqueCurrentFOC_Position>(*this);
44 }
45 }
46
47 return c_ctre_phoenix6_RequestControlDiff_VelocityTorqueCurrentFOC_Position(network, deviceHash, UpdateFreqHz.to<double>(), cancelOtherRequests, AverageRequest.Velocity.to<double>(), AverageRequest.Acceleration.to<double>(), AverageRequest.FeedForward.to<double>(), AverageRequest.Slot, AverageRequest.OverrideCoastDurNeutral, AverageRequest.LimitForwardMotion, AverageRequest.LimitReverseMotion, DifferentialRequest.Position.to<double>(), DifferentialRequest.Velocity.to<double>(), DifferentialRequest.FeedForward.to<double>(), DifferentialRequest.Slot, DifferentialRequest.OverrideCoastDurNeutral, DifferentialRequest.LimitForwardMotion, DifferentialRequest.LimitReverseMotion);
48 }
49
50public:
51 /**
52 * Average VelocityTorqueCurrentFOC request of the mechanism.
53 */
54 VelocityTorqueCurrentFOC AverageRequest;
55 /**
56 * Differential PositionTorqueCurrentFOC request of the mechanism.
57 */
58 PositionTorqueCurrentFOC DifferentialRequest;
59
60 /**
61 * \brief The period at which this control will update at.
62 * This is designated in Hertz, with a minimum of 20 Hz
63 * (every 50 ms) and a maximum of 1000 Hz (every 1 ms).
64 *
65 * If this field is set to 0 Hz, the control request will
66 * be sent immediately as a one-shot frame. This may be useful
67 * for advanced applications that require outputs to be
68 * synchronized with data acquisition. In this case, we
69 * recommend not exceeding 50 ms between control calls.
70 */
71 units::frequency::hertz_t UpdateFreqHz{100_Hz}; // Default to 100_Hz
72
73 /**
74 * \brief Requires Phoenix Pro and CANivore;
75 * Differential control with velocity average target and position
76 * difference target using torque current control.
77 *
78 * \param AverageRequest Average VelocityTorqueCurrentFOC request of the
79 * mechanism.
80 * \param DifferentialRequest Differential PositionTorqueCurrentFOC request
81 * of the mechanism.
82 */
83 Diff_VelocityTorqueCurrentFOC_Position(VelocityTorqueCurrentFOC AverageRequest, PositionTorqueCurrentFOC DifferentialRequest) : ControlRequest{"Diff_VelocityTorqueCurrentFOC_Position"},
84 AverageRequest{std::move(AverageRequest)},
85 DifferentialRequest{std::move(DifferentialRequest)}
86 {}
87
88 /**
89 * \brief Modifies this Control Request's AverageRequest parameter and returns itself for
90 * method-chaining and easier to use request API.
91 *
92 * Average VelocityTorqueCurrentFOC request of the mechanism.
93 *
94 * \param newAverageRequest Parameter to modify
95 * \returns Itself
96 */
97 Diff_VelocityTorqueCurrentFOC_Position& WithAverageRequest(VelocityTorqueCurrentFOC newAverageRequest)
98 {
99 AverageRequest = std::move(newAverageRequest);
100 return *this;
101 }
102
103 /**
104 * \brief Modifies this Control Request's DifferentialRequest parameter and returns itself for
105 * method-chaining and easier to use request API.
106 *
107 * Differential PositionTorqueCurrentFOC request of the mechanism.
108 *
109 * \param newDifferentialRequest Parameter to modify
110 * \returns Itself
111 */
112 Diff_VelocityTorqueCurrentFOC_Position& WithDifferentialRequest(PositionTorqueCurrentFOC newDifferentialRequest)
113 {
114 DifferentialRequest = std::move(newDifferentialRequest);
115 return *this;
116 }
117 /**
118 * \brief Sets the period at which this control will update at.
119 * This is designated in Hertz, with a minimum of 20 Hz
120 * (every 50 ms) and a maximum of 1000 Hz (every 1 ms).
121 *
122 * If this field is set to 0 Hz, the control request will
123 * be sent immediately as a one-shot frame. This may be useful
124 * for advanced applications that require outputs to be
125 * synchronized with data acquisition. In this case, we
126 * recommend not exceeding 50 ms between control calls.
127 *
128 * \param newUpdateFreqHz Parameter to modify
129 * \returns Itself
130 */
131 Diff_VelocityTorqueCurrentFOC_Position &WithUpdateFreqHz(units::frequency::hertz_t newUpdateFreqHz)
132 {
133 UpdateFreqHz = newUpdateFreqHz;
134 return *this;
135 }
136 /**
137 * Returns a string representation of the object.
138 *
139 * \returns a string representation of the object.
140 */
141 std::string ToString() const override
142 {
143 std::stringstream ss;
144 ss << "class: Diff_VelocityTorqueCurrentFOC_Position" << std::endl;
145 ss << "AverageRequest:" << std::endl;
146 ss << " Velocity: " << AverageRequest.Velocity.to<double>() << std::endl;
147 ss << " Acceleration: " << AverageRequest.Acceleration.to<double>() << std::endl;
148 ss << " FeedForward: " << AverageRequest.FeedForward.to<double>() << std::endl;
149 ss << " Slot: " << AverageRequest.Slot << std::endl;
150 ss << " OverrideCoastDurNeutral: " << AverageRequest.OverrideCoastDurNeutral << std::endl;
151 ss << " LimitForwardMotion: " << AverageRequest.LimitForwardMotion << std::endl;
152 ss << " LimitReverseMotion: " << AverageRequest.LimitReverseMotion << std::endl;
153 ss << "DifferentialRequest:" << std::endl;
154 ss << " Position: " << DifferentialRequest.Position.to<double>() << std::endl;
155 ss << " Velocity: " << DifferentialRequest.Velocity.to<double>() << std::endl;
156 ss << " FeedForward: " << DifferentialRequest.FeedForward.to<double>() << std::endl;
157 ss << " Slot: " << DifferentialRequest.Slot << std::endl;
158 ss << " OverrideCoastDurNeutral: " << DifferentialRequest.OverrideCoastDurNeutral << std::endl;
159 ss << " LimitForwardMotion: " << DifferentialRequest.LimitForwardMotion << std::endl;
160 ss << " LimitReverseMotion: " << DifferentialRequest.LimitReverseMotion << std::endl;
161 return ss.str();
162 }
163
164 /**
165 * \brief Gets information about this control request.
166 *
167 * \returns Map of control parameter names and corresponding applied values
168 */
169 std::map<std::string, std::string> GetControlInfo() const override
170 {
171 std::map<std::string, std::string> controlInfo;
172 std::stringstream ss;
173 controlInfo["Name"] = GetName();
174 ss << AverageRequest.ToString(); controlInfo["AverageRequest"] = ss.str(); ss.str(std::string{});
175 ss << DifferentialRequest.ToString(); controlInfo["DifferentialRequest"] = ss.str(); ss.str(std::string{});
176 return controlInfo;
177 }
178};
179
180}
181}
182}
183}
184
CTREXPORT int c_ctre_phoenix6_RequestControlDiff_VelocityTorqueCurrentFOC_Position(const char *canbus, uint32_t ecuEncoding, double updateTime, bool cancelOtherRequests, double AverageRequest_Velocity, double AverageRequest_Acceleration, double AverageRequest_FeedForward, int AverageRequest_Slot, bool AverageRequest_OverrideCoastDurNeutral, bool AverageRequest_LimitForwardMotion, bool AverageRequest_LimitReverseMotion, double DifferentialRequest_Position, double DifferentialRequest_Velocity, double DifferentialRequest_FeedForward, int DifferentialRequest_Slot, bool DifferentialRequest_OverrideCoastDurNeutral, bool DifferentialRequest_LimitForwardMotion, bool DifferentialRequest_LimitReverseMotion)
std::string const & GetName() const
Definition: ControlRequest.hpp:51
ControlRequest(ControlRequest const &)=default
Definition: string_util.hpp:15