1
0
mirror of https://github.com/MarlinFirmware/Marlin.git synced 2024-11-25 04:48:31 +00:00

🐛 Fix TWIBus Wire.begin call (#23183)

This commit is contained in:
Stuart Pittaway 2021-12-06 21:40:18 +00:00 committed by GitHub
parent ecd1ac7092
commit 6580e655fb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -40,11 +40,11 @@ TWIBus::TWIBus() {
Wire.setSCL(pin_t(I2C_SCL_PIN)); Wire.setSCL(pin_t(I2C_SCL_PIN));
#endif #endif
Wire.begin(); // No address joins the BUS as the master Wire.begin(); // No address joins the BUS as the master
#else #else
Wire.begin(I2C_SLAVE_ADDRESS); // Join the bus as a slave Wire.begin(I2C_SLAVE_ADDRESS); // Join the bus as a slave
#endif #endif
reset(); reset();
@ -56,9 +56,8 @@ void TWIBus::reset() {
} }
void TWIBus::address(const uint8_t adr) { void TWIBus::address(const uint8_t adr) {
if (!WITHIN(adr, 8, 127)) { if (!WITHIN(adr, 8, 127))
SERIAL_ECHO_MSG("Bad I2C address (8-127)"); SERIAL_ECHO_MSG("Bad I2C address (8-127)");
}
addr = adr; addr = adr;