🚸 TH3D EZBoard V2 TMC slave addresses (#23857)

This commit is contained in:
Keith Bennett 2022-03-10 15:20:13 -08:00 committed by GitHub
parent 323ac9488c
commit c6a6d35f0d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -130,6 +130,20 @@
// Reduce baud rate to improve software serial reliability
#define TMC_BAUD_RATE 19200
// Default TMC slave addresses
#ifndef X_SLAVE_ADDRESS
#define X_SLAVE_ADDRESS 0
#endif
#ifndef Y_SLAVE_ADDRESS
#define Y_SLAVE_ADDRESS 1
#endif
#ifndef Z_SLAVE_ADDRESS
#define Z_SLAVE_ADDRESS 2
#endif
#ifndef E0_SLAVE_ADDRESS
#define E0_SLAVE_ADDRESS 3
#endif
#endif
//