blob: c05062ecfd8f14867c76a9fa344bd73c029ebac3 [file] [log] [blame]
Maxwell Hendersonad312342023-01-10 12:07:47 -08001#include <unistd.h>
2
3#include <array>
4#include <chrono>
5#include <cinttypes>
6#include <cmath>
7#include <cstdio>
8#include <cstring>
9#include <functional>
10#include <memory>
11#include <mutex>
12#include <thread>
13
14#include "ctre/phoenix/CANifier.h"
Philipp Schrader790cb542023-07-05 21:06:52 -070015
Maxwell Hendersonad312342023-01-10 12:07:47 -080016#include "frc971/wpilib/ahal/AnalogInput.h"
17#include "frc971/wpilib/ahal/Counter.h"
18#include "frc971/wpilib/ahal/DigitalGlitchFilter.h"
19#include "frc971/wpilib/ahal/DriverStation.h"
20#include "frc971/wpilib/ahal/Encoder.h"
21#include "frc971/wpilib/ahal/Servo.h"
22#include "frc971/wpilib/ahal/TalonFX.h"
23#include "frc971/wpilib/ahal/VictorSP.h"
24#undef ERROR
25
Philipp Schrader790cb542023-07-05 21:06:52 -070026#include "ctre/phoenix/cci/Diagnostics_CCI.h"
Maxwell Hendersonfcc0d122023-08-05 17:03:34 -070027#include "ctre/phoenix6/TalonFX.hpp"
Philipp Schrader790cb542023-07-05 21:06:52 -070028
Maxwell Hendersonad312342023-01-10 12:07:47 -080029#include "aos/commonmath.h"
Ravago Jones2060ee62023-02-03 18:12:24 -080030#include "aos/containers/sized_array.h"
Maxwell Hendersonad312342023-01-10 12:07:47 -080031#include "aos/events/event_loop.h"
32#include "aos/events/shm_event_loop.h"
33#include "aos/init.h"
34#include "aos/logging/logging.h"
35#include "aos/realtime.h"
36#include "aos/time/time.h"
37#include "aos/util/log_interval.h"
38#include "aos/util/phased_loop.h"
39#include "aos/util/wrapping_counter.h"
Maxwell Hendersonad312342023-01-10 12:07:47 -080040#include "frc971/autonomous/auto_mode_generated.h"
Maxwell Hendersonf8c96892023-06-28 19:55:59 -070041#include "frc971/can_configuration_generated.h"
Maxwell Hendersoncef6f042023-05-26 14:38:09 -070042#include "frc971/control_loops/drivetrain/drivetrain_can_position_generated.h"
Maxwell Hendersonad312342023-01-10 12:07:47 -080043#include "frc971/control_loops/drivetrain/drivetrain_position_generated.h"
44#include "frc971/input/robot_state_generated.h"
45#include "frc971/queues/gyro_generated.h"
46#include "frc971/wpilib/ADIS16448.h"
47#include "frc971/wpilib/buffered_pcm.h"
48#include "frc971/wpilib/buffered_solenoid.h"
49#include "frc971/wpilib/dma.h"
50#include "frc971/wpilib/drivetrain_writer.h"
51#include "frc971/wpilib/encoder_and_potentiometer.h"
52#include "frc971/wpilib/joystick_sender.h"
53#include "frc971/wpilib/logging_generated.h"
54#include "frc971/wpilib/loop_output_handler.h"
55#include "frc971/wpilib/pdp_fetcher.h"
56#include "frc971/wpilib/sensor_reader.h"
57#include "frc971/wpilib/wpilib_robot_base.h"
58#include "y2023/constants.h"
Maxwell Henderson2a2faa62023-03-11 15:05:46 -080059#include "y2023/control_loops/superstructure/led_indicator.h"
Maxwell Hendersonad312342023-01-10 12:07:47 -080060#include "y2023/control_loops/superstructure/superstructure_output_generated.h"
61#include "y2023/control_loops/superstructure/superstructure_position_generated.h"
62
Ravago Jones2060ee62023-02-03 18:12:24 -080063DEFINE_bool(ctre_diag_server, false,
64 "If true, enable the diagnostics server for interacting with "
65 "devices on the CAN bus using Phoenix Tuner");
66
Maxwell Hendersonad312342023-01-10 12:07:47 -080067using ::aos::monotonic_clock;
Maxwell Hendersonf8c96892023-06-28 19:55:59 -070068using ::frc971::CANConfiguration;
Maxwell Hendersonad312342023-01-10 12:07:47 -080069using ::y2023::constants::Values;
70namespace superstructure = ::y2023::control_loops::superstructure;
Ravago Jones2060ee62023-02-03 18:12:24 -080071namespace drivetrain = ::y2023::control_loops::drivetrain;
Maxwell Hendersonad312342023-01-10 12:07:47 -080072namespace chrono = ::std::chrono;
73using std::make_unique;
74
75namespace y2023 {
76namespace wpilib {
77namespace {
78
79constexpr double kMaxBringupPower = 12.0;
80
81// TODO(Brian): Fix the interpretation of the result of GetRaw here and in the
82// DMA stuff and then removing the * 2.0 in *_translate.
83// The low bit is direction.
84
85double drivetrain_velocity_translate(double in) {
86 return (((1.0 / in) / Values::kDrivetrainCyclesPerRevolution()) *
87 (2.0 * M_PI)) *
88 Values::kDrivetrainEncoderRatio() *
89 control_loops::drivetrain::kWheelRadius;
90}
91
milind-u18934eb2023-02-20 16:28:58 -080092double proximal_pot_translate(double voltage) {
93 return voltage * Values::kProximalPotRadiansPerVolt();
94}
95
96double distal_pot_translate(double voltage) {
97 return voltage * Values::kDistalPotRadiansPerVolt();
98}
99
100double roll_joint_pot_translate(double voltage) {
101 return voltage * Values::kRollJointPotRadiansPerVolt();
102}
103
104constexpr double kMaxFastEncoderPulsesPerSecond = std::max({
105 Values::kMaxDrivetrainEncoderPulsesPerSecond(),
106 Values::kMaxProximalEncoderPulsesPerSecond(),
107 Values::kMaxDistalEncoderPulsesPerSecond(),
108 Values::kMaxRollJointEncoderPulsesPerSecond(),
Austin Schuhe5248cd2023-03-05 12:46:16 -0800109 Values::kMaxCompWristEncoderPulsesPerSecond(),
110 Values::kMaxPracticeWristEncoderPulsesPerSecond(),
milind-u18934eb2023-02-20 16:28:58 -0800111});
112static_assert(kMaxFastEncoderPulsesPerSecond <= 1300000,
113 "fast encoders are too fast");
Maxwell Hendersonad312342023-01-10 12:07:47 -0800114
115} // namespace
116
milind-u738832d2023-02-24 19:55:54 -0800117static constexpr int kCANFalconCount = 6;
milind-u738832d2023-02-24 19:55:54 -0800118static constexpr units::frequency::hertz_t kCANUpdateFreqHz = 200_Hz;
119
120class Falcon {
121 public:
122 Falcon(int device_id, std::string canbus,
Maxwell Hendersonfcc0d122023-08-05 17:03:34 -0700123 std::vector<ctre::phoenix6::BaseStatusSignal *> *signals)
milind-u738832d2023-02-24 19:55:54 -0800124 : talon_(device_id, canbus),
125 device_id_(device_id),
126 device_temp_(talon_.GetDeviceTemp()),
127 supply_voltage_(talon_.GetSupplyVoltage()),
128 supply_current_(talon_.GetSupplyCurrent()),
129 torque_current_(talon_.GetTorqueCurrent()),
Ravago Jones088ca772023-03-25 22:14:24 -0700130 position_(talon_.GetPosition()),
131 duty_cycle_(talon_.GetDutyCycle()) {
milind-u738832d2023-02-24 19:55:54 -0800132 // device temp is not timesynced so don't add it to the list of signals
133 device_temp_.SetUpdateFrequency(kCANUpdateFreqHz);
134
milind-u738832d2023-02-24 19:55:54 -0800135 CHECK_NOTNULL(signals);
milind-u738832d2023-02-24 19:55:54 -0800136
137 supply_voltage_.SetUpdateFrequency(kCANUpdateFreqHz);
138 signals->push_back(&supply_voltage_);
139
140 supply_current_.SetUpdateFrequency(kCANUpdateFreqHz);
141 signals->push_back(&supply_current_);
142
143 torque_current_.SetUpdateFrequency(kCANUpdateFreqHz);
144 signals->push_back(&torque_current_);
145
146 position_.SetUpdateFrequency(kCANUpdateFreqHz);
147 signals->push_back(&position_);
Ravago Jones088ca772023-03-25 22:14:24 -0700148
149 duty_cycle_.SetUpdateFrequency(kCANUpdateFreqHz);
150 signals->push_back(&duty_cycle_);
milind-u738832d2023-02-24 19:55:54 -0800151 }
152
Austin Schuhbb4c9ac2023-02-28 22:04:20 -0800153 void PrintConfigs() {
Maxwell Hendersonfcc0d122023-08-05 17:03:34 -0700154 ctre::phoenix6::configs::TalonFXConfiguration configuration;
Austin Schuhbb4c9ac2023-02-28 22:04:20 -0800155 ctre::phoenix::StatusCode status =
156 talon_.GetConfigurator().Refresh(configuration);
157 if (!status.IsOK()) {
158 AOS_LOG(ERROR, "Failed to get falcon configuration: %s: %s",
159 status.GetName(), status.GetDescription());
160 }
161 AOS_LOG(INFO, "configuration: %s", configuration.ToString().c_str());
162 }
163
Maxwell Hendersonfcc0d122023-08-05 17:03:34 -0700164 void WriteConfigs(ctre::phoenix6::signals::InvertedValue invert) {
milind-u738832d2023-02-24 19:55:54 -0800165 inverted_ = invert;
166
Maxwell Hendersonfcc0d122023-08-05 17:03:34 -0700167 ctre::phoenix6::configs::CurrentLimitsConfigs current_limits;
milind-u738832d2023-02-24 19:55:54 -0800168 current_limits.StatorCurrentLimit =
169 constants::Values::kDrivetrainStatorCurrentLimit();
170 current_limits.StatorCurrentLimitEnable = true;
171 current_limits.SupplyCurrentLimit =
172 constants::Values::kDrivetrainSupplyCurrentLimit();
173 current_limits.SupplyCurrentLimitEnable = true;
174
Maxwell Hendersonfcc0d122023-08-05 17:03:34 -0700175 ctre::phoenix6::configs::MotorOutputConfigs output_configs;
milind-u738832d2023-02-24 19:55:54 -0800176 output_configs.NeutralMode =
Maxwell Hendersonfcc0d122023-08-05 17:03:34 -0700177 ctre::phoenix6::signals::NeutralModeValue::Brake;
milind-u738832d2023-02-24 19:55:54 -0800178 output_configs.DutyCycleNeutralDeadband = 0;
179
180 output_configs.Inverted = inverted_;
181
Maxwell Hendersonfcc0d122023-08-05 17:03:34 -0700182 ctre::phoenix6::configs::TalonFXConfiguration configuration;
milind-u738832d2023-02-24 19:55:54 -0800183 configuration.CurrentLimits = current_limits;
184 configuration.MotorOutput = output_configs;
185
186 ctre::phoenix::StatusCode status =
187 talon_.GetConfigurator().Apply(configuration);
188 if (!status.IsOK()) {
189 AOS_LOG(ERROR, "Failed to set falcon configuration: %s: %s",
190 status.GetName(), status.GetDescription());
191 }
Austin Schuhbb4c9ac2023-02-28 22:04:20 -0800192
193 PrintConfigs();
milind-u738832d2023-02-24 19:55:54 -0800194 }
195
196 void WriteRollerConfigs() {
Maxwell Hendersonfcc0d122023-08-05 17:03:34 -0700197 ctre::phoenix6::configs::CurrentLimitsConfigs current_limits;
milind-u738832d2023-02-24 19:55:54 -0800198 current_limits.StatorCurrentLimit =
199 constants::Values::kRollerStatorCurrentLimit();
200 current_limits.StatorCurrentLimitEnable = true;
201 current_limits.SupplyCurrentLimit =
202 constants::Values::kRollerSupplyCurrentLimit();
203 current_limits.SupplyCurrentLimitEnable = true;
204
Maxwell Hendersonfcc0d122023-08-05 17:03:34 -0700205 ctre::phoenix6::configs::MotorOutputConfigs output_configs;
milind-u738832d2023-02-24 19:55:54 -0800206 output_configs.NeutralMode =
Maxwell Hendersonfcc0d122023-08-05 17:03:34 -0700207 ctre::phoenix6::signals::NeutralModeValue::Brake;
milind-u738832d2023-02-24 19:55:54 -0800208 output_configs.DutyCycleNeutralDeadband = 0;
209
Maxwell Hendersonfcc0d122023-08-05 17:03:34 -0700210 ctre::phoenix6::configs::TalonFXConfiguration configuration;
milind-u738832d2023-02-24 19:55:54 -0800211 configuration.CurrentLimits = current_limits;
212 configuration.MotorOutput = output_configs;
213
214 ctre::phoenix::StatusCode status =
215 talon_.GetConfigurator().Apply(configuration);
216 if (!status.IsOK()) {
217 AOS_LOG(ERROR, "Failed to set falcon configuration: %s: %s",
218 status.GetName(), status.GetDescription());
219 }
Austin Schuhbb4c9ac2023-02-28 22:04:20 -0800220
221 PrintConfigs();
milind-u738832d2023-02-24 19:55:54 -0800222 }
223
Maxwell Hendersonfcc0d122023-08-05 17:03:34 -0700224 ctre::phoenix6::hardware::TalonFX *talon() { return &talon_; }
milind-u738832d2023-02-24 19:55:54 -0800225
Maxwell Henderson10ed5c32024-01-09 12:40:54 -0800226 flatbuffers::Offset<frc971::control_loops::CANTalonFX> WritePosition(
Maxwell Hendersonca1d18f2023-07-26 21:06:14 -0700227 flatbuffers::FlatBufferBuilder *fbb) {
Maxwell Henderson10ed5c32024-01-09 12:40:54 -0800228 frc971::control_loops::CANTalonFX::Builder builder(*fbb);
milind-u738832d2023-02-24 19:55:54 -0800229 builder.add_id(device_id_);
230 builder.add_device_temp(device_temp());
231 builder.add_supply_voltage(supply_voltage());
232 builder.add_supply_current(supply_current());
233 builder.add_torque_current(torque_current());
Ravago Jones088ca772023-03-25 22:14:24 -0700234 builder.add_duty_cycle(duty_cycle());
milind-u738832d2023-02-24 19:55:54 -0800235
236 double invert =
Maxwell Hendersonfcc0d122023-08-05 17:03:34 -0700237 (inverted_ == ctre::phoenix6::signals::InvertedValue::Clockwise_Positive
milind-u738832d2023-02-24 19:55:54 -0800238 ? 1
239 : -1);
240
241 builder.add_position(
242 constants::Values::DrivetrainCANEncoderToMeters(position()) * invert);
243
244 return builder.Finish();
245 }
246
247 int device_id() const { return device_id_; }
248 float device_temp() const { return device_temp_.GetValue().value(); }
249 float supply_voltage() const { return supply_voltage_.GetValue().value(); }
250 float supply_current() const { return supply_current_.GetValue().value(); }
251 float torque_current() const { return torque_current_.GetValue().value(); }
Ravago Jones088ca772023-03-25 22:14:24 -0700252 float duty_cycle() const { return duty_cycle_.GetValue().value(); }
milind-u738832d2023-02-24 19:55:54 -0800253 float position() const { return position_.GetValue().value(); }
254
255 // returns the monotonic timestamp of the latest timesynced reading in the
256 // timebase of the the syncronized CAN bus clock.
257 int64_t GetTimestamp() {
258 std::chrono::nanoseconds latest_timestamp =
259 torque_current_.GetTimestamp().GetTime();
260
261 return latest_timestamp.count();
262 }
263
264 void RefreshNontimesyncedSignals() { device_temp_.Refresh(); };
265
266 private:
Maxwell Hendersonfcc0d122023-08-05 17:03:34 -0700267 ctre::phoenix6::hardware::TalonFX talon_;
milind-u738832d2023-02-24 19:55:54 -0800268 int device_id_;
269
Maxwell Hendersonfcc0d122023-08-05 17:03:34 -0700270 ctre::phoenix6::signals::InvertedValue inverted_;
milind-u738832d2023-02-24 19:55:54 -0800271
Maxwell Hendersonfcc0d122023-08-05 17:03:34 -0700272 ctre::phoenix6::StatusSignal<units::temperature::celsius_t> device_temp_;
273 ctre::phoenix6::StatusSignal<units::voltage::volt_t> supply_voltage_;
274 ctre::phoenix6::StatusSignal<units::current::ampere_t> supply_current_,
milind-u738832d2023-02-24 19:55:54 -0800275 torque_current_;
Maxwell Hendersonfcc0d122023-08-05 17:03:34 -0700276 ctre::phoenix6::StatusSignal<units::angle::turn_t> position_;
277 ctre::phoenix6::StatusSignal<units::dimensionless::scalar_t> duty_cycle_;
milind-u738832d2023-02-24 19:55:54 -0800278};
279
280class CANSensorReader {
281 public:
Ravago Jones2bfcecd2023-03-14 13:13:26 -0700282 CANSensorReader(
283 aos::EventLoop *event_loop,
Maxwell Hendersonfcc0d122023-08-05 17:03:34 -0700284 std::vector<ctre::phoenix6::BaseStatusSignal *> signals_registry)
milind-u738832d2023-02-24 19:55:54 -0800285 : event_loop_(event_loop),
Ravago Jones2bfcecd2023-03-14 13:13:26 -0700286 signals_(signals_registry.begin(), signals_registry.end()),
milind-u738832d2023-02-24 19:55:54 -0800287 can_position_sender_(
Maxwell Hendersoncef6f042023-05-26 14:38:09 -0700288 event_loop
289 ->MakeSender<frc971::control_loops::drivetrain::CANPosition>(
290 "/drivetrain")),
milind-u738832d2023-02-24 19:55:54 -0800291 roller_falcon_data_(std::nullopt) {
292 event_loop->SetRuntimeRealtimePriority(40);
293 event_loop->SetRuntimeAffinity(aos::MakeCpusetFromCpus({1}));
294 timer_handler_ = event_loop->AddTimer([this]() { Loop(); });
295 timer_handler_->set_name("CANSensorReader Loop");
296
297 event_loop->OnRun([this]() {
Philipp Schradera6712522023-07-05 20:25:11 -0700298 timer_handler_->Schedule(event_loop_->monotonic_now(),
299 1 / kCANUpdateFreqHz);
milind-u738832d2023-02-24 19:55:54 -0800300 });
301 }
302
milind-u738832d2023-02-24 19:55:54 -0800303 void set_falcons(std::shared_ptr<Falcon> right_front,
304 std::shared_ptr<Falcon> right_back,
305 std::shared_ptr<Falcon> right_under,
306 std::shared_ptr<Falcon> left_front,
307 std::shared_ptr<Falcon> left_back,
308 std::shared_ptr<Falcon> left_under,
309 std::shared_ptr<Falcon> roller_falcon) {
310 right_front_ = std::move(right_front);
311 right_back_ = std::move(right_back);
312 right_under_ = std::move(right_under);
313 left_front_ = std::move(left_front);
314 left_back_ = std::move(left_back);
315 left_under_ = std::move(left_under);
316 roller_falcon_ = std::move(roller_falcon);
317 }
318
319 std::optional<superstructure::CANFalconT> roller_falcon_data() {
320 std::unique_lock<aos::stl_mutex> lock(roller_mutex_);
321 return roller_falcon_data_;
322 }
323
324 private:
325 void Loop() {
milind-u738832d2023-02-24 19:55:54 -0800326 ctre::phoenix::StatusCode status =
Maxwell Hendersonfcc0d122023-08-05 17:03:34 -0700327 ctre::phoenix6::BaseStatusSignal::WaitForAll(2000_ms, signals_);
milind-u738832d2023-02-24 19:55:54 -0800328
329 if (!status.IsOK()) {
330 AOS_LOG(ERROR, "Failed to read signals from falcons: %s: %s",
331 status.GetName(), status.GetDescription());
332 }
333
334 auto builder = can_position_sender_.MakeBuilder();
335
336 for (auto falcon : {right_front_, right_back_, right_under_, left_front_,
337 left_back_, left_under_, roller_falcon_}) {
338 falcon->RefreshNontimesyncedSignals();
339 }
340
Maxwell Henderson10ed5c32024-01-09 12:40:54 -0800341 aos::SizedArray<flatbuffers::Offset<frc971::control_loops::CANTalonFX>,
Maxwell Hendersonca1d18f2023-07-26 21:06:14 -0700342 kCANFalconCount>
milind-u738832d2023-02-24 19:55:54 -0800343 falcons;
344
345 for (auto falcon : {right_front_, right_back_, right_under_, left_front_,
346 left_back_, left_under_}) {
347 falcons.push_back(falcon->WritePosition(builder.fbb()));
348 }
349
350 auto falcons_list =
Maxwell Hendersoncef6f042023-05-26 14:38:09 -0700351 builder.fbb()
Maxwell Hendersonca1d18f2023-07-26 21:06:14 -0700352 ->CreateVector<
Maxwell Henderson10ed5c32024-01-09 12:40:54 -0800353 flatbuffers::Offset<frc971::control_loops::CANTalonFX>>(
354 falcons);
milind-u738832d2023-02-24 19:55:54 -0800355
Maxwell Hendersoncef6f042023-05-26 14:38:09 -0700356 frc971::control_loops::drivetrain::CANPosition::Builder
357 can_position_builder =
358 builder
359 .MakeBuilder<frc971::control_loops::drivetrain::CANPosition>();
milind-u738832d2023-02-24 19:55:54 -0800360
Maxwell Henderson10ed5c32024-01-09 12:40:54 -0800361 can_position_builder.add_talonfxs(falcons_list);
milind-u738832d2023-02-24 19:55:54 -0800362 can_position_builder.add_timestamp(right_front_->GetTimestamp());
363 can_position_builder.add_status(static_cast<int>(status));
364
365 builder.CheckOk(builder.Send(can_position_builder.Finish()));
366
367 {
368 std::unique_lock<aos::stl_mutex> lock(roller_mutex_);
369 superstructure::CANFalconT roller_falcon_data;
370 roller_falcon_data.id = roller_falcon_->device_id();
371 roller_falcon_data.supply_current = roller_falcon_->supply_current();
Austin Schuh23a90022023-02-24 22:13:39 -0800372 roller_falcon_data.torque_current = -roller_falcon_->torque_current();
milind-u738832d2023-02-24 19:55:54 -0800373 roller_falcon_data.supply_voltage = roller_falcon_->supply_voltage();
374 roller_falcon_data.device_temp = roller_falcon_->device_temp();
Austin Schuh23a90022023-02-24 22:13:39 -0800375 roller_falcon_data.position = -roller_falcon_->position();
Ravago Jones088ca772023-03-25 22:14:24 -0700376 roller_falcon_data.duty_cycle = roller_falcon_->duty_cycle();
milind-u738832d2023-02-24 19:55:54 -0800377 roller_falcon_data_ =
378 std::make_optional<superstructure::CANFalconT>(roller_falcon_data);
379 }
380 }
381
382 aos::EventLoop *event_loop_;
383
Maxwell Hendersonfcc0d122023-08-05 17:03:34 -0700384 const std::vector<ctre::phoenix6::BaseStatusSignal *> signals_;
Maxwell Hendersoncef6f042023-05-26 14:38:09 -0700385 aos::Sender<frc971::control_loops::drivetrain::CANPosition>
386 can_position_sender_;
milind-u738832d2023-02-24 19:55:54 -0800387
388 std::shared_ptr<Falcon> right_front_, right_back_, right_under_, left_front_,
389 left_back_, left_under_, roller_falcon_;
390
391 std::optional<superstructure::CANFalconT> roller_falcon_data_;
392
393 aos::stl_mutex roller_mutex_;
394
395 // Pointer to the timer handler used to modify the wakeup.
396 ::aos::TimerHandler *timer_handler_;
397};
398
Maxwell Hendersonad312342023-01-10 12:07:47 -0800399// Class to send position messages with sensor readings to our loops.
400class SensorReader : public ::frc971::wpilib::SensorReader {
401 public:
402 SensorReader(::aos::ShmEventLoop *event_loop,
milind-u738832d2023-02-24 19:55:54 -0800403 std::shared_ptr<const Values> values,
404 CANSensorReader *can_sensor_reader)
Maxwell Hendersonad312342023-01-10 12:07:47 -0800405 : ::frc971::wpilib::SensorReader(event_loop),
406 values_(std::move(values)),
407 auto_mode_sender_(
408 event_loop->MakeSender<::frc971::autonomous::AutonomousMode>(
409 "/autonomous")),
410 superstructure_position_sender_(
411 event_loop->MakeSender<superstructure::Position>(
412 "/superstructure")),
413 drivetrain_position_sender_(
414 event_loop
415 ->MakeSender<::frc971::control_loops::drivetrain::Position>(
416 "/drivetrain")),
417 gyro_sender_(event_loop->MakeSender<::frc971::sensors::GyroReading>(
milind-u738832d2023-02-24 19:55:54 -0800418 "/drivetrain")),
419 can_sensor_reader_(can_sensor_reader) {
Maxwell Hendersonad312342023-01-10 12:07:47 -0800420 // Set to filter out anything shorter than 1/4 of the minimum pulse width
421 // we should ever see.
422 UpdateFastEncoderFilterHz(kMaxFastEncoderPulsesPerSecond);
Austin Schuh595ffc72023-02-24 16:24:37 -0800423 event_loop->SetRuntimeAffinity(aos::MakeCpusetFromCpus({0}));
Maxwell Hendersonad312342023-01-10 12:07:47 -0800424 }
425
426 void Start() override {
Maxwell Hendersonad312342023-01-10 12:07:47 -0800427 AddToDMA(&imu_yaw_rate_reader_);
milind-u3a7f9212023-02-24 20:46:59 -0800428 AddToDMA(&cone_position_sensor_);
Maxwell Hendersonad312342023-01-10 12:07:47 -0800429 }
430
431 // Auto mode switches.
432 void set_autonomous_mode(int i, ::std::unique_ptr<frc::DigitalInput> sensor) {
433 autonomous_modes_.at(i) = ::std::move(sensor);
434 }
435
Ravago Jones2060ee62023-02-03 18:12:24 -0800436 void set_yaw_rate_input(::std::unique_ptr<frc::DigitalInput> sensor) {
437 imu_yaw_rate_input_ = ::std::move(sensor);
438 imu_yaw_rate_reader_.set_input(imu_yaw_rate_input_.get());
439 }
440
Maxwell Hendersonad312342023-01-10 12:07:47 -0800441 void RunIteration() override {
442 superstructure_reading_->Set(true);
milind-u18934eb2023-02-20 16:28:58 -0800443 {
444 auto builder = superstructure_position_sender_.MakeBuilder();
445 frc971::PotAndAbsolutePositionT proximal;
446 CopyPosition(proximal_encoder_, &proximal,
447 Values::kProximalEncoderCountsPerRevolution(),
448 Values::kProximalEncoderRatio(), proximal_pot_translate,
Austin Schuh7dcc49b2023-02-21 17:35:10 -0800449 true, values_->arm_proximal.potentiometer_offset);
milind-u18934eb2023-02-20 16:28:58 -0800450 frc971::PotAndAbsolutePositionT distal;
Maxwell Hendersonce816122023-03-27 20:12:38 -0700451 CopyPosition(
452 distal_encoder_, &distal, Values::kDistalEncoderCountsPerRevolution(),
453 values_->arm_distal.zeroing.one_revolution_distance / (M_PI * 2.0),
454 distal_pot_translate, true, values_->arm_distal.potentiometer_offset);
milind-u18934eb2023-02-20 16:28:58 -0800455 frc971::PotAndAbsolutePositionT roll_joint;
456 CopyPosition(roll_joint_encoder_, &roll_joint,
457 Values::kRollJointEncoderCountsPerRevolution(),
458 Values::kRollJointEncoderRatio(), roll_joint_pot_translate,
Austin Schuh29d025c2023-03-03 21:41:04 -0800459 false, values_->roll_joint.potentiometer_offset);
milind-u18934eb2023-02-20 16:28:58 -0800460 frc971::AbsolutePositionT wrist;
461 CopyPosition(wrist_encoder_, &wrist,
462 Values::kWristEncoderCountsPerRevolution(),
Austin Schuhe5248cd2023-03-05 12:46:16 -0800463 values_->wrist.subsystem_params.zeroing_constants
464 .one_revolution_distance /
465 (M_PI * 2.0),
466 values_->wrist_flipped);
milind-u18934eb2023-02-20 16:28:58 -0800467
468 flatbuffers::Offset<frc971::PotAndAbsolutePosition> proximal_offset =
469 frc971::PotAndAbsolutePosition::Pack(*builder.fbb(), &proximal);
470 flatbuffers::Offset<frc971::PotAndAbsolutePosition> distal_offset =
471 frc971::PotAndAbsolutePosition::Pack(*builder.fbb(), &distal);
milind-u18934eb2023-02-20 16:28:58 -0800472 flatbuffers::Offset<frc971::PotAndAbsolutePosition> roll_joint_offset =
473 frc971::PotAndAbsolutePosition::Pack(*builder.fbb(), &roll_joint);
milind-u18a901d2023-02-17 21:51:55 -0800474 flatbuffers::Offset<superstructure::ArmPosition> arm_offset =
475 superstructure::CreateArmPosition(*builder.fbb(), proximal_offset,
476 distal_offset, roll_joint_offset);
milind-u18934eb2023-02-20 16:28:58 -0800477 flatbuffers::Offset<frc971::AbsolutePosition> wrist_offset =
478 frc971::AbsolutePosition::Pack(*builder.fbb(), &wrist);
479
milind-u738832d2023-02-24 19:55:54 -0800480 flatbuffers::Offset<superstructure::CANFalcon> roller_falcon_offset;
481 auto optional_roller_falcon = can_sensor_reader_->roller_falcon_data();
482 if (optional_roller_falcon.has_value()) {
483 roller_falcon_offset = superstructure::CANFalcon::Pack(
484 *builder.fbb(), &optional_roller_falcon.value());
485 }
486
milind-u18934eb2023-02-20 16:28:58 -0800487 superstructure::Position::Builder position_builder =
488 builder.MakeBuilder<superstructure::Position>();
489
490 position_builder.add_arm(arm_offset);
milind-u18934eb2023-02-20 16:28:58 -0800491 position_builder.add_wrist(wrist_offset);
Maxwell Henderson6c7e61f2023-02-22 16:43:43 -0800492 position_builder.add_end_effector_cube_beam_break(
493 end_effector_cube_beam_break_->Get());
milind-u3a7f9212023-02-24 20:46:59 -0800494 position_builder.add_cone_position(cone_position_sensor_.last_width() /
495 cone_position_sensor_.last_period());
milind-u738832d2023-02-24 19:55:54 -0800496 if (!roller_falcon_offset.IsNull()) {
497 position_builder.add_roller_falcon(roller_falcon_offset);
498 }
Henry Speisere139f802023-02-21 14:14:48 -0800499 builder.CheckOk(builder.Send(position_builder.Finish()));
milind-u18934eb2023-02-20 16:28:58 -0800500 }
Maxwell Hendersonad312342023-01-10 12:07:47 -0800501
502 {
503 auto builder = drivetrain_position_sender_.MakeBuilder();
504 frc971::control_loops::drivetrain::Position::Builder drivetrain_builder =
505 builder.MakeBuilder<frc971::control_loops::drivetrain::Position>();
506 drivetrain_builder.add_left_encoder(
507 constants::Values::DrivetrainEncoderToMeters(
508 drivetrain_left_encoder_->GetRaw()));
509 drivetrain_builder.add_left_speed(
510 drivetrain_velocity_translate(drivetrain_left_encoder_->GetPeriod()));
511
512 drivetrain_builder.add_right_encoder(
513 -constants::Values::DrivetrainEncoderToMeters(
514 drivetrain_right_encoder_->GetRaw()));
515 drivetrain_builder.add_right_speed(-drivetrain_velocity_translate(
516 drivetrain_right_encoder_->GetPeriod()));
517
518 builder.CheckOk(builder.Send(drivetrain_builder.Finish()));
519 }
520
521 {
522 auto builder = gyro_sender_.MakeBuilder();
523 ::frc971::sensors::GyroReading::Builder gyro_reading_builder =
524 builder.MakeBuilder<::frc971::sensors::GyroReading>();
525 // +/- 2000 deg / sec
526 constexpr double kMaxVelocity = 4000; // degrees / second
527 constexpr double kVelocityRadiansPerSecond =
528 kMaxVelocity / 360 * (2.0 * M_PI);
529
530 // Only part of the full range is used to prevent being 100% on or off.
531 constexpr double kScaledRangeLow = 0.1;
532 constexpr double kScaledRangeHigh = 0.9;
533
534 constexpr double kPWMFrequencyHz = 200;
Maxwell Hendersonad312342023-01-10 12:07:47 -0800535 double velocity_duty_cycle =
536 imu_yaw_rate_reader_.last_width() * kPWMFrequencyHz;
537
538 constexpr double kDutyCycleScale =
539 1 / (kScaledRangeHigh - kScaledRangeLow);
540 // scale from 0.1 - 0.9 to 0 - 1
Maxwell Hendersonad312342023-01-10 12:07:47 -0800541 double rescaled_velocity_duty_cycle =
542 (velocity_duty_cycle - kScaledRangeLow) * kDutyCycleScale;
543
Maxwell Hendersonad312342023-01-10 12:07:47 -0800544 if (!std::isnan(rescaled_velocity_duty_cycle)) {
545 gyro_reading_builder.add_velocity((rescaled_velocity_duty_cycle - 0.5) *
546 kVelocityRadiansPerSecond);
547 }
548 builder.CheckOk(builder.Send(gyro_reading_builder.Finish()));
549 }
550
551 {
552 auto builder = auto_mode_sender_.MakeBuilder();
553
554 uint32_t mode = 0;
555 for (size_t i = 0; i < autonomous_modes_.size(); ++i) {
556 if (autonomous_modes_[i] && autonomous_modes_[i]->Get()) {
557 mode |= 1 << i;
558 }
559 }
560
561 auto auto_mode_builder =
562 builder.MakeBuilder<frc971::autonomous::AutonomousMode>();
563
564 auto_mode_builder.add_mode(mode);
565
566 builder.CheckOk(builder.Send(auto_mode_builder.Finish()));
567 }
568 }
569
570 std::shared_ptr<frc::DigitalOutput> superstructure_reading_;
571
572 void set_superstructure_reading(
573 std::shared_ptr<frc::DigitalOutput> superstructure_reading) {
574 superstructure_reading_ = superstructure_reading;
575 }
576
milind-u18934eb2023-02-20 16:28:58 -0800577 void set_proximal_encoder(::std::unique_ptr<frc::Encoder> encoder) {
578 fast_encoder_filter_.Add(encoder.get());
579 proximal_encoder_.set_encoder(::std::move(encoder));
580 }
581
582 void set_proximal_absolute_pwm(
583 ::std::unique_ptr<frc::DigitalInput> absolute_pwm) {
584 proximal_encoder_.set_absolute_pwm(::std::move(absolute_pwm));
585 }
586
587 void set_proximal_potentiometer(
588 ::std::unique_ptr<frc::AnalogInput> potentiometer) {
589 proximal_encoder_.set_potentiometer(::std::move(potentiometer));
590 }
591
592 void set_distal_encoder(::std::unique_ptr<frc::Encoder> encoder) {
593 fast_encoder_filter_.Add(encoder.get());
594 distal_encoder_.set_encoder(::std::move(encoder));
595 }
596
597 void set_distal_absolute_pwm(
598 ::std::unique_ptr<frc::DigitalInput> absolute_pwm) {
599 distal_encoder_.set_absolute_pwm(::std::move(absolute_pwm));
600 }
601
602 void set_distal_potentiometer(
603 ::std::unique_ptr<frc::AnalogInput> potentiometer) {
604 distal_encoder_.set_potentiometer(::std::move(potentiometer));
605 }
606
607 void set_roll_joint_encoder(::std::unique_ptr<frc::Encoder> encoder) {
608 fast_encoder_filter_.Add(encoder.get());
609 roll_joint_encoder_.set_encoder(::std::move(encoder));
610 }
611
612 void set_roll_joint_absolute_pwm(
613 ::std::unique_ptr<frc::DigitalInput> absolute_pwm) {
614 roll_joint_encoder_.set_absolute_pwm(::std::move(absolute_pwm));
615 }
616
617 void set_roll_joint_potentiometer(
618 ::std::unique_ptr<frc::AnalogInput> potentiometer) {
619 roll_joint_encoder_.set_potentiometer(::std::move(potentiometer));
620 }
621
622 void set_wrist_encoder(::std::unique_ptr<frc::Encoder> encoder) {
623 fast_encoder_filter_.Add(encoder.get());
624 wrist_encoder_.set_encoder(::std::move(encoder));
625 }
626
627 void set_wrist_absolute_pwm(
628 ::std::unique_ptr<frc::DigitalInput> absolute_pwm) {
629 wrist_encoder_.set_absolute_pwm(::std::move(absolute_pwm));
630 }
631
Maxwell Henderson6c7e61f2023-02-22 16:43:43 -0800632 void set_end_effector_cube_beam_break(
633 ::std::unique_ptr<frc::DigitalInput> sensor) {
634 end_effector_cube_beam_break_ = ::std::move(sensor);
635 }
636
milind-u3a7f9212023-02-24 20:46:59 -0800637 void set_cone_position_sensor(::std::unique_ptr<frc::DigitalInput> sensor) {
638 cone_position_input_ = ::std::move(sensor);
639 cone_position_sensor_.set_input(cone_position_input_.get());
640 }
641
Maxwell Hendersonad312342023-01-10 12:07:47 -0800642 private:
643 std::shared_ptr<const Values> values_;
644
645 aos::Sender<frc971::autonomous::AutonomousMode> auto_mode_sender_;
646 aos::Sender<superstructure::Position> superstructure_position_sender_;
647 aos::Sender<frc971::control_loops::drivetrain::Position>
648 drivetrain_position_sender_;
649 ::aos::Sender<::frc971::sensors::GyroReading> gyro_sender_;
650
651 std::array<std::unique_ptr<frc::DigitalInput>, 2> autonomous_modes_;
652
Ravago Jones2544ad82023-03-04 22:24:49 -0800653 std::unique_ptr<frc::DigitalInput> imu_yaw_rate_input_,
milind-u3a7f9212023-02-24 20:46:59 -0800654 end_effector_cube_beam_break_;
Ravago Jones2060ee62023-02-03 18:12:24 -0800655
Ravago Jones2544ad82023-03-04 22:24:49 -0800656 frc971::wpilib::DMAPulseWidthReader imu_yaw_rate_reader_;
milind-u18934eb2023-02-20 16:28:58 -0800657
658 frc971::wpilib::AbsoluteEncoderAndPotentiometer proximal_encoder_,
659 distal_encoder_, roll_joint_encoder_;
660 frc971::wpilib::AbsoluteEncoder wrist_encoder_;
milind-u3a7f9212023-02-24 20:46:59 -0800661
662 frc971::wpilib::DMAPulseWidthReader cone_position_sensor_;
663 std::unique_ptr<frc::DigitalInput> cone_position_input_;
milind-u738832d2023-02-24 19:55:54 -0800664
665 CANSensorReader *can_sensor_reader_;
Maxwell Hendersonad312342023-01-10 12:07:47 -0800666};
667
668class SuperstructureWriter
669 : public ::frc971::wpilib::LoopOutputHandler<superstructure::Output> {
670 public:
671 SuperstructureWriter(aos::EventLoop *event_loop)
672 : frc971::wpilib::LoopOutputHandler<superstructure::Output>(
milind-u32d29d32023-02-24 21:11:51 -0800673 event_loop, "/superstructure") {
674 event_loop->SetRuntimeRealtimePriority(
675 constants::Values::kDrivetrainWriterPriority);
676 }
Maxwell Hendersonad312342023-01-10 12:07:47 -0800677
678 std::shared_ptr<frc::DigitalOutput> superstructure_reading_;
679
680 void set_superstructure_reading(
681 std::shared_ptr<frc::DigitalOutput> superstructure_reading) {
682 superstructure_reading_ = superstructure_reading;
683 }
684
milind-u18934eb2023-02-20 16:28:58 -0800685 void set_proximal_falcon(::std::unique_ptr<::frc::TalonFX> t) {
686 proximal_falcon_ = ::std::move(t);
687 }
Maxwell Hendersonad312342023-01-10 12:07:47 -0800688
milind-u18934eb2023-02-20 16:28:58 -0800689 void set_distal_falcon(::std::unique_ptr<::frc::TalonFX> t) {
690 distal_falcon_ = ::std::move(t);
691 }
692
693 void set_roll_joint_victor(::std::unique_ptr<::frc::VictorSP> t) {
694 roll_joint_victor_ = ::std::move(t);
695 }
696
697 void set_wrist_victor(::std::unique_ptr<::frc::VictorSP> t) {
698 wrist_victor_ = ::std::move(t);
699 }
700
milind-u18934eb2023-02-20 16:28:58 -0800701 private:
702 void Stop() override {
703 AOS_LOG(WARNING, "Superstructure output too old.\n");
704 proximal_falcon_->SetDisabled();
705 distal_falcon_->SetDisabled();
706 roll_joint_victor_->SetDisabled();
707 wrist_victor_->SetDisabled();
milind-u18934eb2023-02-20 16:28:58 -0800708 }
709
710 void Write(const superstructure::Output &output) override {
711 WritePwm(output.proximal_voltage(), proximal_falcon_.get());
712 WritePwm(output.distal_voltage(), distal_falcon_.get());
Austin Schuh3fd5f0e2023-02-22 11:10:37 -0800713 WritePwm(-output.roll_joint_voltage(), roll_joint_victor_.get());
milind-u18934eb2023-02-20 16:28:58 -0800714 WritePwm(output.wrist_voltage(), wrist_victor_.get());
milind-u18934eb2023-02-20 16:28:58 -0800715 }
Maxwell Hendersonad312342023-01-10 12:07:47 -0800716
717 static void WriteCan(const double voltage,
Maxwell Henderson1c0843c2023-12-22 16:20:59 -0800718 ::ctre::phoenix6::hardware::TalonFX *talon) {
719 ctre::phoenix6::controls::DutyCycleOut motor_control(SafeSpeed(voltage));
720
721 motor_control.UpdateFreqHz = 0_Hz;
722 motor_control.EnableFOC = true;
723
724 ctre::phoenix::StatusCode status = talon->SetControl(motor_control);
725
726 if (!status.IsOK()) {
727 AOS_LOG(ERROR, "Failed to write control to falcon: %s: %s",
728 status.GetName(), status.GetDescription());
729 }
Maxwell Hendersonad312342023-01-10 12:07:47 -0800730 }
731
732 template <typename T>
733 static void WritePwm(const double voltage, T *motor) {
Maxwell Henderson1c0843c2023-12-22 16:20:59 -0800734 motor->SetSpeed(SafeSpeed(voltage));
735 }
736
737 static double SafeSpeed(double voltage) {
738 return (::aos::Clip(voltage, -kMaxBringupPower, kMaxBringupPower) / 12.0);
Maxwell Hendersonad312342023-01-10 12:07:47 -0800739 }
milind-u18934eb2023-02-20 16:28:58 -0800740
741 ::std::unique_ptr<::frc::TalonFX> proximal_falcon_, distal_falcon_;
742 ::std::unique_ptr<::frc::VictorSP> roll_joint_victor_, wrist_victor_;
Maxwell Hendersonad312342023-01-10 12:07:47 -0800743};
744
milind-u32d29d32023-02-24 21:11:51 -0800745class SuperstructureCANWriter
746 : public ::frc971::wpilib::LoopOutputHandler<superstructure::Output> {
747 public:
748 SuperstructureCANWriter(::aos::EventLoop *event_loop)
749 : ::frc971::wpilib::LoopOutputHandler<superstructure::Output>(
750 event_loop, "/superstructure") {
751 event_loop->SetRuntimeRealtimePriority(
752 constants::Values::kSuperstructureCANWriterPriority);
753
754 event_loop->OnRun([this]() { WriteConfigs(); });
755 };
756
Austin Schuhbb4c9ac2023-02-28 22:04:20 -0800757 void HandleCANConfiguration(const CANConfiguration &configuration) {
758 roller_falcon_->PrintConfigs();
759 if (configuration.reapply()) {
760 WriteConfigs();
761 }
762 }
763
milind-u32d29d32023-02-24 21:11:51 -0800764 void set_roller_falcon(std::shared_ptr<Falcon> roller_falcon) {
765 roller_falcon_ = std::move(roller_falcon);
766 }
767
768 private:
769 void WriteConfigs() { roller_falcon_->WriteRollerConfigs(); }
770
771 void Write(const superstructure::Output &output) override {
Maxwell Hendersonfcc0d122023-08-05 17:03:34 -0700772 ctre::phoenix6::controls::DutyCycleOut roller_control(
milind-u32d29d32023-02-24 21:11:51 -0800773 SafeSpeed(-output.roller_voltage()));
774 roller_control.UpdateFreqHz = 0_Hz;
775 roller_control.EnableFOC = true;
776
777 ctre::phoenix::StatusCode status =
778 roller_falcon_->talon()->SetControl(roller_control);
779
780 if (!status.IsOK()) {
781 AOS_LOG(ERROR, "Failed to write control to falcon: %s: %s",
782 status.GetName(), status.GetDescription());
783 }
784 }
785
786 void Stop() override {
787 AOS_LOG(WARNING, "Superstructure CAN output too old.\n");
Maxwell Hendersonfcc0d122023-08-05 17:03:34 -0700788 ctre::phoenix6::controls::DutyCycleOut stop_command(0.0);
Austin Schuh1780e002023-03-03 21:39:26 -0800789 stop_command.UpdateFreqHz = 0_Hz;
790 stop_command.EnableFOC = true;
milind-u32d29d32023-02-24 21:11:51 -0800791
792 roller_falcon_->talon()->SetControl(stop_command);
793 }
794
795 double SafeSpeed(double voltage) {
796 return (::aos::Clip(voltage, -kMaxBringupPower, kMaxBringupPower) / 12.0);
797 }
798
799 std::shared_ptr<Falcon> roller_falcon_;
800};
801
Ravago Jones2060ee62023-02-03 18:12:24 -0800802class DrivetrainWriter : public ::frc971::wpilib::LoopOutputHandler<
803 ::frc971::control_loops::drivetrain::Output> {
804 public:
805 DrivetrainWriter(::aos::EventLoop *event_loop)
806 : ::frc971::wpilib::LoopOutputHandler<
807 ::frc971::control_loops::drivetrain::Output>(event_loop,
808 "/drivetrain") {
809 event_loop->SetRuntimeRealtimePriority(
810 constants::Values::kDrivetrainWriterPriority);
811
Ravago Jones2060ee62023-02-03 18:12:24 -0800812 event_loop->OnRun([this]() { WriteConfigs(); });
813 }
814
815 void set_falcons(std::shared_ptr<Falcon> right_front,
816 std::shared_ptr<Falcon> right_back,
817 std::shared_ptr<Falcon> right_under,
818 std::shared_ptr<Falcon> left_front,
819 std::shared_ptr<Falcon> left_back,
820 std::shared_ptr<Falcon> left_under) {
821 right_front_ = std::move(right_front);
822 right_back_ = std::move(right_back);
823 right_under_ = std::move(right_under);
824 left_front_ = std::move(left_front);
825 left_back_ = std::move(left_back);
826 left_under_ = std::move(left_under);
827 }
828
Maxwell Hendersonfcc0d122023-08-05 17:03:34 -0700829 void set_right_inverted(ctre::phoenix6::signals::InvertedValue invert) {
Ravago Jones2060ee62023-02-03 18:12:24 -0800830 right_inverted_ = invert;
831 }
832
Maxwell Hendersonfcc0d122023-08-05 17:03:34 -0700833 void set_left_inverted(ctre::phoenix6::signals::InvertedValue invert) {
Ravago Jones2060ee62023-02-03 18:12:24 -0800834 left_inverted_ = invert;
835 }
836
Austin Schuhbb4c9ac2023-02-28 22:04:20 -0800837 void HandleCANConfiguration(const CANConfiguration &configuration) {
838 for (auto falcon : {right_front_, right_back_, right_under_, left_front_,
839 left_back_, left_under_}) {
840 falcon->PrintConfigs();
841 }
842 if (configuration.reapply()) {
843 WriteConfigs();
844 }
845 }
846
Ravago Jones2060ee62023-02-03 18:12:24 -0800847 private:
848 void WriteConfigs() {
849 for (auto falcon :
850 {right_front_.get(), right_back_.get(), right_under_.get()}) {
851 falcon->WriteConfigs(right_inverted_);
852 }
853
854 for (auto falcon :
855 {left_front_.get(), left_back_.get(), left_under_.get()}) {
856 falcon->WriteConfigs(left_inverted_);
857 }
858 }
859
860 void Write(
861 const ::frc971::control_loops::drivetrain::Output &output) override {
Maxwell Hendersonfcc0d122023-08-05 17:03:34 -0700862 ctre::phoenix6::controls::DutyCycleOut left_control(
Ravago Jones2060ee62023-02-03 18:12:24 -0800863 SafeSpeed(output.left_voltage()));
864 left_control.UpdateFreqHz = 0_Hz;
865 left_control.EnableFOC = true;
866
Maxwell Hendersonfcc0d122023-08-05 17:03:34 -0700867 ctre::phoenix6::controls::DutyCycleOut right_control(
Ravago Jones2060ee62023-02-03 18:12:24 -0800868 SafeSpeed(output.right_voltage()));
869 right_control.UpdateFreqHz = 0_Hz;
870 right_control.EnableFOC = true;
871
872 for (auto falcon :
873 {left_front_.get(), left_back_.get(), left_under_.get()}) {
874 ctre::phoenix::StatusCode status =
875 falcon->talon()->SetControl(left_control);
876
877 if (!status.IsOK()) {
878 AOS_LOG(ERROR, "Failed to write control to falcon: %s: %s",
879 status.GetName(), status.GetDescription());
880 }
881 }
882
883 for (auto falcon :
884 {right_front_.get(), right_back_.get(), right_under_.get()}) {
885 ctre::phoenix::StatusCode status =
886 falcon->talon()->SetControl(right_control);
887
888 if (!status.IsOK()) {
889 AOS_LOG(ERROR, "Failed to write control to falcon: %s: %s",
890 status.GetName(), status.GetDescription());
891 }
892 }
893 }
894
895 void Stop() override {
896 AOS_LOG(WARNING, "drivetrain output too old\n");
Maxwell Hendersonfcc0d122023-08-05 17:03:34 -0700897 ctre::phoenix6::controls::DutyCycleOut stop_command(0.0);
Austin Schuh1780e002023-03-03 21:39:26 -0800898 stop_command.UpdateFreqHz = 0_Hz;
899 stop_command.EnableFOC = true;
900
Ravago Jones2060ee62023-02-03 18:12:24 -0800901 for (auto falcon :
902 {right_front_.get(), right_back_.get(), right_under_.get(),
903 left_front_.get(), left_back_.get(), left_under_.get()}) {
904 falcon->talon()->SetControl(stop_command);
905 }
906 }
907
908 double SafeSpeed(double voltage) {
909 return (::aos::Clip(voltage, -kMaxBringupPower, kMaxBringupPower) / 12.0);
910 }
911
Maxwell Hendersonfcc0d122023-08-05 17:03:34 -0700912 ctre::phoenix6::signals::InvertedValue left_inverted_, right_inverted_;
Ravago Jones2060ee62023-02-03 18:12:24 -0800913 std::shared_ptr<Falcon> right_front_, right_back_, right_under_, left_front_,
914 left_back_, left_under_;
915};
Maxwell Hendersonad312342023-01-10 12:07:47 -0800916
917class WPILibRobot : public ::frc971::wpilib::WPILibRobotBase {
918 public:
919 ::std::unique_ptr<frc::Encoder> make_encoder(int index) {
920 return make_unique<frc::Encoder>(10 + index * 2, 11 + index * 2, false,
921 frc::Encoder::k4X);
922 }
923
924 void Run() override {
925 std::shared_ptr<const Values> values =
926 std::make_shared<const Values>(constants::MakeValues());
927
928 aos::FlatbufferDetachedBuffer<aos::Configuration> config =
929 aos::configuration::ReadConfig("aos_config.json");
930
931 // Thread 1.
Ravago Jones2060ee62023-02-03 18:12:24 -0800932 ::aos::ShmEventLoop joystick_sender_event_loop(&config.message());
933 ::frc971::wpilib::JoystickSender joystick_sender(
934 &joystick_sender_event_loop);
935 AddLoop(&joystick_sender_event_loop);
936
Maxwell Hendersonad312342023-01-10 12:07:47 -0800937 // Thread 2.
938 ::aos::ShmEventLoop pdp_fetcher_event_loop(&config.message());
939 ::frc971::wpilib::PDPFetcher pdp_fetcher(&pdp_fetcher_event_loop);
940 AddLoop(&pdp_fetcher_event_loop);
941
942 std::shared_ptr<frc::DigitalOutput> superstructure_reading =
943 make_unique<frc::DigitalOutput>(25);
944
Maxwell Hendersonfcc0d122023-08-05 17:03:34 -0700945 std::vector<ctre::phoenix6::BaseStatusSignal *> signals_registry;
Ravago Jones2bfcecd2023-03-14 13:13:26 -0700946 std::shared_ptr<Falcon> right_front =
947 std::make_shared<Falcon>(1, "Drivetrain Bus", &signals_registry);
948 std::shared_ptr<Falcon> right_back =
949 std::make_shared<Falcon>(2, "Drivetrain Bus", &signals_registry);
950 std::shared_ptr<Falcon> right_under =
951 std::make_shared<Falcon>(3, "Drivetrain Bus", &signals_registry);
952 std::shared_ptr<Falcon> left_front =
953 std::make_shared<Falcon>(4, "Drivetrain Bus", &signals_registry);
954 std::shared_ptr<Falcon> left_back =
955 std::make_shared<Falcon>(5, "Drivetrain Bus", &signals_registry);
956 std::shared_ptr<Falcon> left_under =
957 std::make_shared<Falcon>(6, "Drivetrain Bus", &signals_registry);
958 std::shared_ptr<Falcon> roller =
959 std::make_shared<Falcon>(13, "Drivetrain Bus", &signals_registry);
960
Maxwell Hendersonad312342023-01-10 12:07:47 -0800961 // Thread 3.
milind-u738832d2023-02-24 19:55:54 -0800962 ::aos::ShmEventLoop can_sensor_reader_event_loop(&config.message());
963 can_sensor_reader_event_loop.set_name("CANSensorReader");
Ravago Jones2bfcecd2023-03-14 13:13:26 -0700964 CANSensorReader can_sensor_reader(&can_sensor_reader_event_loop,
965 std::move(signals_registry));
milind-u738832d2023-02-24 19:55:54 -0800966
967 can_sensor_reader.set_falcons(right_front, right_back, right_under,
968 left_front, left_back, left_under, roller);
969
970 AddLoop(&can_sensor_reader_event_loop);
971
972 // Thread 4.
Maxwell Hendersonad312342023-01-10 12:07:47 -0800973 ::aos::ShmEventLoop sensor_reader_event_loop(&config.message());
milind-u738832d2023-02-24 19:55:54 -0800974 SensorReader sensor_reader(&sensor_reader_event_loop, values,
975 &can_sensor_reader);
Maxwell Hendersonad312342023-01-10 12:07:47 -0800976 sensor_reader.set_pwm_trigger(true);
977 sensor_reader.set_drivetrain_left_encoder(make_encoder(1));
978 sensor_reader.set_drivetrain_right_encoder(make_encoder(0));
979 sensor_reader.set_superstructure_reading(superstructure_reading);
Henry Speisere139f802023-02-21 14:14:48 -0800980 sensor_reader.set_yaw_rate_input(make_unique<frc::DigitalInput>(0));
Ravago Jones2060ee62023-02-03 18:12:24 -0800981
milind-u18934eb2023-02-20 16:28:58 -0800982 sensor_reader.set_proximal_encoder(make_encoder(3));
983 sensor_reader.set_proximal_absolute_pwm(make_unique<frc::DigitalInput>(3));
984 sensor_reader.set_proximal_potentiometer(make_unique<frc::AnalogInput>(3));
985
Henry Speisere139f802023-02-21 14:14:48 -0800986 sensor_reader.set_distal_encoder(make_encoder(2));
987 sensor_reader.set_distal_absolute_pwm(make_unique<frc::DigitalInput>(2));
988 sensor_reader.set_distal_potentiometer(make_unique<frc::AnalogInput>(2));
milind-u18934eb2023-02-20 16:28:58 -0800989
Henry Speisere139f802023-02-21 14:14:48 -0800990 sensor_reader.set_roll_joint_encoder(make_encoder(5));
milind-u18934eb2023-02-20 16:28:58 -0800991 sensor_reader.set_roll_joint_absolute_pwm(
Henry Speisere139f802023-02-21 14:14:48 -0800992 make_unique<frc::DigitalInput>(5));
milind-u18934eb2023-02-20 16:28:58 -0800993 sensor_reader.set_roll_joint_potentiometer(
Henry Speisere139f802023-02-21 14:14:48 -0800994 make_unique<frc::AnalogInput>(5));
milind-u18934eb2023-02-20 16:28:58 -0800995
Henry Speisere139f802023-02-21 14:14:48 -0800996 sensor_reader.set_wrist_encoder(make_encoder(4));
997 sensor_reader.set_wrist_absolute_pwm(make_unique<frc::DigitalInput>(4));
milind-u18934eb2023-02-20 16:28:58 -0800998
Maxwell Henderson6c7e61f2023-02-22 16:43:43 -0800999 sensor_reader.set_end_effector_cube_beam_break(
1000 make_unique<frc::DigitalInput>(7));
milind-u3a7f9212023-02-24 20:46:59 -08001001 sensor_reader.set_cone_position_sensor(make_unique<frc::DigitalInput>(8));
Maxwell Henderson6c7e61f2023-02-22 16:43:43 -08001002
Maxwell Hendersonad312342023-01-10 12:07:47 -08001003 AddLoop(&sensor_reader_event_loop);
1004
Ravago Jones2060ee62023-02-03 18:12:24 -08001005 // Thread 5.
Philipp Schradera6712522023-07-05 20:25:11 -07001006 // Set up CAN.
milind-u32d29d32023-02-24 21:11:51 -08001007 if (!FLAGS_ctre_diag_server) {
1008 c_Phoenix_Diagnostics_SetSecondsToStart(-1);
1009 c_Phoenix_Diagnostics_Dispose();
1010 }
1011
1012 ctre::phoenix::platform::can::CANComm_SetRxSchedPriority(
1013 constants::Values::kDrivetrainRxPriority, true, "Drivetrain Bus");
1014 ctre::phoenix::platform::can::CANComm_SetTxSchedPriority(
1015 constants::Values::kDrivetrainTxPriority, true, "Drivetrain Bus");
1016
1017 ::aos::ShmEventLoop can_output_event_loop(&config.message());
1018 can_output_event_loop.set_name("CANOutputWriter");
1019 DrivetrainWriter drivetrain_writer(&can_output_event_loop);
Ravago Jones2060ee62023-02-03 18:12:24 -08001020
1021 drivetrain_writer.set_falcons(right_front, right_back, right_under,
1022 left_front, left_back, left_under);
1023 drivetrain_writer.set_right_inverted(
Maxwell Hendersonfcc0d122023-08-05 17:03:34 -07001024 ctre::phoenix6::signals::InvertedValue::Clockwise_Positive);
Ravago Jones2060ee62023-02-03 18:12:24 -08001025 drivetrain_writer.set_left_inverted(
Maxwell Hendersonfcc0d122023-08-05 17:03:34 -07001026 ctre::phoenix6::signals::InvertedValue::CounterClockwise_Positive);
milind-u32d29d32023-02-24 21:11:51 -08001027
1028 SuperstructureCANWriter superstructure_can_writer(&can_output_event_loop);
1029 superstructure_can_writer.set_roller_falcon(roller);
1030
Austin Schuhbb4c9ac2023-02-28 22:04:20 -08001031 can_output_event_loop.MakeWatcher(
1032 "/roborio", [&drivetrain_writer, &superstructure_can_writer](
1033 const CANConfiguration &configuration) {
1034 drivetrain_writer.HandleCANConfiguration(configuration);
1035 superstructure_can_writer.HandleCANConfiguration(configuration);
1036 });
1037
milind-u32d29d32023-02-24 21:11:51 -08001038 AddLoop(&can_output_event_loop);
1039
Maxwell Henderson2a2faa62023-03-11 15:05:46 -08001040 // Thread 6
Philipp Schradera6712522023-07-05 20:25:11 -07001041 // Set up superstructure output.
milind-u32d29d32023-02-24 21:11:51 -08001042 ::aos::ShmEventLoop output_event_loop(&config.message());
1043 output_event_loop.set_name("PWMOutputWriter");
Maxwell Hendersonad312342023-01-10 12:07:47 -08001044 SuperstructureWriter superstructure_writer(&output_event_loop);
1045
Henry Speisere139f802023-02-21 14:14:48 -08001046 superstructure_writer.set_proximal_falcon(make_unique<::frc::TalonFX>(1));
1047 superstructure_writer.set_distal_falcon(make_unique<::frc::TalonFX>(0));
milind-u18934eb2023-02-20 16:28:58 -08001048
1049 superstructure_writer.set_roll_joint_victor(
Henry Speisere139f802023-02-21 14:14:48 -08001050 make_unique<::frc::VictorSP>(3));
1051 superstructure_writer.set_wrist_victor(make_unique<::frc::VictorSP>(2));
1052
Maxwell Hendersonad312342023-01-10 12:07:47 -08001053 superstructure_writer.set_superstructure_reading(superstructure_reading);
1054
1055 AddLoop(&output_event_loop);
1056
Maxwell Henderson2a2faa62023-03-11 15:05:46 -08001057 // Thread 7
Philipp Schradera6712522023-07-05 20:25:11 -07001058 // Set up led_indicator.
Maxwell Henderson2a2faa62023-03-11 15:05:46 -08001059 ::aos::ShmEventLoop led_indicator_event_loop(&config.message());
1060 led_indicator_event_loop.set_name("LedIndicator");
1061 control_loops::superstructure::LedIndicator led_indicator(
1062 &led_indicator_event_loop);
1063 AddLoop(&led_indicator_event_loop);
1064
Maxwell Hendersonad312342023-01-10 12:07:47 -08001065 RunLoops();
1066 }
1067};
1068
1069} // namespace wpilib
1070} // namespace y2023
1071
1072AOS_ROBOT_CLASS(::y2023::wpilib::WPILibRobot);