mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-25 01:41:43 +00:00
24 lines
816 B
C++
24 lines
816 B
C++
|
|
// Copyright (c) FIRST and other WPILib contributors.
|
||
|
|
// Open Source Software; you can modify and/or share it under the terms of
|
||
|
|
// the WPILib BSD license file in the root directory of this project.
|
||
|
|
|
||
|
|
#include "frc/kinematics/struct/DifferentialDriveKinematicsStruct.h"
|
||
|
|
|
||
|
|
namespace {
|
||
|
|
constexpr size_t kTrackWidthOff = 0;
|
||
|
|
} // namespace
|
||
|
|
|
||
|
|
using StructType = wpi::Struct<frc::DifferentialDriveKinematics>;
|
||
|
|
|
||
|
|
frc::DifferentialDriveKinematics StructType::Unpack(
|
||
|
|
std::span<const uint8_t, kSize> data) {
|
||
|
|
return frc::DifferentialDriveKinematics{
|
||
|
|
units::meter_t{wpi::UnpackStruct<double, kTrackWidthOff>(data)},
|
||
|
|
};
|
||
|
|
}
|
||
|
|
|
||
|
|
void StructType::Pack(std::span<uint8_t, kSize> data,
|
||
|
|
const frc::DifferentialDriveKinematics& value) {
|
||
|
|
wpi::PackStruct<kTrackWidthOff>(data, value.trackWidth.value());
|
||
|
|
}
|