Skip to content

Commit

Permalink
Merge pull request #4738 from sarusani/OptimzeEnum
Browse files Browse the repository at this point in the history
Add type to enum
  • Loading branch information
gudnimg authored Jul 30, 2024
2 parents 5119e47 + d485e4f commit 3f650a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Firmware/mesh_bed_calibration.h
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ float BED_Y(const uint8_t row);
* Negative: failed
*/

enum BedSkewOffsetDetectionResultType {
enum BedSkewOffsetDetectionResultType : int8_t {
// Detection failed, some point was not found.
BED_SKEW_OFFSET_DETECTION_POINT_FOUND = 0, //!< Point found
BED_SKEW_OFFSET_DETECTION_POINT_NOT_FOUND = -1, //!< Point not found.
Expand Down

0 comments on commit 3f650a2

Please sign in to comment.