13#include <units/angular_velocity.h>
14#include <units/angular_acceleration.h>
15#include <units/dimensionless.h>
16#include <units/frequency.h>
17#include <units/time.h>
32 ctre::phoenix::StatusCode SendRequest(
const char *network, uint32_t deviceHash,
bool cancelOtherRequests, std::shared_ptr<ControlRequest> &req)
override
34 if (req.get() !=
this)
37 if (reqCast !=
nullptr)
43 req = std::make_shared<VelocityDutyCycle>(*
this);
47 return c_ctre_phoenix6_RequestControlVelocityDutyCycle(network, deviceHash,
UpdateFreqHz.to<
double>(), cancelOtherRequests,
Velocity.to<
double>(),
Acceleration.to<
double>(),
EnableFOC,
FeedForward.to<
double>(),
Slot,
OverrideBrakeDurNeutral,
LimitForwardMotion,
LimitReverseMotion);
54 units::angular_velocity::turns_per_second_t
Velocity;
59 units::angular_acceleration::turns_per_second_squared_t
Acceleration;
257 Slot = std::move(newSlot);
338 std::stringstream ss;
339 ss <<
"class: VelocityDutyCycle" << std::endl;
340 ss <<
"Velocity: " <<
Velocity.to<
double>() << std::endl;
341 ss <<
"Acceleration: " <<
Acceleration.to<
double>() << std::endl;
342 ss <<
"EnableFOC: " <<
EnableFOC << std::endl;
343 ss <<
"FeedForward: " <<
FeedForward.to<
double>() << std::endl;
344 ss <<
"Slot: " <<
Slot << std::endl;
358 std::map<std::string, std::string> controlInfo;
359 std::stringstream ss;
360 controlInfo[
"Name"] =
GetName();
361 ss <<
Velocity.to<
double>(); controlInfo[
"Velocity"] = ss.str(); ss.str(std::string{});
362 ss <<
Acceleration.to<
double>(); controlInfo[
"Acceleration"] = ss.str(); ss.str(std::string{});
363 ss <<
EnableFOC; controlInfo[
"EnableFOC"] = ss.str(); ss.str(std::string{});
364 ss <<
FeedForward.to<
double>(); controlInfo[
"FeedForward"] = ss.str(); ss.str(std::string{});
365 ss <<
Slot; controlInfo[
"Slot"] = ss.str(); ss.str(std::string{});
367 ss <<
LimitForwardMotion; controlInfo[
"LimitForwardMotion"] = ss.str(); ss.str(std::string{});
368 ss <<
LimitReverseMotion; controlInfo[
"LimitReverseMotion"] = ss.str(); ss.str(std::string{});
CTREXPORT int c_ctre_phoenix6_RequestControlVelocityDutyCycle(const char *canbus, uint32_t ecuEncoding, double updateTime, bool cancelOtherRequests, double Velocity, double Acceleration, bool EnableFOC, double FeedForward, int Slot, bool OverrideBrakeDurNeutral, bool LimitForwardMotion, bool LimitReverseMotion)
Abstract Control Request class that other control requests extend for use.
Definition: ControlRequest.hpp:28
std::string const & GetName() const
Definition: ControlRequest.hpp:51
Request PID to target velocity with duty cycle feedforward.
Definition: VelocityDutyCycle.hpp:31
int Slot
Select which gains are applied by selecting the slot.
Definition: VelocityDutyCycle.hpp:82
VelocityDutyCycle & WithSlot(int newSlot)
Modifies this Control Request's Slot parameter and returns itself for method-chaining and easier to u...
Definition: VelocityDutyCycle.hpp:255
units::angular_acceleration::turns_per_second_squared_t Acceleration
Acceleration to drive toward in rotations per second squared.
Definition: VelocityDutyCycle.hpp:59
VelocityDutyCycle & WithVelocity(units::angular_velocity::turns_per_second_t newVelocity)
Modifies this Control Request's Velocity parameter and returns itself for method-chaining and easier ...
Definition: VelocityDutyCycle.hpp:183
bool OverrideBrakeDurNeutral
Set to true to static-brake the rotor when output is zero (or within deadband).
Definition: VelocityDutyCycle.hpp:89
VelocityDutyCycle & WithFeedForward(units::dimensionless::scalar_t newFeedForward)
Modifies this Control Request's FeedForward parameter and returns itself for method-chaining and easi...
Definition: VelocityDutyCycle.hpp:238
VelocityDutyCycle & WithLimitForwardMotion(bool newLimitForwardMotion)
Modifies this Control Request's LimitForwardMotion parameter and returns itself for method-chaining a...
Definition: VelocityDutyCycle.hpp:290
VelocityDutyCycle & WithUpdateFreqHz(units::frequency::hertz_t newUpdateFreqHz)
Sets the period at which this control will update at.
Definition: VelocityDutyCycle.hpp:326
VelocityDutyCycle & WithEnableFOC(bool newEnableFOC)
Modifies this Control Request's EnableFOC parameter and returns itself for method-chaining and easier...
Definition: VelocityDutyCycle.hpp:223
units::angular_velocity::turns_per_second_t Velocity
Velocity to drive toward in rotations per second.
Definition: VelocityDutyCycle.hpp:54
VelocityDutyCycle & WithOverrideBrakeDurNeutral(bool newOverrideBrakeDurNeutral)
Modifies this Control Request's OverrideBrakeDurNeutral parameter and returns itself for method-chain...
Definition: VelocityDutyCycle.hpp:273
std::map< std::string, std::string > GetControlInfo() const override
Gets information about this control request.
Definition: VelocityDutyCycle.hpp:356
units::frequency::hertz_t UpdateFreqHz
The period at which this control will update at.
Definition: VelocityDutyCycle.hpp:114
VelocityDutyCycle(units::angular_velocity::turns_per_second_t Velocity, units::angular_acceleration::turns_per_second_squared_t Acceleration=0.0_tr_per_s_sq, bool EnableFOC=true, units::dimensionless::scalar_t FeedForward=0.0, int Slot=0, bool OverrideBrakeDurNeutral=false, bool LimitForwardMotion=false, bool LimitReverseMotion=false)
Request PID to target velocity with duty cycle feedforward.
Definition: VelocityDutyCycle.hpp:163
VelocityDutyCycle & WithAcceleration(units::angular_acceleration::turns_per_second_squared_t newAcceleration)
Modifies this Control Request's Acceleration parameter and returns itself for method-chaining and eas...
Definition: VelocityDutyCycle.hpp:199
units::dimensionless::scalar_t FeedForward
Feedforward to apply in fractional units between -1 and +1.
Definition: VelocityDutyCycle.hpp:76
bool EnableFOC
Set to true to use FOC commutation (requires Phoenix Pro), which increases peak power by ~15%.
Definition: VelocityDutyCycle.hpp:72
bool LimitReverseMotion
Set to true to force reverse limiting.
Definition: VelocityDutyCycle.hpp:101
VelocityDutyCycle & WithLimitReverseMotion(bool newLimitReverseMotion)
Modifies this Control Request's LimitReverseMotion parameter and returns itself for method-chaining a...
Definition: VelocityDutyCycle.hpp:307
std::string ToString() const override
Returns a string representation of the object.
Definition: VelocityDutyCycle.hpp:336
bool LimitForwardMotion
Set to true to force forward limiting.
Definition: VelocityDutyCycle.hpp:95
Definition: string_util.hpp:15