✏️ Followup to Six Linear Axes (#22056)

This commit is contained in:
DerAndere
2021-06-06 08:30:39 +02:00
committed by Scott Lahteine
parent c1fca91103
commit e3df7d7bc8
10 changed files with 132 additions and 80 deletions

View File

@ -223,7 +223,7 @@ class Endstops {
typedef struct {
union {
bool any;
struct { bool x:1, y:1, z:1; };
struct { bool LINEAR_AXIS_LIST(x:1, y:1, z:1, i:1, j:1, k:1); };
};
} tmc_spi_homing_t;
static tmc_spi_homing_t tmc_spi_homing;