some print formatting cleanup

This commit is contained in:
tyler miller 2025-01-13 17:31:51 -05:00
parent d5777031e4
commit 4b0959ecaa
2 changed files with 12 additions and 11 deletions

View file

@ -40,8 +40,8 @@ static constexpr uint32_t VALID_MARKER_DEFAULT = 0xcafecall;
union NonVolatileMemory {
/// place hard-coded start marker at the beginning of the data
/// to indicate validity
uint32_t validMarker = VALID_MARKER_DEFAULT;
struct Calibration {
uint32_t validMarker = VALID_MARKER_DEFAULT;
JoystickCalibration joystickCal;
LinearAnalogCalibration linearCal;
} __attribute__((packed)) calData;