mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-22 01:11:42 +00:00
Fix typos (NFC) (#5804)
This commit is contained in:
@@ -205,7 +205,7 @@ void HAL_SetPWMPeriodScale(HAL_DigitalHandle pwmPortHandle, int32_t squelchMask,
|
||||
int32_t* status);
|
||||
|
||||
/**
|
||||
* Sets the PWM output to be a continous high signal while enabled.
|
||||
* Sets the PWM output to be a continuous high signal while enabled.
|
||||
*
|
||||
* @param[in] pwmPortHandle the PWM handle.
|
||||
* @param[out] status Error status variable. 0 on success.
|
||||
|
||||
@@ -35,7 +35,7 @@ __declspec(dllexport)
|
||||
return -1;
|
||||
}
|
||||
|
||||
std::puts("HALSim XRP Extention Initialized");
|
||||
std::puts("HALSim XRP Extension Initialized");
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
@@ -27,7 +27,7 @@
|
||||
|
||||
namespace sysid {
|
||||
/**
|
||||
* This class is reponsible for collecting data from the robot and storing it
|
||||
* This class is responsible for collecting data from the robot and storing it
|
||||
* inside a JSON.
|
||||
*/
|
||||
class TelemetryManager {
|
||||
|
||||
@@ -232,7 +232,7 @@ public class PWM implements Sendable, AutoCloseable {
|
||||
PWMJNI.latchPWMZero(m_handle);
|
||||
}
|
||||
|
||||
/** Sets the PWM output to be a continous high signal while enabled. */
|
||||
/** Sets the PWM output to be a continuous high signal while enabled. */
|
||||
public void setAlwaysHighMode() {
|
||||
PWMJNI.setAlwaysHighMode(m_handle);
|
||||
}
|
||||
|
||||
@@ -47,7 +47,7 @@ public class ChassisSpeeds {
|
||||
/**
|
||||
* Discretizes a continuous-time chassis speed.
|
||||
*
|
||||
* <p>This function converts a continous-time chassis speed into a discrete-time one such that
|
||||
* <p>This function converts a continuous-time chassis speed into a discrete-time one such that
|
||||
* when the discrete-time chassis speed is applied for one timestep, the robot moves as if the
|
||||
* velocity components are independent (i.e., the robot moves v_x * dt along the x-axis, v_y * dt
|
||||
* along the y-axis, and omega * dt around the z-axis).
|
||||
@@ -78,7 +78,7 @@ public class ChassisSpeeds {
|
||||
/**
|
||||
* Discretizes a continuous-time chassis speed.
|
||||
*
|
||||
* <p>This function converts a continous-time chassis speed into a discrete-time one such that
|
||||
* <p>This function converts a continuous-time chassis speed into a discrete-time one such that
|
||||
* when the discrete-time chassis speed is applied for one timestep, the robot moves as if the
|
||||
* velocity components are independent (i.e., the robot moves v_x * dt along the x-axis, v_y * dt
|
||||
* along the y-axis, and omega * dt around the z-axis).
|
||||
|
||||
@@ -41,7 +41,7 @@ struct WPILIB_DLLEXPORT ChassisSpeeds {
|
||||
/**
|
||||
* Disretizes a continuous-time chassis speed.
|
||||
*
|
||||
* This function converts a continous-time chassis speed into a discrete-time
|
||||
* This function converts a continuous-time chassis speed into a discrete-time
|
||||
* one such that when the discrete-time chassis speed is applied for one
|
||||
* timestep, the robot moves as if the velocity components are independent
|
||||
* (i.e., the robot moves v_x * dt along the x-axis, v_y * dt along the
|
||||
@@ -69,7 +69,7 @@ struct WPILIB_DLLEXPORT ChassisSpeeds {
|
||||
/**
|
||||
* Disretizes a continuous-time chassis speed.
|
||||
*
|
||||
* This function converts a continous-time chassis speed into a discrete-time
|
||||
* This function converts a continuous-time chassis speed into a discrete-time
|
||||
* one such that when the discrete-time chassis speed is applied for one
|
||||
* timestep, the robot moves as if the velocity components are independent
|
||||
* (i.e., the robot moves v_x * dt along the x-axis, v_y * dt along the
|
||||
|
||||
Reference in New Issue
Block a user