From d90d5848a9196928bc244c4ad517139ca016b6aa Mon Sep 17 00:00:00 2001
From: theVerySharpFlat
Date: Thu, 25 Jan 2024 09:19:36 -0600
Subject: [PATCH 01/28] need to switch
---
build.gradle | 8 ++++++++
src/Robot.h | 1 +
src/subsystems/drive/DriveConstants.h | 8 ++++----
src/subsystems/drive/DriveSubsystem.cpp | 20 ++++++++++----------
4 files changed, 23 insertions(+), 14 deletions(-)
diff --git a/build.gradle b/build.gradle
index acb4d1e..3cd3344 100644
--- a/build.gradle
+++ b/build.gradle
@@ -116,3 +116,11 @@ model {
}
}
}
+
+task listrepos {
+ doLast {
+ println "Repositories:"
+ project.repositories.each { println "Name: " + it.name + "; url: " + it.url }
+ }
+}
+
diff --git a/src/Robot.h b/src/Robot.h
index f2c9b5c..7b409e9 100644
--- a/src/Robot.h
+++ b/src/Robot.h
@@ -13,6 +13,7 @@
class Robot : public frc::TimedRobot {
public:
+ Robot() : frc::TimedRobot(40_ms) {}
void RobotInit() override;
void RobotPeriodic() override;
void DisabledInit() override;
diff --git a/src/subsystems/drive/DriveConstants.h b/src/subsystems/drive/DriveConstants.h
index 1838c5c..3eb3782 100644
--- a/src/subsystems/drive/DriveConstants.h
+++ b/src/subsystems/drive/DriveConstants.h
@@ -31,10 +31,10 @@ const rmb::TalonFXVelocityControllerHelper::PIDConfig velocityModulePIDConfig =
const rmb::TalonFXPositionControllerHelper::PIDConfig positionModulePIDConfig =
{.p = 2.5f, .i = 0.0000f, .d = 0.0f, .ff = 0.000};
-const units::turn_t module1MagnetOffset(-0.169778);
-const units::turn_t module2MagnetOffset(-0.190430);
-const units::turn_t module3MagnetOffset(-0.726318 + 0.5);
-const units::turn_t module4MagnetOffset(-0.37963 + 0.5);
+const units::turn_t module1MagnetOffset(-0.403564);
+const units::turn_t module2MagnetOffset(-0.223145);
+const units::turn_t module3MagnetOffset(-0.382812 - 0.5);
+const units::turn_t module4MagnetOffset(-0.948486);
const units::meter_t wheelCircumference = 1.0_m; // TODO: CHANGE
const units::meter_t robotDimX = 1.0_m;
diff --git a/src/subsystems/drive/DriveSubsystem.cpp b/src/subsystems/drive/DriveSubsystem.cpp
index 465190b..3ab68a1 100644
--- a/src/subsystems/drive/DriveSubsystem.cpp
+++ b/src/subsystems/drive/DriveSubsystem.cpp
@@ -23,7 +23,7 @@ DriveSubsystem::DriveSubsystem(std::shared_ptr gyro) {
std::make_unique(
constants::drive::positionControllerCreateInfo),
frc::Translation2d(-constants::drive::robotDimX / 2.0,
- constants::drive::robotDimY),
+ constants::drive::robotDimY / 2.0),
true),
rmb::SwerveModule(
rmb::asLinear(std::make_unique(
@@ -31,8 +31,8 @@ DriveSubsystem::DriveSubsystem(std::shared_ptr gyro) {
constants::drive::wheelCircumference / 1_tr),
std::make_unique(
constants::drive::positionControllerCreateInfo1),
- frc::Translation2d(constants::drive::robotDimX,
- constants::drive::robotDimY),
+ frc::Translation2d(constants::drive::robotDimX / 2.0,
+ constants::drive::robotDimY / 2.0),
true),
rmb::SwerveModule(
rmb::asLinear(std::make_unique(
@@ -40,8 +40,8 @@ DriveSubsystem::DriveSubsystem(std::shared_ptr gyro) {
constants::drive::wheelCircumference / 1_tr),
std::make_unique(
constants::drive::positionControllerCreateInfo2),
- frc::Translation2d(constants::drive::robotDimX,
- -constants::drive::robotDimY),
+ frc::Translation2d(constants::drive::robotDimX / 2.0,
+ -constants::drive::robotDimY / 2.0),
true),
rmb::SwerveModule(
rmb::asLinear(std::make_unique(
@@ -49,8 +49,8 @@ DriveSubsystem::DriveSubsystem(std::shared_ptr gyro) {
constants::drive::wheelCircumference / 1_tr),
std::make_unique(
constants::drive::positionControllerCreateInfo3),
- frc::Translation2d(-constants::drive::robotDimX,
- -constants::drive::robotDimY),
+ frc::Translation2d(-constants::drive::robotDimX / 2.0,
+ -constants::drive::robotDimY / 2.0),
true),
};
@@ -74,13 +74,13 @@ void DriveSubsystem::Periodic() {
void DriveSubsystem::driveTeleop(const rmb::LogitechGamepad &gamepad) {
// TODO: add filters
- drive->driveCartesian(gamepad.GetLeftX(), gamepad.GetLeftY(),
- gamepad.GetRightX(), true);
+ drive->driveCartesian(gamepad.GetLeftY(), gamepad.GetLeftX(),
+ gamepad.GetRightY(), false);
}
frc2::CommandPtr
DriveSubsystem::driveTeleopCommand(const rmb::LogitechGamepad &gamepad) {
- return frc2::RunCommand([&] { driveTeleop(gamepad); }).ToPtr();
+ return frc2::RunCommand([&] { driveTeleop(gamepad); }, {this}).ToPtr();
}
frc2::CommandPtr DriveSubsystem::driveTeleopCommand(double x, double y,
From 1bd88905148950a424cdc3cc06aaaaa7e499e18f Mon Sep 17 00:00:00 2001
From: theVerySharpFlat
Date: Fri, 26 Jan 2024 15:24:38 -0600
Subject: [PATCH 02/28] bump lib
---
lib | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib b/lib
index 597f5bc..f594b56 160000
--- a/lib
+++ b/lib
@@ -1 +1 @@
-Subproject commit 597f5bc415a0b063757571655c17898f25947a28
+Subproject commit f594b56ff30865046bc9b6ed5a65f3240066c3b7
From 1b0f94937c748170964f830686aff57b2d1a818e Mon Sep 17 00:00:00 2001
From: theVerySharpFlat
Date: Sat, 27 Jan 2024 17:57:37 -0600
Subject: [PATCH 03/28] enforce counter clockwise positive in swerve modules
---
lib/src/rmb/drive/SwerveDrive.inl | 28 ++++++++-----------
.../Talon/TalonFXPositionController.h | 2 +-
2 files changed, 12 insertions(+), 18 deletions(-)
diff --git a/lib/src/rmb/drive/SwerveDrive.inl b/lib/src/rmb/drive/SwerveDrive.inl
index f32195e..bc51643 100644
--- a/lib/src/rmb/drive/SwerveDrive.inl
+++ b/lib/src/rmb/drive/SwerveDrive.inl
@@ -4,61 +4,52 @@
#include "pathplanner/lib/path/PathConstraints.h"
#include "pathplanner/lib/path/PathPlannerPath.h"
#include "pathplanner/lib/util/HolonomicPathFollowerConfig.h"
-#include "pathplanner/lib/util/PIDConstants.h"
#include "pathplanner/lib/util/ReplanningConfig.h"
-#include "rmb/drive/BaseDrive.h"
-#include "units/acceleration.h"
#include "units/angle.h"
-#include "units/angular_velocity.h"
#include "units/base.h"
#include "units/length.h"
-#include "units/math.h"
-#include "units/time.h"
#include "units/velocity.h"
#include "frc/controller/HolonomicDriveController.h"
#include "frc/estimator/SwerveDrivePoseEstimator.h"
#include "frc/geometry/Rotation2d.h"
-#include "frc/interfaces/Gyro.h"
+#include "frc/geometry/Translation2d.h"
#include "frc/kinematics/ChassisSpeeds.h"
#include "frc/kinematics/SwerveDriveKinematics.h"
#include "frc/kinematics/SwerveModulePosition.h"
#include "frc/kinematics/SwerveModuleState.h"
-#include "frc/geometry/Translation2d.h"
-
#include "frc2/command//SwerveControllerCommand.h"
#include "frc2/command/CommandPtr.h"
#include "frc2/command/Commands.h"
#include "frc2/command/Subsystem.h"
+
#include "networktables/NetworkTable.h"
#include "networktables/NetworkTableInstance.h"
+
#include "rmb/drive/SwerveDrive.h"
#include "rmb/drive/SwerveModule.h"
-#include "rmb/motorcontrol/feedforward/Feedforward.h"
+
#include "units/angle.h"
-#include "units/angular_velocity.h"
#include "units/length.h"
-#include "units/math.h"
#include "units/velocity.h"
+
#include "wpi/array.h"
-#include "wpi/sendable/SendableRegistry.h"
#include
#include
-#include
#include
-#include
#include
+
#include
+#include
#include "pathplanner/lib/commands/FollowPathHolonomic.h"
#include "pathplanner/lib/commands/PathfindHolonomic.h"
#include "pathplanner/lib/path/PathConstraints.h"
#include "pathplanner/lib/util/HolonomicPathFollowerConfig.h"
#include "pathplanner/lib/util/ReplanningConfig.h"
-#include
namespace rmb {
@@ -183,7 +174,10 @@ void SwerveDrive::driveCartesian(double xSpeed, double ySpeed,
robotRelativeVXY.y() +
zRotation * -module.getModuleTranslation().X() / largestModuleDistance;
- frc::Rotation2d moduleRotation{output_x, output_y};
+ // Enforce a forward-facing 0_deg that increases in the counterclockwise
+ // direction
+ frc::Rotation2d moduleRotation =
+ -1.0 * frc::Rotation2d(output_x, output_y).Radians();
double modulePower = std::sqrt(output_x * output_x + output_y * output_y);
powers[i] = SwerveModulePower{modulePower, moduleRotation};
diff --git a/lib/src/rmb/motorcontrol/Talon/TalonFXPositionController.h b/lib/src/rmb/motorcontrol/Talon/TalonFXPositionController.h
index d19641e..ee4e072 100644
--- a/lib/src/rmb/motorcontrol/Talon/TalonFXPositionController.h
+++ b/lib/src/rmb/motorcontrol/Talon/TalonFXPositionController.h
@@ -18,7 +18,7 @@ namespace rmb {
namespace TalonFXPositionControllerHelper {
struct MotorConfig {
int id;
- bool inverted = false;
+ bool inverted = false; /*< false for counterclockwise positive*/
bool brake = false;
double minOutput = -1.0,
maxOutput = 1.0; /*< Applies to both open and closed loop*/
From 1984bee8ffb4dca91d326775788f7298473a92c7 Mon Sep 17 00:00:00 2001
From: theVerySharpFlat
Date: Sun, 28 Jan 2024 04:10:24 -0600
Subject: [PATCH 04/28] add odometry
---
lib/src/rmb/drive/SwerveDrive.h | 2 +-
lib/src/rmb/drive/SwerveDrive.inl | 10 ++--
.../Talon/TalonFXPositionController.cpp | 60 ++++++++++++++++---
.../Talon/TalonFXPositionController.h | 7 +++
.../Talon/TalonFXVelocityController.cpp | 54 ++++++++++++++---
.../Talon/TalonFXVelocityController.h | 6 ++
lib/src/rmb/sensors/AHRS/AHRSGyro.cpp | 2 +-
7 files changed, 119 insertions(+), 22 deletions(-)
diff --git a/lib/src/rmb/drive/SwerveDrive.h b/lib/src/rmb/drive/SwerveDrive.h
index c158094..e775295 100644
--- a/lib/src/rmb/drive/SwerveDrive.h
+++ b/lib/src/rmb/drive/SwerveDrive.h
@@ -294,7 +294,7 @@ template class SwerveDrive : public BaseDrive {
/**
* Mutex to protect position estimations between vision threads.
*/
- mutable std::mutex visionThreadMutex;
+ // mutable std::mutex visionThreadMutex;
units::meters_per_second_t maxModuleSpeed;
diff --git a/lib/src/rmb/drive/SwerveDrive.inl b/lib/src/rmb/drive/SwerveDrive.inl
index bc51643..131c804 100644
--- a/lib/src/rmb/drive/SwerveDrive.inl
+++ b/lib/src/rmb/drive/SwerveDrive.inl
@@ -244,12 +244,12 @@ frc::ChassisSpeeds SwerveDrive::getChassisSpeeds() const {
template
frc::Pose2d SwerveDrive::getPose() const {
- std::lock_guard lock(visionThreadMutex);
+ // std::lock_guard lock(visionThreadMutex);
return poseEstimator.GetEstimatedPosition();
}
template frc::Pose2d SwerveDrive::updatePose() {
- std::lock_guard lock(visionThreadMutex);
+ // std::lock_guard lock(visionThreadMutex);
return poseEstimator.Update(
frc::Rotation2d((units::radian_t)gyro->getZRotation()),
getModulePositions());
@@ -330,21 +330,21 @@ SwerveDrive::getTargetModuleStates() const {
template
void SwerveDrive::resetPose(const frc::Pose2d &pose) {
- std::lock_guard lock(visionThreadMutex);
+ // std::lock_guard lock(visionThreadMutex);
poseEstimator.ResetPosition(gyro->getRotation(), getModulePositions(), pose);
}
template
void SwerveDrive::addVisionMeasurments(
const frc::Pose2d &poseEstimate, units::second_t time) {
- std::lock_guard lock(visionThreadMutex);
+ // std::lock_guard lock(visionThreadMutex);
poseEstimator.AddVisionMeasurement(poseEstimate, time);
}
template
void SwerveDrive::setVisionSTDevs(
wpi::array standardDevs) {
- std::lock_guard lock(visionThreadMutex);
+ // std::lock_guard lock(visionThreadMutex);
poseEstimator.SetVisionMeasurementStdDevs(standardDevs);
}
diff --git a/lib/src/rmb/motorcontrol/Talon/TalonFXPositionController.cpp b/lib/src/rmb/motorcontrol/Talon/TalonFXPositionController.cpp
index dd1c48a..3ff99a1 100644
--- a/lib/src/rmb/motorcontrol/Talon/TalonFXPositionController.cpp
+++ b/lib/src/rmb/motorcontrol/Talon/TalonFXPositionController.cpp
@@ -1,8 +1,12 @@
#include "TalonFXPositionController.h"
+#include "ctre/phoenix6/StatusSignal.hpp"
#include "ctre/phoenix6/configs/Configs.hpp"
#include "ctre/phoenix6/core/CoreCANcoder.hpp"
#include "ctre/phoenix6/core/CoreTalonFX.hpp"
+#include "frc/Watchdog.h"
+#include "frc2/command/CommandScheduler.h"
#include "units/angle.h"
+#include "units/angular_velocity.h"
#include
@@ -124,8 +128,20 @@ void TalonFXPositionController::setPosition(units::radian_t position) {
motorcontroller.SetControl(request);
}
+ctre::phoenix6::StatusSignal &
+TalonFXPositionController::getTargetPositionStatusSignal() const {
+ thread_local auto signal = ctre::phoenix6::StatusSignal(
+ motorcontroller.GetClosedLoopReference());
+
+ return signal;
+}
+
units::radian_t TalonFXPositionController::getTargetPosition() const {
- return units::turn_t(motorcontroller.GetClosedLoopReference().GetValue());
+ auto signal = getTargetPositionStatusSignal();
+
+ signal.Refresh();
+
+ return units::turn_t(signal.GetValue());
}
units::radian_t TalonFXPositionController::getMinPosition() const {
@@ -140,22 +156,52 @@ void TalonFXPositionController::disable() { motorcontroller.Disable(); }
void TalonFXPositionController::stop() { motorcontroller.StopMotor(); }
-units::radians_per_second_t TalonFXPositionController::getVelocity() const {
+ctre::phoenix6::StatusSignal &
+TalonFXPositionController::getVelocityStatusSignal() const {
if (usingCANCoder) {
- return canCoder->GetVelocity().GetValue();
+ thread_local auto signal =
+ ctre::phoenix6::StatusSignal(canCoder->GetVelocity());
+
+ return signal;
} else {
- return motorcontroller.GetVelocity().GetValue();
+ thread_local auto signal =
+ ctre::phoenix6::StatusSignal(motorcontroller.GetVelocity());
+
+ return signal;
}
}
-units::radian_t TalonFXPositionController::getPosition() const {
+units::radians_per_second_t TalonFXPositionController::getVelocity() const {
+ auto signal = getVelocityStatusSignal();
+
+ signal.Refresh();
+
+ return signal.GetValue();
+}
+
+ctre::phoenix6::StatusSignal &
+TalonFXPositionController::getPositionStatusSignal() const {
if (usingCANCoder) {
- return canCoder->GetPosition().GetValue();
+ thread_local auto signal =
+ ctre::phoenix6::StatusSignal(canCoder->GetPosition());
+
+ return signal;
} else {
- return motorcontroller.GetPosition().GetValue();
+ thread_local auto signal =
+ ctre::phoenix6::StatusSignal(motorcontroller.GetPosition());
+
+ return signal;
}
}
+units::radian_t TalonFXPositionController::getPosition() const {
+ auto signal = getPositionStatusSignal();
+
+ signal.Refresh();
+
+ return signal.GetValue();
+}
+
void TalonFXPositionController::setEncoderPosition(units::radian_t position) {
if (canCoder.has_value()) {
canCoder->SetPosition(position);
diff --git a/lib/src/rmb/motorcontrol/Talon/TalonFXPositionController.h b/lib/src/rmb/motorcontrol/Talon/TalonFXPositionController.h
index ee4e072..f045bda 100644
--- a/lib/src/rmb/motorcontrol/Talon/TalonFXPositionController.h
+++ b/lib/src/rmb/motorcontrol/Talon/TalonFXPositionController.h
@@ -180,6 +180,8 @@ class TalonFXPositionController : public AngularPositionController {
*/
virtual double getPower() const override;
+ ctre::phoenix6::StatusSignal &getTargetPositionStatusSignal() const;
+
/**
* Queries the Phoenix API for the current set point of the motor
*/
@@ -207,12 +209,17 @@ class TalonFXPositionController : public AngularPositionController {
*/
void stop() override;
+ ctre::phoenix6::StatusSignal &
+ getVelocityStatusSignal() const;
+
/**
* Get the current velocity of the motor
* @return The velocity of the motor in a units::angular_velocity container
*/
units::radians_per_second_t getVelocity() const override;
+ ctre::phoenix6::StatusSignal &getPositionStatusSignal() const;
+
/**
* Get the current position of the motor
* @return The current position of the motor as measured by the selected
diff --git a/lib/src/rmb/motorcontrol/Talon/TalonFXVelocityController.cpp b/lib/src/rmb/motorcontrol/Talon/TalonFXVelocityController.cpp
index f932e52..ee081c8 100644
--- a/lib/src/rmb/motorcontrol/Talon/TalonFXVelocityController.cpp
+++ b/lib/src/rmb/motorcontrol/Talon/TalonFXVelocityController.cpp
@@ -1,4 +1,5 @@
#include "TalonFXVelocityController.h"
+#include "ctre/phoenix6/StatusSignal.hpp"
#include "ctre/phoenix6/controls/DutyCycleOut.hpp"
#include "units/angular_velocity.h"
@@ -126,20 +127,46 @@ void TalonFXVelocityController::setVelocity(
ctre::phoenix6::controls::VelocityDutyCycle(velocity));
}
+ctre::phoenix6::StatusSignal &
+TalonFXVelocityController::getTargetVelocityStatusSignal() const {
+ thread_local auto signal = ctre::phoenix6::StatusSignal(
+ motorcontroller.GetClosedLoopReference());
+
+ return signal;
+}
+
units::radians_per_second_t
TalonFXVelocityController::getTargetVelocity() const {
- return units::turns_per_second_t(
- motorcontroller.GetClosedLoopReference().GetValue());
+ auto signal = getTargetVelocityStatusSignal();
+
+ signal.Refresh();
+
+ return units::turns_per_second_t(signal.GetValue());
}
-units::radians_per_second_t TalonFXVelocityController::getVelocity() const {
+ctre::phoenix6::StatusSignal &
+TalonFXVelocityController::getVelocityStatusSignal() const {
if (usingCANCoder) {
- return canCoder->GetVelocity().GetValue();
+ thread_local auto signal =
+ ctre::phoenix6::StatusSignal(canCoder->GetVelocity());
+
+ return signal;
} else {
- return motorcontroller.GetVelocity().GetValue();
+ thread_local auto signal =
+ ctre::phoenix6::StatusSignal(motorcontroller.GetVelocity());
+
+ return signal;
}
}
+units::radians_per_second_t TalonFXVelocityController::getVelocity() const {
+ auto signal = getVelocityStatusSignal();
+
+ signal.Refresh();
+
+ return signal.GetValue();
+}
+
void TalonFXVelocityController::setPower(double power) {
motorcontroller.SetControl(ctre::phoenix6::controls::DutyCycleOut(power));
// motorcontroller.Set(power);
@@ -156,14 +183,25 @@ void TalonFXVelocityController::disable() { motorcontroller.Disable(); }
void TalonFXVelocityController::stop() { motorcontroller.StopMotor(); }
-units::radian_t TalonFXVelocityController::getPosition() const {
+ctre::phoenix6::StatusSignal &
+TalonFXVelocityController::getPositionStatusSignal() const {
if (usingCANCoder) {
- return canCoder->GetPosition().GetValue();
+ thread_local auto signal =
+ ctre::phoenix6::StatusSignal(canCoder->GetPosition());
+
+ return signal;
} else {
- return motorcontroller.GetPosition().GetValue();
+ thread_local auto signal =
+ ctre::phoenix6::StatusSignal(motorcontroller.GetPosition());
+
+ return signal;
}
}
+units::radian_t TalonFXVelocityController::getPosition() const {
+ return getPositionStatusSignal().Refresh().GetValue();
+}
+
void TalonFXVelocityController::setEncoderPosition(units::radian_t position) {
if (canCoder.has_value()) {
canCoder->SetPosition(position);
diff --git a/lib/src/rmb/motorcontrol/Talon/TalonFXVelocityController.h b/lib/src/rmb/motorcontrol/Talon/TalonFXVelocityController.h
index 11a8602..6f54081 100644
--- a/lib/src/rmb/motorcontrol/Talon/TalonFXVelocityController.h
+++ b/lib/src/rmb/motorcontrol/Talon/TalonFXVelocityController.h
@@ -58,6 +58,7 @@ class TalonFXVelocityController : public AngularVelocityController {
*/
void setVelocity(units::radians_per_second_t velocity) override;
+ ctre::phoenix6::StatusSignal &getTargetVelocityStatusSignal() const;
/**
* Gets the target angular velocity.
*
@@ -88,6 +89,9 @@ class TalonFXVelocityController : public AngularVelocityController {
//---------------------------------------
// Methods Inherited from AngularEncoder
//---------------------------------------
+ //
+ ctre::phoenix6::StatusSignal &
+ getVelocityStatusSignal() const;
/**
* Gets the angular velocity of the motor.
@@ -96,6 +100,8 @@ class TalonFXVelocityController : public AngularVelocityController {
*/
units::radians_per_second_t getVelocity() const override;
+ ctre::phoenix6::StatusSignal &getPositionStatusSignal() const;
+
/**
* Gets the angular position of an motor.
*
diff --git a/lib/src/rmb/sensors/AHRS/AHRSGyro.cpp b/lib/src/rmb/sensors/AHRS/AHRSGyro.cpp
index 1d5ec0c..c5c4cba 100644
--- a/lib/src/rmb/sensors/AHRS/AHRSGyro.cpp
+++ b/lib/src/rmb/sensors/AHRS/AHRSGyro.cpp
@@ -11,7 +11,7 @@ AHRSGyro::AHRSGyro(frc::SerialPort::Port port)
: gyro(std::make_unique(port)) {}
units::turn_t AHRSGyro::AHRSGyro::getZRotation() const {
- return units::degree_t(-gyro->GetRotation2d().Degrees());
+ return -gyro->GetRotation2d().Degrees();
}
frc::Rotation2d AHRSGyro::getRotation() const { return gyro->GetRotation2d(); }
From 20ffb98399f131a81c55e20f12caa8ee42652f89 Mon Sep 17 00:00:00 2001
From: theVerySharpFlat
Date: Sun, 28 Jan 2024 14:39:18 -0600
Subject: [PATCH 05/28] move odometry to separate thread
---
src/subsystems/drive/DriveSubsystem.cpp | 23 ++++++++++++++++++++++-
src/subsystems/drive/DriveSubsystem.h | 14 ++++++++++++--
2 files changed, 34 insertions(+), 3 deletions(-)
diff --git a/src/subsystems/drive/DriveSubsystem.cpp b/src/subsystems/drive/DriveSubsystem.cpp
index 3ab68a1..8f54ec1 100644
--- a/src/subsystems/drive/DriveSubsystem.cpp
+++ b/src/subsystems/drive/DriveSubsystem.cpp
@@ -5,6 +5,8 @@
#include "subsystems/drive/DriveSubsystem.h"
#include "Constants.h"
+#include "frc/TimedRobot.h"
+#include "frc/geometry/Pose2d.h"
#include "subsystems/drive/DriveConstants.h"
#include "frc2/command/CommandPtr.h"
@@ -12,6 +14,8 @@
#include "rmb/sensors/gyro.h"
#include
+#include
+#include
DriveSubsystem::DriveSubsystem(std::shared_ptr gyro) {
// Implementation of subsystem constructor goes here.
@@ -65,11 +69,28 @@ DriveSubsystem::DriveSubsystem(std::shared_ptr gyro) {
frc::TrapezoidProfile::Constraints(
6.28_rad_per_s, 3.14_rad_per_s / 1_s))),
constants::drive::maxModuleSpeed);
+
+ odometryThread = std::thread(&DriveSubsystem::odometryThreadMain, this);
+}
+
+void DriveSubsystem::odometryThreadMain() {
+ while (true) {
+ frc::Pose2d newPose = drive->updatePose();
+ {
+ std::lock_guard lock(currentPoseContainer.mutex);
+ currentPoseContainer._pose = newPose;
+ }
+ std::this_thread::yield();
+ }
+}
+
+frc::Pose2d DriveSubsystem::getPoseEstimation() {
+ std::lock_guard lock(currentPoseContainer.mutex);
+ return currentPoseContainer._pose;
}
void DriveSubsystem::Periodic() {
// Implementation of subsystem periodic method goes here.
- drive->updatePose();
}
void DriveSubsystem::driveTeleop(const rmb::LogitechGamepad &gamepad) {
diff --git a/src/subsystems/drive/DriveSubsystem.h b/src/subsystems/drive/DriveSubsystem.h
index c2dd7ae..89b0a67 100644
--- a/src/subsystems/drive/DriveSubsystem.h
+++ b/src/subsystems/drive/DriveSubsystem.h
@@ -4,6 +4,7 @@
#pragma once
+#include "frc/geometry/Pose2d.h"
#include "rmb/sensors/gyro.h"
#include
#include
@@ -11,6 +12,7 @@
#include
#include
#include
+#include
class DriveSubsystem : public frc2::SubsystemBase {
public:
@@ -28,6 +30,8 @@ class DriveSubsystem : public frc2::SubsystemBase {
frc2::CommandPtr driveTeleopCommand(const rmb::LogitechGamepad &gamepad);
frc2::CommandPtr driveTeleopCommand(double x, double y, double twist);
+ frc::Pose2d getPoseEstimation();
+
void stop();
/**
@@ -37,8 +41,14 @@ class DriveSubsystem : public frc2::SubsystemBase {
void SimulationPeriodic() override;
private:
- // Components (e.g. motor controllers and sensors) should generally be
- // declared private and exposed only through public methods.
+ void odometryThreadMain();
std::unique_ptr> drive;
+
+ std::thread odometryThread;
+
+ struct {
+ frc::Pose2d _pose;
+ std::mutex mutex;
+ } currentPoseContainer;
};
From 47186575789e8bd2651723d4214b6ae73b49679f Mon Sep 17 00:00:00 2001
From: theVerySharpFlat
Date: Mon, 29 Jan 2024 10:53:29 -0600
Subject: [PATCH 06/28] initial pathplanner auto setup
---
lib/src/rmb/drive/SwerveDrive.h | 2 +
src/Constants.h | 3 +
src/Robot.h | 3 +-
src/RobotContainer.cpp | 21 ++++++
src/RobotContainer.h | 7 ++
src/main/deploy/pathplanner/navgrid.json | 1 +
.../pathplanner/paths/Example Path.path | 67 +++++++++++++++++++
.../deploy/pathplanner/paths/New Path.path | 65 ++++++++++++++++++
src/subsystems/drive/DriveConstants.h | 4 ++
src/subsystems/drive/DriveSubsystem.cpp | 47 ++++++++++++-
src/subsystems/drive/DriveSubsystem.h | 9 ++-
11 files changed, 225 insertions(+), 4 deletions(-)
create mode 100644 src/main/deploy/pathplanner/navgrid.json
create mode 100644 src/main/deploy/pathplanner/paths/Example Path.path
create mode 100644 src/main/deploy/pathplanner/paths/New Path.path
diff --git a/lib/src/rmb/drive/SwerveDrive.h b/lib/src/rmb/drive/SwerveDrive.h
index e775295..de76786 100644
--- a/lib/src/rmb/drive/SwerveDrive.h
+++ b/lib/src/rmb/drive/SwerveDrive.h
@@ -227,6 +227,8 @@ template class SwerveDrive : public BaseDrive {
frc::Pose2d targetPose, pathplanner::PathConstraints constraints,
std::initializer_list driveRequirements);
+ inline units::meter_t getMaxDriveRadius() { return largestModuleDistance; }
+
void updateNTDebugInfo(bool openLoopVelocity = false);
void stop();
diff --git a/src/Constants.h b/src/Constants.h
index 3d2dd25..8d992be 100644
--- a/src/Constants.h
+++ b/src/Constants.h
@@ -4,6 +4,7 @@
#pragma once
+#include "units/time.h"
#include
#include
@@ -23,6 +24,8 @@
namespace constants {
+const units::millisecond_t robotLoopTime = 20_ms;
+
inline constexpr int driverControllerPort = 0;
const frc::SerialPort::Port gyroPort = frc::SerialPort::Port::kMXP;
diff --git a/src/Robot.h b/src/Robot.h
index 7b409e9..ef21135 100644
--- a/src/Robot.h
+++ b/src/Robot.h
@@ -9,11 +9,12 @@
#include
#include
+#include "Constants.h"
#include "RobotContainer.h"
class Robot : public frc::TimedRobot {
public:
- Robot() : frc::TimedRobot(40_ms) {}
+ Robot() : frc::TimedRobot(constants::robotLoopTime) {}
void RobotInit() override;
void RobotPeriodic() override;
void DisabledInit() override;
diff --git a/src/RobotContainer.cpp b/src/RobotContainer.cpp
index ab80270..6631720 100644
--- a/src/RobotContainer.cpp
+++ b/src/RobotContainer.cpp
@@ -6,8 +6,13 @@
#include
+#include
+#include
+
#include "frc2/command/Commands.h"
#include "frc2/command/RunCommand.h"
+#include "pathplanner/lib/path/PathPlannerPath.h"
+#include "pathplanner/lib/auto/NamedCommands.h"
#include "subsystems/drive/DriveSubsystem.h"
RobotContainer::RobotContainer() : driveSubsystem(gyro) {
@@ -30,6 +35,22 @@ void RobotContainer::ConfigureBindings() {
// m_driverController.B().WhileTrue(m_subsystem.ExampleMethodCommand());
}
+void RobotContainer::loadPPPaths() {
+ std::string pathDir =
+ frc::filesystem::GetDeployDirectory() + "/pathplanner/paths/";
+
+ for (const auto &entry : std::filesystem::directory_iterator(pathDir)) {
+ if (entry.is_regular_file() && entry.path().extension() == ".path") {
+ paths[entry.path().stem()] =
+ pathplanner::PathPlannerPath::fromPathFile(entry.path().stem());
+ }
+ }
+
+ // Register named commands here
+ // with
+ // pathplanner::NamedCommands::registerCommand()
+}
+
frc2::CommandPtr RobotContainer::GetAutonomousCommand() {
// An example command will be run in autonomous
// return autos::ExampleAuto(&m_subsystem);
diff --git a/src/RobotContainer.h b/src/RobotContainer.h
index 66419b6..d5997df 100644
--- a/src/RobotContainer.h
+++ b/src/RobotContainer.h
@@ -12,6 +12,8 @@
#include "rmb/sensors/AHRS/AHRSGyro.h"
#include "subsystems/drive/DriveSubsystem.h"
+#include
+
/**
* This class is where the bulk of the robot should be declared. Since
* Command-based is a "declarative" paradigm, very little robot logic should
@@ -28,6 +30,8 @@ class RobotContainer {
void setTeleopDefaults();
void setAutoDefaults();
+ void loadPPPaths();
+
private:
// Replace with CommandPS4Controller or CommandJoystick if needed
// frc2::CommandXboxController m_driverController{
@@ -41,4 +45,7 @@ class RobotContainer {
rmb::LogitechGamepad gamepad{constants::driverControllerPort};
void ConfigureBindings();
+
+ std::unordered_map>
+ paths;
};
diff --git a/src/main/deploy/pathplanner/navgrid.json b/src/main/deploy/pathplanner/navgrid.json
new file mode 100644
index 0000000..bab0da9
--- /dev/null
+++ b/src/main/deploy/pathplanner/navgrid.json
@@ -0,0 +1 @@
+{"field_size":{"x":16.54,"y":8.21},"nodeSizeMeters":0.3,"grid":[[true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true],[true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true],[true,true,true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true,true,true],[true,true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true],[true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true],[true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true],[true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true],[true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true],[true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true],[true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true],[true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true],[true,true,false,false,false,false,false,false,false,false,true,true,true,false,false,false,false,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,false,false,false,false,true,true,true,false,false,false,false,false,false,false,false,false,true,true],[true,true,false,false,false,false,false,false,false,true,true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true,false,false,false,false,false,false,false,false,true,true],[true,true,false,false,false,false,false,false,false,true,true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true,false,false,false,false,false,false,false,true,true,true],[true,true,true,false,false,false,false,false,false,true,true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true,false,false,false,false,false,false,true,true,true,true],[true,true,true,true,false,false,false,false,false,false,true,true,true,false,false,false,false,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,false,false,false,false,true,true,true,false,false,false,false,false,false,true,true,true,true,true],[true,true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true,true],[true,true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true,true],[true,true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true,true],[true,true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true,true],[true,true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true,true],[true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true],[true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true],[true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true],[true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true],[true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true],[true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true],[true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]]}
\ No newline at end of file
diff --git a/src/main/deploy/pathplanner/paths/Example Path.path b/src/main/deploy/pathplanner/paths/Example Path.path
new file mode 100644
index 0000000..8aebdad
--- /dev/null
+++ b/src/main/deploy/pathplanner/paths/Example Path.path
@@ -0,0 +1,67 @@
+{
+ "version": 1.0,
+ "waypoints": [
+ {
+ "anchor": {
+ "x": 3.0,
+ "y": 7.0
+ },
+ "prevControl": null,
+ "nextControl": {
+ "x": 3.9566940893141047,
+ "y": 7.004446772782435
+ },
+ "isLocked": false,
+ "linkedName": null
+ },
+ {
+ "anchor": {
+ "x": 6.0,
+ "y": 7.0
+ },
+ "prevControl": {
+ "x": 5.296976201602062,
+ "y": 7.0
+ },
+ "nextControl": null,
+ "isLocked": false,
+ "linkedName": null
+ }
+ ],
+ "rotationTargets": [],
+ "constraintZones": [],
+ "eventMarkers": [
+ {
+ "name": "New Event Marker",
+ "waypointRelativePos": 0.4,
+ "command": {
+ "type": "sequential",
+ "data": {
+ "commands": [
+ {
+ "type": "wait",
+ "data": {
+ "waitTime": 1.0
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "globalConstraints": {
+ "maxVelocity": 3.0,
+ "maxAcceleration": 3.0,
+ "maxAngularVelocity": 540.0,
+ "maxAngularAcceleration": 720.0
+ },
+ "goalEndState": {
+ "velocity": 0,
+ "rotation": 0,
+ "rotateFast": false
+ },
+ "reversed": false,
+ "folder": null,
+ "previewStartingState": null,
+ "useDefaultConstraints": false
+}
\ No newline at end of file
diff --git a/src/main/deploy/pathplanner/paths/New Path.path b/src/main/deploy/pathplanner/paths/New Path.path
new file mode 100644
index 0000000..8eb50ac
--- /dev/null
+++ b/src/main/deploy/pathplanner/paths/New Path.path
@@ -0,0 +1,65 @@
+{
+ "version": 1.0,
+ "waypoints": [
+ {
+ "anchor": {
+ "x": 7.562929213821391,
+ "y": 3.9206754061656275
+ },
+ "prevControl": null,
+ "nextControl": {
+ "x": 8.562929213821379,
+ "y": 3.4206754061656275
+ },
+ "isLocked": false,
+ "linkedName": null
+ },
+ {
+ "anchor": {
+ "x": 9.429202062107828,
+ "y": 2.055649629817778
+ },
+ "prevControl": {
+ "x": 8.429202062107828,
+ "y": 3.0556496298177787
+ },
+ "nextControl": {
+ "x": 10.429202062107828,
+ "y": 1.0556496298177782
+ },
+ "isLocked": false,
+ "linkedName": null
+ },
+ {
+ "anchor": {
+ "x": 7.0,
+ "y": 1.0
+ },
+ "prevControl": {
+ "x": 6.75,
+ "y": 2.5
+ },
+ "nextControl": null,
+ "isLocked": false,
+ "linkedName": null
+ }
+ ],
+ "rotationTargets": [],
+ "constraintZones": [],
+ "eventMarkers": [],
+ "globalConstraints": {
+ "maxVelocity": 3.0,
+ "maxAcceleration": 3.0,
+ "maxAngularVelocity": 540.0,
+ "maxAngularAcceleration": 720.0
+ },
+ "goalEndState": {
+ "velocity": 0,
+ "rotation": 0,
+ "rotateFast": false
+ },
+ "reversed": false,
+ "folder": null,
+ "previewStartingState": null,
+ "useDefaultConstraints": false
+}
\ No newline at end of file
diff --git a/src/subsystems/drive/DriveConstants.h b/src/subsystems/drive/DriveConstants.h
index 3eb3782..87317c1 100644
--- a/src/subsystems/drive/DriveConstants.h
+++ b/src/subsystems/drive/DriveConstants.h
@@ -4,6 +4,7 @@
#pragma once
+#include "pathplanner/lib/util/PIDConstants.h"
#include
#include
@@ -24,6 +25,9 @@
namespace constants {
namespace drive {
+const pathplanner::PIDConstants pathTranslationalConstants(5.0, 0.0, 0.0, 1.0);
+const pathplanner::PIDConstants pathRotationalConstants(5.0, 0.0, 0.0, 1.0);
+
using rmb::TalonFXPositionControllerHelper::CANCoderConfig;
const rmb::TalonFXVelocityControllerHelper::PIDConfig velocityModulePIDConfig =
diff --git a/src/subsystems/drive/DriveSubsystem.cpp b/src/subsystems/drive/DriveSubsystem.cpp
index 8f54ec1..d9608d0 100644
--- a/src/subsystems/drive/DriveSubsystem.cpp
+++ b/src/subsystems/drive/DriveSubsystem.cpp
@@ -5,8 +5,11 @@
#include "subsystems/drive/DriveSubsystem.h"
#include "Constants.h"
+#include "frc/DriverStation.h"
+#include "frc/RobotBase.h"
#include "frc/TimedRobot.h"
#include "frc/geometry/Pose2d.h"
+#include "pathplanner/lib/auto/AutoBuilder.h"
#include "subsystems/drive/DriveConstants.h"
#include "frc2/command/CommandPtr.h"
@@ -71,24 +74,64 @@ DriveSubsystem::DriveSubsystem(std::shared_ptr gyro) {
constants::drive::maxModuleSpeed);
odometryThread = std::thread(&DriveSubsystem::odometryThreadMain, this);
+
+ pathplanner::AutoBuilder::configureHolonomic(
+ [this]() { return getPoseEstimation(); },
+ [this](frc::Pose2d pose) { setPoseEstimation(pose); },
+ [this]() { return getChassisSpeedsEstimation(); },
+ [this](frc::ChassisSpeeds speeds) { // should be robot relative
+ drive->driveChassisSpeeds(speeds);
+ },
+ pathplanner::HolonomicPathFollowerConfig{
+ constants::drive::pathTranslationalConstants,
+ constants::drive::pathRotationalConstants,
+ constants::drive::maxModuleSpeed, drive->getMaxDriveRadius(),
+ pathplanner::ReplanningConfig(), constants::robotLoopTime},
+ []() {
+ // Plan all autos on the blue side
+ auto alliance = frc::DriverStation::GetAlliance();
+ if (alliance) {
+ return alliance.value() == frc::DriverStation::Alliance::kRed;
+ }
+ return false;
+ },
+ this);
}
void DriveSubsystem::odometryThreadMain() {
while (true) {
frc::Pose2d newPose = drive->updatePose();
+ frc::ChassisSpeeds newChassisSpeeds = drive->getChassisSpeeds();
{
- std::lock_guard lock(currentPoseContainer.mutex);
+ std::lock_guard lock(currentPoseContainer.poseMutex);
currentPoseContainer._pose = newPose;
}
+
+ {
+
+ std::lock_guard lock(currentPoseContainer.chassisSpeedsMutex);
+ currentPoseContainer._chassisSpeeds = newChassisSpeeds;
+ }
std::this_thread::yield();
}
}
+frc::ChassisSpeeds DriveSubsystem::getChassisSpeedsEstimation() {
+ std::lock_guard lock(currentPoseContainer.chassisSpeedsMutex);
+ return currentPoseContainer._chassisSpeeds;
+}
+
frc::Pose2d DriveSubsystem::getPoseEstimation() {
- std::lock_guard lock(currentPoseContainer.mutex);
+ std::lock_guard lock(currentPoseContainer.poseMutex);
return currentPoseContainer._pose;
}
+void DriveSubsystem::setPoseEstimation(frc::Pose2d pose) {
+ std::lock_guard lock(currentPoseContainer.poseMutex);
+ drive->resetPose(pose);
+ currentPoseContainer._pose = pose;
+}
+
void DriveSubsystem::Periodic() {
// Implementation of subsystem periodic method goes here.
}
diff --git a/src/subsystems/drive/DriveSubsystem.h b/src/subsystems/drive/DriveSubsystem.h
index 89b0a67..62b5426 100644
--- a/src/subsystems/drive/DriveSubsystem.h
+++ b/src/subsystems/drive/DriveSubsystem.h
@@ -5,6 +5,7 @@
#pragma once
#include "frc/geometry/Pose2d.h"
+#include "frc/kinematics/ChassisSpeeds.h"
#include "rmb/sensors/gyro.h"
#include
#include
@@ -31,6 +32,9 @@ class DriveSubsystem : public frc2::SubsystemBase {
frc2::CommandPtr driveTeleopCommand(double x, double y, double twist);
frc::Pose2d getPoseEstimation();
+ void setPoseEstimation(frc::Pose2d pose);
+
+ frc::ChassisSpeeds getChassisSpeedsEstimation();
void stop();
@@ -49,6 +53,9 @@ class DriveSubsystem : public frc2::SubsystemBase {
struct {
frc::Pose2d _pose;
- std::mutex mutex;
+ std::mutex poseMutex;
+
+ frc::ChassisSpeeds _chassisSpeeds;
+ std::mutex chassisSpeedsMutex;
} currentPoseContainer;
};
From f2f9acfd241801b30492aefe3ca6df66501a1ea5 Mon Sep 17 00:00:00 2001
From: theVerySharpFlat
Date: Mon, 29 Jan 2024 17:01:07 +0000
Subject: [PATCH 07/28] BOT: Apply Formatting
---
src/RobotContainer.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/RobotContainer.cpp b/src/RobotContainer.cpp
index 6631720..5804cba 100644
--- a/src/RobotContainer.cpp
+++ b/src/RobotContainer.cpp
@@ -11,8 +11,8 @@
#include "frc2/command/Commands.h"
#include "frc2/command/RunCommand.h"
-#include "pathplanner/lib/path/PathPlannerPath.h"
#include "pathplanner/lib/auto/NamedCommands.h"
+#include "pathplanner/lib/path/PathPlannerPath.h"
#include "subsystems/drive/DriveSubsystem.h"
RobotContainer::RobotContainer() : driveSubsystem(gyro) {
From 47cd688d0d8175b75d75ac8a7d52a228abb01099 Mon Sep 17 00:00:00 2001
From: theVerySharpFlat
Date: Thu, 1 Feb 2024 13:49:20 -0600
Subject: [PATCH 08/28] properly enforce postive y axis and counterclockwise
rotation
---
lib/src/rmb/drive/SwerveDrive.inl | 15 +++++++--------
1 file changed, 7 insertions(+), 8 deletions(-)
diff --git a/lib/src/rmb/drive/SwerveDrive.inl b/lib/src/rmb/drive/SwerveDrive.inl
index 131c804..d7efce6 100644
--- a/lib/src/rmb/drive/SwerveDrive.inl
+++ b/lib/src/rmb/drive/SwerveDrive.inl
@@ -153,11 +153,12 @@ void SwerveDrive::driveCartesian(double xSpeed, double ySpeed,
* from the center
*
* And we define our perpendicular functions as
- * perpendicular(x, y) => (y, -x)
+ * perpendicular(x, y) => (-y, x)
+ * to enforce a counterclockwise positive angle
*
* so,
- * output_x = vx * 1 + vy * 0 + w * y
- * output_y = vx * 0 + vy * 1 + w * -x
+ * output_x = vx * 1 + vy * 0 + w * -y
+ * output_y = vx * 0 + vy * 1 + w * x
*/
std::array powers;
@@ -168,16 +169,14 @@ void SwerveDrive::driveCartesian(double xSpeed, double ySpeed,
double output_x =
robotRelativeVXY.x() +
- zRotation * module.getModuleTranslation().Y() / largestModuleDistance;
+ zRotation * -(module.getModuleTranslation().Y() / largestModuleDistance);
double output_y =
robotRelativeVXY.y() +
- zRotation * -module.getModuleTranslation().X() / largestModuleDistance;
+ zRotation * module.getModuleTranslation().X() / largestModuleDistance;
- // Enforce a forward-facing 0_deg that increases in the counterclockwise
- // direction
frc::Rotation2d moduleRotation =
- -1.0 * frc::Rotation2d(output_x, output_y).Radians();
+ frc::Rotation2d(output_x, output_y).Radians();
double modulePower = std::sqrt(output_x * output_x + output_y * output_y);
powers[i] = SwerveModulePower{modulePower, moduleRotation};
From 4c500d929da4f22b8d0a012290c75632c72c117c Mon Sep 17 00:00:00 2001
From: theVerySharpFlat
Date: Thu, 1 Feb 2024 13:49:49 -0600
Subject: [PATCH 09/28] change deploy dir
---
build.gradle | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/build.gradle b/build.gradle
index 3cd3344..6897d99 100644
--- a/build.gradle
+++ b/build.gradle
@@ -30,7 +30,7 @@ deploy {
// Static files artifact
frcStaticFileDeploy(getArtifactTypeClass('FileTreeArtifact')) {
- files = project.fileTree('src/deploy')
+ files = project.fileTree('src/main/deploy')
directory = '/home/lvuser/deploy'
}
}
From 288fc38525681e42063148bcba9274fefd6087a5 Mon Sep 17 00:00:00 2001
From: theVerySharpFlat
Date: Thu, 1 Feb 2024 13:51:49 -0600
Subject: [PATCH 10/28] switch over to autos instead of paths
---
.pathplanner/settings.json | 12 ++
src/RobotContainer.cpp | 27 +++--
src/RobotContainer.h | 12 +-
src/deploy/example.txt | 4 -
.../deploy/pathplanner/autos/New Auto.auto | 31 +++++
.../pathplanner/autos/Ring-amp direct.auto | 31 +++++
src/main/deploy/pathplanner/navgrid.json | 2 +-
.../{Example Path.path => Move to ring.path} | 26 ++--
.../pathplanner/paths/Roundabout amp.path | 113 ++++++++++++++++++
.../paths/{New Path.path => move to amp.path} | 34 ++----
10 files changed, 238 insertions(+), 54 deletions(-)
create mode 100644 .pathplanner/settings.json
delete mode 100644 src/deploy/example.txt
create mode 100644 src/main/deploy/pathplanner/autos/New Auto.auto
create mode 100644 src/main/deploy/pathplanner/autos/Ring-amp direct.auto
rename src/main/deploy/pathplanner/paths/{Example Path.path => Move to ring.path} (70%)
create mode 100644 src/main/deploy/pathplanner/paths/Roundabout amp.path
rename src/main/deploy/pathplanner/paths/{New Path.path => move to amp.path} (56%)
diff --git a/.pathplanner/settings.json b/.pathplanner/settings.json
new file mode 100644
index 0000000..e5e0d93
--- /dev/null
+++ b/.pathplanner/settings.json
@@ -0,0 +1,12 @@
+{
+ "robotWidth": 0.9,
+ "robotLength": 0.9,
+ "holonomicMode": true,
+ "pathFolders": [],
+ "autoFolders": [],
+ "defaultMaxVel": 10.0,
+ "defaultMaxAccel": 3.0,
+ "defaultMaxAngVel": 540.0,
+ "defaultMaxAngAccel": 720.0,
+ "maxModuleSpeed": 10.0
+}
\ No newline at end of file
diff --git a/src/RobotContainer.cpp b/src/RobotContainer.cpp
index 5804cba..55c6d7f 100644
--- a/src/RobotContainer.cpp
+++ b/src/RobotContainer.cpp
@@ -9,9 +9,11 @@
#include
#include
+#include "frc/smartdashboard/SmartDashboard.h"
#include "frc2/command/Commands.h"
#include "frc2/command/RunCommand.h"
#include "pathplanner/lib/auto/NamedCommands.h"
+#include "pathplanner/lib/commands/PathPlannerAuto.h"
#include "pathplanner/lib/path/PathPlannerPath.h"
#include "subsystems/drive/DriveSubsystem.h"
@@ -35,26 +37,37 @@ void RobotContainer::ConfigureBindings() {
// m_driverController.B().WhileTrue(m_subsystem.ExampleMethodCommand());
}
-void RobotContainer::loadPPPaths() {
+void RobotContainer::loadPPAutos() {
std::string pathDir =
- frc::filesystem::GetDeployDirectory() + "/pathplanner/paths/";
+ frc::filesystem::GetDeployDirectory() + "/pathplanner/autos/";
for (const auto &entry : std::filesystem::directory_iterator(pathDir)) {
- if (entry.is_regular_file() && entry.path().extension() == ".path") {
- paths[entry.path().stem()] =
- pathplanner::PathPlannerPath::fromPathFile(entry.path().stem());
+ if (entry.is_regular_file() &&
+ entry.path().extension().string() == ".auto") {
+ autoCommands[entry.path().stem().string()] =
+ pathplanner::PathPlannerAuto(entry.path().stem().string()).ToPtr();
}
}
+ for (const auto &kv : autoCommands) {
+ autonomousChooser.AddOption(kv.first, kv.first);
+ }
+
// Register named commands here
// with
// pathplanner::NamedCommands::registerCommand()
}
-frc2::CommandPtr RobotContainer::GetAutonomousCommand() {
+frc2::CommandPtr &RobotContainer::GetAutonomousCommand() {
// An example command will be run in autonomous
// return autos::ExampleAuto(&m_subsystem);
- return frc2::cmd::None();
+ //
+ static auto noCommand = frc2::cmd::None();
+
+ if (!autonomousChooser.GetSelected().empty()) {
+ return autoCommands[autonomousChooser.GetSelected()];
+ }
+ return noCommand;
}
void RobotContainer::setTeleopDefaults() {
diff --git a/src/RobotContainer.h b/src/RobotContainer.h
index d5997df..e6dd1ee 100644
--- a/src/RobotContainer.h
+++ b/src/RobotContainer.h
@@ -7,6 +7,8 @@
#include
#include
+#include
+
#include "Constants.h"
#include "rmb/controller/LogitechGamepad.h"
#include "rmb/sensors/AHRS/AHRSGyro.h"
@@ -25,12 +27,12 @@ class RobotContainer {
public:
RobotContainer();
- frc2::CommandPtr GetAutonomousCommand();
+ frc2::CommandPtr& GetAutonomousCommand();
void setTeleopDefaults();
void setAutoDefaults();
- void loadPPPaths();
+ void loadPPAutos();
private:
// Replace with CommandPS4Controller or CommandJoystick if needed
@@ -46,6 +48,8 @@ class RobotContainer {
void ConfigureBindings();
- std::unordered_map>
- paths;
+ std::unordered_map
+ autoCommands;
+
+ frc::SendableChooser autonomousChooser;
};
diff --git a/src/deploy/example.txt b/src/deploy/example.txt
deleted file mode 100644
index 6839539..0000000
--- a/src/deploy/example.txt
+++ /dev/null
@@ -1,4 +0,0 @@
-Files placed in this directory will be deployed to the RoboRIO into the
- 'deploy' directory in the home folder. Use the 'frc::filesystem::GetDeployDirectory'
- function from the 'frc/Filesystem.h' header to get a proper path relative to the deploy
- directory.
\ No newline at end of file
diff --git a/src/main/deploy/pathplanner/autos/New Auto.auto b/src/main/deploy/pathplanner/autos/New Auto.auto
new file mode 100644
index 0000000..9036351
--- /dev/null
+++ b/src/main/deploy/pathplanner/autos/New Auto.auto
@@ -0,0 +1,31 @@
+{
+ "version": 1.0,
+ "startingPose": null,
+ "command": {
+ "type": "sequential",
+ "data": {
+ "commands": [
+ {
+ "type": "path",
+ "data": {
+ "pathName": "Move to ring"
+ }
+ },
+ {
+ "type": "named",
+ "data": {
+ "name": "Pick Up Ring"
+ }
+ },
+ {
+ "type": "path",
+ "data": {
+ "pathName": "Roundabout amp"
+ }
+ }
+ ]
+ }
+ },
+ "folder": null,
+ "choreoAuto": false
+}
\ No newline at end of file
diff --git a/src/main/deploy/pathplanner/autos/Ring-amp direct.auto b/src/main/deploy/pathplanner/autos/Ring-amp direct.auto
new file mode 100644
index 0000000..b4727e0
--- /dev/null
+++ b/src/main/deploy/pathplanner/autos/Ring-amp direct.auto
@@ -0,0 +1,31 @@
+{
+ "version": 1.0,
+ "startingPose": {
+ "position": {
+ "x": 2,
+ "y": 2
+ },
+ "rotation": 0
+ },
+ "command": {
+ "type": "sequential",
+ "data": {
+ "commands": [
+ {
+ "type": "path",
+ "data": {
+ "pathName": "Move to ring"
+ }
+ },
+ {
+ "type": "path",
+ "data": {
+ "pathName": "move to amp"
+ }
+ }
+ ]
+ }
+ },
+ "folder": null,
+ "choreoAuto": false
+}
\ No newline at end of file
diff --git a/src/main/deploy/pathplanner/navgrid.json b/src/main/deploy/pathplanner/navgrid.json
index bab0da9..d7877eb 100644
--- a/src/main/deploy/pathplanner/navgrid.json
+++ b/src/main/deploy/pathplanner/navgrid.json
@@ -1 +1 @@
-{"field_size":{"x":16.54,"y":8.21},"nodeSizeMeters":0.3,"grid":[[true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true],[true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true],[true,true,true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true,true,true],[true,true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true],[true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true],[true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true],[true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true],[true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true],[true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true],[true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true],[true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true],[true,true,false,false,false,false,false,false,false,false,true,true,true,false,false,false,false,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,false,false,false,false,true,true,true,false,false,false,false,false,false,false,false,false,true,true],[true,true,false,false,false,false,false,false,false,true,true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true,false,false,false,false,false,false,false,false,true,true],[true,true,false,false,false,false,false,false,false,true,true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true,false,false,false,false,false,false,false,true,true,true],[true,true,true,false,false,false,false,false,false,true,true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true,false,false,false,false,false,false,true,true,true,true],[true,true,true,true,false,false,false,false,false,false,true,true,true,false,false,false,false,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,false,false,false,false,true,true,true,false,false,false,false,false,false,true,true,true,true,true],[true,true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true,true],[true,true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true,true],[true,true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true,true],[true,true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true,true],[true,true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true,true],[true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true],[true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true],[true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true],[true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true],[true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true],[true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true],[true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]]}
\ No newline at end of file
+{"field_size":{"x":16.54,"y":8.21},"nodeSizeMeters":0.3,"grid":[[true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true],[true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true],[true,true,true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true,true,true],[true,true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true],[true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true],[true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true],[true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true],[true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true],[true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true],[true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true],[true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true],[true,true,false,false,false,false,false,false,false,false,true,true,true,false,false,false,false,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,false,false,false,false,true,true,true,false,false,false,false,false,false,false,false,false,true,true],[true,true,false,false,false,false,false,false,false,true,true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true,false,false,false,false,false,false,false,false,true,true],[true,true,false,false,false,false,false,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true,false,false,false,false,false,false,false,true,true,true],[true,true,true,false,false,false,false,false,false,true,true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true,false,false,false,false,false,false,true,true,true,true],[true,true,true,true,false,false,false,false,false,false,true,true,true,false,false,false,false,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,false,false,false,false,true,true,true,false,false,false,false,false,false,true,true,true,true,true],[true,true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true,true],[true,true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true,true],[true,true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true,true],[true,true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true,true],[true,true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true,true],[true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true,true],[true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true],[true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true],[true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true],[true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true],[true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true],[true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]]}
\ No newline at end of file
diff --git a/src/main/deploy/pathplanner/paths/Example Path.path b/src/main/deploy/pathplanner/paths/Move to ring.path
similarity index 70%
rename from src/main/deploy/pathplanner/paths/Example Path.path
rename to src/main/deploy/pathplanner/paths/Move to ring.path
index 8aebdad..0073606 100644
--- a/src/main/deploy/pathplanner/paths/Example Path.path
+++ b/src/main/deploy/pathplanner/paths/Move to ring.path
@@ -3,25 +3,25 @@
"waypoints": [
{
"anchor": {
- "x": 3.0,
- "y": 7.0
+ "x": 1.2073755397510797,
+ "y": 2.1677079511566437
},
"prevControl": null,
"nextControl": {
- "x": 3.9566940893141047,
- "y": 7.004446772782435
+ "x": 2.0553352139506273,
+ "y": 2.219170453155725
},
"isLocked": false,
"linkedName": null
},
{
"anchor": {
- "x": 6.0,
- "y": 7.0
+ "x": 2.891991575649818,
+ "y": 3.04451829274029
},
"prevControl": {
- "x": 5.296976201602062,
- "y": 7.0
+ "x": 2.9148901918174204,
+ "y": 2.6256683976330923
},
"nextControl": null,
"isLocked": false,
@@ -33,7 +33,7 @@
"eventMarkers": [
{
"name": "New Event Marker",
- "waypointRelativePos": 0.4,
+ "waypointRelativePos": 0.2,
"command": {
"type": "sequential",
"data": {
@@ -50,18 +50,18 @@
}
],
"globalConstraints": {
- "maxVelocity": 3.0,
+ "maxVelocity": 10.0,
"maxAcceleration": 3.0,
"maxAngularVelocity": 540.0,
"maxAngularAcceleration": 720.0
},
"goalEndState": {
"velocity": 0,
- "rotation": 0,
- "rotateFast": false
+ "rotation": 90.31903243749512,
+ "rotateFast": true
},
"reversed": false,
"folder": null,
"previewStartingState": null,
- "useDefaultConstraints": false
+ "useDefaultConstraints": true
}
\ No newline at end of file
diff --git a/src/main/deploy/pathplanner/paths/Roundabout amp.path b/src/main/deploy/pathplanner/paths/Roundabout amp.path
new file mode 100644
index 0000000..bdd5f98
--- /dev/null
+++ b/src/main/deploy/pathplanner/paths/Roundabout amp.path
@@ -0,0 +1,113 @@
+{
+ "version": 1.0,
+ "waypoints": [
+ {
+ "anchor": {
+ "x": 2.863232737156263,
+ "y": 3.382284132989319
+ },
+ "prevControl": null,
+ "nextControl": {
+ "x": 2.8739922488068657,
+ "y": 2.1873981700266034
+ },
+ "isLocked": false,
+ "linkedName": null
+ },
+ {
+ "anchor": {
+ "x": 4.861601055438952,
+ "y": 1.7888742973209637
+ },
+ "prevControl": {
+ "x": 4.280587426306431,
+ "y": 1.8163532461933347
+ },
+ "nextControl": {
+ "x": 5.372383264036966,
+ "y": 1.764716932517082
+ },
+ "isLocked": false,
+ "linkedName": null
+ },
+ {
+ "anchor": {
+ "x": 6.776952357358661,
+ "y": 2.9417770677646624
+ },
+ "prevControl": {
+ "x": 6.671519691723594,
+ "y": 1.6887159021028564
+ },
+ "nextControl": {
+ "x": 6.82290320400338,
+ "y": 3.4879002366417096
+ },
+ "isLocked": false,
+ "linkedName": null
+ },
+ {
+ "anchor": {
+ "x": 6.776952357358661,
+ "y": 5.194417962849084
+ },
+ "prevControl": {
+ "x": 6.903956788999103,
+ "y": 4.872792952822747
+ },
+ "nextControl": {
+ "x": 6.595238985705875,
+ "y": 5.654587456345218
+ },
+ "isLocked": false,
+ "linkedName": null
+ },
+ {
+ "anchor": {
+ "x": 4.861601055438952,
+ "y": 6.491888485421708
+ },
+ "prevControl": {
+ "x": 6.321202650628985,
+ "y": 5.752224802146974
+ },
+ "nextControl": {
+ "x": 4.042439479226521,
+ "y": 6.907004549048329
+ },
+ "isLocked": false,
+ "linkedName": null
+ },
+ {
+ "anchor": {
+ "x": 1.9298451014665183,
+ "y": 7.093049827547024
+ },
+ "prevControl": {
+ "x": 2.435542149044824,
+ "y": 7.053229085898961
+ },
+ "nextControl": null,
+ "isLocked": false,
+ "linkedName": null
+ }
+ ],
+ "rotationTargets": [],
+ "constraintZones": [],
+ "eventMarkers": [],
+ "globalConstraints": {
+ "maxVelocity": 10.0,
+ "maxAcceleration": 3.0,
+ "maxAngularVelocity": 540.0,
+ "maxAngularAcceleration": 720.0
+ },
+ "goalEndState": {
+ "velocity": 0,
+ "rotation": 89.9506070988623,
+ "rotateFast": true
+ },
+ "reversed": false,
+ "folder": null,
+ "previewStartingState": null,
+ "useDefaultConstraints": true
+}
\ No newline at end of file
diff --git a/src/main/deploy/pathplanner/paths/New Path.path b/src/main/deploy/pathplanner/paths/move to amp.path
similarity index 56%
rename from src/main/deploy/pathplanner/paths/New Path.path
rename to src/main/deploy/pathplanner/paths/move to amp.path
index 8eb50ac..d2469de 100644
--- a/src/main/deploy/pathplanner/paths/New Path.path
+++ b/src/main/deploy/pathplanner/paths/move to amp.path
@@ -3,41 +3,25 @@
"waypoints": [
{
"anchor": {
- "x": 7.562929213821391,
- "y": 3.9206754061656275
+ "x": 1.9518774870883078,
+ "y": 4.022460230105646
},
"prevControl": null,
"nextControl": {
- "x": 8.562929213821379,
- "y": 3.4206754061656275
+ "x": 1.9704198103134507,
+ "y": 4.708945272886728
},
"isLocked": false,
"linkedName": null
},
{
"anchor": {
- "x": 9.429202062107828,
- "y": 2.055649629817778
+ "x": 1.8418382346004207,
+ "y": 7.13895238901916
},
"prevControl": {
- "x": 8.429202062107828,
- "y": 3.0556496298177787
- },
- "nextControl": {
- "x": 10.429202062107828,
- "y": 1.0556496298177782
- },
- "isLocked": false,
- "linkedName": null
- },
- {
- "anchor": {
- "x": 7.0,
- "y": 1.0
- },
- "prevControl": {
- "x": 6.75,
- "y": 2.5
+ "x": 1.8134106633084803,
+ "y": 6.280026045778995
},
"nextControl": null,
"isLocked": false,
@@ -55,7 +39,7 @@
},
"goalEndState": {
"velocity": 0,
- "rotation": 0,
+ "rotation": 90.0,
"rotateFast": false
},
"reversed": false,
From 784570c959678340bcd6a8a9b05ec82d7be1e467 Mon Sep 17 00:00:00 2001
From: theVerySharpFlat
Date: Thu, 1 Feb 2024 19:57:51 +0000
Subject: [PATCH 11/28] BOT: Apply Formatting
---
lib/src/rmb/drive/SwerveDrive.inl | 4 ++--
src/RobotContainer.h | 5 ++---
2 files changed, 4 insertions(+), 5 deletions(-)
diff --git a/lib/src/rmb/drive/SwerveDrive.inl b/lib/src/rmb/drive/SwerveDrive.inl
index d7efce6..c734a41 100644
--- a/lib/src/rmb/drive/SwerveDrive.inl
+++ b/lib/src/rmb/drive/SwerveDrive.inl
@@ -168,8 +168,8 @@ void SwerveDrive::driveCartesian(double xSpeed, double ySpeed,
SwerveModule &module = modules[i];
double output_x =
- robotRelativeVXY.x() +
- zRotation * -(module.getModuleTranslation().Y() / largestModuleDistance);
+ robotRelativeVXY.x() + zRotation * -(module.getModuleTranslation().Y() /
+ largestModuleDistance);
double output_y =
robotRelativeVXY.y() +
diff --git a/src/RobotContainer.h b/src/RobotContainer.h
index e6dd1ee..09ebc55 100644
--- a/src/RobotContainer.h
+++ b/src/RobotContainer.h
@@ -27,7 +27,7 @@ class RobotContainer {
public:
RobotContainer();
- frc2::CommandPtr& GetAutonomousCommand();
+ frc2::CommandPtr &GetAutonomousCommand();
void setTeleopDefaults();
void setAutoDefaults();
@@ -48,8 +48,7 @@ class RobotContainer {
void ConfigureBindings();
- std::unordered_map
- autoCommands;
+ std::unordered_map autoCommands;
frc::SendableChooser autonomousChooser;
};
From c09ef87f17a0e3be6ab56a2b02615e268f52be26 Mon Sep 17 00:00:00 2001
From: theVerySharpFlat
Date: Thu, 1 Feb 2024 14:12:38 -0600
Subject: [PATCH 12/28] fix autonomousCommand type issue
---
src/Robot.cpp | 7 ++++---
src/Robot.h | 2 +-
2 files changed, 5 insertions(+), 4 deletions(-)
diff --git a/src/Robot.cpp b/src/Robot.cpp
index edaf0e2..884e60f 100644
--- a/src/Robot.cpp
+++ b/src/Robot.cpp
@@ -5,6 +5,7 @@
#include "Robot.h"
#include
+#include
void Robot::RobotInit() {}
@@ -32,10 +33,10 @@ void Robot::DisabledPeriodic() {}
* RobotContainer} class.
*/
void Robot::AutonomousInit() {
- m_autonomousCommand = container.GetAutonomousCommand();
+ m_autonomousCommand = &container.GetAutonomousCommand();
if (m_autonomousCommand) {
- m_autonomousCommand->Schedule();
+ m_autonomousCommand.value()->Schedule();
}
// TODO: Check to see if we need to remove this
@@ -50,7 +51,7 @@ void Robot::TeleopInit() {
// continue until interrupted by another command, remove
// this line or comment it out.
if (m_autonomousCommand) {
- m_autonomousCommand->Cancel();
+ m_autonomousCommand.value()->Cancel();
}
// TODO: Check to see if we need to remove this
diff --git a/src/Robot.h b/src/Robot.h
index ef21135..9c85aaf 100644
--- a/src/Robot.h
+++ b/src/Robot.h
@@ -30,7 +30,7 @@ class Robot : public frc::TimedRobot {
private:
// Have it empty by default so that if testing teleop it
// doesn't have undefined behavior and potentially crash.
- std::optional m_autonomousCommand;
+ std::optional m_autonomousCommand = std::nullopt;
RobotContainer container;
};
From b184ce9dd0b4d3d27bdd8569499c07d29a25694d Mon Sep 17 00:00:00 2001
From: theVerySharpFlat
Date: Thu, 1 Feb 2024 20:18:26 +0000
Subject: [PATCH 13/28] BOT: Apply Formatting
---
src/Robot.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/Robot.h b/src/Robot.h
index 9c85aaf..850b55d 100644
--- a/src/Robot.h
+++ b/src/Robot.h
@@ -30,7 +30,7 @@ class Robot : public frc::TimedRobot {
private:
// Have it empty by default so that if testing teleop it
// doesn't have undefined behavior and potentially crash.
- std::optional m_autonomousCommand = std::nullopt;
+ std::optional m_autonomousCommand = std::nullopt;
RobotContainer container;
};
From 96fefe900fb0aa6427cd331416cd44d9df871d4b Mon Sep 17 00:00:00 2001
From: theVerySharpFlat
Date: Thu, 1 Feb 2024 23:24:58 -0600
Subject: [PATCH 14/28] avoid frc2::CommandPtr default constructor
---
src/Robot.cpp | 11 +----------
src/RobotContainer.cpp | 20 +++++++++++---------
src/RobotContainer.h | 2 +-
3 files changed, 13 insertions(+), 20 deletions(-)
diff --git a/src/Robot.cpp b/src/Robot.cpp
index 884e60f..6af72da 100644
--- a/src/Robot.cpp
+++ b/src/Robot.cpp
@@ -32,16 +32,7 @@ void Robot::DisabledPeriodic() {}
* This autonomous runs the autonomous command selected by your {@link
* RobotContainer} class.
*/
-void Robot::AutonomousInit() {
- m_autonomousCommand = &container.GetAutonomousCommand();
-
- if (m_autonomousCommand) {
- m_autonomousCommand.value()->Schedule();
- }
-
- // TODO: Check to see if we need to remove this
- frc2::CommandScheduler::GetInstance().CancelAll();
-}
+void Robot::AutonomousInit() { container.RunAutonomousCommand(); }
void Robot::AutonomousPeriodic() {}
diff --git a/src/RobotContainer.cpp b/src/RobotContainer.cpp
index 55c6d7f..db09874 100644
--- a/src/RobotContainer.cpp
+++ b/src/RobotContainer.cpp
@@ -4,6 +4,7 @@
#include "RobotContainer.h"
+#include
#include
#include
@@ -44,8 +45,9 @@ void RobotContainer::loadPPAutos() {
for (const auto &entry : std::filesystem::directory_iterator(pathDir)) {
if (entry.is_regular_file() &&
entry.path().extension().string() == ".auto") {
- autoCommands[entry.path().stem().string()] =
- pathplanner::PathPlannerAuto(entry.path().stem().string()).ToPtr();
+ autoCommands.insert(
+ {entry.path().stem().string(),
+ pathplanner::PathPlannerAuto(entry.path().stem().string()).ToPtr()});
}
}
@@ -58,16 +60,16 @@ void RobotContainer::loadPPAutos() {
// pathplanner::NamedCommands::registerCommand()
}
-frc2::CommandPtr &RobotContainer::GetAutonomousCommand() {
- // An example command will be run in autonomous
- // return autos::ExampleAuto(&m_subsystem);
- //
- static auto noCommand = frc2::cmd::None();
+void RobotContainer::RunAutonomousCommand() {
if (!autonomousChooser.GetSelected().empty()) {
- return autoCommands[autonomousChooser.GetSelected()];
+ try {
+ autoCommands.at(autonomousChooser.GetSelected()).Schedule();
+ } catch (const std::exception &_e) {
+ std::cout << "Error: no such command \""
+ << autonomousChooser.GetSelected() << "\"" << std::endl;
+ }
}
- return noCommand;
}
void RobotContainer::setTeleopDefaults() {
diff --git a/src/RobotContainer.h b/src/RobotContainer.h
index 09ebc55..992d959 100644
--- a/src/RobotContainer.h
+++ b/src/RobotContainer.h
@@ -27,7 +27,7 @@ class RobotContainer {
public:
RobotContainer();
- frc2::CommandPtr &GetAutonomousCommand();
+ void RunAutonomousCommand();
void setTeleopDefaults();
void setAutoDefaults();
From ff3acd265fdb9ccb808d9383d9ed8956d98b0ff3 Mon Sep 17 00:00:00 2001
From: theVerySharpFlat
Date: Sun, 4 Feb 2024 01:03:50 -0600
Subject: [PATCH 15/28] delete uneeded directory
---
lib/librmb-main/.editorconfig | 17 -
.../.github/workflows/doxygen-publish.yml | 23 -
lib/librmb-main/.github/workflows/merge.yml | 88 -
lib/librmb-main/.github/workflows/pr.yml | 40 -
lib/librmb-main/.gitignore | 197 --
lib/librmb-main/.gitpod.yml | 8 -
.../.wpilib/wpilib_preferences.json | 6 -
lib/librmb-main/LICENSE | 21 -
lib/librmb-main/README.md | 24 -
lib/librmb-main/build.gradle | 100 -
lib/librmb-main/build.old.gradle | 90 -
lib/librmb-main/config.gradle | 179 --
lib/librmb-main/docs/Doxyfile | 2646 -----------------
.../docs/additional/pancakerecipe.md | 39 -
lib/librmb-main/docs/building.md | 37 -
lib/librmb-main/docs/doxygen-awesome.css | 1524 ----------
lib/librmb-main/docs/doxygen.h | 33 -
lib/librmb-main/docs/errors.out | 379 ---
lib/librmb-main/docs/favicon.png | Bin 4106 -> 0 bytes
lib/librmb-main/docs/mainpage.md | 9 -
.../gradle/wrapper/gradle-wrapper.jar | Bin 61574 -> 0 bytes
.../gradle/wrapper/gradle-wrapper.properties | 6 -
lib/librmb-main/gradlew | 244 --
lib/librmb-main/gradlew.bat | 92 -
lib/librmb-main/publish.gradle | 288 --
.../scripts/find-not-documented.sh | 3 -
lib/librmb-main/scripts/rioCDGen.py | 153 -
lib/librmb-main/settings.gradle | 55 -
.../src/rmb/controller/LogitechGamepad.h | 233 --
.../src/rmb/controller/LogitechJoystick.h | 90 -
lib/librmb-main/src/rmb/drive/BaseDrive.cpp | 178 --
lib/librmb-main/src/rmb/drive/BaseDrive.h | 293 --
.../src/rmb/drive/DifferentialDrive.cpp | 187 --
.../src/rmb/drive/DifferentialDrive.h | 288 --
lib/librmb-main/src/rmb/drive/SwerveDrive.cpp | 5 -
lib/librmb-main/src/rmb/drive/SwerveDrive.h | 305 --
lib/librmb-main/src/rmb/drive/SwerveDrive.inc | 243 --
lib/librmb-main/src/rmb/drive/SwerveDrive.inl | 421 ---
.../src/rmb/drive/SwerveModule.cpp | 127 -
lib/librmb-main/src/rmb/drive/SwerveModule.h | 161 -
.../motorcontrol/AngularPositionController.h | 137 -
.../motorcontrol/AngularVelocityController.h | 133 -
.../src/rmb/motorcontrol/Conversions.cpp | 248 --
.../motorcontrol/LinearPositionController.h | 144 -
.../motorcontrol/LinearVelocityController.h | 129 -
.../motorcontrol/ServoPositionController.h | 90 -
.../Talon/TalonFXPositionController.cpp | 181 --
.../Talon/TalonFXPositionController.h | 255 --
.../Talon/TalonFXVelocityController.cpp | 180 --
.../Talon/TalonFXVelocityController.h | 143 -
.../AngularFeedforwardController.h | 103 -
.../motorcontrol/feedforward/ArmFeedforward.h | 178 --
.../feedforward/ElevatorFeedforward.h | 171 --
.../motorcontrol/feedforward/Feedforward.h | 147 -
.../feedforward/LinearFeedforwardController.h | 103 -
.../feedforward/SimpleFeedforward.h | 172 --
.../src/rmb/motorcontrol/math/misc.h | 45 -
.../sparkmax/SparkMaxPositionController.cpp | 241 --
.../sparkmax/SparkMaxPositionController.h | 198 --
.../sparkmax/SparkMaxVelocityController.cpp | 232 --
.../sparkmax/SparkMaxVelocityController.h | 175 --
.../src/rmb/sensors/AHRS/AHRSGyro.cpp | 44 -
.../src/rmb/sensors/AHRS/AHRSGyro.h | 32 -
lib/librmb-main/src/rmb/sensors/gyro.h | 27 -
lib/librmb-main/testbench/.gitignore | 172 --
.../testbench/.pathplanner/settings.json | 14 -
.../testbench/.wpilib/wpilib_preferences.json | 6 -
lib/librmb-main/testbench/WPILib-License.md | 24 -
lib/librmb-main/testbench/build.gradle | 100 -
.../gradle/wrapper/gradle-wrapper.jar | Bin 60756 -> 0 bytes
.../gradle/wrapper/gradle-wrapper.properties | 5 -
lib/librmb-main/testbench/gradlew | 240 --
lib/librmb-main/testbench/gradlew.bat | 91 -
lib/librmb-main/testbench/rioCDGen.py | 149 -
lib/librmb-main/testbench/settings.gradle | 27 -
lib/librmb-main/testbench/src/Constants.h | 159 -
lib/librmb-main/testbench/src/Robot.cpp | 135 -
lib/librmb-main/testbench/src/Robot.h | 59 -
.../testbench/src/RobotContainer.cpp | 17 -
.../testbench/src/RobotContainer.h | 17 -
.../testbench/src/deploy/example.txt | 4 -
.../src/main/deploy/pathplanner/navgrid.json | 1 -
.../deploy/pathplanner/paths/bruhPath.path | 121 -
.../testbench/vendordeps/NavX.json | 40 -
.../testbench/vendordeps/PathplannerLib.json | 38 -
.../vendordeps/Phoenix6-frc2024-latest.json | 339 ---
.../testbench/vendordeps/REVLib-2024.json | 74 -
.../vendordeps/WPILibNewCommands.json | 38 -
lib/librmb-main/vendordeps/NavX.json | 40 -
.../vendordeps/PathplannerLib.json | 38 -
.../vendordeps/Phoenix6-frc2024-latest.json | 339 ---
lib/librmb-main/vendordeps/REVLib-2024.json | 74 -
.../vendordeps/WPILibNewCommands.json | 38 -
93 files changed, 14739 deletions(-)
delete mode 100644 lib/librmb-main/.editorconfig
delete mode 100644 lib/librmb-main/.github/workflows/doxygen-publish.yml
delete mode 100644 lib/librmb-main/.github/workflows/merge.yml
delete mode 100644 lib/librmb-main/.github/workflows/pr.yml
delete mode 100644 lib/librmb-main/.gitignore
delete mode 100644 lib/librmb-main/.gitpod.yml
delete mode 100644 lib/librmb-main/.wpilib/wpilib_preferences.json
delete mode 100644 lib/librmb-main/LICENSE
delete mode 100644 lib/librmb-main/README.md
delete mode 100644 lib/librmb-main/build.gradle
delete mode 100644 lib/librmb-main/build.old.gradle
delete mode 100644 lib/librmb-main/config.gradle
delete mode 100644 lib/librmb-main/docs/Doxyfile
delete mode 100644 lib/librmb-main/docs/additional/pancakerecipe.md
delete mode 100644 lib/librmb-main/docs/building.md
delete mode 100644 lib/librmb-main/docs/doxygen-awesome.css
delete mode 100644 lib/librmb-main/docs/doxygen.h
delete mode 100644 lib/librmb-main/docs/errors.out
delete mode 100644 lib/librmb-main/docs/favicon.png
delete mode 100644 lib/librmb-main/docs/mainpage.md
delete mode 100644 lib/librmb-main/gradle/wrapper/gradle-wrapper.jar
delete mode 100644 lib/librmb-main/gradle/wrapper/gradle-wrapper.properties
delete mode 100755 lib/librmb-main/gradlew
delete mode 100644 lib/librmb-main/gradlew.bat
delete mode 100644 lib/librmb-main/publish.gradle
delete mode 100755 lib/librmb-main/scripts/find-not-documented.sh
delete mode 100755 lib/librmb-main/scripts/rioCDGen.py
delete mode 100644 lib/librmb-main/settings.gradle
delete mode 100644 lib/librmb-main/src/rmb/controller/LogitechGamepad.h
delete mode 100644 lib/librmb-main/src/rmb/controller/LogitechJoystick.h
delete mode 100644 lib/librmb-main/src/rmb/drive/BaseDrive.cpp
delete mode 100644 lib/librmb-main/src/rmb/drive/BaseDrive.h
delete mode 100644 lib/librmb-main/src/rmb/drive/DifferentialDrive.cpp
delete mode 100644 lib/librmb-main/src/rmb/drive/DifferentialDrive.h
delete mode 100644 lib/librmb-main/src/rmb/drive/SwerveDrive.cpp
delete mode 100644 lib/librmb-main/src/rmb/drive/SwerveDrive.h
delete mode 100644 lib/librmb-main/src/rmb/drive/SwerveDrive.inc
delete mode 100644 lib/librmb-main/src/rmb/drive/SwerveDrive.inl
delete mode 100644 lib/librmb-main/src/rmb/drive/SwerveModule.cpp
delete mode 100644 lib/librmb-main/src/rmb/drive/SwerveModule.h
delete mode 100644 lib/librmb-main/src/rmb/motorcontrol/AngularPositionController.h
delete mode 100644 lib/librmb-main/src/rmb/motorcontrol/AngularVelocityController.h
delete mode 100644 lib/librmb-main/src/rmb/motorcontrol/Conversions.cpp
delete mode 100644 lib/librmb-main/src/rmb/motorcontrol/LinearPositionController.h
delete mode 100644 lib/librmb-main/src/rmb/motorcontrol/LinearVelocityController.h
delete mode 100644 lib/librmb-main/src/rmb/motorcontrol/ServoPositionController.h
delete mode 100644 lib/librmb-main/src/rmb/motorcontrol/Talon/TalonFXPositionController.cpp
delete mode 100644 lib/librmb-main/src/rmb/motorcontrol/Talon/TalonFXPositionController.h
delete mode 100644 lib/librmb-main/src/rmb/motorcontrol/Talon/TalonFXVelocityController.cpp
delete mode 100644 lib/librmb-main/src/rmb/motorcontrol/Talon/TalonFXVelocityController.h
delete mode 100644 lib/librmb-main/src/rmb/motorcontrol/feedforward/AngularFeedforwardController.h
delete mode 100644 lib/librmb-main/src/rmb/motorcontrol/feedforward/ArmFeedforward.h
delete mode 100644 lib/librmb-main/src/rmb/motorcontrol/feedforward/ElevatorFeedforward.h
delete mode 100644 lib/librmb-main/src/rmb/motorcontrol/feedforward/Feedforward.h
delete mode 100644 lib/librmb-main/src/rmb/motorcontrol/feedforward/LinearFeedforwardController.h
delete mode 100644 lib/librmb-main/src/rmb/motorcontrol/feedforward/SimpleFeedforward.h
delete mode 100644 lib/librmb-main/src/rmb/motorcontrol/math/misc.h
delete mode 100644 lib/librmb-main/src/rmb/motorcontrol/sparkmax/SparkMaxPositionController.cpp
delete mode 100644 lib/librmb-main/src/rmb/motorcontrol/sparkmax/SparkMaxPositionController.h
delete mode 100644 lib/librmb-main/src/rmb/motorcontrol/sparkmax/SparkMaxVelocityController.cpp
delete mode 100644 lib/librmb-main/src/rmb/motorcontrol/sparkmax/SparkMaxVelocityController.h
delete mode 100644 lib/librmb-main/src/rmb/sensors/AHRS/AHRSGyro.cpp
delete mode 100644 lib/librmb-main/src/rmb/sensors/AHRS/AHRSGyro.h
delete mode 100644 lib/librmb-main/src/rmb/sensors/gyro.h
delete mode 100644 lib/librmb-main/testbench/.gitignore
delete mode 100644 lib/librmb-main/testbench/.pathplanner/settings.json
delete mode 100644 lib/librmb-main/testbench/.wpilib/wpilib_preferences.json
delete mode 100644 lib/librmb-main/testbench/WPILib-License.md
delete mode 100644 lib/librmb-main/testbench/build.gradle
delete mode 100644 lib/librmb-main/testbench/gradle/wrapper/gradle-wrapper.jar
delete mode 100644 lib/librmb-main/testbench/gradle/wrapper/gradle-wrapper.properties
delete mode 100755 lib/librmb-main/testbench/gradlew
delete mode 100644 lib/librmb-main/testbench/gradlew.bat
delete mode 100644 lib/librmb-main/testbench/rioCDGen.py
delete mode 100644 lib/librmb-main/testbench/settings.gradle
delete mode 100644 lib/librmb-main/testbench/src/Constants.h
delete mode 100644 lib/librmb-main/testbench/src/Robot.cpp
delete mode 100644 lib/librmb-main/testbench/src/Robot.h
delete mode 100644 lib/librmb-main/testbench/src/RobotContainer.cpp
delete mode 100644 lib/librmb-main/testbench/src/RobotContainer.h
delete mode 100644 lib/librmb-main/testbench/src/deploy/example.txt
delete mode 100644 lib/librmb-main/testbench/src/main/deploy/pathplanner/navgrid.json
delete mode 100644 lib/librmb-main/testbench/src/main/deploy/pathplanner/paths/bruhPath.path
delete mode 100644 lib/librmb-main/testbench/vendordeps/NavX.json
delete mode 100644 lib/librmb-main/testbench/vendordeps/PathplannerLib.json
delete mode 100644 lib/librmb-main/testbench/vendordeps/Phoenix6-frc2024-latest.json
delete mode 100644 lib/librmb-main/testbench/vendordeps/REVLib-2024.json
delete mode 100644 lib/librmb-main/testbench/vendordeps/WPILibNewCommands.json
delete mode 100644 lib/librmb-main/vendordeps/NavX.json
delete mode 100644 lib/librmb-main/vendordeps/PathplannerLib.json
delete mode 100644 lib/librmb-main/vendordeps/Phoenix6-frc2024-latest.json
delete mode 100644 lib/librmb-main/vendordeps/REVLib-2024.json
delete mode 100644 lib/librmb-main/vendordeps/WPILibNewCommands.json
diff --git a/lib/librmb-main/.editorconfig b/lib/librmb-main/.editorconfig
deleted file mode 100644
index e85c364..0000000
--- a/lib/librmb-main/.editorconfig
+++ /dev/null
@@ -1,17 +0,0 @@
-# EditorConfig is awesome: https://EditorConfig.org
-
-# top-most EditorConfig file
-root = true
-
-# Unix-style newlines with a newline ending every file
-[*]
-end_of_line = lf
-insert_final_newline = true
-charset = utf-8
-indent_size = 2
-indent_style = space
-
-# 4 space indentation
-[*.py]
-indent_style = space
-indent_size = 4
diff --git a/lib/librmb-main/.github/workflows/doxygen-publish.yml b/lib/librmb-main/.github/workflows/doxygen-publish.yml
deleted file mode 100644
index 110ba64..0000000
--- a/lib/librmb-main/.github/workflows/doxygen-publish.yml
+++ /dev/null
@@ -1,23 +0,0 @@
-name: doxygen-publish
-
-on:
- push:
- branches: [ main ]
-
-jobs:
- build:
- runs-on: ubuntu-latest
-
- steps:
- - uses: actions/checkout@v2
-
- - name: Build documentation
- uses: mattnotmitt/doxygen-action@v1.1.0
- with:
- doxyfile-path: "./docs/Doxyfile"
-
- - name: Publish to GitHub Pages
- uses: peaceiris/actions-gh-pages@v3
- with:
- github_token: ${{ secrets.GITHUB_TOKEN }}
- publish_dir: ./docs/html
diff --git a/lib/librmb-main/.github/workflows/merge.yml b/lib/librmb-main/.github/workflows/merge.yml
deleted file mode 100644
index 4f8a5ed..0000000
--- a/lib/librmb-main/.github/workflows/merge.yml
+++ /dev/null
@@ -1,88 +0,0 @@
-name: Run Gradle on Merge and publish
-on:
- push:
- branches:
- - main
-jobs:
- gradle:
- strategy:
- matrix:
- os: [ubuntu-latest, macos-latest, windows-latest]
- runs-on: ${{ matrix.os }}
- steps:
- - uses: actions/checkout@v4
- - uses: actions/setup-java@v4
- with:
- distribution: temurin
- java-version: 17
-
- - name: Setup Gradle
- uses: gradle/gradle-build-action@v2
-
- - name: Install Toolchain
- run: gradle installRoboRioToolchain
-
- - name: Execute Gradle build
- run: gradle build
-
- - name: Publish
- run: gradle publish
-
- - name: Upload a Build Artifact
- if: ${{ matrix.os == 'ubuntu-latest' }}
- uses: actions/upload-artifact@v4.0.0
- with:
- name: LibRmb.json
- path: build/LibRmb.json
-
- - name: Upload a Build Artifact
- uses: actions/upload-artifact@v4.0.0
- with:
- name: ${{ matrix.os }}-repo
- path: build/repos
-
- publish:
- needs: [gradle]
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v4
- with:
- ref: 'maven-repo'
- - name: Create archive dirs
- run: mkdir -p archives/ubuntu-latest |
- mkdir -p archives/macos-latest |
- mkdir -p archives/windows-latest |
- mkdir -p repos
- - name: Download Linux Artifact
- uses: actions/download-artifact@v4.1.0
- with:
- name: ubuntu-latest-repo
- path: archives/ubuntu-latest
- - name: Download MacOS Artifact
- uses: actions/download-artifact@v4.1.0
- with:
- name: macos-latest-repo
- path: archives/macos-latest
- - name: Download Windows Artifact
- uses: actions/download-artifact@v4.1.0
- with:
- name: windows-latest-repo
- path: archives/windows-latest
-
- - name: Download Vendordep Json
- uses: actions/download-artifact@v4.1.0
- with:
- name: LibRmb.json
-
- - name: Merge repos with rsync
- run: rsync -aviuzP archives/ubuntu-latest/* ./repos |
- rsync -aviuzP archives/macos-latest/* ./repos |
- rsync -aviuzP archives/windows-latest/* ./repos
-
- - name: Clean
- run: rm -rf archives
-
- - name: Commit
- uses: stefanzweifel/git-auto-commit-action@v5
- with:
- commit_message: "BOT: Update Repos"
diff --git a/lib/librmb-main/.github/workflows/pr.yml b/lib/librmb-main/.github/workflows/pr.yml
deleted file mode 100644
index 89a2a13..0000000
--- a/lib/librmb-main/.github/workflows/pr.yml
+++ /dev/null
@@ -1,40 +0,0 @@
-name: Run Gradle on PRs
-on: pull_request
-jobs:
- format:
- runs-on: ubuntu-latest
- permissions:
- contents: write
- if: ${{ always() }}
- needs: gradle
- steps:
- - uses: actions/checkout@v4
- - uses: DoozyX/clang-format-lint-action@v0.13
- with:
- source: '.'
- extensions: 'h,cpp,inl,inc'
- style: llvm
- inplace: true
- - uses: stefanzweifel/git-auto-commit-action@v5
- with:
- commit_message: "BOT: Apply Formatting"
- gradle:
- strategy:
- matrix:
- os: [ubuntu-latest, macos-latest, windows-latest]
- runs-on: ${{ matrix.os }}
- steps:
- - uses: actions/checkout@v4
- - uses: actions/setup-java@v4
- with:
- distribution: temurin
- java-version: 17
-
- - name: Setup Gradle
- uses: gradle/gradle-build-action@v2
-
- - name: Install Toolchain
- run: gradle installRoboRioToolchain
-
- - name: Execute Gradle build
- run: gradle build
diff --git a/lib/librmb-main/.gitignore b/lib/librmb-main/.gitignore
deleted file mode 100644
index 660cc20..0000000
--- a/lib/librmb-main/.gitignore
+++ /dev/null
@@ -1,197 +0,0 @@
-# This gitignore has been specially created by the WPILib team.
-# If you remove items from this file, intellisense might break.
-
-### C++ ###
-# Prerequisites
-*.d
-
-# Compiled Object files
-*.slo
-*.lo
-*.o
-*.obj
-
-# Precompiled Headers
-*.gch
-*.pch
-
-# Compiled Dynamic libraries
-*.so
-*.dylib
-*.dll
-
-# Fortran module files
-*.mod
-*.smod
-
-# Compiled Static libraries
-*.lai
-*.la
-*.a
-*.lib
-
-# Executables
-*.exe
-*.out
-*.app
-
-### Java ###
-# Compiled class file
-*.class
-
-# Log file
-*.log
-
-# BlueJ files
-*.ctxt
-
-# Mobile Tools for Java (J2ME)
-.mtj.tmp/
-
-# Package Files #
-*.jar
-*.war
-*.nar
-*.ear
-*.zip
-*.tar.gz
-*.rar
-
-# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
-hs_err_pid*
-
-### Linux ###
-*~
-
-# temporary files which can be created if a process still has a handle open of a deleted file
-.fuse_hidden*
-
-# KDE directory preferences
-.directory
-
-# Linux trash folder which might appear on any partition or disk
-.Trash-*
-
-# .nfs files are created when an open file is removed but is still being accessed
-.nfs*
-
-### macOS ###
-# General
-.DS_Store
-.AppleDouble
-.LSOverride
-.history
-
-# Icon must end with two \r
-Icon
-
-# Thumbnails
-._*
-
-# Files that might appear in the root of a volume
-.DocumentRevisions-V100
-.fseventsd
-.Spotlight-V100
-.TemporaryItems
-.Trashes
-.VolumeIcon.icns
-.com.apple.timemachine.donotpresent
-
-# Directories potentially created on remote AFP share
-.AppleDB
-.AppleDesktop
-Network Trash Folder
-Temporary Items
-.apdisk
-
-### VisualStudioCode ###
-.vscode/*
-# !.vscode/settings.json
-# !.vscode/tasks.json
-# !.vscode/launch.json
-# !.vscode/extensions.json
-
-### Windows ###
-# Windows thumbnail cache files
-Thumbs.db
-ehthumbs.db
-ehthumbs_vista.db
-
-# Dump file
-*.stackdump
-
-# Folder config file
-[Dd]esktop.ini
-
-# Recycle Bin used on file shares
-$RECYCLE.BIN/
-
-# Windows Installer files
-*.cab
-*.msi
-*.msix
-*.msm
-*.msp
-
-# Windows shortcuts
-*.lnk
-
-### Gradle ###
-.gradle
-build/
-
-# Ignore Gradle GUI config
-gradle-app.setting
-
-# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
-!gradle-wrapper.jar
-
-# Cache of project
-.gradletasknamecache
-
-# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
-# gradle/wrapper/gradle-wrapper.properties
-
-# # VS Code Specific Java Settings
-# DO NOT REMOVE .classpath and .project
-.classpath
-.project
-.settings/
-bin/
-
-# Simulation GUI and other tools window save file
-*-window.json
-
-##########
-# CUSTOM #
-##########
-
-# Vim temporary files
-*~
-*.swp
-*.swo
-
-# Doxygen-generated HTML docs
-docs/*
-!docs/additional
-!docs/mainpage.md
-!docs/doxygen-awesome.css
-!docs/Doxyfile
-!docs/favicon.png
-!docs/favicon.png
-!docs/building.md
-!docs/errors.out
-!docs/doxygen.h
-
-.idea/
-.cache/
-
-.project.alt.json
-
-compile_commands.json
-compile_flags.txt
-
-simgui*.json
-networktables.json
-
-ctre_sim
diff --git a/lib/librmb-main/.gitpod.yml b/lib/librmb-main/.gitpod.yml
deleted file mode 100644
index e4709bf..0000000
--- a/lib/librmb-main/.gitpod.yml
+++ /dev/null
@@ -1,8 +0,0 @@
-# This configuration file was automatically generated by Gitpod.
-# Please adjust to your needs (see https://www.gitpod.io/docs/config-gitpod-file)
-# and commit this file to your remote git repository to share the goodness with others.
-
-tasks:
- - init: ./gradlew installRoboRioToolchain && ./gradlew build
-
-
diff --git a/lib/librmb-main/.wpilib/wpilib_preferences.json b/lib/librmb-main/.wpilib/wpilib_preferences.json
deleted file mode 100644
index db3e62e..0000000
--- a/lib/librmb-main/.wpilib/wpilib_preferences.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "enableCppIntellisense": true,
- "currentLanguage": "cpp",
- "projectYear": "2022",
- "teamNumber": 4330
-}
\ No newline at end of file
diff --git a/lib/librmb-main/LICENSE b/lib/librmb-main/LICENSE
deleted file mode 100644
index e95b197..0000000
--- a/lib/librmb-main/LICENSE
+++ /dev/null
@@ -1,21 +0,0 @@
-MIT License
-
-Copyright (c) 2022 Rambunction 4330
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
diff --git a/lib/librmb-main/README.md b/lib/librmb-main/README.md
deleted file mode 100644
index 799c180..0000000
--- a/lib/librmb-main/README.md
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
-
-
-
librmb
-
-
-- - -
-
-
-
-
-
-
-
-
-
-- - -
-
-Utility library for FRC robots. The initial version was written by team 4330's 2022 season programming team.
-
-## Building
-see https://rambunction4330.github.io/librmb/md_docs_building.html
diff --git a/lib/librmb-main/build.gradle b/lib/librmb-main/build.gradle
deleted file mode 100644
index ffc9a61..0000000
--- a/lib/librmb-main/build.gradle
+++ /dev/null
@@ -1,100 +0,0 @@
-plugins {
- id 'cpp'
- id 'java'
- id 'edu.wpi.first.wpilib.repositories.WPILibRepositoriesPlugin' version '2020.2'
- id 'edu.wpi.first.NativeUtils' version '2024.7.0'
- id 'edu.wpi.first.GradleJni' version '1.0.0'
-}
-
-sourceCompatibility = JavaVersion.VERSION_11
-targetCompatibility = JavaVersion.VERSION_11
-
-repositories {
- mavenCentral()
-}
-
-wpilibRepositories.addAllReleaseRepositories(project)
-// wpilibRepositories.addAllDevelopmentRepositories(project)
-
-// Apply C++ configuration
-apply from: 'config.gradle'
-
-// Apply Java configuration
-dependencies {
-}
-
-// Set up exports properly
-nativeUtils {
- exportsConfigs {
- LibRmb {
- x64ExcludeSymbols = [
- '_CT??_R0?AV_System_error',
- '_CT??_R0?AVexception',
- '_CT??_R0?AVfailure',
- '_CT??_R0?AVruntime_error',
- '_CT??_R0?AVsystem_error',
- '_CTA5?AVfailure',
- '_TI5?AVfailure',
- '_CT??_R0?AVout_of_range',
- '_CTA3?AVout_of_range',
- '_TI3?AVout_of_range',
- '_CT??_R0?AVbad_cast'
- ]
- x86ExcludeSymbols = [
- '_CT??_R0?AV_System_error',
- '_CT??_R0?AVexception',
- '_CT??_R0?AVfailure',
- '_CT??_R0?AVruntime_error',
- '_CT??_R0?AVsystem_error',
- '_CTA5?AVfailure',
- '_TI5?AVfailure',
- '_CT??_R0?AVout_of_range',
- '_CTA3?AVout_of_range',
- '_TI3?AVout_of_range',
- '_CT??_R0?AVbad_cast'
- ]
- }
- }
-}
-
-model {
- components {
- LibRmb(NativeLibrarySpec) {
- sources {
- cpp {
- source {
- srcDirs 'src/'
- include '**/*.cpp'
- }
- exportedHeaders {
- srcDirs 'src/'
- }
- }
- }
- nativeUtils.useRequiredLibrary(it, 'wpilib_shared')
- }
- }
-}
-
-apply from: 'publish.gradle'
-
-wrapper {
- gradleVersion '8.4'
-}
-
-test {
- useJUnitPlatform()
-}
-
-task resolveAllDependencies {
- description "Resolves all transitive dependencies so you can run using the --offline flag"
- doLast {
- try {
- configurations.all {
- it.resolve()
- }
- } catch (Exception e) {
- logger.quiet("dependency download exception: " + e.message);
- }
- }
-}
diff --git a/lib/librmb-main/build.old.gradle b/lib/librmb-main/build.old.gradle
deleted file mode 100644
index 3f8cd78..0000000
--- a/lib/librmb-main/build.old.gradle
+++ /dev/null
@@ -1,90 +0,0 @@
-plugins {
- id "cpp"
- id "edu.wpi.first.GradleRIO" version "2023.4.2"
-}
-
-// Define my targets (RoboRIO) and artifacts (deployable files)
-// This is added by GradleRIO's backing project DeployUtils.
-deploy {
- targets {
- roborio(getTargetTypeClass('RoboRIO')) {
- // Team number is loaded either from the .wpilib/wpilib_preferences.json
- // or from command line. If not found an exception will be thrown.
- // You can use getTeamOrDefault(team) instead of getTeamNumber if you
- // want to store a team number in this file.
- team = project.frc.getTeamNumber()
- debug = project.frc.getDebugOrDefault(false)
-
- artifacts {
- // First part is artifact name, 2nd is artifact type
- // getTargetTypeClass is a shortcut to get the class type using a string
-
- frcCpp(getArtifactTypeClass('FRCNativeArtifact')) {
- }
-
- // // Static files artifact
- // frcStaticFileDeploy(getArtifactTypeClass('FileTreeArtifact')) {
- // files = project.fileTree('src/main/deploy')
- // directory = '/home/lvuser/deploy'
- // }
- }
- }
- }
-}
-
-//def deployArtifact = deploy.targets.roborio.artifacts.frcCpp
-
-// Set this to true to enable desktop support.
-def includeDesktopSupport = false
-
-// Set to true to run simulation in debug mode
-wpi.cpp.debugSimulation = false
-
-// Default enable simgui
-wpi.sim.addGui().defaultEnabled = true
-// Enable DS but not by default
-wpi.sim.addDriverstation()
-
-abstract class DocumentationTask extends DefaultTask {
- @TaskAction
- def run() {
- "doxygen docs/Doxyfile".execute()
- }
-}
-
-tasks.register("docs", DocumentationTask)
-
-model {
- components {
- librmb(NativeLibrarySpec) {
- targetPlatform wpi.platforms.roborio
- if (includeDesktopSupport) {
- targetPlatform wpi.platforms.desktop
- }
-
- sources.cpp {
- source {
- include '**/*.cpp', '**/*.cc'
-
- srcDir 'src'
- }
- exportedHeaders {
- srcDir 'src'
- }
- }
-
- // Set deploy task to deploy this component
- //deployArtifact.component = it
-
- // Enable run tasks for this component
- wpi.cpp.enableExternalTasks(it)
-
- // Enable simulation for this component
- wpi.sim.enable(it)
- // Defining my dependencies. In this case, WPILib (+ friends), and vendor libraries.
- wpi.cpp.vendor.cpp(it)
- wpi.cpp.deps.wpilib(it)
- }
- }
-}
-
diff --git a/lib/librmb-main/config.gradle b/lib/librmb-main/config.gradle
deleted file mode 100644
index 2837c12..0000000
--- a/lib/librmb-main/config.gradle
+++ /dev/null
@@ -1,179 +0,0 @@
-import org.gradle.internal.os.OperatingSystem
-
-nativeUtils.addWpiNativeUtils()
-nativeUtils.withCrossRoboRIO()
-
-nativeUtils {
- wpi {
- configureDependencies {
- wpiVersion = "2024.+"
- niLibVersion = "2024.+"
- opencvVersion = "4.8.0-2"
- wpimathVersion = "2024.+"
- }
- }
-}
-
-nativeUtils.platformConfigs.linuxathena.cppCompiler.args << "-fPIC"
-
-nativeUtils.wpi.addWarnings()
-//nativeUtils.wpi.addWarningsAsErrors()
-
-nativeUtils.setSinglePrintPerPlatform()
-
-nativeUtils.wpi.addVendorDeps()
-nativeUtils.wpi.getVendorDeps().loadAll()
-nativeUtils.wpi.getVendorDeps().getNativeVendor().initializeNativeDependencies()
-nativeUtils.wpi.getVendorDeps().addVendorReposToMaven(true)
-
-model {
- components {
- all {
- //targetPlatform nativeUtils.wpi.platforms.roborio
- nativeUtils.useAllPlatforms(it)
- }
- }
-
- binaries {
- withType(NativeBinarySpec).all {
- nativeUtils.usePlatformArguments(it)
- nativeUtils.wpi.getVendorDeps().getNativeVendor().cpp(it)
- }
- }
-}
-
-ext.appendDebugPathToBinaries = { binaries->
- binaries.withType(StaticLibraryBinarySpec) {
- if (it.buildType.name.contains('debug')) {
- def staticFileDir = it.staticLibraryFile.parentFile
- def staticFileName = it.staticLibraryFile.name
- def staticFileExtension = staticFileName.substring(staticFileName.lastIndexOf('.'))
- staticFileName = staticFileName.substring(0, staticFileName.lastIndexOf('.'))
- staticFileName = staticFileName + 'd' + staticFileExtension
- def newStaticFile = new File(staticFileDir, staticFileName)
- it.staticLibraryFile = newStaticFile
- }
- }
- binaries.withType(SharedLibraryBinarySpec) {
- if (it.buildType.name.contains('debug')) {
- def sharedFileDir = it.sharedLibraryFile.parentFile
- def sharedFileName = it.sharedLibraryFile.name
- def sharedFileExtension = sharedFileName.substring(sharedFileName.lastIndexOf('.'))
- sharedFileName = sharedFileName.substring(0, sharedFileName.lastIndexOf('.'))
- sharedFileName = sharedFileName + 'd' + sharedFileExtension
- def newSharedFile = new File(sharedFileDir, sharedFileName)
-
- def sharedLinkFileDir = it.sharedLibraryLinkFile.parentFile
- def sharedLinkFileName = it.sharedLibraryLinkFile.name
- def sharedLinkFileExtension = sharedLinkFileName.substring(sharedLinkFileName.lastIndexOf('.'))
- sharedLinkFileName = sharedLinkFileName.substring(0, sharedLinkFileName.lastIndexOf('.'))
- sharedLinkFileName = sharedLinkFileName + 'd' + sharedLinkFileExtension
- def newLinkFile = new File(sharedLinkFileDir, sharedLinkFileName)
-
- it.sharedLibraryLinkFile = newLinkFile
- it.sharedLibraryFile = newSharedFile
- }
- }
-}
-
-ext.createComponentZipTasks = { components, names, base, type, project, func ->
- def stringNames = names.collect {it.toString()}
- def configMap = [:]
- components.each {
- if (it in NativeLibrarySpec && stringNames.contains(it.name)) {
- it.binaries.each {
- if (!it.buildable) return
- def target = nativeUtils.getPublishClassifier(it)
- if (configMap.containsKey(target)) {
- configMap.get(target).add(it)
- } else {
- configMap.put(target, [])
- configMap.get(target).add(it)
- }
- }
- }
- }
- def taskList = []
- def outputsFolder = file("$project.buildDir/outputs")
- configMap.each { key, value ->
- def task = project.tasks.create(base + "-${key}", type) {
- description = 'Creates component archive for platform ' + key
- destinationDirectory = outputsFolder
- archiveClassifier = key
- archiveBaseName = '_M_' + base
- duplicatesStrategy = 'exclude'
-
- from(licenseFile) {
- into '/'
- }
-
- func(it, value)
- }
- taskList.add(task)
-
- project.build.dependsOn task
-
- project.artifacts {
- task
- }
- addTaskToCopyAllOutputs(task)
- }
- return taskList
-}
-
-ext.createAllCombined = { list, name, base, type, project ->
- def outputsFolder = file("$project.buildDir/outputs")
-
- def task = project.tasks.create(base + "-all", type) {
- description = "Creates component archive for all classifiers"
- destinationDirectory = outputsFolder
- classifier = "all"
- archiveBaseName = base
- duplicatesStrategy = 'exclude'
-
- list.each {
- if (it.name.endsWith('debug')) return
- from project.zipTree(it.archivePath)
- dependsOn it
- }
- }
-
- project.build.dependsOn task
-
- project.artifacts {
- task
- }
-
- return task
-
-}
-
-ext.includeStandardZipFormat = { task, value ->
- value.each { binary ->
- if (binary.buildable) {
- if (binary instanceof SharedLibraryBinarySpec) {
- task.dependsOn binary.tasks.link
- task.from(new File(binary.sharedLibraryFile.absolutePath + ".debug")) {
- into nativeUtils.getPlatformPath(binary) + '/shared'
- }
- def sharedPath = binary.sharedLibraryFile.absolutePath
- sharedPath = sharedPath.substring(0, sharedPath.length() - 4)
-
- task.from(new File(sharedPath + '.pdb')) {
- into nativeUtils.getPlatformPath(binary) + '/shared'
- }
- task.from(binary.sharedLibraryFile) {
- into nativeUtils.getPlatformPath(binary) + '/shared'
- }
- task.from(binary.sharedLibraryLinkFile) {
- into nativeUtils.getPlatformPath(binary) + '/shared'
- }
- } else if (binary instanceof StaticLibraryBinarySpec) {
- task.dependsOn binary.tasks.createStaticLib
- task.from(binary.staticLibraryFile) {
- into nativeUtils.getPlatformPath(binary) + '/static'
- }
- }
- }
- }
-}
diff --git a/lib/librmb-main/docs/Doxyfile b/lib/librmb-main/docs/Doxyfile
deleted file mode 100644
index f175598..0000000
--- a/lib/librmb-main/docs/Doxyfile
+++ /dev/null
@@ -1,2646 +0,0 @@
-# Doxyfile 1.9.3
-
-# This file describes the settings to be used by the documentation system
-# doxygen (www.doxygen.org) for a project.
-#
-# All text after a double hash (##) is considered a comment and is placed in
-# front of the TAG it is preceding.
-#
-# All text after a single hash (#) is considered a comment and will be ignored.
-# The format is:
-# TAG = value [value, ...]
-# For lists, items can also be appended using:
-# TAG += value [value, ...]
-# Values that contain spaces should be placed between quotes (\" \").
-
-#---------------------------------------------------------------------------
-# Project related configuration options
-#---------------------------------------------------------------------------
-
-# This tag specifies the encoding used for all characters in the configuration
-# file that follow. The default is UTF-8 which is also the encoding used for all
-# text before the first occurrence of this tag. Doxygen uses libiconv (or the
-# iconv built into libc) for the transcoding. See
-# https://www.gnu.org/software/libiconv/ for the list of possible encodings.
-# The default value is: UTF-8.
-
-DOXYFILE_ENCODING = UTF-8
-
-# The PROJECT_NAME tag is a single word (or a sequence of words surrounded by
-# double-quotes, unless you are using Doxywizard) that should identify the
-# project for which the documentation is generated. This name is used in the
-# title of most generated pages and in a few other places.
-# The default value is: My Project.
-
-PROJECT_NAME = "librmb"
-
-# The PROJECT_NUMBER tag can be used to enter a project or revision number. This
-# could be handy for archiving the generated documentation or if some version
-# control system is used.
-
-PROJECT_NUMBER = 1.0
-
-# Using the PROJECT_BRIEF tag one can provide an optional one line description
-# for a project that appears at the top of each page and should give viewer a
-# quick idea about the purpose of the project. Keep the description short.
-
-PROJECT_BRIEF = "Rambunction 4330 Utility Library"
-
-# With the PROJECT_LOGO tag one can specify a logo or an icon that is included
-# in the documentation. The maximum height of the logo should not exceed 55
-# pixels and the maximum width should not exceed 200 pixels. Doxygen will copy
-# the logo to the output directory.
-
-PROJECT_LOGO = "docs/favicon.png"
-
-# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path
-# into which the generated documentation will be written. If a relative path is
-# entered, it will be relative to the location where doxygen was started. If
-# left blank the current directory will be used.
-
-OUTPUT_DIRECTORY = "."
-
-# If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub-
-# directories (in 2 levels) under the output directory of each output format and
-# will distribute the generated files over these directories. Enabling this
-# option can be useful when feeding doxygen a huge amount of source files, where
-# putting all generated files in the same directory would otherwise causes
-# performance problems for the file system.
-# The default value is: NO.
-
-CREATE_SUBDIRS = NO
-
-# If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII
-# characters to appear in the names of generated files. If set to NO, non-ASCII
-# characters will be escaped, for example _xE3_x81_x84 will be used for Unicode
-# U+3044.
-# The default value is: NO.
-
-ALLOW_UNICODE_NAMES = NO
-
-# The OUTPUT_LANGUAGE tag is used to specify the language in which all
-# documentation generated by doxygen is written. Doxygen will use this
-# information to generate all constant output in the proper language.
-# Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Catalan, Chinese,
-# Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States),
-# Esperanto, Farsi (Persian), Finnish, French, German, Greek, Hungarian,
-# Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages),
-# Korean, Korean-en (Korean with English messages), Latvian, Lithuanian,
-# Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, Romanian, Russian,
-# Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, Swedish, Turkish,
-# Ukrainian and Vietnamese.
-# The default value is: English.
-
-OUTPUT_LANGUAGE = English
-
-# If the BRIEF_MEMBER_DESC tag is set to YES, doxygen will include brief member
-# descriptions after the members that are listed in the file and class
-# documentation (similar to Javadoc). Set to NO to disable this.
-# The default value is: YES.
-
-BRIEF_MEMBER_DESC = YES
-
-# If the REPEAT_BRIEF tag is set to YES, doxygen will prepend the brief
-# description of a member or function before the detailed description
-#
-# Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the
-# brief descriptions will be completely suppressed.
-# The default value is: YES.
-
-REPEAT_BRIEF = YES
-
-# This tag implements a quasi-intelligent brief description abbreviator that is
-# used to form the text in various listings. Each string in this list, if found
-# as the leading text of the brief description, will be stripped from the text
-# and the result, after processing the whole list, is used as the annotated
-# text. Otherwise, the brief description is used as-is. If left blank, the
-# following values are used ($name is automatically replaced with the name of
-# the entity):The $name class, The $name widget, The $name file, is, provides,
-# specifies, contains, represents, a, an and the.
-
-ABBREVIATE_BRIEF = "The $name class" \
- "The $name widget" \
- "The $name file" \
- is \
- provides \
- specifies \
- contains \
- represents \
- a \
- an \
- the
-
-# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then
-# doxygen will generate a detailed section even if there is only a brief
-# description.
-# The default value is: NO.
-
-ALWAYS_DETAILED_SEC = NO
-
-# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all
-# inherited members of a class in the documentation of that class as if those
-# members were ordinary class members. Constructors, destructors and assignment
-# operators of the base classes will not be shown.
-# The default value is: NO.
-
-INLINE_INHERITED_MEMB = NO
-
-# If the FULL_PATH_NAMES tag is set to YES, doxygen will prepend the full path
-# before files name in the file list and in the header files. If set to NO the
-# shortest path that makes the file name unique will be used
-# The default value is: YES.
-
-FULL_PATH_NAMES = YES
-
-# The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path.
-# Stripping is only done if one of the specified strings matches the left-hand
-# part of the path. The tag can be used to show relative paths in the file list.
-# If left blank the directory from which doxygen is run is used as the path to
-# strip.
-#
-# Note that you can specify absolute paths here, but also relative paths, which
-# will be relative from the directory where doxygen is started.
-# This tag requires that the tag FULL_PATH_NAMES is set to YES.
-
-STRIP_FROM_PATH =
-
-# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the
-# path mentioned in the documentation of a class, which tells the reader which
-# header file to include in order to use a class. If left blank only the name of
-# the header file containing the class definition is used. Otherwise one should
-# specify the list of include paths that are normally passed to the compiler
-# using the -I flag.
-
-STRIP_FROM_INC_PATH = src/
-
-# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but
-# less readable) file names. This can be useful is your file systems doesn't
-# support long names like on DOS, Mac, or CD-ROM.
-# The default value is: NO.
-
-SHORT_NAMES = NO
-
-# If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the
-# first line (until the first dot) of a Javadoc-style comment as the brief
-# description. If set to NO, the Javadoc-style will behave just like regular Qt-
-# style comments (thus requiring an explicit @brief command for a brief
-# description.)
-# The default value is: NO.
-
-JAVADOC_AUTOBRIEF = NO
-
-# If the JAVADOC_BANNER tag is set to YES then doxygen will interpret a line
-# such as
-# /***************
-# as being the beginning of a Javadoc-style comment "banner". If set to NO, the
-# Javadoc-style will behave just like regular comments and it will not be
-# interpreted by doxygen.
-# The default value is: NO.
-
-JAVADOC_BANNER = NO
-
-# If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first
-# line (until the first dot) of a Qt-style comment as the brief description. If
-# set to NO, the Qt-style will behave just like regular Qt-style comments (thus
-# requiring an explicit \brief command for a brief description.)
-# The default value is: NO.
-
-QT_AUTOBRIEF = NO
-
-# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make doxygen treat a
-# multi-line C++ special comment block (i.e. a block of //! or /// comments) as
-# a brief description. This used to be the default behavior. The new default is
-# to treat a multi-line C++ comment block as a detailed description. Set this
-# tag to YES if you prefer the old behavior instead.
-#
-# Note that setting this tag to YES also means that rational rose comments are
-# not recognized any more.
-# The default value is: NO.
-
-MULTILINE_CPP_IS_BRIEF = NO
-
-# By default Python docstrings are displayed as preformatted text and doxygen's
-# special commands cannot be used. By setting PYTHON_DOCSTRING to NO the
-# doxygen's special commands can be used and the contents of the docstring
-# documentation blocks is shown as doxygen documentation.
-# The default value is: YES.
-
-PYTHON_DOCSTRING = YES
-
-# If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the
-# documentation from any documented member that it re-implements.
-# The default value is: YES.
-
-INHERIT_DOCS = YES
-
-# If the SEPARATE_MEMBER_PAGES tag is set to YES then doxygen will produce a new
-# page for each member. If set to NO, the documentation of a member will be part
-# of the file/class/namespace that contains it.
-# The default value is: NO.
-
-SEPARATE_MEMBER_PAGES = NO
-
-# The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen
-# uses this value to replace tabs by spaces in code fragments.
-# Minimum value: 1, maximum value: 16, default value: 4.
-
-TAB_SIZE = 4
-
-# This tag can be used to specify a number of aliases that act as commands in
-# the documentation. An alias has the form:
-# name=value
-# For example adding
-# "sideeffect=@par Side Effects:^^"
-# will allow you to put the command \sideeffect (or @sideeffect) in the
-# documentation, which will result in a user-defined paragraph with heading
-# "Side Effects:". Note that you cannot put \n's in the value part of an alias
-# to insert newlines (in the resulting output). You can put ^^ in the value part
-# of an alias to insert a newline as if a physical newline was in the original
-# file. When you need a literal { or } or , in the value part of an alias you
-# have to escape them by means of a backslash (\), this can lead to conflicts
-# with the commands \{ and \} for these it is advised to use the version @{ and
-# @} or use a double escape (\\{ and \\})
-
-ALIASES =
-
-# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources
-# only. Doxygen will then generate output that is more tailored for C. For
-# instance, some of the names that are used will be different. The list of all
-# members will be omitted, etc.
-# The default value is: NO.
-
-OPTIMIZE_OUTPUT_FOR_C = NO
-
-# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or
-# Python sources only. Doxygen will then generate output that is more tailored
-# for that language. For instance, namespaces will be presented as packages,
-# qualified scopes will look different, etc.
-# The default value is: NO.
-
-OPTIMIZE_OUTPUT_JAVA = NO
-
-# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran
-# sources. Doxygen will then generate output that is tailored for Fortran.
-# The default value is: NO.
-
-OPTIMIZE_FOR_FORTRAN = NO
-
-# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL
-# sources. Doxygen will then generate output that is tailored for VHDL.
-# The default value is: NO.
-
-OPTIMIZE_OUTPUT_VHDL = NO
-
-# Set the OPTIMIZE_OUTPUT_SLICE tag to YES if your project consists of Slice
-# sources only. Doxygen will then generate output that is more tailored for that
-# language. For instance, namespaces will be presented as modules, types will be
-# separated into more groups, etc.
-# The default value is: NO.
-
-OPTIMIZE_OUTPUT_SLICE = NO
-
-# Doxygen selects the parser to use depending on the extension of the files it
-# parses. With this tag you can assign which parser to use for a given
-# extension. Doxygen has a built-in mapping, but you can override or extend it
-# using this tag. The format is ext=language, where ext is a file extension, and
-# language is one of the parsers supported by doxygen: IDL, Java, JavaScript,
-# Csharp (C#), C, C++, Lex, D, PHP, md (Markdown), Objective-C, Python, Slice,
-# VHDL, Fortran (fixed format Fortran: FortranFixed, free formatted Fortran:
-# FortranFree, unknown formatted Fortran: Fortran. In the later case the parser
-# tries to guess whether the code is fixed or free formatted code, this is the
-# default for Fortran type files). For instance to make doxygen treat .inc files
-# as Fortran files (default is PHP), and .f files as C (default is Fortran),
-# use: inc=Fortran f=C.
-#
-# Note: For files without extension you can use no_extension as a placeholder.
-#
-# Note that for custom extensions you also need to set FILE_PATTERNS otherwise
-# the files are not read by doxygen. When specifying no_extension you should add
-# * to the FILE_PATTERNS.
-#
-# Note see also the list of default file extension mappings.
-
-EXTENSION_MAPPING =
-
-# If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments
-# according to the Markdown format, which allows for more readable
-# documentation. See https://daringfireball.net/projects/markdown/ for details.
-# The output of markdown processing is further processed by doxygen, so you can
-# mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in
-# case of backward compatibilities issues.
-# The default value is: YES.
-
-MARKDOWN_SUPPORT = YES
-
-# When the TOC_INCLUDE_HEADINGS tag is set to a non-zero value, all headings up
-# to that level are automatically included in the table of contents, even if
-# they do not have an id attribute.
-# Note: This feature currently applies only to Markdown headings.
-# Minimum value: 0, maximum value: 99, default value: 5.
-# This tag requires that the tag MARKDOWN_SUPPORT is set to YES.
-
-TOC_INCLUDE_HEADINGS = 5
-
-# When enabled doxygen tries to link words that correspond to documented
-# classes, or namespaces to their corresponding documentation. Such a link can
-# be prevented in individual cases by putting a % sign in front of the word or
-# globally by setting AUTOLINK_SUPPORT to NO.
-# The default value is: YES.
-
-AUTOLINK_SUPPORT = YES
-
-# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want
-# to include (a tag file for) the STL sources as input, then you should set this
-# tag to YES in order to let doxygen match functions declarations and
-# definitions whose arguments contain STL classes (e.g. func(std::string);
-# versus func(std::string) {}). This also make the inheritance and collaboration
-# diagrams that involve STL classes more complete and accurate.
-# The default value is: NO.
-
-BUILTIN_STL_SUPPORT = NO
-
-# If you use Microsoft's C++/CLI language, you should set this option to YES to
-# enable parsing support.
-# The default value is: NO.
-
-CPP_CLI_SUPPORT = NO
-
-# Set the SIP_SUPPORT tag to YES if your project consists of sip (see:
-# https://www.riverbankcomputing.com/software/sip/intro) sources only. Doxygen
-# will parse them like normal C++ but will assume all classes use public instead
-# of private inheritance when no explicit protection keyword is present.
-# The default value is: NO.
-
-SIP_SUPPORT = NO
-
-# For Microsoft's IDL there are propget and propput attributes to indicate
-# getter and setter methods for a property. Setting this option to YES will make
-# doxygen to replace the get and set methods by a property in the documentation.
-# This will only work if the methods are indeed getting or setting a simple
-# type. If this is not the case, or you want to show the methods anyway, you
-# should set this option to NO.
-# The default value is: YES.
-
-IDL_PROPERTY_SUPPORT = YES
-
-# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC
-# tag is set to YES then doxygen will reuse the documentation of the first
-# member in the group (if any) for the other members of the group. By default
-# all members of a group must be documented explicitly.
-# The default value is: NO.
-
-DISTRIBUTE_GROUP_DOC = NO
-
-# If one adds a struct or class to a group and this option is enabled, then also
-# any nested class or struct is added to the same group. By default this option
-# is disabled and one has to add nested compounds explicitly via \ingroup.
-# The default value is: NO.
-
-GROUP_NESTED_COMPOUNDS = NO
-
-# Set the SUBGROUPING tag to YES to allow class member groups of the same type
-# (for instance a group of public functions) to be put as a subgroup of that
-# type (e.g. under the Public Functions section). Set it to NO to prevent
-# subgrouping. Alternatively, this can be done per class using the
-# \nosubgrouping command.
-# The default value is: YES.
-
-SUBGROUPING = YES
-
-# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions
-# are shown inside the group in which they are included (e.g. using \ingroup)
-# instead of on a separate page (for HTML and Man pages) or section (for LaTeX
-# and RTF).
-#
-# Note that this feature does not work in combination with
-# SEPARATE_MEMBER_PAGES.
-# The default value is: NO.
-
-INLINE_GROUPED_CLASSES = NO
-
-# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions
-# with only public data fields or simple typedef fields will be shown inline in
-# the documentation of the scope in which they are defined (i.e. file,
-# namespace, or group documentation), provided this scope is documented. If set
-# to NO, structs, classes, and unions are shown on a separate page (for HTML and
-# Man pages) or section (for LaTeX and RTF).
-# The default value is: NO.
-
-INLINE_SIMPLE_STRUCTS = NO
-
-# When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or
-# enum is documented as struct, union, or enum with the name of the typedef. So
-# typedef struct TypeS {} TypeT, will appear in the documentation as a struct
-# with name TypeT. When disabled the typedef will appear as a member of a file,
-# namespace, or class. And the struct will be named TypeS. This can typically be
-# useful for C code in case the coding convention dictates that all compound
-# types are typedef'ed and only the typedef is referenced, never the tag name.
-# The default value is: NO.
-
-TYPEDEF_HIDES_STRUCT = NO
-
-# The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This
-# cache is used to resolve symbols given their name and scope. Since this can be
-# an expensive process and often the same symbol appears multiple times in the
-# code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small
-# doxygen will become slower. If the cache is too large, memory is wasted. The
-# cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range
-# is 0..9, the default is 0, corresponding to a cache size of 2^16=65536
-# symbols. At the end of a run doxygen will report the cache usage and suggest
-# the optimal cache size from a speed point of view.
-# Minimum value: 0, maximum value: 9, default value: 0.
-
-LOOKUP_CACHE_SIZE = 0
-
-# The NUM_PROC_THREADS specifies the number threads doxygen is allowed to use
-# during processing. When set to 0 doxygen will based this on the number of
-# cores available in the system. You can set it explicitly to a value larger
-# than 0 to get more control over the balance between CPU load and processing
-# speed. At this moment only the input processing can be done using multiple
-# threads. Since this is still an experimental feature the default is set to 1,
-# which effectively disables parallel processing. Please report any issues you
-# encounter. Generating dot graphs in parallel is controlled by the
-# DOT_NUM_THREADS setting.
-# Minimum value: 0, maximum value: 32, default value: 1.
-
-NUM_PROC_THREADS = 1
-
-#---------------------------------------------------------------------------
-# Build related configuration options
-#---------------------------------------------------------------------------
-
-# If the EXTRACT_ALL tag is set to YES, doxygen will assume all entities in
-# documentation are documented, even if no documentation was available. Private
-# class members and static file members will be hidden unless the
-# EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES.
-# Note: This will also disable the warnings about undocumented members that are
-# normally produced when WARNINGS is set to YES.
-# The default value is: NO.
-
-EXTRACT_ALL = NO
-
-# If the EXTRACT_PRIVATE tag is set to YES, all private members of a class will
-# be included in the documentation.
-# The default value is: NO.
-
-EXTRACT_PRIVATE = NO
-
-# If the EXTRACT_PRIV_VIRTUAL tag is set to YES, documented private virtual
-# methods of a class will be included in the documentation.
-# The default value is: NO.
-
-EXTRACT_PRIV_VIRTUAL = NO
-
-# If the EXTRACT_PACKAGE tag is set to YES, all members with package or internal
-# scope will be included in the documentation.
-# The default value is: NO.
-
-EXTRACT_PACKAGE = NO
-
-# If the EXTRACT_STATIC tag is set to YES, all static members of a file will be
-# included in the documentation.
-# The default value is: NO.
-
-EXTRACT_STATIC = NO
-
-# If the EXTRACT_LOCAL_CLASSES tag is set to YES, classes (and structs) defined
-# locally in source files will be included in the documentation. If set to NO,
-# only classes defined in header files are included. Does not have any effect
-# for Java sources.
-# The default value is: YES.
-
-EXTRACT_LOCAL_CLASSES = YES
-
-# This flag is only useful for Objective-C code. If set to YES, local methods,
-# which are defined in the implementation section but not in the interface are
-# included in the documentation. If set to NO, only methods in the interface are
-# included.
-# The default value is: NO.
-
-EXTRACT_LOCAL_METHODS = NO
-
-# If this flag is set to YES, the members of anonymous namespaces will be
-# extracted and appear in the documentation as a namespace called
-# 'anonymous_namespace{file}', where file will be replaced with the base name of
-# the file that contains the anonymous namespace. By default anonymous namespace
-# are hidden.
-# The default value is: NO.
-
-EXTRACT_ANON_NSPACES = NO
-
-# If this flag is set to YES, the name of an unnamed parameter in a declaration
-# will be determined by the corresponding definition. By default unnamed
-# parameters remain unnamed in the output.
-# The default value is: YES.
-
-RESOLVE_UNNAMED_PARAMS = YES
-
-# If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all
-# undocumented members inside documented classes or files. If set to NO these
-# members will be included in the various overviews, but no documentation
-# section is generated. This option has no effect if EXTRACT_ALL is enabled.
-# The default value is: NO.
-
-HIDE_UNDOC_MEMBERS = NO
-
-# If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all
-# undocumented classes that are normally visible in the class hierarchy. If set
-# to NO, these classes will be included in the various overviews. This option
-# has no effect if EXTRACT_ALL is enabled.
-# The default value is: NO.
-
-HIDE_UNDOC_CLASSES = NO
-
-# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend
-# declarations. If set to NO, these declarations will be included in the
-# documentation.
-# The default value is: NO.
-
-HIDE_FRIEND_COMPOUNDS = NO
-
-# If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any
-# documentation blocks found inside the body of a function. If set to NO, these
-# blocks will be appended to the function's detailed documentation block.
-# The default value is: NO.
-
-HIDE_IN_BODY_DOCS = NO
-
-# The INTERNAL_DOCS tag determines if documentation that is typed after a
-# \internal command is included. If the tag is set to NO then the documentation
-# will be excluded. Set it to YES to include the internal documentation.
-# The default value is: NO.
-
-INTERNAL_DOCS = NO
-
-# With the correct setting of option CASE_SENSE_NAMES doxygen will better be
-# able to match the capabilities of the underlying filesystem. In case the
-# filesystem is case sensitive (i.e. it supports files in the same directory
-# whose names only differ in casing), the option must be set to YES to properly
-# deal with such files in case they appear in the input. For filesystems that
-# are not case sensitive the option should be be set to NO to properly deal with
-# output files written for symbols that only differ in casing, such as for two
-# classes, one named CLASS and the other named Class, and to also support
-# references to files without having to specify the exact matching casing. On
-# Windows (including Cygwin) and MacOS, users should typically set this option
-# to NO, whereas on Linux or other Unix flavors it should typically be set to
-# YES.
-# The default value is: system dependent.
-
-CASE_SENSE_NAMES = NO
-
-# If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with
-# their full class and namespace scopes in the documentation. If set to YES, the
-# scope will be hidden.
-# The default value is: NO.
-
-HIDE_SCOPE_NAMES = NO
-
-# If the HIDE_COMPOUND_REFERENCE tag is set to NO (default) then doxygen will
-# append additional text to a page's title, such as Class Reference. If set to
-# YES the compound reference will be hidden.
-# The default value is: NO.
-
-HIDE_COMPOUND_REFERENCE= NO
-
-# If the SHOW_HEADERFILE tag is set to YES then the documentation for a class
-# will show which file needs to be included to use the class.
-# The default value is: YES.
-
-SHOW_HEADERFILE = YES
-
-# If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of
-# the files that are included by a file in the documentation of that file.
-# The default value is: YES.
-
-SHOW_INCLUDE_FILES = YES
-
-# If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each
-# grouped member an include statement to the documentation, telling the reader
-# which file to include in order to use the member.
-# The default value is: NO.
-
-SHOW_GROUPED_MEMB_INC = NO
-
-# If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include
-# files with double quotes in the documentation rather than with sharp brackets.
-# The default value is: NO.
-
-FORCE_LOCAL_INCLUDES = NO
-
-# If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the
-# documentation for inline members.
-# The default value is: YES.
-
-INLINE_INFO = YES
-
-# If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the
-# (detailed) documentation of file and class members alphabetically by member
-# name. If set to NO, the members will appear in declaration order.
-# The default value is: YES.
-
-SORT_MEMBER_DOCS = YES
-
-# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief
-# descriptions of file, namespace and class members alphabetically by member
-# name. If set to NO, the members will appear in declaration order. Note that
-# this will also influence the order of the classes in the class list.
-# The default value is: NO.
-
-SORT_BRIEF_DOCS = NO
-
-# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the
-# (brief and detailed) documentation of class members so that constructors and
-# destructors are listed first. If set to NO the constructors will appear in the
-# respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS.
-# Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief
-# member documentation.
-# Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting
-# detailed member documentation.
-# The default value is: NO.
-
-SORT_MEMBERS_CTORS_1ST = NO
-
-# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the hierarchy
-# of group names into alphabetical order. If set to NO the group names will
-# appear in their defined order.
-# The default value is: NO.
-
-SORT_GROUP_NAMES = NO
-
-# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by
-# fully-qualified names, including namespaces. If set to NO, the class list will
-# be sorted only by class name, not including the namespace part.
-# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES.
-# Note: This option applies only to the class list, not to the alphabetical
-# list.
-# The default value is: NO.
-
-SORT_BY_SCOPE_NAME = NO
-
-# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper
-# type resolution of all parameters of a function it will reject a match between
-# the prototype and the implementation of a member function even if there is
-# only one candidate or it is obvious which candidate to choose by doing a
-# simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still
-# accept a match between prototype and implementation in such cases.
-# The default value is: NO.
-
-STRICT_PROTO_MATCHING = NO
-
-# The GENERATE_TODOLIST tag can be used to enable (YES) or disable (NO) the todo
-# list. This list is created by putting \todo commands in the documentation.
-# The default value is: YES.
-
-GENERATE_TODOLIST = YES
-
-# The GENERATE_TESTLIST tag can be used to enable (YES) or disable (NO) the test
-# list. This list is created by putting \test commands in the documentation.
-# The default value is: YES.
-
-GENERATE_TESTLIST = YES
-
-# The GENERATE_BUGLIST tag can be used to enable (YES) or disable (NO) the bug
-# list. This list is created by putting \bug commands in the documentation.
-# The default value is: YES.
-
-GENERATE_BUGLIST = YES
-
-# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or disable (NO)
-# the deprecated list. This list is created by putting \deprecated commands in
-# the documentation.
-# The default value is: YES.
-
-GENERATE_DEPRECATEDLIST= YES
-
-# The ENABLED_SECTIONS tag can be used to enable conditional documentation
-# sections, marked by \if ... \endif and \cond
-# ... \endcond blocks.
-
-ENABLED_SECTIONS =
-
-# The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the
-# initial value of a variable or macro / define can have for it to appear in the
-# documentation. If the initializer consists of more lines than specified here
-# it will be hidden. Use a value of 0 to hide initializers completely. The
-# appearance of the value of individual variables and macros / defines can be
-# controlled using \showinitializer or \hideinitializer command in the
-# documentation regardless of this setting.
-# Minimum value: 0, maximum value: 10000, default value: 30.
-
-MAX_INITIALIZER_LINES = 30
-
-# Set the SHOW_USED_FILES tag to NO to disable the list of files generated at
-# the bottom of the documentation of classes and structs. If set to YES, the
-# list will mention the files that were used to generate the documentation.
-# The default value is: YES.
-
-SHOW_USED_FILES = YES
-
-# Set the SHOW_FILES tag to NO to disable the generation of the Files page. This
-# will remove the Files entry from the Quick Index and from the Folder Tree View
-# (if specified).
-# The default value is: YES.
-
-SHOW_FILES = YES
-
-# Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces
-# page. This will remove the Namespaces entry from the Quick Index and from the
-# Folder Tree View (if specified).
-# The default value is: YES.
-
-SHOW_NAMESPACES = YES
-
-# The FILE_VERSION_FILTER tag can be used to specify a program or script that
-# doxygen should invoke to get the current version for each file (typically from
-# the version control system). Doxygen will invoke the program by executing (via
-# popen()) the command command input-file, where command is the value of the
-# FILE_VERSION_FILTER tag, and input-file is the name of an input file provided
-# by doxygen. Whatever the program writes to standard output is used as the file
-# version. For an example see the documentation.
-
-FILE_VERSION_FILTER =
-
-# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed
-# by doxygen. The layout file controls the global structure of the generated
-# output files in an output format independent way. To create the layout file
-# that represents doxygen's defaults, run doxygen with the -l option. You can
-# optionally specify a file name after the option, if omitted DoxygenLayout.xml
-# will be used as the name of the layout file. See also section "Changing the
-# layout of pages" for information.
-#
-# Note that if you run doxygen from a directory containing a file called
-# DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE
-# tag is left empty.
-
-LAYOUT_FILE =
-
-# The CITE_BIB_FILES tag can be used to specify one or more bib files containing
-# the reference definitions. This must be a list of .bib files. The .bib
-# extension is automatically appended if omitted. This requires the bibtex tool
-# to be installed. See also https://en.wikipedia.org/wiki/BibTeX for more info.
-# For LaTeX the style of the bibliography can be controlled using
-# LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the
-# search path. See also \cite for info how to create references.
-
-CITE_BIB_FILES =
-
-#---------------------------------------------------------------------------
-# Configuration options related to warning and progress messages
-#---------------------------------------------------------------------------
-
-# The QUIET tag can be used to turn on/off the messages that are generated to
-# standard output by doxygen. If QUIET is set to YES this implies that the
-# messages are off.
-# The default value is: NO.
-
-QUIET = NO
-
-# The WARNINGS tag can be used to turn on/off the warning messages that are
-# generated to standard error (stderr) by doxygen. If WARNINGS is set to YES
-# this implies that the warnings are on.
-#
-# Tip: Turn warnings on while writing the documentation.
-# The default value is: YES.
-
-WARNINGS = YES
-
-# If the WARN_IF_UNDOCUMENTED tag is set to YES then doxygen will generate
-# warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag
-# will automatically be disabled.
-# The default value is: YES.
-
-WARN_IF_UNDOCUMENTED = YES
-
-# If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for
-# potential errors in the documentation, such as documenting some parameters in
-# a documented function twice, or documenting parameters that don't exist or
-# using markup commands wrongly.
-# The default value is: YES.
-
-WARN_IF_DOC_ERROR = YES
-
-# If WARN_IF_INCOMPLETE_DOC is set to YES, doxygen will warn about incomplete
-# function parameter documentation. If set to NO, doxygen will accept that some
-# parameters have no documentation without warning.
-# The default value is: YES.
-
-WARN_IF_INCOMPLETE_DOC = YES
-
-# This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that
-# are documented, but have no documentation for their parameters or return
-# value. If set to NO, doxygen will only warn about wrong parameter
-# documentation, but not about the absence of documentation. If EXTRACT_ALL is
-# set to YES then this flag will automatically be disabled. See also
-# WARN_IF_INCOMPLETE_DOC
-# The default value is: NO.
-
-WARN_NO_PARAMDOC = NO
-
-# If the WARN_AS_ERROR tag is set to YES then doxygen will immediately stop when
-# a warning is encountered. If the WARN_AS_ERROR tag is set to FAIL_ON_WARNINGS
-# then doxygen will continue running as if WARN_AS_ERROR tag is set to NO, but
-# at the end of the doxygen process doxygen will return with a non-zero status.
-# Possible values are: NO, YES and FAIL_ON_WARNINGS.
-# The default value is: NO.
-
-WARN_AS_ERROR = NO
-
-# The WARN_FORMAT tag determines the format of the warning messages that doxygen
-# can produce. The string should contain the $file, $line, and $text tags, which
-# will be replaced by the file and line number from which the warning originated
-# and the warning text. Optionally the format may contain $version, which will
-# be replaced by the version of the file (if it could be obtained via
-# FILE_VERSION_FILTER)
-# The default value is: $file:$line: $text.
-
-WARN_FORMAT = "$file:$line: $text"
-
-# The WARN_LOGFILE tag can be used to specify a file to which warning and error
-# messages should be written. If left blank the output is written to standard
-# error (stderr). In case the file specified cannot be opened for writing the
-# warning and error messages are written to standard error. When as file - is
-# specified the warning and error messages are written to standard output
-# (stdout).
-
-WARN_LOGFILE =
-
-#---------------------------------------------------------------------------
-# Configuration options related to the input files
-#---------------------------------------------------------------------------
-
-# The INPUT tag is used to specify the files and/or directories that contain
-# documented source files. You may enter file names like myfile.cpp or
-# directories like /usr/src/myproject. Separate the files or directories with
-# spaces. See also FILE_PATTERNS and EXTENSION_MAPPING
-# Note: If this tag is empty the current directory is searched.
-
-INPUT = src/rmb docs/additional/pancakerecipe.md docs/building.md docs/doxygen.h
-
-# This tag can be used to specify the character encoding of the source files
-# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses
-# libiconv (or the iconv built into libc) for the transcoding. See the libiconv
-# documentation (see:
-# https://www.gnu.org/software/libiconv/) for the list of possible encodings.
-# The default value is: UTF-8.
-
-INPUT_ENCODING = UTF-8
-
-# If the value of the INPUT tag contains directories, you can use the
-# FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and
-# *.h) to filter out the source-files in the directories.
-#
-# Note that for custom extensions or not directly supported extensions you also
-# need to set EXTENSION_MAPPING for the extension otherwise the files are not
-# read by doxygen.
-#
-# Note the list of default checked file patterns might differ from the list of
-# default file extension mappings.
-#
-# If left blank the following patterns are tested:*.c, *.cc, *.cxx, *.cpp,
-# *.c++, *.java, *.ii, *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h,
-# *.hh, *.hxx, *.hpp, *.h++, *.l, *.cs, *.d, *.php, *.php4, *.php5, *.phtml,
-# *.inc, *.m, *.markdown, *.md, *.mm, *.dox (to be provided as doxygen C
-# comment), *.py, *.pyw, *.f90, *.f95, *.f03, *.f08, *.f18, *.f, *.for, *.vhd,
-# *.vhdl, *.ucf, *.qsf and *.ice.
-
-# FILE_PATTERNS = *.c \
-# *.cc \
-# *.cxx \
-# *.cpp \
-# *.c++ \
-FILE_PATTERNS = *.java \
- *.ii \
- *.ixx \
- *.ipp \
- *.i++ \
- *.inl \
- *.idl \
- *.ddl \
- *.odl \
- *.h \
- *.hh \
- *.hxx \
- *.hpp \
- *.h++ \
- *.l \
- *.cs \
- *.d \
- *.php \
- *.php4 \
- *.php5 \
- *.phtml \
- *.inc \
- *.m \
- *.markdown \
- *.md \
- *.mm \
- *.dox \
- *.py \
- *.pyw \
- *.f90 \
- *.f95 \
- *.f03 \
- *.f08 \
- *.f18 \
- *.f \
- *.for \
- *.vhd \
- *.vhdl \
- *.ucf \
- *.qsf \
- *.ice
-
-# The RECURSIVE tag can be used to specify whether or not subdirectories should
-# be searched for input files as well.
-# The default value is: NO.
-
-RECURSIVE = YES
-
-# The EXCLUDE tag can be used to specify files and/or directories that should be
-# excluded from the INPUT source files. This way you can easily exclude a
-# subdirectory from a directory tree whose root is specified with the INPUT tag.
-#
-# Note that relative paths are relative to the directory from which doxygen is
-# run.
-
-EXCLUDE =
-
-# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or
-# directories that are symbolic links (a Unix file system feature) are excluded
-# from the input.
-# The default value is: NO.
-
-EXCLUDE_SYMLINKS = NO
-
-# If the value of the INPUT tag contains directories, you can use the
-# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude
-# certain files from those directories.
-#
-# Note that the wildcards are matched against the file with absolute path, so to
-# exclude all test directories for example use the pattern */test/*
-
-EXCLUDE_PATTERNS =
-
-# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names
-# (namespaces, classes, functions, etc.) that should be excluded from the
-# output. The symbol name can be a fully qualified name, a word, or if the
-# wildcard * is used, a substring. Examples: ANamespace, AClass,
-# ANamespace::AClass, ANamespace::*Test
-#
-# Note that the wildcards are matched against the file with absolute path, so to
-# exclude all test directories use the pattern */test/*
-
-EXCLUDE_SYMBOLS =
-
-# The EXAMPLE_PATH tag can be used to specify one or more files or directories
-# that contain example code fragments that are included (see the \include
-# command).
-
-EXAMPLE_PATH =
-
-# If the value of the EXAMPLE_PATH tag contains directories, you can use the
-# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and
-# *.h) to filter out the source-files in the directories. If left blank all
-# files are included.
-
-EXAMPLE_PATTERNS = *
-
-# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be
-# searched for input files to be used with the \include or \dontinclude commands
-# irrespective of the value of the RECURSIVE tag.
-# The default value is: NO.
-
-EXAMPLE_RECURSIVE = NO
-
-# The IMAGE_PATH tag can be used to specify one or more files or directories
-# that contain images that are to be included in the documentation (see the
-# \image command).
-
-IMAGE_PATH =
-
-# The INPUT_FILTER tag can be used to specify a program that doxygen should
-# invoke to filter for each input file. Doxygen will invoke the filter program
-# by executing (via popen()) the command:
-#
-#
-#
-# where is the value of the INPUT_FILTER tag, and is the
-# name of an input file. Doxygen will then use the output that the filter
-# program writes to standard output. If FILTER_PATTERNS is specified, this tag
-# will be ignored.
-#
-# Note that the filter must not add or remove lines; it is applied before the
-# code is scanned, but not when the output code is generated. If lines are added
-# or removed, the anchors will not be placed correctly.
-#
-# Note that for custom extensions or not directly supported extensions you also
-# need to set EXTENSION_MAPPING for the extension otherwise the files are not
-# properly processed by doxygen.
-
-INPUT_FILTER =
-
-# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern
-# basis. Doxygen will compare the file name with each pattern and apply the
-# filter if there is a match. The filters are a list of the form: pattern=filter
-# (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how
-# filters are used. If the FILTER_PATTERNS tag is empty or if none of the
-# patterns match the file name, INPUT_FILTER is applied.
-#
-# Note that for custom extensions or not directly supported extensions you also
-# need to set EXTENSION_MAPPING for the extension otherwise the files are not
-# properly processed by doxygen.
-
-FILTER_PATTERNS =
-
-# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using
-# INPUT_FILTER) will also be used to filter the input files that are used for
-# producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES).
-# The default value is: NO.
-
-FILTER_SOURCE_FILES = NO
-
-# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file
-# pattern. A pattern will override the setting for FILTER_PATTERN (if any) and
-# it is also possible to disable source filtering for a specific pattern using
-# *.ext= (so without naming a filter).
-# This tag requires that the tag FILTER_SOURCE_FILES is set to YES.
-
-FILTER_SOURCE_PATTERNS =
-
-# If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that
-# is part of the input, its contents will be placed on the main page
-# (index.html). This can be useful if you have a project on for instance GitHub
-# and want to reuse the introduction page also for the doxygen output.
-
-INPUT += "README.md"
-USE_MDFILE_AS_MAINPAGE = "README.md"
-
-#---------------------------------------------------------------------------
-# Configuration options related to source browsing
-#---------------------------------------------------------------------------
-
-# If the SOURCE_BROWSER tag is set to YES then a list of source files will be
-# generated. Documented entities will be cross-referenced with these sources.
-#
-# Note: To get rid of all source code in the generated output, make sure that
-# also VERBATIM_HEADERS is set to NO.
-# The default value is: NO.
-
-SOURCE_BROWSER = NO
-
-# Setting the INLINE_SOURCES tag to YES will include the body of functions,
-# classes and enums directly into the documentation.
-# The default value is: NO.
-
-INLINE_SOURCES = NO
-
-# Setting the STRIP_CODE_COMMENTS tag to YES will instruct doxygen to hide any
-# special comment blocks from generated source code fragments. Normal C, C++ and
-# Fortran comments will always remain visible.
-# The default value is: YES.
-
-STRIP_CODE_COMMENTS = YES
-
-# If the REFERENCED_BY_RELATION tag is set to YES then for each documented
-# entity all documented functions referencing it will be listed.
-# The default value is: NO.
-
-REFERENCED_BY_RELATION = NO
-
-# If the REFERENCES_RELATION tag is set to YES then for each documented function
-# all documented entities called/used by that function will be listed.
-# The default value is: NO.
-
-REFERENCES_RELATION = NO
-
-# If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set
-# to YES then the hyperlinks from functions in REFERENCES_RELATION and
-# REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will
-# link to the documentation.
-# The default value is: YES.
-
-REFERENCES_LINK_SOURCE = YES
-
-# If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the
-# source code will show a tooltip with additional information such as prototype,
-# brief description and links to the definition and documentation. Since this
-# will make the HTML file larger and loading of large files a bit slower, you
-# can opt to disable this feature.
-# The default value is: YES.
-# This tag requires that the tag SOURCE_BROWSER is set to YES.
-
-SOURCE_TOOLTIPS = YES
-
-# If the USE_HTAGS tag is set to YES then the references to source code will
-# point to the HTML generated by the htags(1) tool instead of doxygen built-in
-# source browser. The htags tool is part of GNU's global source tagging system
-# (see https://www.gnu.org/software/global/global.html). You will need version
-# 4.8.6 or higher.
-#
-# To use it do the following:
-# - Install the latest version of global
-# - Enable SOURCE_BROWSER and USE_HTAGS in the configuration file
-# - Make sure the INPUT points to the root of the source tree
-# - Run doxygen as normal
-#
-# Doxygen will invoke htags (and that will in turn invoke gtags), so these
-# tools must be available from the command line (i.e. in the search path).
-#
-# The result: instead of the source browser generated by doxygen, the links to
-# source code will now point to the output of htags.
-# The default value is: NO.
-# This tag requires that the tag SOURCE_BROWSER is set to YES.
-
-USE_HTAGS = NO
-
-# If the VERBATIM_HEADERS tag is set the YES then doxygen will generate a
-# verbatim copy of the header file for each class for which an include is
-# specified. Set to NO to disable this.
-# See also: Section \class.
-# The default value is: YES.
-
-VERBATIM_HEADERS = YES
-
-#---------------------------------------------------------------------------
-# Configuration options related to the alphabetical class index
-#---------------------------------------------------------------------------
-
-# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all
-# compounds will be generated. Enable this if the project contains a lot of
-# classes, structs, unions or interfaces.
-# The default value is: YES.
-
-ALPHABETICAL_INDEX = YES
-
-# In case all classes in a project start with a common prefix, all classes will
-# be put under the same header in the alphabetical index. The IGNORE_PREFIX tag
-# can be used to specify a prefix (or a list of prefixes) that should be ignored
-# while generating the index headers.
-# This tag requires that the tag ALPHABETICAL_INDEX is set to YES.
-
-IGNORE_PREFIX =
-
-#---------------------------------------------------------------------------
-# Configuration options related to the HTML output
-#---------------------------------------------------------------------------
-
-# If the GENERATE_HTML tag is set to YES, doxygen will generate HTML output
-# The default value is: YES.
-
-GENERATE_HTML = YES
-
-# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a
-# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
-# it.
-# The default directory is: html.
-# This tag requires that the tag GENERATE_HTML is set to YES.
-
-HTML_OUTPUT = docs/html
-
-# The HTML_FILE_EXTENSION tag can be used to specify the file extension for each
-# generated HTML page (for example: .htm, .php, .asp).
-# The default value is: .html.
-# This tag requires that the tag GENERATE_HTML is set to YES.
-
-HTML_FILE_EXTENSION = .html
-
-# The HTML_HEADER tag can be used to specify a user-defined HTML header file for
-# each generated HTML page. If the tag is left blank doxygen will generate a
-# standard header.
-#
-# To get valid HTML the header file that includes any scripts and style sheets
-# that doxygen needs, which is dependent on the configuration options used (e.g.
-# the setting GENERATE_TREEVIEW). It is highly recommended to start with a
-# default header using
-# doxygen -w html new_header.html new_footer.html new_stylesheet.css
-# YourConfigFile
-# and then modify the file new_header.html. See also section "Doxygen usage"
-# for information on how to generate the default header that doxygen normally
-# uses.
-# Note: The header is subject to change so you typically have to regenerate the
-# default header when upgrading to a newer version of doxygen. For a description
-# of the possible markers and block names see the documentation.
-# This tag requires that the tag GENERATE_HTML is set to YES.
-
-HTML_HEADER =
-
-# The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each
-# generated HTML page. If the tag is left blank doxygen will generate a standard
-# footer. See HTML_HEADER for more information on how to generate a default
-# footer and what special commands can be used inside the footer. See also
-# section "Doxygen usage" for information on how to generate the default footer
-# that doxygen normally uses.
-# This tag requires that the tag GENERATE_HTML is set to YES.
-
-HTML_FOOTER =
-
-# The HTML_STYLESHEET tag can be used to specify a user-defined cascading style
-# sheet that is used by each HTML page. It can be used to fine-tune the look of
-# the HTML output. If left blank doxygen will generate a default style sheet.
-# See also section "Doxygen usage" for information on how to generate the style
-# sheet that doxygen normally uses.
-# Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as
-# it is more robust and this tag (HTML_STYLESHEET) will in the future become
-# obsolete.
-# This tag requires that the tag GENERATE_HTML is set to YES.
-
-HTML_EXTRA_STYLESHEET = docs/doxygen-awesome.css
-
-# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or
-# other source files which should be copied to the HTML output directory. Note
-# that these files will be copied to the base HTML output directory. Use the
-# $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these
-# files. In the HTML_STYLESHEET file, use the file name only. Also note that the
-# files will be copied as-is; there are no commands or markers available.
-# This tag requires that the tag GENERATE_HTML is set to YES.
-
-HTML_EXTRA_FILES =
-
-# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen
-# will adjust the colors in the style sheet and background images according to
-# this color. Hue is specified as an angle on a color-wheel, see
-# https://en.wikipedia.org/wiki/Hue for more information. For instance the value
-# 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300
-# purple, and 360 is red again.
-# Minimum value: 0, maximum value: 359, default value: 220.
-# This tag requires that the tag GENERATE_HTML is set to YES.
-
-HTML_COLORSTYLE_HUE = 220
-
-# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors
-# in the HTML output. For a value of 0 the output will use gray-scales only. A
-# value of 255 will produce the most vivid colors.
-# Minimum value: 0, maximum value: 255, default value: 100.
-# This tag requires that the tag GENERATE_HTML is set to YES.
-
-HTML_COLORSTYLE_SAT = 100
-
-# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the
-# luminance component of the colors in the HTML output. Values below 100
-# gradually make the output lighter, whereas values above 100 make the output
-# darker. The value divided by 100 is the actual gamma applied, so 80 represents
-# a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not
-# change the gamma.
-# Minimum value: 40, maximum value: 240, default value: 80.
-# This tag requires that the tag GENERATE_HTML is set to YES.
-
-HTML_COLORSTYLE_GAMMA = 80
-
-# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML
-# page will contain the date and time when the page was generated. Setting this
-# to YES can help to show when doxygen was last run and thus if the
-# documentation is up to date.
-# The default value is: NO.
-# This tag requires that the tag GENERATE_HTML is set to YES.
-
-HTML_TIMESTAMP = NO
-
-# If the HTML_DYNAMIC_MENUS tag is set to YES then the generated HTML
-# documentation will contain a main index with vertical navigation menus that
-# are dynamically created via JavaScript. If disabled, the navigation index will
-# consists of multiple levels of tabs that are statically embedded in every HTML
-# page. Disable this option to support browsers that do not have JavaScript,
-# like the Qt help browser.
-# The default value is: YES.
-# This tag requires that the tag GENERATE_HTML is set to YES.
-
-HTML_DYNAMIC_MENUS = YES
-
-# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML
-# documentation will contain sections that can be hidden and shown after the
-# page has loaded.
-# The default value is: NO.
-# This tag requires that the tag GENERATE_HTML is set to YES.
-
-HTML_DYNAMIC_SECTIONS = NO
-
-# With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries
-# shown in the various tree structured indices initially; the user can expand
-# and collapse entries dynamically later on. Doxygen will expand the tree to
-# such a level that at most the specified number of entries are visible (unless
-# a fully collapsed tree already exceeds this amount). So setting the number of
-# entries 1 will produce a full collapsed tree by default. 0 is a special value
-# representing an infinite number of entries and will result in a full expanded
-# tree by default.
-# Minimum value: 0, maximum value: 9999, default value: 100.
-# This tag requires that the tag GENERATE_HTML is set to YES.
-
-HTML_INDEX_NUM_ENTRIES = 100
-
-# If the GENERATE_DOCSET tag is set to YES, additional index files will be
-# generated that can be used as input for Apple's Xcode 3 integrated development
-# environment (see:
-# https://developer.apple.com/xcode/), introduced with OSX 10.5 (Leopard). To
-# create a documentation set, doxygen will generate a Makefile in the HTML
-# output directory. Running make will produce the docset in that directory and
-# running make install will install the docset in
-# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at
-# startup. See https://developer.apple.com/library/archive/featuredarticles/Doxy
-# genXcode/_index.html for more information.
-# The default value is: NO.
-# This tag requires that the tag GENERATE_HTML is set to YES.
-
-GENERATE_DOCSET = NO
-
-# This tag determines the name of the docset feed. A documentation feed provides
-# an umbrella under which multiple documentation sets from a single provider
-# (such as a company or product suite) can be grouped.
-# The default value is: Doxygen generated docs.
-# This tag requires that the tag GENERATE_DOCSET is set to YES.
-
-DOCSET_FEEDNAME = "Doxygen generated docs"
-
-# This tag determines the URL of the docset feed. A documentation feed provides
-# an umbrella under which multiple documentation sets from a single provider
-# (such as a company or product suite) can be grouped.
-# This tag requires that the tag GENERATE_DOCSET is set to YES.
-
-DOCSET_FEEDURL =
-
-# This tag specifies a string that should uniquely identify the documentation
-# set bundle. This should be a reverse domain-name style string, e.g.
-# com.mycompany.MyDocSet. Doxygen will append .docset to the name.
-# The default value is: org.doxygen.Project.
-# This tag requires that the tag GENERATE_DOCSET is set to YES.
-
-DOCSET_BUNDLE_ID = org.doxygen.Project
-
-# The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify
-# the documentation publisher. This should be a reverse domain-name style
-# string, e.g. com.mycompany.MyDocSet.documentation.
-# The default value is: org.doxygen.Publisher.
-# This tag requires that the tag GENERATE_DOCSET is set to YES.
-
-DOCSET_PUBLISHER_ID = org.doxygen.Publisher
-
-# The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher.
-# The default value is: Publisher.
-# This tag requires that the tag GENERATE_DOCSET is set to YES.
-
-DOCSET_PUBLISHER_NAME = Publisher
-
-# If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three
-# additional HTML index files: index.hhp, index.hhc, and index.hhk. The
-# index.hhp is a project file that can be read by Microsoft's HTML Help Workshop
-# on Windows. In the beginning of 2021 Microsoft took the original page, with
-# a.o. the download links, offline the HTML help workshop was already many years
-# in maintenance mode). You can download the HTML help workshop from the web
-# archives at Installation executable (see:
-# http://web.archive.org/web/20160201063255/http://download.microsoft.com/downlo
-# ad/0/A/9/0A939EF6-E31C-430F-A3DF-DFAE7960D564/htmlhelp.exe).
-#
-# The HTML Help Workshop contains a compiler that can convert all HTML output
-# generated by doxygen into a single compiled HTML file (.chm). Compiled HTML
-# files are now used as the Windows 98 help format, and will replace the old
-# Windows help format (.hlp) on all Windows platforms in the future. Compressed
-# HTML files also contain an index, a table of contents, and you can search for
-# words in the documentation. The HTML workshop also contains a viewer for
-# compressed HTML files.
-# The default value is: NO.
-# This tag requires that the tag GENERATE_HTML is set to YES.
-
-GENERATE_HTMLHELP = NO
-
-# The CHM_FILE tag can be used to specify the file name of the resulting .chm
-# file. You can add a path in front of the file if the result should not be
-# written to the html output directory.
-# This tag requires that the tag GENERATE_HTMLHELP is set to YES.
-
-CHM_FILE =
-
-# The HHC_LOCATION tag can be used to specify the location (absolute path
-# including file name) of the HTML help compiler (hhc.exe). If non-empty,
-# doxygen will try to run the HTML help compiler on the generated index.hhp.
-# The file has to be specified with full path.
-# This tag requires that the tag GENERATE_HTMLHELP is set to YES.
-
-HHC_LOCATION =
-
-# The GENERATE_CHI flag controls if a separate .chi index file is generated
-# (YES) or that it should be included in the main .chm file (NO).
-# The default value is: NO.
-# This tag requires that the tag GENERATE_HTMLHELP is set to YES.
-
-GENERATE_CHI = NO
-
-# The CHM_INDEX_ENCODING is used to encode HtmlHelp index (hhk), content (hhc)
-# and project file content.
-# This tag requires that the tag GENERATE_HTMLHELP is set to YES.
-
-CHM_INDEX_ENCODING =
-
-# The BINARY_TOC flag controls whether a binary table of contents is generated
-# (YES) or a normal table of contents (NO) in the .chm file. Furthermore it
-# enables the Previous and Next buttons.
-# The default value is: NO.
-# This tag requires that the tag GENERATE_HTMLHELP is set to YES.
-
-BINARY_TOC = NO
-
-# The TOC_EXPAND flag can be set to YES to add extra items for group members to
-# the table of contents of the HTML help documentation and to the tree view.
-# The default value is: NO.
-# This tag requires that the tag GENERATE_HTMLHELP is set to YES.
-
-TOC_EXPAND = NO
-
-# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and
-# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that
-# can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help
-# (.qch) of the generated HTML documentation.
-# The default value is: NO.
-# This tag requires that the tag GENERATE_HTML is set to YES.
-
-GENERATE_QHP = NO
-
-# If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify
-# the file name of the resulting .qch file. The path specified is relative to
-# the HTML output folder.
-# This tag requires that the tag GENERATE_QHP is set to YES.
-
-QCH_FILE =
-
-# The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help
-# Project output. For more information please see Qt Help Project / Namespace
-# (see:
-# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#namespace).
-# The default value is: org.doxygen.Project.
-# This tag requires that the tag GENERATE_QHP is set to YES.
-
-QHP_NAMESPACE = org.doxygen.Project
-
-# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt
-# Help Project output. For more information please see Qt Help Project / Virtual
-# Folders (see:
-# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#virtual-folders).
-# The default value is: doc.
-# This tag requires that the tag GENERATE_QHP is set to YES.
-
-QHP_VIRTUAL_FOLDER = doc
-
-# If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom
-# filter to add. For more information please see Qt Help Project / Custom
-# Filters (see:
-# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#custom-filters).
-# This tag requires that the tag GENERATE_QHP is set to YES.
-
-QHP_CUST_FILTER_NAME =
-
-# The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the
-# custom filter to add. For more information please see Qt Help Project / Custom
-# Filters (see:
-# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#custom-filters).
-# This tag requires that the tag GENERATE_QHP is set to YES.
-
-QHP_CUST_FILTER_ATTRS =
-
-# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this
-# project's filter section matches. Qt Help Project / Filter Attributes (see:
-# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#filter-attributes).
-# This tag requires that the tag GENERATE_QHP is set to YES.
-
-QHP_SECT_FILTER_ATTRS =
-
-# The QHG_LOCATION tag can be used to specify the location (absolute path
-# including file name) of Qt's qhelpgenerator. If non-empty doxygen will try to
-# run qhelpgenerator on the generated .qhp file.
-# This tag requires that the tag GENERATE_QHP is set to YES.
-
-QHG_LOCATION =
-
-# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be
-# generated, together with the HTML files, they form an Eclipse help plugin. To
-# install this plugin and make it available under the help contents menu in
-# Eclipse, the contents of the directory containing the HTML and XML files needs
-# to be copied into the plugins directory of eclipse. The name of the directory
-# within the plugins directory should be the same as the ECLIPSE_DOC_ID value.
-# After copying Eclipse needs to be restarted before the help appears.
-# The default value is: NO.
-# This tag requires that the tag GENERATE_HTML is set to YES.
-
-GENERATE_ECLIPSEHELP = NO
-
-# A unique identifier for the Eclipse help plugin. When installing the plugin
-# the directory name containing the HTML and XML files should also have this
-# name. Each documentation set should have its own identifier.
-# The default value is: org.doxygen.Project.
-# This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES.
-
-ECLIPSE_DOC_ID = org.doxygen.Project
-
-# If you want full control over the layout of the generated HTML pages it might
-# be necessary to disable the index and replace it with your own. The
-# DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top
-# of each HTML page. A value of NO enables the index and the value YES disables
-# it. Since the tabs in the index contain the same information as the navigation
-# tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES.
-# The default value is: NO.
-# This tag requires that the tag GENERATE_HTML is set to YES.
-
-DISABLE_INDEX = NO
-
-# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index
-# structure should be generated to display hierarchical information. If the tag
-# value is set to YES, a side panel will be generated containing a tree-like
-# index structure (just like the one that is generated for HTML Help). For this
-# to work a browser that supports JavaScript, DHTML, CSS and frames is required
-# (i.e. any modern browser). Windows users are probably better off using the
-# HTML help feature. Via custom style sheets (see HTML_EXTRA_STYLESHEET) one can
-# further fine tune the look of the index (see "Fine-tuning the output"). As an
-# example, the default style sheet generated by doxygen has an example that
-# shows how to put an image at the root of the tree instead of the PROJECT_NAME.
-# Since the tree basically has the same information as the tab index, you could
-# consider setting DISABLE_INDEX to YES when enabling this option.
-# The default value is: NO.
-# This tag requires that the tag GENERATE_HTML is set to YES.
-
-GENERATE_TREEVIEW = YES
-
-# When both GENERATE_TREEVIEW and DISABLE_INDEX are set to YES, then the
-# FULL_SIDEBAR option determines if the side bar is limited to only the treeview
-# area (value NO) or if it should extend to the full height of the window (value
-# YES). Setting this to YES gives a layout similar to
-# https://docs.readthedocs.io with more room for contents, but less room for the
-# project logo, title, and description. If either GENERATE_TREEVIEW or
-# DISABLE_INDEX is set to NO, this option has no effect.
-# The default value is: NO.
-# This tag requires that the tag GENERATE_HTML is set to YES.
-
-FULL_SIDEBAR = NO
-
-# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that
-# doxygen will group on one line in the generated HTML documentation.
-#
-# Note that a value of 0 will completely suppress the enum values from appearing
-# in the overview section.
-# Minimum value: 0, maximum value: 20, default value: 4.
-# This tag requires that the tag GENERATE_HTML is set to YES.
-
-ENUM_VALUES_PER_LINE = 4
-
-# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used
-# to set the initial width (in pixels) of the frame in which the tree is shown.
-# Minimum value: 0, maximum value: 1500, default value: 250.
-# This tag requires that the tag GENERATE_HTML is set to YES.
-
-TREEVIEW_WIDTH = 250
-
-# If the EXT_LINKS_IN_WINDOW option is set to YES, doxygen will open links to
-# external symbols imported via tag files in a separate window.
-# The default value is: NO.
-# This tag requires that the tag GENERATE_HTML is set to YES.
-
-EXT_LINKS_IN_WINDOW = NO
-
-# If the OBFUSCATE_EMAILS tag is set to YES, doxygen will obfuscate email
-# addresses.
-# The default value is: YES.
-# This tag requires that the tag GENERATE_HTML is set to YES.
-
-OBFUSCATE_EMAILS = YES
-
-# If the HTML_FORMULA_FORMAT option is set to svg, doxygen will use the pdf2svg
-# tool (see https://github.com/dawbarton/pdf2svg) or inkscape (see
-# https://inkscape.org) to generate formulas as SVG images instead of PNGs for
-# the HTML output. These images will generally look nicer at scaled resolutions.
-# Possible values are: png (the default) and svg (looks nicer but requires the
-# pdf2svg or inkscape tool).
-# The default value is: png.
-# This tag requires that the tag GENERATE_HTML is set to YES.
-
-HTML_FORMULA_FORMAT = png
-
-# Use this tag to change the font size of LaTeX formulas included as images in
-# the HTML documentation. When you change the font size after a successful
-# doxygen run you need to manually remove any form_*.png images from the HTML
-# output directory to force them to be regenerated.
-# Minimum value: 8, maximum value: 50, default value: 10.
-# This tag requires that the tag GENERATE_HTML is set to YES.
-
-FORMULA_FONTSIZE = 10
-
-# Use the FORMULA_TRANSPARENT tag to determine whether or not the images
-# generated for formulas are transparent PNGs. Transparent PNGs are not
-# supported properly for IE 6.0, but are supported on all modern browsers.
-#
-# Note that when changing this option you need to delete any form_*.png files in
-# the HTML output directory before the changes have effect.
-# The default value is: YES.
-# This tag requires that the tag GENERATE_HTML is set to YES.
-
-FORMULA_TRANSPARENT = YES
-
-# The FORMULA_MACROFILE can contain LaTeX \newcommand and \renewcommand commands
-# to create new LaTeX commands to be used in formulas as building blocks. See
-# the section "Including formulas" for details.
-
-FORMULA_MACROFILE =
-
-# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see
-# https://www.mathjax.org) which uses client side JavaScript for the rendering
-# instead of using pre-rendered bitmaps. Use this if you do not have LaTeX
-# installed or if you want to formulas look prettier in the HTML output. When
-# enabled you may also need to install MathJax separately and configure the path
-# to it using the MATHJAX_RELPATH option.
-# The default value is: NO.
-# This tag requires that the tag GENERATE_HTML is set to YES.
-
-USE_MATHJAX = YES
-
-# With MATHJAX_VERSION it is possible to specify the MathJax version to be used.
-# Note that the different versions of MathJax have different requirements with
-# regards to the different settings, so it is possible that also other MathJax
-# settings have to be changed when switching between the different MathJax
-# versions.
-# Possible values are: MathJax_2 and MathJax_3.
-# The default value is: MathJax_2.
-# This tag requires that the tag USE_MATHJAX is set to YES.
-
-MATHJAX_VERSION = MathJax_3
-
-# When MathJax is enabled you can set the default output format to be used for
-# the MathJax output. For more details about the output format see MathJax
-# version 2 (see:
-# http://docs.mathjax.org/en/v2.7-latest/output.html) and MathJax version 3
-# (see:
-# http://docs.mathjax.org/en/latest/web/components/output.html).
-# Possible values are: HTML-CSS (which is slower, but has the best
-# compatibility. This is the name for Mathjax version 2, for MathJax version 3
-# this will be translated into chtml), NativeMML (i.e. MathML. Only supported
-# for NathJax 2. For MathJax version 3 chtml will be used instead.), chtml (This
-# is the name for Mathjax version 3, for MathJax version 2 this will be
-# translated into HTML-CSS) and SVG.
-# The default value is: HTML-CSS.
-# This tag requires that the tag USE_MATHJAX is set to YES.
-
-MATHJAX_FORMAT = HTML-CSS
-
-# When MathJax is enabled you need to specify the location relative to the HTML
-# output directory using the MATHJAX_RELPATH option. The destination directory
-# should contain the MathJax.js script. For instance, if the mathjax directory
-# is located at the same level as the HTML output directory, then
-# MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax
-# Content Delivery Network so you can quickly see the result without installing
-# MathJax. However, it is strongly recommended to install a local copy of
-# MathJax from https://www.mathjax.org before deployment. The default value is:
-# - in case of MathJax version 2: https://cdn.jsdelivr.net/npm/mathjax@2
-# - in case of MathJax version 3: https://cdn.jsdelivr.net/npm/mathjax@3
-# This tag requires that the tag USE_MATHJAX is set to YES.
-
-MATHJAX_RELPATH =
-
-# The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax
-# extension names that should be enabled during MathJax rendering. For example
-# for MathJax version 2 (see https://docs.mathjax.org/en/v2.7-latest/tex.html
-# #tex-and-latex-extensions):
-# MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols
-# For example for MathJax version 3 (see
-# http://docs.mathjax.org/en/latest/input/tex/extensions/index.html):
-# MATHJAX_EXTENSIONS = ams
-# This tag requires that the tag USE_MATHJAX is set to YES.
-
-MATHJAX_EXTENSIONS =
-
-# The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces
-# of code that will be used on startup of the MathJax code. See the MathJax site
-# (see:
-# http://docs.mathjax.org/en/v2.7-latest/output.html) for more details. For an
-# example see the documentation.
-# This tag requires that the tag USE_MATHJAX is set to YES.
-
-MATHJAX_CODEFILE =
-
-# When the SEARCHENGINE tag is enabled doxygen will generate a search box for
-# the HTML output. The underlying search engine uses javascript and DHTML and
-# should work on any modern browser. Note that when using HTML help
-# (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET)
-# there is already a search function so this one should typically be disabled.
-# For large projects the javascript based search engine can be slow, then
-# enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to
-# search using the keyboard; to jump to the search box use + S
-# (what the is depends on the OS and browser, but it is typically
-# , /, or both). Inside the search box use the to jump into the search results window, the results can be navigated
-# using the . Press to select an item or to cancel
-# the search. The filter options can be selected when the cursor is inside the
-# search box by pressing +. Also here use the
-# to select a filter and or to activate or cancel the filter
-# option.
-# The default value is: YES.
-# This tag requires that the tag GENERATE_HTML is set to YES.
-
-SEARCHENGINE = YES
-
-# When the SERVER_BASED_SEARCH tag is enabled the search engine will be
-# implemented using a web server instead of a web client using JavaScript. There
-# are two flavors of web server based searching depending on the EXTERNAL_SEARCH
-# setting. When disabled, doxygen will generate a PHP script for searching and
-# an index file used by the script. When EXTERNAL_SEARCH is enabled the indexing
-# and searching needs to be provided by external tools. See the section
-# "External Indexing and Searching" for details.
-# The default value is: NO.
-# This tag requires that the tag SEARCHENGINE is set to YES.
-
-SERVER_BASED_SEARCH = NO
-
-# When EXTERNAL_SEARCH tag is enabled doxygen will no longer generate the PHP
-# script for searching. Instead the search results are written to an XML file
-# which needs to be processed by an external indexer. Doxygen will invoke an
-# external search engine pointed to by the SEARCHENGINE_URL option to obtain the
-# search results.
-#
-# Doxygen ships with an example indexer (doxyindexer) and search engine
-# (doxysearch.cgi) which are based on the open source search engine library
-# Xapian (see:
-# https://xapian.org/).
-#
-# See the section "External Indexing and Searching" for details.
-# The default value is: NO.
-# This tag requires that the tag SEARCHENGINE is set to YES.
-
-EXTERNAL_SEARCH = NO
-
-# The SEARCHENGINE_URL should point to a search engine hosted by a web server
-# which will return the search results when EXTERNAL_SEARCH is enabled.
-#
-# Doxygen ships with an example indexer (doxyindexer) and search engine
-# (doxysearch.cgi) which are based on the open source search engine library
-# Xapian (see:
-# https://xapian.org/). See the section "External Indexing and Searching" for
-# details.
-# This tag requires that the tag SEARCHENGINE is set to YES.
-
-SEARCHENGINE_URL =
-
-# When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the unindexed
-# search data is written to a file for indexing by an external tool. With the
-# SEARCHDATA_FILE tag the name of this file can be specified.
-# The default file is: searchdata.xml.
-# This tag requires that the tag SEARCHENGINE is set to YES.
-
-SEARCHDATA_FILE = searchdata.xml
-
-# When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the
-# EXTERNAL_SEARCH_ID tag can be used as an identifier for the project. This is
-# useful in combination with EXTRA_SEARCH_MAPPINGS to search through multiple
-# projects and redirect the results back to the right project.
-# This tag requires that the tag SEARCHENGINE is set to YES.
-
-EXTERNAL_SEARCH_ID =
-
-# The EXTRA_SEARCH_MAPPINGS tag can be used to enable searching through doxygen
-# projects other than the one defined by this configuration file, but that are
-# all added to the same external search index. Each project needs to have a
-# unique id set via EXTERNAL_SEARCH_ID. The search mapping then maps the id of
-# to a relative location where the documentation can be found. The format is:
-# EXTRA_SEARCH_MAPPINGS = tagname1=loc1 tagname2=loc2 ...
-# This tag requires that the tag SEARCHENGINE is set to YES.
-
-EXTRA_SEARCH_MAPPINGS =
-
-#---------------------------------------------------------------------------
-# Configuration options related to the LaTeX output
-#---------------------------------------------------------------------------
-
-# If the GENERATE_LATEX tag is set to YES, doxygen will generate LaTeX output.
-# The default value is: YES.
-
-GENERATE_LATEX = NO
-
-# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. If a
-# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
-# it.
-# The default directory is: latex.
-# This tag requires that the tag GENERATE_LATEX is set to YES.
-
-LATEX_OUTPUT = latex
-
-# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be
-# invoked.
-#
-# Note that when not enabling USE_PDFLATEX the default is latex when enabling
-# USE_PDFLATEX the default is pdflatex and when in the later case latex is
-# chosen this is overwritten by pdflatex. For specific output languages the
-# default can have been set differently, this depends on the implementation of
-# the output language.
-# This tag requires that the tag GENERATE_LATEX is set to YES.
-
-LATEX_CMD_NAME =
-
-# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to generate
-# index for LaTeX.
-# Note: This tag is used in the Makefile / make.bat.
-# See also: LATEX_MAKEINDEX_CMD for the part in the generated output file
-# (.tex).
-# The default file is: makeindex.
-# This tag requires that the tag GENERATE_LATEX is set to YES.
-
-MAKEINDEX_CMD_NAME = makeindex
-
-# The LATEX_MAKEINDEX_CMD tag can be used to specify the command name to
-# generate index for LaTeX. In case there is no backslash (\) as first character
-# it will be automatically added in the LaTeX code.
-# Note: This tag is used in the generated output file (.tex).
-# See also: MAKEINDEX_CMD_NAME for the part in the Makefile / make.bat.
-# The default value is: makeindex.
-# This tag requires that the tag GENERATE_LATEX is set to YES.
-
-LATEX_MAKEINDEX_CMD = makeindex
-
-# If the COMPACT_LATEX tag is set to YES, doxygen generates more compact LaTeX
-# documents. This may be useful for small projects and may help to save some
-# trees in general.
-# The default value is: NO.
-# This tag requires that the tag GENERATE_LATEX is set to YES.
-
-COMPACT_LATEX = NO
-
-# The PAPER_TYPE tag can be used to set the paper type that is used by the
-# printer.
-# Possible values are: a4 (210 x 297 mm), letter (8.5 x 11 inches), legal (8.5 x
-# 14 inches) and executive (7.25 x 10.5 inches).
-# The default value is: a4.
-# This tag requires that the tag GENERATE_LATEX is set to YES.
-
-PAPER_TYPE = a4
-
-# The EXTRA_PACKAGES tag can be used to specify one or more LaTeX package names
-# that should be included in the LaTeX output. The package can be specified just
-# by its name or with the correct syntax as to be used with the LaTeX
-# \usepackage command. To get the times font for instance you can specify :
-# EXTRA_PACKAGES=times or EXTRA_PACKAGES={times}
-# To use the option intlimits with the amsmath package you can specify:
-# EXTRA_PACKAGES=[intlimits]{amsmath}
-# If left blank no extra packages will be included.
-# This tag requires that the tag GENERATE_LATEX is set to YES.
-
-EXTRA_PACKAGES =
-
-# The LATEX_HEADER tag can be used to specify a user-defined LaTeX header for
-# the generated LaTeX document. The header should contain everything until the
-# first chapter. If it is left blank doxygen will generate a standard header. It
-# is highly recommended to start with a default header using
-# doxygen -w latex new_header.tex new_footer.tex new_stylesheet.sty
-# and then modify the file new_header.tex. See also section "Doxygen usage" for
-# information on how to generate the default header that doxygen normally uses.
-#
-# Note: Only use a user-defined header if you know what you are doing!
-# Note: The header is subject to change so you typically have to regenerate the
-# default header when upgrading to a newer version of doxygen. The following
-# commands have a special meaning inside the header (and footer): For a
-# description of the possible markers and block names see the documentation.
-# This tag requires that the tag GENERATE_LATEX is set to YES.
-
-LATEX_HEADER =
-
-# The LATEX_FOOTER tag can be used to specify a user-defined LaTeX footer for
-# the generated LaTeX document. The footer should contain everything after the
-# last chapter. If it is left blank doxygen will generate a standard footer. See
-# LATEX_HEADER for more information on how to generate a default footer and what
-# special commands can be used inside the footer. See also section "Doxygen
-# usage" for information on how to generate the default footer that doxygen
-# normally uses. Note: Only use a user-defined footer if you know what you are
-# doing!
-# This tag requires that the tag GENERATE_LATEX is set to YES.
-
-LATEX_FOOTER =
-
-# The LATEX_EXTRA_STYLESHEET tag can be used to specify additional user-defined
-# LaTeX style sheets that are included after the standard style sheets created
-# by doxygen. Using this option one can overrule certain style aspects. Doxygen
-# will copy the style sheet files to the output directory.
-# Note: The order of the extra style sheet files is of importance (e.g. the last
-# style sheet in the list overrules the setting of the previous ones in the
-# list).
-# This tag requires that the tag GENERATE_LATEX is set to YES.
-
-LATEX_EXTRA_STYLESHEET =
-
-# The LATEX_EXTRA_FILES tag can be used to specify one or more extra images or
-# other source files which should be copied to the LATEX_OUTPUT output
-# directory. Note that the files will be copied as-is; there are no commands or
-# markers available.
-# This tag requires that the tag GENERATE_LATEX is set to YES.
-
-LATEX_EXTRA_FILES =
-
-# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated is
-# prepared for conversion to PDF (using ps2pdf or pdflatex). The PDF file will
-# contain links (just like the HTML output) instead of page references. This
-# makes the output suitable for online browsing using a PDF viewer.
-# The default value is: YES.
-# This tag requires that the tag GENERATE_LATEX is set to YES.
-
-PDF_HYPERLINKS = YES
-
-# If the USE_PDFLATEX tag is set to YES, doxygen will use the engine as
-# specified with LATEX_CMD_NAME to generate the PDF file directly from the LaTeX
-# files. Set this option to YES, to get a higher quality PDF documentation.
-#
-# See also section LATEX_CMD_NAME for selecting the engine.
-# The default value is: YES.
-# This tag requires that the tag GENERATE_LATEX is set to YES.
-
-USE_PDFLATEX = YES
-
-# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \batchmode
-# command to the generated LaTeX files. This will instruct LaTeX to keep running
-# if errors occur, instead of asking the user for help.
-# The default value is: NO.
-# This tag requires that the tag GENERATE_LATEX is set to YES.
-
-LATEX_BATCHMODE = NO
-
-# If the LATEX_HIDE_INDICES tag is set to YES then doxygen will not include the
-# index chapters (such as File Index, Compound Index, etc.) in the output.
-# The default value is: NO.
-# This tag requires that the tag GENERATE_LATEX is set to YES.
-
-LATEX_HIDE_INDICES = NO
-
-# The LATEX_BIB_STYLE tag can be used to specify the style to use for the
-# bibliography, e.g. plainnat, or ieeetr. See
-# https://en.wikipedia.org/wiki/BibTeX and \cite for more info.
-# The default value is: plain.
-# This tag requires that the tag GENERATE_LATEX is set to YES.
-
-LATEX_BIB_STYLE = plain
-
-# If the LATEX_TIMESTAMP tag is set to YES then the footer of each generated
-# page will contain the date and time when the page was generated. Setting this
-# to NO can help when comparing the output of multiple runs.
-# The default value is: NO.
-# This tag requires that the tag GENERATE_LATEX is set to YES.
-
-LATEX_TIMESTAMP = NO
-
-# The LATEX_EMOJI_DIRECTORY tag is used to specify the (relative or absolute)
-# path from which the emoji images will be read. If a relative path is entered,
-# it will be relative to the LATEX_OUTPUT directory. If left blank the
-# LATEX_OUTPUT directory will be used.
-# This tag requires that the tag GENERATE_LATEX is set to YES.
-
-LATEX_EMOJI_DIRECTORY =
-
-#---------------------------------------------------------------------------
-# Configuration options related to the RTF output
-#---------------------------------------------------------------------------
-
-# If the GENERATE_RTF tag is set to YES, doxygen will generate RTF output. The
-# RTF output is optimized for Word 97 and may not look too pretty with other RTF
-# readers/editors.
-# The default value is: NO.
-
-GENERATE_RTF = NO
-
-# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. If a
-# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
-# it.
-# The default directory is: rtf.
-# This tag requires that the tag GENERATE_RTF is set to YES.
-
-RTF_OUTPUT = rtf
-
-# If the COMPACT_RTF tag is set to YES, doxygen generates more compact RTF
-# documents. This may be useful for small projects and may help to save some
-# trees in general.
-# The default value is: NO.
-# This tag requires that the tag GENERATE_RTF is set to YES.
-
-COMPACT_RTF = NO
-
-# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated will
-# contain hyperlink fields. The RTF file will contain links (just like the HTML
-# output) instead of page references. This makes the output suitable for online
-# browsing using Word or some other Word compatible readers that support those
-# fields.
-#
-# Note: WordPad (write) and others do not support links.
-# The default value is: NO.
-# This tag requires that the tag GENERATE_RTF is set to YES.
-
-RTF_HYPERLINKS = NO
-
-# Load stylesheet definitions from file. Syntax is similar to doxygen's
-# configuration file, i.e. a series of assignments. You only have to provide
-# replacements, missing definitions are set to their default value.
-#
-# See also section "Doxygen usage" for information on how to generate the
-# default style sheet that doxygen normally uses.
-# This tag requires that the tag GENERATE_RTF is set to YES.
-
-RTF_STYLESHEET_FILE =
-
-# Set optional variables used in the generation of an RTF document. Syntax is
-# similar to doxygen's configuration file. A template extensions file can be
-# generated using doxygen -e rtf extensionFile.
-# This tag requires that the tag GENERATE_RTF is set to YES.
-
-RTF_EXTENSIONS_FILE =
-
-#---------------------------------------------------------------------------
-# Configuration options related to the man page output
-#---------------------------------------------------------------------------
-
-# If the GENERATE_MAN tag is set to YES, doxygen will generate man pages for
-# classes and files.
-# The default value is: NO.
-
-GENERATE_MAN = NO
-
-# The MAN_OUTPUT tag is used to specify where the man pages will be put. If a
-# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
-# it. A directory man3 will be created inside the directory specified by
-# MAN_OUTPUT.
-# The default directory is: man.
-# This tag requires that the tag GENERATE_MAN is set to YES.
-
-MAN_OUTPUT = man
-
-# The MAN_EXTENSION tag determines the extension that is added to the generated
-# man pages. In case the manual section does not start with a number, the number
-# 3 is prepended. The dot (.) at the beginning of the MAN_EXTENSION tag is
-# optional.
-# The default value is: .3.
-# This tag requires that the tag GENERATE_MAN is set to YES.
-
-MAN_EXTENSION = .3
-
-# The MAN_SUBDIR tag determines the name of the directory created within
-# MAN_OUTPUT in which the man pages are placed. If defaults to man followed by
-# MAN_EXTENSION with the initial . removed.
-# This tag requires that the tag GENERATE_MAN is set to YES.
-
-MAN_SUBDIR =
-
-# If the MAN_LINKS tag is set to YES and doxygen generates man output, then it
-# will generate one additional man file for each entity documented in the real
-# man page(s). These additional files only source the real man page, but without
-# them the man command would be unable to find the correct page.
-# The default value is: NO.
-# This tag requires that the tag GENERATE_MAN is set to YES.
-
-MAN_LINKS = NO
-
-#---------------------------------------------------------------------------
-# Configuration options related to the XML output
-#---------------------------------------------------------------------------
-
-# If the GENERATE_XML tag is set to YES, doxygen will generate an XML file that
-# captures the structure of the code including all documentation.
-# The default value is: NO.
-
-GENERATE_XML = NO
-
-# The XML_OUTPUT tag is used to specify where the XML pages will be put. If a
-# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
-# it.
-# The default directory is: xml.
-# This tag requires that the tag GENERATE_XML is set to YES.
-
-XML_OUTPUT = xml
-
-# If the XML_PROGRAMLISTING tag is set to YES, doxygen will dump the program
-# listings (including syntax highlighting and cross-referencing information) to
-# the XML output. Note that enabling this will significantly increase the size
-# of the XML output.
-# The default value is: YES.
-# This tag requires that the tag GENERATE_XML is set to YES.
-
-XML_PROGRAMLISTING = YES
-
-# If the XML_NS_MEMB_FILE_SCOPE tag is set to YES, doxygen will include
-# namespace members in file scope as well, matching the HTML output.
-# The default value is: NO.
-# This tag requires that the tag GENERATE_XML is set to YES.
-
-XML_NS_MEMB_FILE_SCOPE = NO
-
-#---------------------------------------------------------------------------
-# Configuration options related to the DOCBOOK output
-#---------------------------------------------------------------------------
-
-# If the GENERATE_DOCBOOK tag is set to YES, doxygen will generate Docbook files
-# that can be used to generate PDF.
-# The default value is: NO.
-
-GENERATE_DOCBOOK = NO
-
-# The DOCBOOK_OUTPUT tag is used to specify where the Docbook pages will be put.
-# If a relative path is entered the value of OUTPUT_DIRECTORY will be put in
-# front of it.
-# The default directory is: docbook.
-# This tag requires that the tag GENERATE_DOCBOOK is set to YES.
-
-DOCBOOK_OUTPUT = docbook
-
-#---------------------------------------------------------------------------
-# Configuration options for the AutoGen Definitions output
-#---------------------------------------------------------------------------
-
-# If the GENERATE_AUTOGEN_DEF tag is set to YES, doxygen will generate an
-# AutoGen Definitions (see http://autogen.sourceforge.net/) file that captures
-# the structure of the code including all documentation. Note that this feature
-# is still experimental and incomplete at the moment.
-# The default value is: NO.
-
-GENERATE_AUTOGEN_DEF = NO
-
-#---------------------------------------------------------------------------
-# Configuration options related to the Perl module output
-#---------------------------------------------------------------------------
-
-# If the GENERATE_PERLMOD tag is set to YES, doxygen will generate a Perl module
-# file that captures the structure of the code including all documentation.
-#
-# Note that this feature is still experimental and incomplete at the moment.
-# The default value is: NO.
-
-GENERATE_PERLMOD = NO
-
-# If the PERLMOD_LATEX tag is set to YES, doxygen will generate the necessary
-# Makefile rules, Perl scripts and LaTeX code to be able to generate PDF and DVI
-# output from the Perl module output.
-# The default value is: NO.
-# This tag requires that the tag GENERATE_PERLMOD is set to YES.
-
-PERLMOD_LATEX = NO
-
-# If the PERLMOD_PRETTY tag is set to YES, the Perl module output will be nicely
-# formatted so it can be parsed by a human reader. This is useful if you want to
-# understand what is going on. On the other hand, if this tag is set to NO, the
-# size of the Perl module output will be much smaller and Perl will parse it
-# just the same.
-# The default value is: YES.
-# This tag requires that the tag GENERATE_PERLMOD is set to YES.
-
-PERLMOD_PRETTY = YES
-
-# The names of the make variables in the generated doxyrules.make file are
-# prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. This is useful
-# so different doxyrules.make files included by the same Makefile don't
-# overwrite each other's variables.
-# This tag requires that the tag GENERATE_PERLMOD is set to YES.
-
-PERLMOD_MAKEVAR_PREFIX =
-
-#---------------------------------------------------------------------------
-# Configuration options related to the preprocessor
-#---------------------------------------------------------------------------
-
-# If the ENABLE_PREPROCESSING tag is set to YES, doxygen will evaluate all
-# C-preprocessor directives found in the sources and include files.
-# The default value is: YES.
-
-ENABLE_PREPROCESSING = YES
-
-# If the MACRO_EXPANSION tag is set to YES, doxygen will expand all macro names
-# in the source code. If set to NO, only conditional compilation will be
-# performed. Macro expansion can be done in a controlled way by setting
-# EXPAND_ONLY_PREDEF to YES.
-# The default value is: NO.
-# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
-
-MACRO_EXPANSION = NO
-
-# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES then
-# the macro expansion is limited to the macros specified with the PREDEFINED and
-# EXPAND_AS_DEFINED tags.
-# The default value is: NO.
-# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
-
-EXPAND_ONLY_PREDEF = NO
-
-# If the SEARCH_INCLUDES tag is set to YES, the include files in the
-# INCLUDE_PATH will be searched if a #include is found.
-# The default value is: YES.
-# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
-
-SEARCH_INCLUDES = YES
-
-# The INCLUDE_PATH tag can be used to specify one or more directories that
-# contain include files that are not input files but should be processed by the
-# preprocessor.
-# This tag requires that the tag SEARCH_INCLUDES is set to YES.
-
-INCLUDE_PATH =
-
-# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard
-# patterns (like *.h and *.hpp) to filter out the header-files in the
-# directories. If left blank, the patterns specified with FILE_PATTERNS will be
-# used.
-# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
-
-INCLUDE_FILE_PATTERNS =
-
-# The PREDEFINED tag can be used to specify one or more macro names that are
-# defined before the preprocessor is started (similar to the -D option of e.g.
-# gcc). The argument of the tag is a list of macros of the form: name or
-# name=definition (no spaces). If the definition and the "=" are omitted, "=1"
-# is assumed. To prevent a macro definition from being undefined via #undef or
-# recursively expanded use the := operator instead of the = operator.
-# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
-
-PREDEFINED =
-
-# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then this
-# tag can be used to specify a list of macro names that should be expanded. The
-# macro definition that is found in the sources will be used. Use the PREDEFINED
-# tag if you want to use a different macro definition that overrules the
-# definition found in the source code.
-# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
-
-EXPAND_AS_DEFINED =
-
-# If the SKIP_FUNCTION_MACROS tag is set to YES then doxygen's preprocessor will
-# remove all references to function-like macros that are alone on a line, have
-# an all uppercase name, and do not end with a semicolon. Such function macros
-# are typically used for boiler-plate code, and will confuse the parser if not
-# removed.
-# The default value is: YES.
-# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
-
-SKIP_FUNCTION_MACROS = YES
-
-#---------------------------------------------------------------------------
-# Configuration options related to external references
-#---------------------------------------------------------------------------
-
-# The TAGFILES tag can be used to specify one or more tag files. For each tag
-# file the location of the external documentation should be added. The format of
-# a tag file without this location is as follows:
-# TAGFILES = file1 file2 ...
-# Adding location for the tag files is done as follows:
-# TAGFILES = file1=loc1 "file2 = loc2" ...
-# where loc1 and loc2 can be relative or absolute paths or URLs. See the
-# section "Linking to external documentation" for more information about the use
-# of tag files.
-# Note: Each tag file must have a unique name (where the name does NOT include
-# the path). If a tag file is not located in the directory in which doxygen is
-# run, you must also specify the path to the tagfile here.
-
-TAGFILES =
-
-# When a file name is specified after GENERATE_TAGFILE, doxygen will create a
-# tag file that is based on the input files it reads. See section "Linking to
-# external documentation" for more information about the usage of tag files.
-
-GENERATE_TAGFILE =
-
-# If the ALLEXTERNALS tag is set to YES, all external class will be listed in
-# the class index. If set to NO, only the inherited external classes will be
-# listed.
-# The default value is: NO.
-
-ALLEXTERNALS = NO
-
-# If the EXTERNAL_GROUPS tag is set to YES, all external groups will be listed
-# in the modules index. If set to NO, only the current project's groups will be
-# listed.
-# The default value is: YES.
-
-EXTERNAL_GROUPS = YES
-
-# If the EXTERNAL_PAGES tag is set to YES, all external pages will be listed in
-# the related pages index. If set to NO, only the current project's pages will
-# be listed.
-# The default value is: YES.
-
-EXTERNAL_PAGES = YES
-
-#---------------------------------------------------------------------------
-# Configuration options related to the dot tool
-#---------------------------------------------------------------------------
-
-# You can include diagrams made with dia in doxygen documentation. Doxygen will
-# then run dia to produce the diagram and insert it in the documentation. The
-# DIA_PATH tag allows you to specify the directory where the dia binary resides.
-# If left empty dia is assumed to be found in the default search path.
-
-DIA_PATH =
-
-# If set to YES the inheritance and collaboration graphs will hide inheritance
-# and usage relations if the target is undocumented or is not a class.
-# The default value is: YES.
-
-HIDE_UNDOC_RELATIONS = YES
-
-# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is
-# available from the path. This tool is part of Graphviz (see:
-# http://www.graphviz.org/), a graph visualization toolkit from AT&T and Lucent
-# Bell Labs. The other options in this section have no effect if this option is
-# set to NO
-# The default value is: NO.
-
-HAVE_DOT = NO
-
-# The DOT_NUM_THREADS specifies the number of dot invocations doxygen is allowed
-# to run in parallel. When set to 0 doxygen will base this on the number of
-# processors available in the system. You can set it explicitly to a value
-# larger than 0 to get control over the balance between CPU load and processing
-# speed.
-# Minimum value: 0, maximum value: 32, default value: 0.
-# This tag requires that the tag HAVE_DOT is set to YES.
-
-DOT_NUM_THREADS = 0
-
-# When you want a differently looking font in the dot files that doxygen
-# generates you can specify the font name using DOT_FONTNAME. You need to make
-# sure dot is able to find the font, which can be done by putting it in a
-# standard location or by setting the DOTFONTPATH environment variable or by
-# setting DOT_FONTPATH to the directory containing the font.
-# The default value is: Helvetica.
-# This tag requires that the tag HAVE_DOT is set to YES.
-
-DOT_FONTNAME = Helvetica
-
-# The DOT_FONTSIZE tag can be used to set the size (in points) of the font of
-# dot graphs.
-# Minimum value: 4, maximum value: 24, default value: 10.
-# This tag requires that the tag HAVE_DOT is set to YES.
-
-DOT_FONTSIZE = 10
-
-# By default doxygen will tell dot to use the default font as specified with
-# DOT_FONTNAME. If you specify a different font using DOT_FONTNAME you can set
-# the path where dot can find it using this tag.
-# This tag requires that the tag HAVE_DOT is set to YES.
-
-DOT_FONTPATH =
-
-# If the CLASS_GRAPH tag is set to YES (or GRAPH) then doxygen will generate a
-# graph for each documented class showing the direct and indirect inheritance
-# relations. In case HAVE_DOT is set as well dot will be used to draw the graph,
-# otherwise the built-in generator will be used. If the CLASS_GRAPH tag is set
-# to TEXT the direct and indirect inheritance relations will be shown as texts /
-# links.
-# Possible values are: NO, YES, TEXT and GRAPH.
-# The default value is: YES.
-
-CLASS_GRAPH = YES
-
-# If the COLLABORATION_GRAPH tag is set to YES then doxygen will generate a
-# graph for each documented class showing the direct and indirect implementation
-# dependencies (inheritance, containment, and class references variables) of the
-# class with other documented classes.
-# The default value is: YES.
-# This tag requires that the tag HAVE_DOT is set to YES.
-
-COLLABORATION_GRAPH = YES
-
-# If the GROUP_GRAPHS tag is set to YES then doxygen will generate a graph for
-# groups, showing the direct groups dependencies.
-# The default value is: YES.
-# This tag requires that the tag HAVE_DOT is set to YES.
-
-GROUP_GRAPHS = YES
-
-# If the UML_LOOK tag is set to YES, doxygen will generate inheritance and
-# collaboration diagrams in a style similar to the OMG's Unified Modeling
-# Language.
-# The default value is: NO.
-# This tag requires that the tag HAVE_DOT is set to YES.
-
-UML_LOOK = NO
-
-# If the UML_LOOK tag is enabled, the fields and methods are shown inside the
-# class node. If there are many fields or methods and many nodes the graph may
-# become too big to be useful. The UML_LIMIT_NUM_FIELDS threshold limits the
-# number of items for each type to make the size more manageable. Set this to 0
-# for no limit. Note that the threshold may be exceeded by 50% before the limit
-# is enforced. So when you set the threshold to 10, up to 15 fields may appear,
-# but if the number exceeds 15, the total amount of fields shown is limited to
-# 10.
-# Minimum value: 0, maximum value: 100, default value: 10.
-# This tag requires that the tag UML_LOOK is set to YES.
-
-UML_LIMIT_NUM_FIELDS = 10
-
-# If the DOT_UML_DETAILS tag is set to NO, doxygen will show attributes and
-# methods without types and arguments in the UML graphs. If the DOT_UML_DETAILS
-# tag is set to YES, doxygen will add type and arguments for attributes and
-# methods in the UML graphs. If the DOT_UML_DETAILS tag is set to NONE, doxygen
-# will not generate fields with class member information in the UML graphs. The
-# class diagrams will look similar to the default class diagrams but using UML
-# notation for the relationships.
-# Possible values are: NO, YES and NONE.
-# The default value is: NO.
-# This tag requires that the tag UML_LOOK is set to YES.
-
-DOT_UML_DETAILS = NO
-
-# The DOT_WRAP_THRESHOLD tag can be used to set the maximum number of characters
-# to display on a single line. If the actual line length exceeds this threshold
-# significantly it will wrapped across multiple lines. Some heuristics are apply
-# to avoid ugly line breaks.
-# Minimum value: 0, maximum value: 1000, default value: 17.
-# This tag requires that the tag HAVE_DOT is set to YES.
-
-DOT_WRAP_THRESHOLD = 17
-
-# If the TEMPLATE_RELATIONS tag is set to YES then the inheritance and
-# collaboration graphs will show the relations between templates and their
-# instances.
-# The default value is: NO.
-# This tag requires that the tag HAVE_DOT is set to YES.
-
-TEMPLATE_RELATIONS = NO
-
-# If the INCLUDE_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are set to
-# YES then doxygen will generate a graph for each documented file showing the
-# direct and indirect include dependencies of the file with other documented
-# files.
-# The default value is: YES.
-# This tag requires that the tag HAVE_DOT is set to YES.
-
-INCLUDE_GRAPH = YES
-
-# If the INCLUDED_BY_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are
-# set to YES then doxygen will generate a graph for each documented file showing
-# the direct and indirect include dependencies of the file with other documented
-# files.
-# The default value is: YES.
-# This tag requires that the tag HAVE_DOT is set to YES.
-
-INCLUDED_BY_GRAPH = YES
-
-# If the CALL_GRAPH tag is set to YES then doxygen will generate a call
-# dependency graph for every global function or class method.
-#
-# Note that enabling this option will significantly increase the time of a run.
-# So in most cases it will be better to enable call graphs for selected
-# functions only using the \callgraph command. Disabling a call graph can be
-# accomplished by means of the command \hidecallgraph.
-# The default value is: NO.
-# This tag requires that the tag HAVE_DOT is set to YES.
-
-CALL_GRAPH = NO
-
-# If the CALLER_GRAPH tag is set to YES then doxygen will generate a caller
-# dependency graph for every global function or class method.
-#
-# Note that enabling this option will significantly increase the time of a run.
-# So in most cases it will be better to enable caller graphs for selected
-# functions only using the \callergraph command. Disabling a caller graph can be
-# accomplished by means of the command \hidecallergraph.
-# The default value is: NO.
-# This tag requires that the tag HAVE_DOT is set to YES.
-
-CALLER_GRAPH = NO
-
-# If the GRAPHICAL_HIERARCHY tag is set to YES then doxygen will graphical
-# hierarchy of all classes instead of a textual one.
-# The default value is: YES.
-# This tag requires that the tag HAVE_DOT is set to YES.
-
-GRAPHICAL_HIERARCHY = YES
-
-# If the DIRECTORY_GRAPH tag is set to YES then doxygen will show the
-# dependencies a directory has on other directories in a graphical way. The
-# dependency relations are determined by the #include relations between the
-# files in the directories.
-# The default value is: YES.
-# This tag requires that the tag HAVE_DOT is set to YES.
-
-DIRECTORY_GRAPH = YES
-
-# The DIR_GRAPH_MAX_DEPTH tag can be used to limit the maximum number of levels
-# of child directories generated in directory dependency graphs by dot.
-# Minimum value: 1, maximum value: 25, default value: 1.
-# This tag requires that the tag DIRECTORY_GRAPH is set to YES.
-
-DIR_GRAPH_MAX_DEPTH = 1
-
-# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images
-# generated by dot. For an explanation of the image formats see the section
-# output formats in the documentation of the dot tool (Graphviz (see:
-# http://www.graphviz.org/)).
-# Note: If you choose svg you need to set HTML_FILE_EXTENSION to xhtml in order
-# to make the SVG files visible in IE 9+ (other browsers do not have this
-# requirement).
-# Possible values are: png, jpg, gif, svg, png:gd, png:gd:gd, png:cairo,
-# png:cairo:gd, png:cairo:cairo, png:cairo:gdiplus, png:gdiplus and
-# png:gdiplus:gdiplus.
-# The default value is: png.
-# This tag requires that the tag HAVE_DOT is set to YES.
-
-DOT_IMAGE_FORMAT = png
-
-# If DOT_IMAGE_FORMAT is set to svg, then this option can be set to YES to
-# enable generation of interactive SVG images that allow zooming and panning.
-#
-# Note that this requires a modern browser other than Internet Explorer. Tested
-# and working are Firefox, Chrome, Safari, and Opera.
-# Note: For IE 9+ you need to set HTML_FILE_EXTENSION to xhtml in order to make
-# the SVG files visible. Older versions of IE do not have SVG support.
-# The default value is: NO.
-# This tag requires that the tag HAVE_DOT is set to YES.
-
-INTERACTIVE_SVG = NO
-
-# The DOT_PATH tag can be used to specify the path where the dot tool can be
-# found. If left blank, it is assumed the dot tool can be found in the path.
-# This tag requires that the tag HAVE_DOT is set to YES.
-
-DOT_PATH =
-
-# The DOTFILE_DIRS tag can be used to specify one or more directories that
-# contain dot files that are included in the documentation (see the \dotfile
-# command).
-# This tag requires that the tag HAVE_DOT is set to YES.
-
-DOTFILE_DIRS =
-
-# The MSCFILE_DIRS tag can be used to specify one or more directories that
-# contain msc files that are included in the documentation (see the \mscfile
-# command).
-
-MSCFILE_DIRS =
-
-# The DIAFILE_DIRS tag can be used to specify one or more directories that
-# contain dia files that are included in the documentation (see the \diafile
-# command).
-
-DIAFILE_DIRS =
-
-# When using plantuml, the PLANTUML_JAR_PATH tag should be used to specify the
-# path where java can find the plantuml.jar file or to the filename of jar file
-# to be used. If left blank, it is assumed PlantUML is not used or called during
-# a preprocessing step. Doxygen will generate a warning when it encounters a
-# \startuml command in this case and will not generate output for the diagram.
-
-PLANTUML_JAR_PATH =
-
-# When using plantuml, the PLANTUML_CFG_FILE tag can be used to specify a
-# configuration file for plantuml.
-
-PLANTUML_CFG_FILE =
-
-# When using plantuml, the specified paths are searched for files specified by
-# the !include statement in a plantuml block.
-
-PLANTUML_INCLUDE_PATH =
-
-# The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of nodes
-# that will be shown in the graph. If the number of nodes in a graph becomes
-# larger than this value, doxygen will truncate the graph, which is visualized
-# by representing a node as a red box. Note that doxygen if the number of direct
-# children of the root node in a graph is already larger than
-# DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note that
-# the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH.
-# Minimum value: 0, maximum value: 10000, default value: 50.
-# This tag requires that the tag HAVE_DOT is set to YES.
-
-DOT_GRAPH_MAX_NODES = 50
-
-# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the graphs
-# generated by dot. A depth value of 3 means that only nodes reachable from the
-# root by following a path via at most 3 edges will be shown. Nodes that lay
-# further from the root node will be omitted. Note that setting this option to 1
-# or 2 may greatly reduce the computation time needed for large code bases. Also
-# note that the size of a graph can be further restricted by
-# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction.
-# Minimum value: 0, maximum value: 1000, default value: 0.
-# This tag requires that the tag HAVE_DOT is set to YES.
-
-MAX_DOT_GRAPH_DEPTH = 0
-
-# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent
-# background. This is disabled by default, because dot on Windows does not seem
-# to support this out of the box.
-#
-# Warning: Depending on the platform used, enabling this option may lead to
-# badly anti-aliased labels on the edges of a graph (i.e. they become hard to
-# read).
-# The default value is: NO.
-# This tag requires that the tag HAVE_DOT is set to YES.
-
-DOT_TRANSPARENT = NO
-
-# Set the DOT_MULTI_TARGETS tag to YES to allow dot to generate multiple output
-# files in one run (i.e. multiple -o and -T options on the command line). This
-# makes dot run faster, but since only newer versions of dot (>1.8.10) support
-# this, this feature is disabled by default.
-# The default value is: NO.
-# This tag requires that the tag HAVE_DOT is set to YES.
-
-DOT_MULTI_TARGETS = NO
-
-# If the GENERATE_LEGEND tag is set to YES doxygen will generate a legend page
-# explaining the meaning of the various boxes and arrows in the dot generated
-# graphs.
-# Note: This tag requires that UML_LOOK isn't set, i.e. the doxygen internal
-# graphical representation for inheritance and collaboration diagrams is used.
-# The default value is: YES.
-# This tag requires that the tag HAVE_DOT is set to YES.
-
-GENERATE_LEGEND = YES
-
-# If the DOT_CLEANUP tag is set to YES, doxygen will remove the intermediate
-# files that are used to generate the various graphs.
-#
-# Note: This setting is not only used for dot files but also for msc temporary
-# files.
-# The default value is: YES.
-
-DOT_CLEANUP = YES
diff --git a/lib/librmb-main/docs/additional/pancakerecipe.md b/lib/librmb-main/docs/additional/pancakerecipe.md
deleted file mode 100644
index d0f75fa..0000000
--- a/lib/librmb-main/docs/additional/pancakerecipe.md
+++ /dev/null
@@ -1,39 +0,0 @@
-1 ½ cups all-purpose flour
-3 ½ teaspoons baking powder
-¼ teaspoon salt, or more to taste
-1 tablespoon white sugar
-1 ¼ cups milk
-1 egg
-3 tablespoons butter, melted
-ADD ALL INGREDIENTS TO SHOPPING LIST
-Local Offers
-
-
-> # Walmart
-
-
-Great Value Organic All Purpose Flour
-Stock up for winter. Everyday Low Prices.
-
-
-ADVERTISEMENT
-
-
-Marketside Organic Cage Free Brown Eggs, Large, 12 Ct
-Stock up for winter. Everyday Low Prices.
-
-
-ADVERTISEMENT
-
-• Buy Ingredients
-
-Walmart Logo
-7 ingredients
-$17.09
-Directions
-
-Step 1
-In a large bowl, sift together the flour, baking powder, salt and sugar. Make a well in the center and pour in the milk, egg and melted butter; mix until smooth.
-
-Step 2
-Heat a lightly oiled griddle or frying pan over medium-high heat. Pour or scoop the batter onto the griddle, using approximately 1/4 cup for each pancake. Brown on both sides and serve hot.
\ No newline at end of file
diff --git a/lib/librmb-main/docs/building.md b/lib/librmb-main/docs/building.md
deleted file mode 100644
index 5db9358..0000000
--- a/lib/librmb-main/docs/building.md
+++ /dev/null
@@ -1,37 +0,0 @@
-# Building
-
-```bash
-# If you haven't installed the toolchain yet:
-$ ./gradlew installRoboRioToolchain
-
-# To build:
-$ ./gradlew build
-
-# To build docs
-$ ./gradlew docs
-# or
-$ doxygen docs/Doxyfile
-```
-
-
-## Notes
-* If you are on windows, replace gradlew with gradlew.bat
-
-
-# Adding to a project
-
-see https://docs.gradle.org/current/userguide/native_software.html#sec:project_dependencies
-
-essentially, in your sources.cpp, in your main project, you need to add something like
-```groovy
-sources.cpp {
- lib project: "locationOflibrmb", library: "librmb", linkage: "static or shared. one of the two"
-}
-```
-
-and in your settings.gradle
-
-```groovy
-include 'locationOflibrmb'
-```
-
diff --git a/lib/librmb-main/docs/doxygen-awesome.css b/lib/librmb-main/docs/doxygen-awesome.css
deleted file mode 100644
index 11f717e..0000000
--- a/lib/librmb-main/docs/doxygen-awesome.css
+++ /dev/null
@@ -1,1524 +0,0 @@
-/**
-
-Doxygen Awesome
-https://github.com/jothepro/doxygen-awesome-css
-
-MIT License
-
-Copyright (c) 2021 jothepro
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
-
-*/
-
-html {
- /* primary theme color. This will affect the entire websites color scheme: links, arrows, labels, ... */
- --primary-color: #1779c4;
- --primary-dark-color: #00559f;
- --primary-light-color: #7aabd6;
- --primary-lighter-color: #cae1f1;
- --primary-lightest-color: #e9f1f8;
-
- /* page base colors */
- --page-background-color: white;
- --page-foreground-color: #2c3e50;
- --page-secondary-foreground-color: #67727e;
-
- /* color for all separators on the website: hr, borders, ... */
- --separator-color: #dedede;
-
- /* border radius for all rounded components. Will affect many components, like dropdowns, memitems, codeblocks, ... */
- --border-radius-large: 8px;
- --border-radius-small: 4px;
- --border-radius-medium: 6px;
-
- /* default spacings. Most compontest reference these values for spacing, to provide uniform spacing on the page. */
- --spacing-small: 5px;
- --spacing-medium: 10px;
- --spacing-large: 16px;
-
- /* default box shadow used for raising an element above the normal content. Used in dropdowns, Searchresult, ... */
- --box-shadow: 0 2px 10px 0 rgba(0,0,0,.1);
-
- --odd-color: rgba(0,0,0,.03);
-
- /* font-families. will affect all text on the website
- * font-family: the normal font for text, headlines, menus
- * font-family-monospace: used for preformatted text in memtitle, code, fragments
- */
- --font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;
- --font-family-monospace: source-code-pro,Menlo,Monaco,Consolas,Courier New,monospace;
-
- /* font sizes */
- --page-font-size: 15.6px;
- --navigation-font-size: 14.4px;
- --code-font-size: 14.4px; /* affects code, fragment */
- --title-font-size: 22px;
-
- /* content text properties. These only affect the page content, not the navigation or any other ui elements */
- --content-line-height: 27px;
- /* The content is centered and constraint in it's width. To make the content fill the whole page, set the variable to auto.*/
- --content-maxwidth: 1000px;
-
- /* colors for various content boxes: @warning, @note, @deprecated @bug */
- --warning-color: #fca49b;
- --warning-color-dark: #b61825;
- --warning-color-darker: #75070f;
- --note-color: rgba(255,229,100,.3);
- --note-color-dark: #c39900;
- --note-color-darker: #8d7400;
- --todo-color: rgba(100,160,200,.3);
- --todo-color-dark: #00C0E0;
- --todo-color-darker: #274a5c;
- --deprecated-color: rgb(214, 216, 224);
- --deprecated-color-dark: #5b6269;
- --deprecated-color-darker: #43454a;
- --bug-color: rgb(246, 208, 178);
- --bug-color-dark: #a53a00;
- --bug-color-darker: #5b1d00;
- --invariant-color: #b7f8d0;
- --invariant-color-dark: #00ba44;
- --invariant-color-darker: #008622;
-
- /* blockquote colors */
- --blockquote-background: #f5f5f5;
- --blockquote-foreground: #727272;
-
- /* table colors */
- --tablehead-background: #f1f1f1;
- --tablehead-foreground: var(--page-foreground-color);
-
- /* menu-display: block | none
- * Visibility of the top navigation on screens >= 768px. On smaller screen the menu is always visible.
- * `GENERATE_TREEVIEW` MUST be enabled!
- */
- --menu-display: block;
-
- --menu-focus-foreground: var(--page-background-color);
- --menu-focus-background: var(--primary-color);
- --menu-selected-background: rgba(0,0,0,.05);
-
-
- --header-background: var(--page-background-color);
- --header-foreground: var(--page-foreground-color);
-
- /* searchbar colors */
- --searchbar-background: var(--side-nav-background);
- --searchbar-foreground: var(--page-foreground-color);
-
- /* searchbar size
- * (`searchbar-width` is only applied on screens >= 768px.
- * on smaller screens the searchbar will always fill the entire screen width) */
- --searchbar-height: 33px;
- --searchbar-width: 210px;
-
- /* code block colors */
- --code-background: #f5f5f5;
- --code-foreground: var(--page-foreground-color);
-
- /* fragment colors */
- --fragment-background: #282c34;
- --fragment-foreground: #ffffff;
- --fragment-keyword: #cc99cd;
- --fragment-keywordtype: #ab99cd;
- --fragment-keywordflow: #e08000;
- --fragment-token: #7ec699;
- --fragment-comment: #999999;
- --fragment-link: #98c0e3;
- --fragment-preprocessor: #65cabe;
- --fragment-linenumber-color: #cccccc;
- --fragment-linenumber-background: #35393c;
- --fragment-linenumber-border: #1f1f1f;
- --fragment-lineheight: 20px;
-
- /* sidebar navigation (treeview) colors */
- --side-nav-background: #fbfbfb;
- --side-nav-foreground: var(--page-foreground-color);
- --side-nav-arrow-opacity: 0;
- --side-nav-arrow-hover-opacity: 0.9;
-
- /* height of an item in any tree / collapsable table */
- --tree-item-height: 30px;
-
- --darkmode-toggle-button-icon: '☀️'
-}
-
-@media screen and (max-width: 767px) {
- html {
- --page-font-size: 16px;
- --navigation-font-size: 16px;
- --code-font-size: 15px; /* affects code, fragment */
- --title-font-size: 22px;
- }
-}
-
-@media (prefers-color-scheme: dark) {
- html:not(.light-mode) {
- color-scheme: dark;
-
- --primary-color: #1982d2;
- --primary-dark-color: #5ca8e2;
- --primary-light-color: #4779ac;
- --primary-lighter-color: #191e21;
- --primary-lightest-color: #191a1c;
-
- --box-shadow: 0 2px 10px 0 rgba(0,0,0,.35);
-
- --odd-color: rgba(0,0,0,.1);
-
- --menu-selected-background: rgba(0,0,0,.4);
-
- --page-background-color: #1C1D1F;
- --page-foreground-color: #d2dbde;
- --page-secondary-foreground-color: #859399;
- --separator-color: #000000;
- --side-nav-background: #252628;
-
- --code-background: #2a2c2f;
-
- --tablehead-background: #2a2c2f;
-
- --blockquote-background: #1f2022;
- --blockquote-foreground: #77848a;
-
- --warning-color: #b61825;
- --warning-color-dark: #510a02;
- --warning-color-darker: #f5b1aa;
- --note-color: rgb(255, 183, 0);
- --note-color-dark: #9f7300;
- --note-color-darker: #645b39;
- --todo-color: rgba(100,160,200,.3);
- --todo-color-dark: #00C0E0;
- --todo-color-darker: #dcf0fa;
- --deprecated-color: rgb(88, 90, 96);
- --deprecated-color-dark: #262e37;
- --deprecated-color-darker: #a0a5b0;
- --bug-color: rgb(248, 113, 0);
- --bug-color-dark: #812a00;
- --bug-color-darker: #ffd3be;
-
- --darkmode-toggle-button-icon: '🌛';
- }
-}
-
-/* dark mode variables are defined twice, to support both the dark-mode without and with doxygen-awesome-darkmode-toggle.js */
-html.dark-mode {
- color-scheme: dark;
-
- --primary-color: #1982d2;
- --primary-dark-color: #5ca8e2;
- --primary-light-color: #4779ac;
- --primary-lighter-color: #191e21;
- --primary-lightest-color: #191a1c;
-
- --box-shadow: 0 2px 10px 0 rgba(0,0,0,.35);
-
- --odd-color: rgba(0,0,0,.1);
-
- --menu-selected-background: rgba(0,0,0,.4);
-
- --page-background-color: #1C1D1F;
- --page-foreground-color: #d2dbde;
- --page-secondary-foreground-color: #859399;
- --separator-color: #000000;
- --side-nav-background: #252628;
-
- --code-background: #2a2c2f;
-
- --tablehead-background: #2a2c2f;
-
- --blockquote-background: #1f2022;
- --blockquote-foreground: #77848a;
-
- --warning-color: #b61825;
- --warning-color-dark: #510a02;
- --warning-color-darker: #f5b1aa;
- --note-color: rgb(255, 183, 0);
- --note-color-dark: #9f7300;
- --note-color-darker: #645b39;
- --todo-color: rgba(100,160,200,.3);
- --todo-color-dark: #00C0E0;
- --todo-color-darker: #dcf0fa;
- --deprecated-color: rgb(88, 90, 96);
- --deprecated-color-dark: #262e37;
- --deprecated-color-darker: #a0a5b0;
- --bug-color: rgb(248, 113, 0);
- --bug-color-dark: #812a00;
- --bug-color-darker: #ffd3be;
-
- --darkmode-toggle-button-icon: '🌛';
-}
-
-body {
- color: var(--page-foreground-color);
- background-color: var(--page-background-color);
- font-size: var(--page-font-size);
-}
-
-body, table, div, p, dl, #nav-tree .label, .title, .sm-dox a, .sm-dox a:hover, .sm-dox a:focus, #projectname, .SelectItem, #MSearchField, .navpath li.navelem a, .navpath li.navelem a:hover {
- font-family: var(--font-family);
-}
-
-h1, h2, h3, h4, h5 {
- margin-top: .9em;
- font-weight: 600;
- line-height: initial;
-}
-
-p, div, table, dl {
- font-size: var(--page-font-size);
-}
-
-a:link, a:visited, a:hover, a:focus, a:active {
- color: var(--primary-color) !important;
- font-weight: 500;
-}
-
-/*
- Title and top navigation
- */
-
-#top {
- background: var(--header-background);
- border-bottom: 1px solid var(--separator-color);
-}
-
-@media screen and (min-width: 768px) {
- #top {
- display: flex;
- flex-wrap: wrap;
- justify-content: space-between;
- align-items: center;
- }
-}
-
-#main-nav {
- flex-grow: 5;
- padding: var(--spacing-small) var(--spacing-medium);
-}
-
-#titlearea {
- width: auto;
- padding: var(--spacing-medium) var(--spacing-large);
- background: none;
- color: var(--header-foreground);
- border-bottom: none;
-}
-
-@media screen and (max-width: 767px) {
- #titlearea {
- padding-bottom: var(--spacing-small);
- }
-}
-
-#titlearea table tbody tr {
- height: auto !important;
-}
-
-#projectname {
- font-size: var(--title-font-size);
- font-weight: 600;
-}
-
-#projectnumber {
- font-family: inherit;
- font-size: 60%;
-}
-
-#projectbrief {
- font-family: inherit;
- font-size: 80%;
-}
-
-#projectlogo {
- vertical-align: middle;
-}
-
-#projectlogo img {
- max-height: calc(var(--title-font-size) * 2);
- margin-right: var(--spacing-small);
-}
-
-.sm-dox, .tabs, .tabs2, .tabs3 {
- background: none;
- padding: 0;
-}
-
-.tabs, .tabs2, .tabs3 {
- border-bottom: 1px solid var(--separator-color);
- margin-bottom: -1px;
-}
-
-@media screen and (max-width: 767px) {
- .sm-dox a span.sub-arrow {
- background: var(--code-background);
- }
-}
-
-@media screen and (min-width: 768px) {
- .sm-dox li, .tablist li {
- display: var(--menu-display);
- }
-
- .sm-dox a span.sub-arrow {
- border-color: var(--header-foreground) transparent transparent transparent;
- }
-
- .sm-dox a:hover span.sub-arrow {
- border-color: var(--menu-focus-foreground) transparent transparent transparent;
- }
-
- .sm-dox ul a span.sub-arrow {
- border-color: transparent transparent transparent var(--page-foreground-color);
- }
-
- .sm-dox ul a:hover span.sub-arrow {
- border-color: transparent transparent transparent var(--menu-focus-foreground);
- }
-}
-
-.sm-dox ul {
- background: var(--page-background-color);
- box-shadow: var(--box-shadow);
- border: 1px solid var(--separator-color);
- border-radius: var(--border-radius-medium) !important;
- padding: var(--spacing-small);
- animation: ease-out 150ms slideInMenu;
-}
-
-@keyframes slideInMenu {
- from {
- opacity: 0;
- transform: translate(0px, -2px);
- }
-
- to {
- opacity: 1;
- transform: translate(0px, 0px);
- }
-}
-
-.sm-dox ul a {
- color: var(--page-foreground-color) !important;
- background: var(--page-background-color);
- font-size: var(--navigation-font-size);
-}
-
-.sm-dox>li>ul:after {
- border-bottom-color: var(--page-background-color) !important;
-}
-
-.sm-dox>li>ul:before {
- border-bottom-color: var(--separator-color) !important;
-}
-
-.sm-dox ul a:hover, .sm-dox ul a:active, .sm-dox ul a:focus {
- font-size: var(--navigation-font-size) !important;
- color: var(--menu-focus-foreground) !important;
- text-shadow: none;
- background-color: var(--menu-focus-background);
- border-radius: var(--border-radius-small) !important;
-}
-
-.sm-dox a, .sm-dox a:focus, .tablist li, .tablist li a, .tablist li.current a {
- text-shadow: none;
- background: transparent;
- background-image: none !important;
- color: var(--header-foreground) !important;
- font-weight: normal;
- font-size: var(--navigation-font-size);
-}
-
-.sm-dox a:focus {
- outline: auto;
-}
-
-.sm-dox a:hover, .sm-dox a:active, .tablist li a:hover {
- text-shadow: none;
- font-weight: normal;
- background: var(--menu-focus-background);
- color: var(--menu-focus-foreground) !important;
- border-radius: var(--border-radius-small) !important;
- font-size: var(--navigation-font-size);
-}
-
-.tablist li.current {
- border-radius: var(--border-radius-small);
- background: var(--menu-selected-background);
-}
-
-.tablist li {
- margin: var(--spacing-small) 0 var(--spacing-small) var(--spacing-small);
-}
-
-.tablist a {
- padding: 0 var(--spacing-large);
-}
-
-
-/*
- Search box
- */
-
-#MSearchBox {
- height: var(--searchbar-height);
- background: var(--searchbar-background);
- border-radius: var(--searchbar-height);
- border: 1px solid var(--separator-color);
- overflow: hidden;
- width: var(--searchbar-width);
- position: relative;
- box-shadow: none;
- display: block;
- margin-top: 0;
-}
-
-.left #MSearchSelect {
- left: 0;
-}
-
-.tabs .left #MSearchSelect {
- padding-left: 0;
-}
-
-.tabs #MSearchBox {
- position: absolute;
- right: var(--spacing-medium);
-}
-
-@media screen and (max-width: 767px) {
- .tabs #MSearchBox {
- position: relative;
- right: 0;
- margin-left: var(--spacing-medium);
- margin-top: 0;
- }
-}
-
-#MSearchSelectWindow, #MSearchResultsWindow {
- z-index: 9999;
-}
-
-#MSearchBox.MSearchBoxActive {
- border-color: var(--primary-color);
- box-shadow: inset 0 0 0 1px var(--primary-color);
-}
-
-#main-menu > li:last-child {
- margin-right: 0;
-}
-
-@media screen and (max-width: 767px) {
- #main-menu > li:last-child {
- height: 50px;
- }
-}
-
-#MSearchField {
- font-size: var(--navigation-font-size);
- height: calc(var(--searchbar-height) - 2px);
- background: transparent;
- width: calc(var(--searchbar-width) - 64px);
-}
-
-.MSearchBoxActive #MSearchField {
- color: var(--searchbar-foreground);
-}
-
-#MSearchSelect {
- top: calc(calc(var(--searchbar-height) / 2) - 11px);
-}
-
-.left #MSearchSelect {
- padding-left: 8px;
-}
-
-#MSearchBox span.left, #MSearchBox span.right {
- background: none;
-}
-
-#MSearchBox span.right {
- padding-top: calc(calc(var(--searchbar-height) / 2) - 12px);
- position: absolute;
- right: var(--spacing-small);
-}
-
-.tabs #MSearchBox span.right {
- top: calc(calc(var(--searchbar-height) / 2) - 12px);
-}
-
-@keyframes slideInSearchResults {
- from {
- opacity: 0;
- transform: translate(0, 15px);
- }
-
- to {
- opacity: 1;
- transform: translate(0, 20px);
- }
-}
-
-#MSearchResultsWindow {
- left: auto !important;
- right: var(--spacing-medium);
- border-radius: var(--border-radius-large);
- border: 1px solid var(--separator-color);
- transform: translate(0, 20px);
- box-shadow: var(--box-shadow);
- animation: ease-out 280ms slideInSearchResults;
- background: var(--page-background-color);
-}
-
-iframe#MSearchResults {
- margin: 4px;
-}
-
-iframe {
- color-scheme: normal;
-}
-
-@media (prefers-color-scheme: dark) {
- html:not(.light-mode) iframe#MSearchResults {
- filter: invert() hue-rotate(180deg);
- }
-}
-
-html.dark-mode iframe#MSearchResults {
- filter: invert() hue-rotate(180deg);
-}
-
-#MSearchSelectWindow {
- border: 1px solid var(--separator-color);
- border-radius: var(--border-radius-medium);
- box-shadow: var(--box-shadow);
- background: var(--page-background-color);
-}
-
-#MSearchSelectWindow a.SelectItem {
- font-size: var(--navigation-font-size);
- line-height: var(--content-line-height);
- margin: 0 var(--spacing-small);
- border-radius: var(--border-radius-small);
- color: var(--page-foreground-color) !important;
- font-weight: normal;
-}
-
-#MSearchSelectWindow a.SelectItem:hover {
- background: var(--menu-focus-background);
- color: var(--menu-focus-foreground) !important;
-}
-
-@media screen and (max-width: 767px) {
- #MSearchBox {
- margin-top: var(--spacing-medium);
- margin-bottom: var(--spacing-medium);
- width: calc(100vw - 30px);
- }
-
- #main-menu > li:last-child {
- float: none !important;
- }
-
- #MSearchField {
- width: calc(100vw - 110px);
- }
-
- @keyframes slideInSearchResultsMobile {
- from {
- opacity: 0;
- transform: translate(0, 15px);
- }
-
- to {
- opacity: 1;
- transform: translate(0, 20px);
- }
- }
-
- #MSearchResultsWindow {
- left: var(--spacing-medium) !important;
- right: var(--spacing-medium);
- overflow: auto;
- transform: translate(0, 20px);
- animation: ease-out 280ms slideInSearchResultsMobile;
- }
-
- /*
- * Overwrites for fixing the searchbox on mobile in doxygen 1.9.2
- */
- label.main-menu-btn ~ #searchBoxPos1 {
- top: 3px !important;
- right: 6px !important;
- left: 45px;
- display: flex;
- }
-
- label.main-menu-btn ~ #searchBoxPos1 > #MSearchBox {
- margin-top: 0;
- margin-bottom: 0;
- flex-grow: 2;
- float: left;
- }
-}
-
-/*
- Tree view
- */
-
-#side-nav {
- padding: 0 !important;
- background: var(--side-nav-background);
-}
-
-@media screen and (max-width: 767px) {
- #side-nav {
- display: none;
- }
-
- #doc-content {
- margin-left: 0 !important;
- height: auto !important;
- padding-bottom: calc(2 * var(--spacing-large));
- }
-}
-
-#nav-tree {
- background: transparent;
-}
-
-#nav-tree .label {
- font-size: var(--navigation-font-size);
-}
-
-#nav-tree .item {
- height: var(--tree-item-height);
- line-height: var(--tree-item-height);
-}
-
-#nav-sync {
- top: 12px !important;
- right: 12px;
-}
-
-#nav-tree .selected {
- text-shadow: none;
- background-image: none;
- background-color: transparent;
- box-shadow: inset 4px 0 0 0 var(--primary-color);
-}
-
-#nav-tree a {
- color: var(--side-nav-foreground) !important;
- font-weight: normal;
-}
-
-#nav-tree a:focus {
- outline-style: auto;
-}
-
-#nav-tree .arrow {
- opacity: var(--side-nav-arrow-opacity);
-}
-
-.arrow {
- color: inherit;
- cursor: pointer;
- font-size: 45%;
- vertical-align: middle;
- margin-right: 2px;
- font-family: serif;
- height: auto;
- text-align: right;
-}
-
-#nav-tree div.item:hover .arrow, #nav-tree a:focus .arrow {
- opacity: var(--side-nav-arrow-hover-opacity);
-}
-
-#nav-tree .selected a {
- color: var(--primary-color) !important;
- font-weight: bolder;
- font-weight: 600;
-}
-
-.ui-resizable-e {
- background: var(--separator-color);
- width: 1px;
-}
-
-/*
- Contents
- */
-
-div.header {
- border-bottom: 1px solid var(--separator-color);
- background-color: var(--page-background-color);
- background-image: none;
-}
-
-div.contents, div.header .title, div.header .summary {
- max-width: var(--content-maxwidth);
-}
-
-div.contents, div.header .title {
- line-height: initial;
- margin: calc(var(--spacing-medium) + .2em) auto var(--spacing-medium) auto;
-}
-
-div.header .summary {
- margin: var(--spacing-medium) auto 0 auto;
-}
-
-div.headertitle {
- padding: 0;
-}
-
-div.header .title {
- font-weight: 600;
- font-size: 210%;
- padding: var(--spacing-medium) var(--spacing-large);
- word-break: break-word;
-}
-
-div.header .summary {
- width: auto;
- display: block;
- float: none;
- padding: 0 var(--spacing-large);
-}
-
-td.memSeparator {
- border-color: var(--separator-color);
-}
-
-.mdescLeft, .mdescRight, .memItemLeft, .memItemRight, .memTemplItemLeft, .memTemplItemRight, .memTemplParams {
- background: var(--code-background);
-}
-
-.mdescRight {
- color: var(--page-secondary-foreground-color);
-}
-
-span.mlabel {
- background: var(--primary-color);
- border: none;
- padding: 4px 9px;
- border-radius: 12px;
- margin-right: var(--spacing-medium);
-}
-
-span.mlabel:last-of-type {
- margin-right: 2px;
-}
-
-div.contents {
- padding: 0 var(--spacing-large);
-}
-
-div.contents p, div.contents li {
- line-height: var(--content-line-height);
-}
-
-div.contents div.dyncontent {
- margin: var(--spacing-medium) 0;
-}
-
-@media (prefers-color-scheme: dark) {
- html:not(.light-mode) div.contents div.dyncontent img,
- html:not(.light-mode) div.contents center img,
- html:not(.light-mode) div.contents table img,
- html:not(.light-mode) div.contents div.dyncontent iframe,
- html:not(.light-mode) div.contents center iframe,
- html:not(.light-mode) div.contents table iframe {
- filter: hue-rotate(180deg) invert();
- }
-}
-
-html.dark-mode div.contents div.dyncontent img,
-html.dark-mode div.contents center img,
-html.dark-mode div.contents table img,
-html.dark-mode div.contents div.dyncontent iframe,
-html.dark-mode div.contents center iframe,
-html.dark-mode div.contents table iframe {
- filter: hue-rotate(180deg) invert();
-}
-
-h2.groupheader {
- border-bottom: 1px solid var(--separator-color);
- color: var(--page-foreground-color);
-}
-
-blockquote {
- padding: var(--spacing-small) var(--spacing-medium);
- background: var(--blockquote-background);
- color: var(--blockquote-foreground);
- border-left: 2px solid var(--blockquote-foreground);
- margin: 0;
-}
-
-blockquote p {
- margin: var(--spacing-small) 0 var(--spacing-medium) 0;
-}
-.paramname {
- font-weight: 600;
- color: var(--primary-dark-color);
-}
-
-.glow {
- text-shadow: 0 0 15px var(--primary-light-color) !important;
-}
-
-.alphachar a {
- color: var(--page-foreground-color);
-}
-
-/*
- Table of Contents
- */
-
-div.toc {
- background-color: var(--side-nav-background);
- border: 1px solid var(--separator-color);
- border-radius: var(--border-radius-medium);
- box-shadow: var(--box-shadow);
- padding: 0 var(--spacing-large);
- margin: 0 0 var(--spacing-medium) var(--spacing-medium);
-}
-
-div.toc h3 {
- color: var(--side-nav-foreground);
- font-size: var(--navigation-font-size);
- margin: var(--spacing-large) 0;
-}
-
-div.toc li {
- font-size: var(--navigation-font-size);
- padding: 0;
- background: none;
-}
-
-div.toc li:before {
- content: '↓';
- font-weight: 800;
- font-family: var(--font-family);
- margin-right: var(--spacing-small);
- color: var(--side-nav-foreground);
- opacity: .4;
-}
-
-div.toc ul li.level1 {
- margin: 0;
-}
-
-div.toc ul li.level2, div.toc ul li.level3 {
- margin-top: 0;
-}
-
-
-@media screen and (max-width: 767px) {
- div.toc {
- float: none;
- width: auto;
- margin: 0 0 var(--spacing-medium) 0;
- }
-}
-
-/*
- Code & Fragments
- */
-
-code, div.fragment, pre.fragment {
- border-radius: var(--border-radius-small);
- border: none;
- overflow: hidden;
-}
-
-code {
- display: inline;
- background: var(--code-background);
- color: var(--code-foreground);
- padding: 2px 6px;
- word-break: break-word;
-}
-
-div.fragment, pre.fragment {
- margin: var(--spacing-medium) 0;
- padding: 14px 16px;
- background: var(--fragment-background);
- color: var(--fragment-foreground);
- overflow-x: auto;
-}
-
-@media screen and (max-width: 767px) {
- div.fragment, pre.fragment {
- border-top-right-radius: 0;
- border-bottom-right-radius: 0;
- }
-
- .contents > div.fragment, .textblock > div.fragment, .textblock > pre.fragment {
- margin: var(--spacing-medium) calc(0px - var(--spacing-large));
- border-radius: 0;
- }
-
- .textblock li > .fragment {
- margin: var(--spacing-medium) calc(0px - var(--spacing-large));
- }
-
- .memdoc li > .fragment {
- margin: var(--spacing-medium) calc(0px - var(--spacing-medium));
- }
-
- .memdoc > div.fragment, .memdoc > pre.fragment, dl dd > div.fragment, dl dd pre.fragment {
- margin: var(--spacing-medium) calc(0px - var(--spacing-medium));
- border-radius: 0;
- }
-}
-
-code, code a, pre.fragment, div.fragment, div.fragment .line, div.fragment span, div.fragment .line a, div.fragment .line span {
- font-family: var(--font-family-monospace);
- font-size: var(--code-font-size) !important;
-}
-
-div.line:after {
- margin-right: var(--spacing-medium);
-}
-
-div.fragment .line, pre.fragment {
- white-space: pre;
- word-wrap: initial;
- line-height: var(--fragment-lineheight);
-}
-
-div.fragment span.keyword {
- color: var(--fragment-keyword);
-}
-
-div.fragment span.keywordtype {
- color: var(--fragment-keywordtype);
-}
-
-div.fragment span.keywordflow {
- color: var(--fragment-keywordflow);
-}
-
-div.fragment span.stringliteral {
- color: var(--fragment-token)
-}
-
-div.fragment span.comment {
- color: var(--fragment-comment);
-}
-
-div.fragment a.code {
- color: var(--fragment-link) !important;
-}
-
-div.fragment span.preprocessor {
- color: var(--fragment-preprocessor);
-}
-
-div.fragment span.lineno {
- display: inline-block;
- width: 27px;
- border-right: none;
- background: var(--fragment-linenumber-background);
- color: var(--fragment-linenumber-color);
-}
-
-div.fragment span.lineno a {
- background: none;
- color: var(--fragment-link) !important;
-}
-
-div.fragment .line:first-child .lineno {
- box-shadow: -999999px 0px 0 999999px var(--fragment-linenumber-background), -999998px 0px 0 999999px var(--fragment-linenumber-border);
-}
-
-/*
- dl warning, attention, note, deprecated, bug, ...
- */
-
-dl.warning, dl.attention, dl.note, dl.deprecated, dl.bug, dl.invariant, dl.pre, dl.todo, dl.remark {
- padding: var(--spacing-medium);
- margin: var(--spacing-medium) 0;
- color: var(--page-background-color);
- overflow: hidden;
- margin-left: 0;
- border-radius: var(--border-radius-small);
-}
-
-dl.section dd {
- margin-bottom: 2px;
-}
-
-dl.warning, dl.attention {
- background: var(--warning-color);
- border-left: 8px solid var(--warning-color-dark);
- color: var(--warning-color-darker);
-}
-
-dl.warning dt, dl.attention dt {
- color: var(--warning-color-dark);
-}
-
-dl.note, dl.remark {
- background: var(--note-color);
- border-left: 8px solid var(--note-color-dark);
- color: var(--note-color-darker);
-}
-
-dl.note dt, dl.remark dt {
- color: var(--note-color-dark);
-}
-
-dl.todo {
- background: var(--todo-color);
- border-left: 8px solid var(--todo-color-dark);
- color: var(--todo-color-darker);
-}
-
-dl.todo dt {
- color: var(--todo-color-dark);
-}
-
-dl.bug {
- background: var(--bug-color);
- border-left: 8px solid var(--bug-color-dark);
- color: var(--bug-color-darker);
-}
-
-dl.bug dt a {
- color: var(--bug-color-dark) !important;
-}
-
-dl.deprecated {
- background: var(--deprecated-color);
- border-left: 8px solid var(--deprecated-color-dark);
- color: var(--deprecated-color-darker);
-}
-
-dl.deprecated dt a {
- color: var(--deprecated-color-dark) !important;
-}
-
-dl.section dd, dl.bug dd, dl.deprecated dd, dl.todo dd {
- margin-inline-start: 0px;
-}
-
-dl.invariant, dl.pre {
- background: var(--invariant-color);
- border-left: 8px solid var(--invariant-color-dark);
- color: var(--invariant-color-darker);
-}
-
-/*
- memitem
- */
-
-div.memdoc, div.memproto, h2.memtitle {
- box-shadow: none;
- background-image: none;
- border: none;
-}
-
-div.memdoc {
- padding: 0 var(--spacing-medium);
- background: var(--page-background-color);
-}
-
-h2.memtitle, div.memitem {
- border: 1px solid var(--separator-color);
-}
-
-div.memproto, h2.memtitle {
- background: var(--code-background);
- text-shadow: none;
-}
-
-h2.memtitle {
- font-weight: 500;
- font-family: monospace, fixed;
- border-bottom: none;
- border-top-left-radius: var(--border-radius-medium);
- border-top-right-radius: var(--border-radius-medium);
- word-break: break-all;
-}
-
-a:target + h2.memtitle, a:target + h2.memtitle + div.memitem {
- border-color: var(--primary-light-color);
-}
-
-a:target + h2.memtitle {
- box-shadow: -3px -3px 3px 0 var(--primary-lightest-color), 3px -3px 3px 0 var(--primary-lightest-color);
-}
-
-a:target + h2.memtitle + div.memitem {
- box-shadow: 0 0 10px 0 var(--primary-lighter-color);
-}
-
-div.memitem {
- border-top-right-radius: var(--border-radius-medium);
- border-bottom-right-radius: var(--border-radius-medium);
- border-bottom-left-radius: var(--border-radius-medium);
- overflow: hidden;
- display: block !important;
-}
-
-div.memdoc {
- border-radius: 0;
-}
-
-div.memproto {
- border-radius: 0 var(--border-radius-small) 0 0;
- overflow: auto;
- border-bottom: 1px solid var(--separator-color);
- padding: var(--spacing-medium);
- margin-bottom: -1px;
-}
-
-div.memtitle {
- border-top-right-radius: var(--border-radius-medium);
- border-top-left-radius: var(--border-radius-medium);
-}
-
-div.memproto table.memname {
- font-family: monospace, fixed;
- color: var(--page-foreground-color);
-}
-
-table.mlabels, table.mlabels > tbody {
- display: block;
-}
-
-td.mlabels-left {
- width: auto;
-}
-
-table.mlabels > tbody > tr:first-child {
- display: flex;
- justify-content: space-between;
- flex-wrap: wrap;
-}
-
-.memname, .memitem span.mlabels {
- margin: 0
-}
-
-/*
- reflist
- */
-
-dl.reflist {
- box-shadow: var(--box-shadow);
- border-radius: var(--border-radius-medium);
- border: 1px solid var(--separator-color);
- overflow: hidden;
- padding: 0;
-}
-
-
-dl.reflist dt, dl.reflist dd {
- box-shadow: none;
- text-shadow: none;
- background-image: none;
- border: none;
- padding: 12px;
-}
-
-
-dl.reflist dt {
- font-weight: 500;
- border-radius: 0;
- background: var(--code-background);
- border-bottom: 1px solid var(--separator-color);
- color: var(--page-foreground-color)
-}
-
-
-dl.reflist dd {
- background: none;
-}
-
-/*
- Table
- */
-
-table.markdownTable, table.fieldtable {
- width: 100%;
- border: 1px solid var(--separator-color);
- margin: var(--spacing-medium) 0;
-}
-
-table.fieldtable {
- box-shadow: none;
- border-radius: var(--border-radius-small);
-}
-
-th.markdownTableHeadLeft, th.markdownTableHeadRight, th.markdownTableHeadCenter, th.markdownTableHeadNone {
- background: var(--tablehead-background);
- color: var(--tablehead-foreground);
- font-weight: 600;
- font-size: var(--page-font-size);
-}
-
-table.markdownTable td, table.markdownTable th, table.fieldtable dt {
- border: 1px solid var(--separator-color);
- padding: var(--spacing-small) var(--spacing-medium);
-}
-
-table.fieldtable th {
- font-size: var(--page-font-size);
- font-weight: 600;
- background-image: none;
- background-color: var(--tablehead-background);
- color: var(--tablehead-foreground);
- border-bottom: 1px solid var(--separator-color);
-}
-
-.fieldtable td.fieldtype, .fieldtable td.fieldname {
- border-bottom: 1px solid var(--separator-color);
- border-right: 1px solid var(--separator-color);
-}
-
-.fieldtable td.fielddoc {
- border-bottom: 1px solid var(--separator-color);
-}
-
-.memberdecls td.glow, .fieldtable tr.glow {
- background-color: var(--primary-light-color);
- box-shadow: 0 0 15px var(--primary-lighter-color);
-}
-
-table.memberdecls {
- display: block;
- overflow-x: auto;
- overflow-y: hidden;
-}
-
-
-/*
- Horizontal Rule
- */
-
-hr {
- margin-top: var(--spacing-large);
- margin-bottom: var(--spacing-large);
- border-top:1px solid var(--separator-color);
-}
-
-.contents hr {
- box-shadow: var(--content-maxwidth) 0 0 0 var(--separator-color), calc(0px - var(--content-maxwidth)) 0 0 0 var(--separator-color);
-}
-
-.contents img, .contents .center, .contents center {
- max-width: 100%;
- overflow: scroll;
-}
-
-/*
- Directories
- */
-div.directory {
- border-top: 1px solid var(--separator-color);
- border-bottom: 1px solid var(--separator-color);
- width: auto;
-}
-
-table.directory {
- font-family: var(--font-family);
- font-size: var(--page-font-size);
- font-weight: normal;
-}
-
-.directory td.entry {
- padding: var(--spacing-small);
- display: flex;
- align-items: center;
-}
-
-.directory tr.even {
- background-color: var(--odd-color);
-}
-
-.icona {
- width: auto;
- height: auto;
- margin: 0 var(--spacing-small);
-}
-
-.icon {
- background: var(--primary-color);
- width: 18px;
- height: 18px;
- line-height: 18px;
-}
-
-.iconfopen, .icondoc, .iconfclosed {
- background-position: center;
- margin-bottom: 0;
-}
-
-.icondoc {
- filter: saturate(0.2);
-}
-
-@media screen and (max-width: 767px) {
- div.directory {
- margin-left: calc(0px - var(--spacing-medium));
- margin-right: calc(0px - var(--spacing-medium));
- }
-}
-
-@media (prefers-color-scheme: dark) {
- html:not(.light-mode) .iconfopen, html:not(.light-mode) .iconfclosed {
- filter: hue-rotate(180deg) invert();
- }
-}
-
-html.dark-mode .iconfopen, html.dark-mode .iconfclosed {
- filter: hue-rotate(180deg) invert();
-}
-
-/*
- Class list
- */
-
-.classindex dl.odd {
- background: var(--odd-color);
- border-radius: var(--border-radius-small);
-}
-
-@media screen and (max-width: 767px) {
- .classindex {
- margin: 0 calc(0px - var(--spacing-small));
- }
-}
-
-/*
- Footer and nav-path
- */
-
-#nav-path {
- margin-bottom: -1px;
- width: 100%;
-}
-
-#nav-path ul {
- background-image: none;
- background: var(--page-background-color);
- border: none;
- border-top: 1px solid var(--separator-color);
- border-bottom: 1px solid var(--separator-color);
- font-size: var(--navigation-font-size);
-}
-
-img.footer {
- width: 60px;
-}
-
-.navpath li.footer {
- color: var(--page-secondary-foreground-color);
-}
-
-address.footer {
- margin-bottom: var(--spacing-large);
-}
-
-#nav-path li.navelem {
- background-image: none;
- display: flex;
- align-items: center;
-}
-
-.navpath li.navelem a {
- text-shadow: none;
- display: inline-block;
- color: var(--primary-color) !important;
-}
-
-.navpath li.navelem b {
- color: var(--primary-dark-color);
- font-weight: 500;
-}
-
-li.navelem {
- padding: 0;
- margin-left: -8px;
-}
-
-li.navelem:first-child {
- margin-left: var(--spacing-large);
-}
-
-li.navelem:first-child:before {
- display: none;
-}
-
-#nav-path li.navelem:after {
- content: '';
- border: 5px solid var(--page-background-color);
- border-bottom-color: transparent;
- border-right-color: transparent;
- border-top-color: transparent;
- transform: scaleY(4.2);
- z-index: 10;
- margin-left: 6px;
-}
-
-#nav-path li.navelem:before {
- content: '';
- border: 5px solid var(--separator-color);
- border-bottom-color: transparent;
- border-right-color: transparent;
- border-top-color: transparent;
- transform: scaleY(3.2);
- margin-right: var(--spacing-small);
-}
-
-.navpath li.navelem a:hover {
- color: var(--primary-color);
-}
-
-/*
- Optional Dark mode toggle button
-*/
-
-doxygen-awesome-dark-mode-toggle {
- display: inline-block;
- margin: 0 0 0 var(--spacing-small);
- padding: 0;
- width: var(--searchbar-height);
- height: var(--searchbar-height);
- background: none;
- border: none;
- font-size: 23px;
- border-radius: var(--border-radius-medium);
- vertical-align: middle;
- text-align: center;
- line-height: var(--searchbar-height);
-}
-
-doxygen-awesome-dark-mode-toggle:hover {
- background: var(--separator-color);
-}
-
-doxygen-awesome-dark-mode-toggle:after {
- content: var(--darkmode-toggle-button-icon)
-}
diff --git a/lib/librmb-main/docs/doxygen.h b/lib/librmb-main/docs/doxygen.h
deleted file mode 100644
index 385eaee..0000000
--- a/lib/librmb-main/docs/doxygen.h
+++ /dev/null
@@ -1,33 +0,0 @@
-/** @file doxygen.h
- * @brief Document namespaces here so they show up in doxygen
- *
- * Doxygen doesn't like to document functions in namespaces that aren't
- * documented, so it would probably be better to document the namespaces
- * in a seperate file dedicated to documenting these namespaces rather than
- * documenting them in random files where they happen to show up
- */
-
-/**
- * @brief the master namespace of librmb
- *
- * This is where all of the librmb specific functions and classes are
- * placed for your use
- */
-namespace rmb {
-
-/**
- * @brief namespace for trajectory calculations
- *
- * This namespace contains functionality that allows you to calculate
- * trajectories based on input criteria
- */
-namespace trajectory {}
-} // namespace rmb
-
-/**
- * @brief WPILib namespace
- *
- * Generally this namespace is used to overload and add to existing wpilib
- * functionality.
- */
-namespace wpi {}
\ No newline at end of file
diff --git a/lib/librmb-main/docs/errors.out b/lib/librmb-main/docs/errors.out
deleted file mode 100644
index bfd9d9f..0000000
--- a/lib/librmb-main/docs/errors.out
+++ /dev/null
@@ -1,379 +0,0 @@
-warning: ignoring unsupported tag 'SHOW_HEADERFILE' at line 609, file docs/Doxyfile
-warning: ignoring unsupported tag 'WARN_IF_INCOMPLETE_DOC' at line 827, file docs/Doxyfile
-warning: ignoring unsupported tag 'DOCSET_FEEDURL' at line 1358, file docs/Doxyfile
-warning: ignoring unsupported tag 'FULL_SIDEBAR' at line 1569, file docs/Doxyfile
-warning: ignoring unsupported tag 'OBFUSCATE_EMAILS' at line 1600, file docs/Doxyfile
-warning: ignoring unsupported tag 'MATHJAX_VERSION' at line 1659, file docs/Doxyfile
-warning: ignoring unsupported tag 'DIR_GRAPH_MAX_DEPTH' at line 2512, file docs/Doxyfile
-/home/runner/work/librmb/librmb/src/rmb/sensors/AHRS/AHRSGyro.h:11: warning: Compound rmb::AHRSGyro is not documented.
-/home/runner/work/librmb/librmb/src/rmb/sensors/gyro.h:13: warning: Compound rmb::Gyro is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:11: warning: Compound rmb::LogitechGamepad is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:13: warning: Compound rmb::LogitechGamepad::Axes is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:23: warning: Compound rmb::LogitechGamepad::Buttons is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechJoystick.h:9: warning: Compound rmb::LogitechJoystick is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechJoystick.h:11: warning: Compound rmb::LogitechJoystick::Axes is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxPositionController.h:76: warning: Compound rmb::SparkMaxPositionController::CreateInfo is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxPositionController.h:54: warning: Compound rmb::SparkMaxPositionControllerHelper::FeedbackConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxPositionController.h:18: warning: Compound rmb::SparkMaxPositionControllerHelper::MotorConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxPositionController.h:27: warning: Compound rmb::SparkMaxPositionControllerHelper::PIDConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxPositionController.h:42: warning: Compound rmb::SparkMaxPositionControllerHelper::ProfileConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxPositionController.h:34: warning: Compound rmb::SparkMaxPositionControllerHelper::Range is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxVelocityController.h:70: warning: Compound rmb::SparkMaxVelocityController::CreateInfo is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxVelocityController.h:49: warning: Compound rmb::SparkMaxVelocityControllerHelper::FeedbackConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxVelocityController.h:18: warning: Compound rmb::SparkMaxVelocityControllerHelper::MotorConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxVelocityController.h:28: warning: Compound rmb::SparkMaxVelocityControllerHelper::PIDConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxVelocityController.h:35: warning: Compound rmb::SparkMaxVelocityControllerHelper::ProfileConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/Talon/TalonFXPositionController.h:143: warning: Compound rmb::TalonFXPositionController is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/Talon/TalonFXPositionController.h:145: warning: Compound rmb::TalonFXPositionController::CreateInfo is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/Talon/TalonFXPositionController.h:136: warning: Compound rmb::TalonFXPositionControllerHelper::CANCoderConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/Talon/TalonFXPositionController.h:131: warning: Compound rmb::TalonFXPositionControllerHelper::FeedbackConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/Talon/TalonFXPositionController.h:19: warning: Compound rmb::TalonFXPositionControllerHelper::MotorConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/Talon/TalonFXPositionController.h:94: warning: Compound rmb::TalonFXPositionControllerHelper::OpenLoopConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/Talon/TalonFXPositionController.h:98: warning: Compound rmb::TalonFXPositionControllerHelper::PIDConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/Talon/TalonFXPositionController.h:121: warning: Compound rmb::TalonFXPositionControllerHelper::ProfileConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/Talon/TalonFXPositionController.h:108: warning: Compound rmb::TalonFXPositionControllerHelper::Range is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/Talon/TalonFXVelocityController.h:33: warning: Compound rmb::TalonFXVelocityController is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/Talon/TalonFXVelocityController.h:35: warning: Compound rmb::TalonFXVelocityController::CreateInfo is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/Talon/TalonFXVelocityController.h:21: warning: Compound rmb::TalonFXVelocityControllerHelper::OpenLoopConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/Talon/TalonFXVelocityController.h:15: warning: Compound rmb::TalonFXVelocityControllerHelper::PIDConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/Talon/TalonFXVelocityController.h:26: warning: Compound rmb::TalonFXVelocityControllerHelper::ProfileConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:39: warning: Member LogitechGamepad(int channel, double deadZone=0.0, bool squareOutputs=false) (function) of class rmb::LogitechGamepad is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:44: warning: Member GetLeftX() const (function) of class rmb::LogitechGamepad is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:55: warning: Member LeftXLessThan(double threshold) const (function) of class rmb::LogitechGamepad is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:58: warning: Member LeftXGreaterThan(double threshold) const (function) of class rmb::LogitechGamepad is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:62: warning: Member GetLeftY() const (function) of class rmb::LogitechGamepad is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:74: warning: Member LeftYLessThan(double threshold) const (function) of class rmb::LogitechGamepad is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:77: warning: Member LeftYgreaterThan(double threshold) const (function) of class rmb::LogitechGamepad is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:81: warning: Member GetLeftStickButton() const (function) of class rmb::LogitechGamepad is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:82: warning: Member GetLeftStickButtonPressed() (function) of class rmb::LogitechGamepad is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:85: warning: Member GetLeftStickButtonReleased() (function) of class rmb::LogitechGamepad is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:88: warning: Member LeftStickButton() const (function) of class rmb::LogitechGamepad is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:90: warning: Member GetRightX() const (function) of class rmb::LogitechGamepad is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:102: warning: Member RightXLessThan(double threshold) const (function) of class rmb::LogitechGamepad is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:105: warning: Member RightXgreaterThan(double threshold) const (function) of class rmb::LogitechGamepad is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:109: warning: Member GetRightY() const (function) of class rmb::LogitechGamepad is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:121: warning: Member RightYLessThan(double threshold) const (function) of class rmb::LogitechGamepad is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:124: warning: Member RightYGearterThan(double threshold) const (function) of class rmb::LogitechGamepad is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:128: warning: Member GetRightStickButton() const (function) of class rmb::LogitechGamepad is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:129: warning: Member GetRightStickButtonPressed() (function) of class rmb::LogitechGamepad is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:132: warning: Member GetRightStickButtonReleased() (function) of class rmb::LogitechGamepad is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:135: warning: Member RightStickButton() const (function) of class rmb::LogitechGamepad is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:137: warning: Member GetLeftTrigger() const (function) of class rmb::LogitechGamepad is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:148: warning: Member LeftTriggerLessThan(double threshold) const (function) of class rmb::LogitechGamepad is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:151: warning: Member LeftTriggergreaterThan(double threshold) const (function) of class rmb::LogitechGamepad is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:155: warning: Member GetRightTrigger() const (function) of class rmb::LogitechGamepad is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:166: warning: Member RightTriggerLessThan(double threshold) const (function) of class rmb::LogitechGamepad is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:169: warning: Member RightTriggerGreaterThan(double threshold) const (function) of class rmb::LogitechGamepad is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:173: warning: Member GetLeftBumper() const (function) of class rmb::LogitechGamepad is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:174: warning: Member GetLeftBumperPressed() (function) of class rmb::LogitechGamepad is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:177: warning: Member GetLeftBumperReleased() (function) of class rmb::LogitechGamepad is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:180: warning: Member LeftBumper() const (function) of class rmb::LogitechGamepad is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:182: warning: Member GetRightBumper() const (function) of class rmb::LogitechGamepad is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:183: warning: Member GetRightBumperPressed() (function) of class rmb::LogitechGamepad is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:186: warning: Member GetRightBumperReleased() (function) of class rmb::LogitechGamepad is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:189: warning: Member RightBumper() const (function) of class rmb::LogitechGamepad is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:191: warning: Member GetX() const (function) of class rmb::LogitechGamepad is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:192: warning: Member GetXPressed() (function) of class rmb::LogitechGamepad is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:193: warning: Member GetXReleased() (function) of class rmb::LogitechGamepad is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:194: warning: Member X() const (function) of class rmb::LogitechGamepad is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:196: warning: Member GetY() const (function) of class rmb::LogitechGamepad is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:197: warning: Member GetYPressed() (function) of class rmb::LogitechGamepad is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:198: warning: Member GetYReleased() (function) of class rmb::LogitechGamepad is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:199: warning: Member Y() const (function) of class rmb::LogitechGamepad is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:201: warning: Member GetA() const (function) of class rmb::LogitechGamepad is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:202: warning: Member GetAPressed() (function) of class rmb::LogitechGamepad is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:203: warning: Member GetAReleased() (function) of class rmb::LogitechGamepad is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:204: warning: Member A() const (function) of class rmb::LogitechGamepad is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:206: warning: Member GetB() const (function) of class rmb::LogitechGamepad is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:207: warning: Member GetBPressed() (function) of class rmb::LogitechGamepad is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:208: warning: Member GetBReleased() (function) of class rmb::LogitechGamepad is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:209: warning: Member B() const (function) of class rmb::LogitechGamepad is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:211: warning: Member GetBackButton() const (function) of class rmb::LogitechGamepad is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:212: warning: Member GetBackButtonPressed() (function) of class rmb::LogitechGamepad is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:215: warning: Member GetBackButtonReleased() (function) of class rmb::LogitechGamepad is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:218: warning: Member BackButton() const (function) of class rmb::LogitechGamepad is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:220: warning: Member GetStartButton() const (function) of class rmb::LogitechGamepad is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:221: warning: Member GetStartButtonPressed() (function) of class rmb::LogitechGamepad is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:224: warning: Member GetStartButtonReleased() (function) of class rmb::LogitechGamepad is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:227: warning: Member StartButton() const (function) of class rmb::LogitechGamepad is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:14: warning: Member leftX (variable) of struct rmb::LogitechGamepad::Axes is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:15: warning: Member leftY (variable) of struct rmb::LogitechGamepad::Axes is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:16: warning: Member leftTrigger (variable) of struct rmb::LogitechGamepad::Axes is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:18: warning: Member rightX (variable) of struct rmb::LogitechGamepad::Axes is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:19: warning: Member rightY (variable) of struct rmb::LogitechGamepad::Axes is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:20: warning: Member rightTrigger (variable) of struct rmb::LogitechGamepad::Axes is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:24: warning: Member leftStick (variable) of struct rmb::LogitechGamepad::Buttons is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:25: warning: Member rightStick (variable) of struct rmb::LogitechGamepad::Buttons is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:27: warning: Member rightBumper (variable) of struct rmb::LogitechGamepad::Buttons is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:28: warning: Member leftBumper (variable) of struct rmb::LogitechGamepad::Buttons is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:30: warning: Member X (variable) of struct rmb::LogitechGamepad::Buttons is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:31: warning: Member Y (variable) of struct rmb::LogitechGamepad::Buttons is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:32: warning: Member A (variable) of struct rmb::LogitechGamepad::Buttons is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:33: warning: Member B (variable) of struct rmb::LogitechGamepad::Buttons is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:35: warning: Member backButton (variable) of struct rmb::LogitechGamepad::Buttons is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechGamepad.h:36: warning: Member startButton (variable) of struct rmb::LogitechGamepad::Buttons is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechJoystick.h:18: warning: Member LogitechJoystick(int channel, double deadZone=0.0, bool squareOutputs=false) (function) of class rmb::LogitechJoystick is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechJoystick.h:23: warning: Member GetX() const (function) of class rmb::LogitechJoystick is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechJoystick.h:31: warning: Member XLessThan(double threshold) const (function) of class rmb::LogitechJoystick is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechJoystick.h:34: warning: Member XMoreThan(double threshold) const (function) of class rmb::LogitechJoystick is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechJoystick.h:38: warning: Member GetY() const (function) of class rmb::LogitechJoystick is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechJoystick.h:46: warning: Member YLessThan(double threshold) const (function) of class rmb::LogitechJoystick is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechJoystick.h:50: warning: Member YMoreThan(double threshold) const (function) of class rmb::LogitechJoystick is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechJoystick.h:54: warning: Member GetTwist() const (function) of class rmb::LogitechJoystick is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechJoystick.h:62: warning: Member TwistLessThan(double threshold) const (function) of class rmb::LogitechJoystick is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechJoystick.h:65: warning: Member TwistMoreThan(double threshold) const (function) of class rmb::LogitechJoystick is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechJoystick.h:69: warning: Member GetThrottle() const (function) of class rmb::LogitechJoystick is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechJoystick.h:74: warning: Member ThrottleLessThan(double threshold) const (function) of class rmb::LogitechJoystick is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechJoystick.h:77: warning: Member ThrottleMoreThan(double threshold) const (function) of class rmb::LogitechJoystick is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechJoystick.h:81: warning: Member GetTrigger() const (function) of class rmb::LogitechJoystick is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechJoystick.h:82: warning: Member GetTriggerPressed() (function) of class rmb::LogitechJoystick is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechJoystick.h:83: warning: Member GetTriggerReleased() (function) of class rmb::LogitechJoystick is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechJoystick.h:84: warning: Member Trigger() const (function) of class rmb::LogitechJoystick is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechJoystick.h:12: warning: Member X (variable) of struct rmb::LogitechJoystick::Axes is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechJoystick.h:13: warning: Member Y (variable) of struct rmb::LogitechJoystick::Axes is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechJoystick.h:14: warning: Member twist (variable) of struct rmb::LogitechJoystick::Axes is not documented.
-/home/runner/work/librmb/librmb/src/rmb/controller/LogitechJoystick.h:15: warning: Member throttle (variable) of struct rmb::LogitechJoystick::Axes is not documented.
-/home/runner/work/librmb/librmb/src/rmb/drive/BaseDrive.h:171: warning: argument 'trajectorygroup' of command @param is not found in the argument list of rmb::BaseDrive::followPPTrajectoryGroup(std::vector< pathplanner::PathPlannerTrajectory > trajectoryGroup, std::initializer_list< frc2::Subsystem * > driveRequirments)
-/home/runner/work/librmb/librmb/src/rmb/drive/BaseDrive.h:181: warning: The following parameter of rmb::BaseDrive::followPPTrajectoryGroup(std::vector< pathplanner::PathPlannerTrajectory > trajectoryGroup, std::initializer_list< frc2::Subsystem * > driveRequirments) is not documented:
- parameter 'trajectoryGroup'
-/home/runner/work/librmb/librmb/src/rmb/drive/BaseDrive.h:204: warning: argument 'evenMap' of command @param is not found in the argument list of rmb::BaseDrive::followPPTrajectoryGroupWithEvents(std::vector< pathplanner::PathPlannerTrajectory > trajectoryGroup, std::unordered_map< std::string, std::shared_ptr< frc2::Command >> eventMap, std::initializer_list< frc2::Subsystem * > driveRequirments)
-/home/runner/work/librmb/librmb/src/rmb/drive/BaseDrive.h:217: warning: The following parameter of rmb::BaseDrive::followPPTrajectoryGroupWithEvents(std::vector< pathplanner::PathPlannerTrajectory > trajectoryGroup, std::unordered_map< std::string, std::shared_ptr< frc2::Command >> eventMap, std::initializer_list< frc2::Subsystem * > driveRequirments) is not documented:
- parameter 'eventMap'
-/home/runner/work/librmb/librmb/src/rmb/drive/BaseDrive.h:186: warning: argument 'evenMap' of command @param is not found in the argument list of rmb::BaseDrive::followPPTrajectoryWithEvents(pathplanner::PathPlannerTrajectory trajectory, std::unordered_map< std::string, std::shared_ptr< frc2::Command >> eventMap, std::initializer_list< frc2::Subsystem * > driveRequirments)
-/home/runner/work/librmb/librmb/src/rmb/drive/BaseDrive.h:198: warning: The following parameter of rmb::BaseDrive::followPPTrajectoryWithEvents(pathplanner::PathPlannerTrajectory trajectory, std::unordered_map< std::string, std::shared_ptr< frc2::Command >> eventMap, std::initializer_list< frc2::Subsystem * > driveRequirments) is not documented:
- parameter 'eventMap'
-/home/runner/work/librmb/librmb/src/rmb/drive/BaseDrive.h:143: warning: argument 'trajectorygroup' of command @param is not found in the argument list of rmb::BaseDrive::followWPILibTrajectoryGroup(std::vector< frc::Trajectory > trajectoryGroup, std::initializer_list< frc2::Subsystem * > driveRequirments)
-/home/runner/work/librmb/librmb/src/rmb/drive/BaseDrive.h:153: warning: The following parameter of rmb::BaseDrive::followWPILibTrajectoryGroup(std::vector< frc::Trajectory > trajectoryGroup, std::initializer_list< frc2::Subsystem * > driveRequirments) is not documented:
- parameter 'trajectoryGroup'
-/home/runner/work/librmb/librmb/src/rmb/drive/BaseDrive.h:223: warning: argument 'evenMap' of command @param is not found in the argument list of rmb::BaseDrive::fullPPAuto(pathplanner::PathPlannerTrajectory trajectory, std::unordered_map< std::string, std::shared_ptr< frc2::Command >> eventMap, std::initializer_list< frc2::Subsystem * > driveRequirments)
-/home/runner/work/librmb/librmb/src/rmb/drive/BaseDrive.h:235: warning: The following parameter of rmb::BaseDrive::fullPPAuto(pathplanner::PathPlannerTrajectory trajectory, std::unordered_map< std::string, std::shared_ptr< frc2::Command >> eventMap, std::initializer_list< frc2::Subsystem * > driveRequirments) is not documented:
- parameter 'eventMap'
-/home/runner/work/librmb/librmb/src/rmb/drive/BaseDrive.h:241: warning: argument 'evenMap' of command @param is not found in the argument list of rmb::BaseDrive::fullPPAuto(std::vector< pathplanner::PathPlannerTrajectory > trajectoryGroup, std::unordered_map< std::string, std::shared_ptr< frc2::Command >> eventMap, std::initializer_list< frc2::Subsystem * > driveRequirments)
-/home/runner/work/librmb/librmb/src/rmb/drive/BaseDrive.h:253: warning: The following parameter of rmb::BaseDrive::fullPPAuto(std::vector< pathplanner::PathPlannerTrajectory > trajectoryGroup, std::unordered_map< std::string, std::shared_ptr< frc2::Command >> eventMap, std::initializer_list< frc2::Subsystem * > driveRequirments) is not documented:
- parameter 'eventMap'
-/home/runner/work/librmb/librmb/src/rmb/drive/DifferentialDrive.h:38: warning: argument 'initialPose' of command @param is not found in the argument list of rmb::DifferentialDrive::DifferentialDrive(std::unique_ptr< LinearVelocityController > left, std::unique_ptr< LinearVelocityController > right, std::shared_ptr< const frc::Gyro > gyro, frc::DifferentialDriveKinematics kinematics, frc::RamseteController ramseteController, std::string visionTable, const frc::Pose2d &initalPose=frc::Pose2d())
-/home/runner/work/librmb/librmb/src/rmb/drive/DifferentialDrive.h:51: warning: The following parameter of rmb::DifferentialDrive::DifferentialDrive(std::unique_ptr< LinearVelocityController > left, std::unique_ptr< LinearVelocityController > right, std::shared_ptr< const frc::Gyro > gyro, frc::DifferentialDriveKinematics kinematics, frc::RamseteController ramseteController, std::string visionTable, const frc::Pose2d &initalPose=frc::Pose2d()) is not documented:
- parameter 'initalPose'
-/home/runner/work/librmb/librmb/src/rmb/drive/DifferentialDrive.h:60: warning: argument 'initialPose' of command @param is not found in the argument list of rmb::DifferentialDrive::DifferentialDrive(std::unique_ptr< LinearVelocityController > left, std::unique_ptr< LinearVelocityController > right, std::shared_ptr< const frc::Gyro > gyro, frc::DifferentialDriveKinematics kinematics, frc::RamseteController ramseteController, const frc::Pose2d &initalPose=frc::Pose2d())
-/home/runner/work/librmb/librmb/src/rmb/drive/DifferentialDrive.h:71: warning: The following parameter of rmb::DifferentialDrive::DifferentialDrive(std::unique_ptr< LinearVelocityController > left, std::unique_ptr< LinearVelocityController > right, std::shared_ptr< const frc::Gyro > gyro, frc::DifferentialDriveKinematics kinematics, frc::RamseteController ramseteController, const frc::Pose2d &initalPose=frc::Pose2d()) is not documented:
- parameter 'initalPose'
-/home/runner/work/librmb/librmb/src/rmb/drive/DifferentialDrive.h:230: warning: argument 'driveRequirments' of command @param is not found in the argument list of rmb::DifferentialDrive::followPPTrajectory(pathplanner::PathPlannerTrajectory trajectory, std::initializer_list< frc2::Subsystem * > driveRequirements)
-/home/runner/work/librmb/librmb/src/rmb/drive/DifferentialDrive.h:238: warning: The following parameter of rmb::DifferentialDrive::followPPTrajectory(pathplanner::PathPlannerTrajectory trajectory, std::initializer_list< frc2::Subsystem * > driveRequirements) is not documented:
- parameter 'driveRequirements'
-/home/runner/work/librmb/librmb/src/rmb/drive/DifferentialDrive.h:217: warning: argument 'driveRequirments' of command @param is not found in the argument list of rmb::DifferentialDrive::followWPILibTrajectory(frc::Trajectory trajectory, std::initializer_list< frc2::Subsystem * > driveRequirements)
-/home/runner/work/librmb/librmb/src/rmb/drive/DifferentialDrive.h:225: warning: The following parameter of rmb::DifferentialDrive::followWPILibTrajectory(frc::Trajectory trajectory, std::initializer_list< frc2::Subsystem * > driveRequirements) is not documented:
- parameter 'driveRequirements'
-/home/runner/work/librmb/librmb/src/rmb/drive/SwerveDrive.h:96: warning: Member drivePolar(double speed, const frc::Rotation2d &angle, double zRotation, bool fieldOriented) (function) of class rmb::SwerveDrive is not documented.
-/home/runner/work/librmb/librmb/src/rmb/drive/SwerveDrive.h:99: warning: Member driveModulePowers(std::array< SwerveModulePower, NumModules > powers) (function) of class rmb::SwerveDrive is not documented.
-/home/runner/work/librmb/librmb/src/rmb/drive/SwerveDrive.h:101: warning: Member driveModuleStates(std::array< frc::SwerveModuleState, NumModules > states) (function) of class rmb::SwerveDrive is not documented.
-/home/runner/work/librmb/librmb/src/rmb/drive/SwerveDrive.h:103: warning: Member getModuleStates() const (function) of class rmb::SwerveDrive is not documented.
-/home/runner/work/librmb/librmb/src/rmb/drive/SwerveDrive.h:105: warning: Member getModulePositions() const (function) of class rmb::SwerveDrive is not documented.
-/home/runner/work/librmb/librmb/src/rmb/drive/SwerveDrive.h:107: warning: Member getModules() const (function) of class rmb::SwerveDrive is not documented.
-/home/runner/work/librmb/librmb/src/rmb/drive/SwerveDrive.h:132: warning: Member getTargetModuleStates() const (function) of class rmb::SwerveDrive is not documented.
-/home/runner/work/librmb/librmb/src/rmb/drive/SwerveDrive.h:222: warning: Member updateNTDebugInfo(bool openLoopVelocity=false) (function) of class rmb::SwerveDrive is not documented.
-/home/runner/work/librmb/librmb/src/rmb/drive/SwerveDrive.inl:133: warning: Found unknown command '\vec'
-/home/runner/work/librmb/librmb/src/rmb/drive/SwerveDrive.h:210: warning: argument 'driveRequirments' of command @param is not found in the argument list of rmb::SwerveDrive< NumModules >::followPPTrajectory(pathplanner::PathPlannerTrajectory trajectory, std::initializer_list< frc2::Subsystem * > driveRequirements)
-/home/runner/work/librmb/librmb/src/rmb/drive/SwerveDrive.h:218: warning: The following parameter of rmb::SwerveDrive::followPPTrajectory(pathplanner::PathPlannerTrajectory trajectory, std::initializer_list< frc2::Subsystem * > driveRequirements) is not documented:
- parameter 'driveRequirements'
-/home/runner/work/librmb/librmb/src/rmb/drive/SwerveDrive.h:195: warning: argument 'driveRequirments' of command @param is not found in the argument list of rmb::SwerveDrive< NumModules >::followWPILibTrajectory(frc::Trajectory trajectory, std::initializer_list< frc2::Subsystem * > driveRequirements)
-/home/runner/work/librmb/librmb/src/rmb/drive/SwerveDrive.h:203: warning: The following parameter of rmb::SwerveDrive::followWPILibTrajectory(frc::Trajectory trajectory, std::initializer_list< frc2::Subsystem * > driveRequirements) is not documented:
- parameter 'driveRequirements'
-/home/runner/work/librmb/librmb/src/rmb/drive/SwerveModule.h:31: warning: Member power (variable) of struct rmb::SwerveModulePower is not documented.
-/home/runner/work/librmb/librmb/src/rmb/drive/SwerveModule.h:32: warning: Member angle (variable) of struct rmb::SwerveModulePower is not documented.
-/home/runner/work/librmb/librmb/src/rmb/drive/SwerveModule.h:55: warning: Member SwerveModule(SwerveModule &&)=default (function) of class rmb::SwerveModule is not documented.
-/home/runner/work/librmb/librmb/src/rmb/drive/SwerveModule.h:79: warning: Member smartdashboardDisplayTargetState(const std::string &name) const (function) of class rmb::SwerveModule is not documented.
-/home/runner/work/librmb/librmb/src/rmb/drive/SwerveModule.h:104: warning: Member getTargetVelocity() const (function) of class rmb::SwerveModule is not documented.
-/home/runner/work/librmb/librmb/src/rmb/drive/SwerveModule.h:105: warning: Member getTargetRotation() const (function) of class rmb::SwerveModule is not documented.
-/home/runner/work/librmb/librmb/src/rmb/drive/SwerveModule.h:126: warning: Member getPower() (function) of class rmb::SwerveModule is not documented.
-/home/runner/work/librmb/librmb/src/rmb/drive/SwerveModule.h:134: warning: Member InitSendable(wpi::SendableBuilder &builder) override (function) of class rmb::SwerveModule is not documented.
-/home/runner/work/librmb/librmb/src/rmb/drive/SwerveModule.h:136: warning: Member getAngle() (function) of class rmb::SwerveModule is not documented.
-/home/runner/work/librmb/librmb/src/rmb/drive/SwerveModule.h:65: warning: argument 'angularController' from the argument list of rmb::SwerveModule::SwerveModule has multiple @param documentation sections
-/home/runner/work/librmb/librmb/src/rmb/drive/SwerveModule.h:65: warning: The following parameters of rmb::SwerveModule::SwerveModule(std::unique_ptr< LinearVelocityController > velocityController, std::unique_ptr< AngularPositionController > angularController, const frc::Translation2d &moduleTranslation, bool breakMode=false) are not documented:
- parameter 'velocityController'
- parameter 'breakMode'
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/AngularPositionController.h:118: warning: Member ConversionUnit (typedef) of class rmb::AngularPositionController is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/AngularPositionController.h:120: warning: Member ConversionUnit_t (typedef) of class rmb::AngularPositionController is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/AngularVelocityController.h:115: warning: Member ConversionUnit (typedef) of class rmb::AngularVelocityController is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/AngularVelocityController.h:117: warning: Member ConversionUnit_t (typedef) of class rmb::AngularVelocityController is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/feedforward/AngularFeedforwardController.h:23: warning: Member AngularFeedforwardontroller(AngularFeedforwardontroller &&)=default (function) of class rmb::AngularFeedforwardontroller is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/feedforward/AngularFeedforwardController.h:25: warning: Member AngularFeedforwardontroller(std::unique_ptr< frc::MotorController > &&motorController, std::unique_ptr< rmb::Feedforward< units::radians >> &&feedforward) (function) of class rmb::AngularFeedforwardontroller is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/AngularVelocityController.h:115: warning: Member ConversionUnit (typedef) of class rmb::AngularVelocityController is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/AngularVelocityController.h:117: warning: Member ConversionUnit_t (typedef) of class rmb::AngularVelocityController is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/feedforward/AngularFeedforwardController.h:16: warning: expected whitespace after \b command
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/feedforward/AngularFeedforwardController.h:19: warning: end of comment block while expecting command
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/feedforward/LinearFeedforwardController.h:23: warning: Member LinearFeedforwardController(LinearFeedforwardController &&)=default (function) of class rmb::LinearFeedforwardController is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/feedforward/LinearFeedforwardController.h:25: warning: Member LinearFeedforwardController(std::unique_ptr< frc::MotorController > &&motorController, std::unique_ptr< rmb::Feedforward< units::meters >> &&feedforward) (function) of class rmb::LinearFeedforwardController is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/LinearVelocityController.h:110: warning: Member ConversionUnit (typedef) of class rmb::LinearVelocityController is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/LinearVelocityController.h:112: warning: Member ConversionUnit_t (typedef) of class rmb::LinearVelocityController is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/feedforward/LinearFeedforwardController.h:16: warning: expected whitespace after \b command
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/feedforward/LinearFeedforwardController.h:19: warning: end of comment block while expecting command
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/LinearPositionController.h:125: warning: Member ConversionUnit (typedef) of class rmb::LinearPositionController is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/LinearPositionController.h:127: warning: Member ConversionUnit_t (typedef) of class rmb::LinearPositionController is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/LinearVelocityController.h:110: warning: Member ConversionUnit (typedef) of class rmb::LinearVelocityController is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/LinearVelocityController.h:112: warning: Member ConversionUnit_t (typedef) of class rmb::LinearVelocityController is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/ServoPositionController.h:20: warning: Member ServoPositionController(ServoPositionController &&)=default (function) of class rmb::ServoPositionController is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/ServoPositionController.h:22: warning: Member ServoPositionController(int channel) (function) of class rmb::ServoPositionController is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/AngularPositionController.h:118: warning: Member ConversionUnit (typedef) of class rmb::AngularPositionController is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/AngularPositionController.h:120: warning: Member ConversionUnit_t (typedef) of class rmb::AngularPositionController is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxPositionController.h:68: warning: Member MotorConfig (typedef) of class rmb::SparkMaxPositionController is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxPositionController.h:69: warning: Member PIDConfig (typedef) of class rmb::SparkMaxPositionController is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxPositionController.h:70: warning: Member Range (typedef) of class rmb::SparkMaxPositionController is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxPositionController.h:71: warning: Member ProfileConfig (typedef) of class rmb::SparkMaxPositionController is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxPositionController.h:72: warning: Member EncoderType (typedef) of class rmb::SparkMaxPositionController is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxPositionController.h:73: warning: Member LimitSwitchConfig (typedef) of class rmb::SparkMaxPositionController is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxPositionController.h:74: warning: Member FeedbackConfig (typedef) of class rmb::SparkMaxPositionController is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/AngularPositionController.h:118: warning: Member ConversionUnit (typedef) of class rmb::AngularPositionController is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/AngularPositionController.h:120: warning: Member ConversionUnit_t (typedef) of class rmb::AngularPositionController is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxPositionController.h:90: warning: Member SparkMaxPositionController(const CreateInfo &createInfo) (function) of class rmb::SparkMaxPositionController is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxPositionController.h:77: warning: Member motorConfig (variable) of struct rmb::SparkMaxPositionController::CreateInfo is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxPositionController.h:78: warning: Member pidConfig (variable) of struct rmb::SparkMaxPositionController::CreateInfo is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxPositionController.h:79: warning: Member feedforward (variable) of struct rmb::SparkMaxPositionController::CreateInfo is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxPositionController.h:81: warning: Member range (variable) of struct rmb::SparkMaxPositionController::CreateInfo is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxPositionController.h:82: warning: Member profileConfig (variable) of struct rmb::SparkMaxPositionController::CreateInfo is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxPositionController.h:83: warning: Member feedbackConfig (variable) of struct rmb::SparkMaxPositionController::CreateInfo is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxPositionController.h:84: warning: Member followers (variable) of struct rmb::SparkMaxPositionController::CreateInfo is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxVelocityController.h:63: warning: Member MotorConfig (typedef) of class rmb::SparkMaxVelocityController is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxVelocityController.h:64: warning: Member PIDConfig (typedef) of class rmb::SparkMaxVelocityController is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxVelocityController.h:65: warning: Member ProfileConfig (typedef) of class rmb::SparkMaxVelocityController is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxVelocityController.h:66: warning: Member EncoderType (typedef) of class rmb::SparkMaxVelocityController is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxVelocityController.h:67: warning: Member LimitSwitchConfig (typedef) of class rmb::SparkMaxVelocityController is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxVelocityController.h:68: warning: Member FeedbackConfig (typedef) of class rmb::SparkMaxVelocityController is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/AngularVelocityController.h:115: warning: Member ConversionUnit (typedef) of class rmb::AngularVelocityController is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/AngularVelocityController.h:117: warning: Member ConversionUnit_t (typedef) of class rmb::AngularVelocityController is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxVelocityController.h:81: warning: Member SparkMaxVelocityController(const CreateInfo &createInfo) (function) of class rmb::SparkMaxVelocityController is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxVelocityController.h:83: warning: Member getMotor() (function) of class rmb::SparkMaxVelocityController is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxVelocityController.h:85: warning: Member getPIDCOntroller() (function) of class rmb::SparkMaxVelocityController is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxVelocityController.h:87: warning: Member getFeedbackSensor() (function) of class rmb::SparkMaxVelocityController is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxVelocityController.h:71: warning: Member motorConfig (variable) of struct rmb::SparkMaxVelocityController::CreateInfo is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxVelocityController.h:72: warning: Member pidConfig (variable) of struct rmb::SparkMaxVelocityController::CreateInfo is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxVelocityController.h:73: warning: Member profileConfig (variable) of struct rmb::SparkMaxVelocityController::CreateInfo is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxVelocityController.h:74: warning: Member feedbackConfig (variable) of struct rmb::SparkMaxVelocityController::CreateInfo is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxVelocityController.h:75: warning: Member followers (variable) of struct rmb::SparkMaxVelocityController::CreateInfo is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/AngularPositionController.h:118: warning: Member ConversionUnit (typedef) of class rmb::AngularPositionController is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/AngularPositionController.h:120: warning: Member ConversionUnit_t (typedef) of class rmb::AngularPositionController is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/Talon/TalonFXPositionController.h:240: warning: The following parameter of rmb::TalonFXPositionController::follow(const TalonFXPositionController &parentController, bool inverted) is not documented:
- parameter 'parentController'
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/Talon/TalonFXPositionController.h:231: warning: Found unknown command '@warn'
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/Talon/TalonFXPositionController.h:146: warning: Member config (variable) of struct rmb::TalonFXPositionController::CreateInfo is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/Talon/TalonFXPositionController.h:147: warning: Member pidConfig (variable) of struct rmb::TalonFXPositionController::CreateInfo is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/Talon/TalonFXPositionController.h:148: warning: Member range (variable) of struct rmb::TalonFXPositionController::CreateInfo is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/Talon/TalonFXPositionController.h:149: warning: Member feedbackConfig (variable) of struct rmb::TalonFXPositionController::CreateInfo is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/Talon/TalonFXPositionController.h:150: warning: Member openLoopConfig (variable) of struct rmb::TalonFXPositionController::CreateInfo is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/Talon/TalonFXPositionController.h:151: warning: Member currentLimits (variable) of struct rmb::TalonFXPositionController::CreateInfo is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/Talon/TalonFXPositionController.h:153: warning: Member canCoderConfig (variable) of struct rmb::TalonFXPositionController::CreateInfo is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/Talon/TalonFXVelocityController.h:46: warning: Member TalonFXVelocityController(const CreateInfo &createInfo) (function) of class rmb::TalonFXVelocityController is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/AngularVelocityController.h:115: warning: Member ConversionUnit (typedef) of class rmb::AngularVelocityController is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/AngularVelocityController.h:117: warning: Member ConversionUnit_t (typedef) of class rmb::AngularVelocityController is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/Talon/TalonFXVelocityController.h:129: warning: The following parameter of rmb::TalonFXVelocityController::follow(const TalonFXVelocityController &parentController, bool inverted) is not documented:
- parameter 'parentController'
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/Talon/TalonFXVelocityController.h:36: warning: Member config (variable) of struct rmb::TalonFXVelocityController::CreateInfo is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/Talon/TalonFXVelocityController.h:37: warning: Member pidConfig (variable) of struct rmb::TalonFXVelocityController::CreateInfo is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/Talon/TalonFXVelocityController.h:38: warning: Member profileConfig (variable) of struct rmb::TalonFXVelocityController::CreateInfo is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/Talon/TalonFXVelocityController.h:39: warning: Member feedbackConfig (variable) of struct rmb::TalonFXVelocityController::CreateInfo is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/Talon/TalonFXVelocityController.h:40: warning: Member openLoopConfig (variable) of struct rmb::TalonFXVelocityController::CreateInfo is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/Talon/TalonFXVelocityController.h:41: warning: Member currentLimits (variable) of struct rmb::TalonFXVelocityController::CreateInfo is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/Talon/TalonFXVelocityController.h:43: warning: Member canCoderConfig (variable) of struct rmb::TalonFXVelocityController::CreateInfo is not documented.
-/home/runner/work/librmb/librmb/src/rmb/sensors/AHRS/AHRSGyro.h:13: warning: Member AHRSGyro(frc::SerialPort::Port port) (function) of class rmb::AHRSGyro is not documented.
-/home/runner/work/librmb/librmb/src/rmb/sensors/AHRS/AHRSGyro.h:17: warning: Member getZRotation() const override (function) of class rmb::AHRSGyro is not documented.
-/home/runner/work/librmb/librmb/src/rmb/sensors/AHRS/AHRSGyro.h:18: warning: Member resetZRotation(units::turn_t offset=0_tr) override (function) of class rmb::AHRSGyro is not documented.
-/home/runner/work/librmb/librmb/src/rmb/sensors/AHRS/AHRSGyro.h:19: warning: Member getRotation() const override (function) of class rmb::AHRSGyro is not documented.
-/home/runner/work/librmb/librmb/src/rmb/sensors/AHRS/AHRSGyro.h:21: warning: Member getXAcceleration() const override (function) of class rmb::AHRSGyro is not documented.
-/home/runner/work/librmb/librmb/src/rmb/sensors/AHRS/AHRSGyro.h:22: warning: Member getYAcceleration() const override (function) of class rmb::AHRSGyro is not documented.
-/home/runner/work/librmb/librmb/src/rmb/sensors/AHRS/AHRSGyro.h:23: warning: Member getZAcceleration() const override (function) of class rmb::AHRSGyro is not documented.
-/home/runner/work/librmb/librmb/src/rmb/sensors/AHRS/AHRSGyro.h:25: warning: Member getXVelocity() const override (function) of class rmb::AHRSGyro is not documented.
-/home/runner/work/librmb/librmb/src/rmb/sensors/AHRS/AHRSGyro.h:26: warning: Member getYVelocity() const override (function) of class rmb::AHRSGyro is not documented.
-/home/runner/work/librmb/librmb/src/rmb/sensors/AHRS/AHRSGyro.h:27: warning: Member getZVelocity() const override (function) of class rmb::AHRSGyro is not documented.
-/home/runner/work/librmb/librmb/src/rmb/sensors/gyro.h:15: warning: Member getZRotation() const =0 (function) of class rmb::Gyro is not documented.
-/home/runner/work/librmb/librmb/src/rmb/sensors/gyro.h:16: warning: Member getRotation() const =0 (function) of class rmb::Gyro is not documented.
-/home/runner/work/librmb/librmb/src/rmb/sensors/gyro.h:17: warning: Member resetZRotation(units::turn_t offset=0_tr)=0 (function) of class rmb::Gyro is not documented.
-/home/runner/work/librmb/librmb/src/rmb/sensors/gyro.h:19: warning: Member getXAcceleration() const =0 (function) of class rmb::Gyro is not documented.
-/home/runner/work/librmb/librmb/src/rmb/sensors/gyro.h:20: warning: Member getYAcceleration() const =0 (function) of class rmb::Gyro is not documented.
-/home/runner/work/librmb/librmb/src/rmb/sensors/gyro.h:21: warning: Member getZAcceleration() const =0 (function) of class rmb::Gyro is not documented.
-/home/runner/work/librmb/librmb/src/rmb/sensors/gyro.h:23: warning: Member getXVelocity() const =0 (function) of class rmb::Gyro is not documented.
-/home/runner/work/librmb/librmb/src/rmb/sensors/gyro.h:24: warning: Member getYVelocity() const =0 (function) of class rmb::Gyro is not documented.
-/home/runner/work/librmb/librmb/src/rmb/sensors/gyro.h:25: warning: Member getZVelocity() const =0 (function) of class rmb::Gyro is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxPositionController.h:19: warning: Member id (variable) of struct rmb::SparkMaxPositionControllerHelper::MotorConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxPositionController.h:20: warning: Member motorType (variable) of struct rmb::SparkMaxPositionControllerHelper::MotorConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxPositionController.h:22: warning: Member inverted (variable) of struct rmb::SparkMaxPositionControllerHelper::MotorConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxPositionController.h:24: warning: Member currentLimit (variable) of struct rmb::SparkMaxPositionControllerHelper::MotorConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxPositionController.h:28: warning: Member p (variable) of struct rmb::SparkMaxPositionControllerHelper::PIDConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxPositionController.h:28: warning: Member i (variable) of struct rmb::SparkMaxPositionControllerHelper::PIDConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxPositionController.h:28: warning: Member d (variable) of struct rmb::SparkMaxPositionControllerHelper::PIDConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxPositionController.h:28: warning: Member ff (variable) of struct rmb::SparkMaxPositionControllerHelper::PIDConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxPositionController.h:29: warning: Member tolerance (variable) of struct rmb::SparkMaxPositionControllerHelper::PIDConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxPositionController.h:30: warning: Member iZone (variable) of struct rmb::SparkMaxPositionControllerHelper::PIDConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxPositionController.h:30: warning: Member iMaxAccumulator (variable) of struct rmb::SparkMaxPositionControllerHelper::PIDConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxPositionController.h:31: warning: Member maxOutput (variable) of struct rmb::SparkMaxPositionControllerHelper::PIDConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxPositionController.h:31: warning: Member minOutput (variable) of struct rmb::SparkMaxPositionControllerHelper::PIDConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxPositionController.h:35: warning: Member minPosition (variable) of struct rmb::SparkMaxPositionControllerHelper::Range is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxPositionController.h:37: warning: Member maxPosition (variable) of struct rmb::SparkMaxPositionControllerHelper::Range is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxPositionController.h:39: warning: Member isContinuous (variable) of struct rmb::SparkMaxPositionControllerHelper::Range is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxPositionController.h:43: warning: Member useSmartMotion (variable) of struct rmb::SparkMaxPositionControllerHelper::ProfileConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxPositionController.h:44: warning: Member maxVelocity (variable) of struct rmb::SparkMaxPositionControllerHelper::ProfileConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxPositionController.h:45: warning: Member minVelocity (variable) of struct rmb::SparkMaxPositionControllerHelper::ProfileConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxPositionController.h:46: warning: Member maxAcceleration (variable) of struct rmb::SparkMaxPositionControllerHelper::ProfileConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxPositionController.h:47: warning: Member accelStrategy (variable) of struct rmb::SparkMaxPositionControllerHelper::ProfileConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxPositionController.h:55: warning: Member gearRatio (variable) of struct rmb::SparkMaxPositionControllerHelper::FeedbackConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxPositionController.h:56: warning: Member encoderType (variable) of struct rmb::SparkMaxPositionControllerHelper::FeedbackConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxPositionController.h:57: warning: Member countPerRev (variable) of struct rmb::SparkMaxPositionControllerHelper::FeedbackConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxPositionController.h:58: warning: Member forwardSwitch (variable) of struct rmb::SparkMaxPositionControllerHelper::FeedbackConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxPositionController.h:58: warning: Member reverseSwitch (variable) of struct rmb::SparkMaxPositionControllerHelper::FeedbackConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxVelocityController.h:19: warning: Member id (variable) of struct rmb::SparkMaxVelocityControllerHelper::MotorConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxVelocityController.h:20: warning: Member motorType (variable) of struct rmb::SparkMaxVelocityControllerHelper::MotorConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxVelocityController.h:22: warning: Member inverted (variable) of struct rmb::SparkMaxVelocityControllerHelper::MotorConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxVelocityController.h:24: warning: Member currentLimit (variable) of struct rmb::SparkMaxVelocityControllerHelper::MotorConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxVelocityController.h:25: warning: Member openLoopRampRate (variable) of struct rmb::SparkMaxVelocityControllerHelper::MotorConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxVelocityController.h:29: warning: Member p (variable) of struct rmb::SparkMaxVelocityControllerHelper::PIDConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxVelocityController.h:29: warning: Member i (variable) of struct rmb::SparkMaxVelocityControllerHelper::PIDConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxVelocityController.h:29: warning: Member d (variable) of struct rmb::SparkMaxVelocityControllerHelper::PIDConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxVelocityController.h:29: warning: Member ff (variable) of struct rmb::SparkMaxVelocityControllerHelper::PIDConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxVelocityController.h:30: warning: Member tolerance (variable) of struct rmb::SparkMaxVelocityControllerHelper::PIDConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxVelocityController.h:31: warning: Member iZone (variable) of struct rmb::SparkMaxVelocityControllerHelper::PIDConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxVelocityController.h:31: warning: Member iMaxAccumulator (variable) of struct rmb::SparkMaxVelocityControllerHelper::PIDConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxVelocityController.h:32: warning: Member maxOutput (variable) of struct rmb::SparkMaxVelocityControllerHelper::PIDConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxVelocityController.h:32: warning: Member minOutput (variable) of struct rmb::SparkMaxVelocityControllerHelper::PIDConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxVelocityController.h:36: warning: Member useSmartMotion (variable) of struct rmb::SparkMaxVelocityControllerHelper::ProfileConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxVelocityController.h:37: warning: Member maxVelocity (variable) of struct rmb::SparkMaxVelocityControllerHelper::ProfileConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxVelocityController.h:38: warning: Member minVelocity (variable) of struct rmb::SparkMaxVelocityControllerHelper::ProfileConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxVelocityController.h:39: warning: Member maxAcceleration (variable) of struct rmb::SparkMaxVelocityControllerHelper::ProfileConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxVelocityController.h:40: warning: Member accelStrategy (variable) of struct rmb::SparkMaxVelocityControllerHelper::ProfileConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxVelocityController.h:43: warning: Member closedLoopRampRate (variable) of struct rmb::SparkMaxVelocityControllerHelper::ProfileConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxVelocityController.h:50: warning: Member gearRatio (variable) of struct rmb::SparkMaxVelocityControllerHelper::FeedbackConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxVelocityController.h:51: warning: Member encoderType (variable) of struct rmb::SparkMaxVelocityControllerHelper::FeedbackConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxVelocityController.h:52: warning: Member countPerRev (variable) of struct rmb::SparkMaxVelocityControllerHelper::FeedbackConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxVelocityController.h:53: warning: Member forwardSwitch (variable) of struct rmb::SparkMaxVelocityControllerHelper::FeedbackConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/sparkmax/SparkMaxVelocityController.h:53: warning: Member reverseSwitch (variable) of struct rmb::SparkMaxVelocityControllerHelper::FeedbackConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/Talon/TalonFXPositionController.h:20: warning: Member id (variable) of struct rmb::TalonFXPositionControllerHelper::MotorConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/Talon/TalonFXPositionController.h:21: warning: Member inverted (variable) of struct rmb::TalonFXPositionControllerHelper::MotorConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/Talon/TalonFXPositionController.h:22: warning: Member brake (variable) of struct rmb::TalonFXPositionControllerHelper::MotorConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/Talon/TalonFXPositionController.h:23: warning: Member minOutput (variable) of struct rmb::TalonFXPositionControllerHelper::MotorConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/Talon/TalonFXPositionController.h:24: warning: Member maxOutput (variable) of struct rmb::TalonFXPositionControllerHelper::MotorConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/Talon/TalonFXPositionController.h:95: warning: Member rampRate (variable) of struct rmb::TalonFXPositionControllerHelper::OpenLoopConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/Talon/TalonFXPositionController.h:99: warning: Member p (variable) of struct rmb::TalonFXPositionControllerHelper::PIDConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/Talon/TalonFXPositionController.h:99: warning: Member i (variable) of struct rmb::TalonFXPositionControllerHelper::PIDConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/Talon/TalonFXPositionController.h:99: warning: Member d (variable) of struct rmb::TalonFXPositionControllerHelper::PIDConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/Talon/TalonFXPositionController.h:99: warning: Member ff (variable) of struct rmb::TalonFXPositionControllerHelper::PIDConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/Talon/TalonFXPositionController.h:104: warning: Member rampRate (variable) of struct rmb::TalonFXPositionControllerHelper::PIDConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/Talon/TalonFXPositionController.h:109: warning: Member minPosition (variable) of struct rmb::TalonFXPositionControllerHelper::Range is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/Talon/TalonFXPositionController.h:111: warning: Member maxPosition (variable) of struct rmb::TalonFXPositionControllerHelper::Range is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/Talon/TalonFXPositionController.h:114: warning: Member continuousWrap (variable) of struct rmb::TalonFXPositionControllerHelper::Range is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/Talon/TalonFXPositionController.h:122: warning: Member useSmartMotion (variable) of struct rmb::TalonFXPositionControllerHelper::ProfileConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/Talon/TalonFXPositionController.h:124: warning: Member maxVelocity (variable) of struct rmb::TalonFXPositionControllerHelper::ProfileConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/Talon/TalonFXPositionController.h:125: warning: Member minVelocity (variable) of struct rmb::TalonFXPositionControllerHelper::ProfileConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/Talon/TalonFXPositionController.h:126: warning: Member maxAcceleration (variable) of struct rmb::TalonFXPositionControllerHelper::ProfileConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/Talon/TalonFXPositionController.h:132: warning: Member sensorToMechanismRatio (variable) of struct rmb::TalonFXPositionControllerHelper::FeedbackConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/Talon/TalonFXPositionController.h:133: warning: Member forwardSwitch (variable) of struct rmb::TalonFXPositionControllerHelper::FeedbackConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/Talon/TalonFXPositionController.h:133: warning: Member reverseSwitch (variable) of struct rmb::TalonFXPositionControllerHelper::FeedbackConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/Talon/TalonFXPositionController.h:137: warning: Member id (variable) of struct rmb::TalonFXPositionControllerHelper::CANCoderConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/Talon/TalonFXPositionController.h:139: warning: Member magnetOffset (variable) of struct rmb::TalonFXPositionControllerHelper::CANCoderConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/Talon/TalonFXVelocityController.h:16: warning: Member p (variable) of struct rmb::TalonFXVelocityControllerHelper::PIDConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/Talon/TalonFXVelocityController.h:16: warning: Member i (variable) of struct rmb::TalonFXVelocityControllerHelper::PIDConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/Talon/TalonFXVelocityController.h:16: warning: Member d (variable) of struct rmb::TalonFXVelocityControllerHelper::PIDConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/Talon/TalonFXVelocityController.h:16: warning: Member ff (variable) of struct rmb::TalonFXVelocityControllerHelper::PIDConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/Talon/TalonFXVelocityController.h:18: warning: Member rampRate (variable) of struct rmb::TalonFXVelocityControllerHelper::PIDConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/Talon/TalonFXVelocityController.h:22: warning: Member minOutput (variable) of struct rmb::TalonFXVelocityControllerHelper::OpenLoopConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/Talon/TalonFXVelocityController.h:22: warning: Member maxOutput (variable) of struct rmb::TalonFXVelocityControllerHelper::OpenLoopConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/Talon/TalonFXVelocityController.h:23: warning: Member rampRate (variable) of struct rmb::TalonFXVelocityControllerHelper::OpenLoopConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/Talon/TalonFXVelocityController.h:27: warning: Member maxVelocity (variable) of struct rmb::TalonFXVelocityControllerHelper::ProfileConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/Talon/TalonFXVelocityController.h:28: warning: Member minVelocity (variable) of struct rmb::TalonFXVelocityControllerHelper::ProfileConfig is not documented.
-/home/runner/work/librmb/librmb/src/rmb/motorcontrol/Talon/TalonFXVelocityController.h:29: warning: Member maxAcceleration (variable) of struct rmb::TalonFXVelocityControllerHelper::ProfileConfig is not documented.
diff --git a/lib/librmb-main/docs/favicon.png b/lib/librmb-main/docs/favicon.png
deleted file mode 100644
index cadf1b89b9cd84f0e22902e62bdc4abf9a743d73..0000000000000000000000000000000000000000
GIT binary patch
literal 0
HcmV?d00001
literal 4106
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
aqVibLj@|f@FvHFN4$y+>X?#+%L;e?r*x>H~
diff --git a/lib/librmb-main/docs/mainpage.md b/lib/librmb-main/docs/mainpage.md
deleted file mode 100644
index e9fb6f2..0000000
--- a/lib/librmb-main/docs/mainpage.md
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-### The Robot code for FRC team rambunction 4330 during the 2022 season
-
-
-
-
-
-
\ No newline at end of file
diff --git a/lib/librmb-main/gradle/wrapper/gradle-wrapper.jar b/lib/librmb-main/gradle/wrapper/gradle-wrapper.jar
deleted file mode 100644
index 943f0cbfa754578e88a3dae77fce6e3dea56edbf..0000000000000000000000000000000000000000
GIT binary patch
literal 0
HcmV?d00001
literal 61574
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