Skip to content

Commit

Permalink
Fix CalibrationConfigType order
Browse files Browse the repository at this point in the history
Fix CalibrationConfigType order to prevent existing configs from breaking
  • Loading branch information
jojos38 authored Mar 6, 2024
1 parent 28ff4a2 commit 00bdc55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/configuration/CalibrationConfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ namespace SlimeVR {
float G_off[3];
};

enum CalibrationConfigType { NONE, BMI160, BMI323, MPU6050, MPU9250, ICM20948, ICM42688 };
enum CalibrationConfigType { NONE, BMI160, MPU6050, MPU9250, ICM20948, ICM42688, BMI323 };

const char* calibrationConfigTypeToString(CalibrationConfigType type);

Expand Down

0 comments on commit 00bdc55

Please sign in to comment.