1
0
mirror of https://github.com/bdring/Grbl_Esp32.git synced 2025-08-31 18:11:48 +02:00

Fixed typo in Trinamic names.

This commit is contained in:
Mitch Bradley
2021-12-21 14:26:02 -10:00
parent 6e4e189dfe
commit a9ec92352b

View File

@@ -306,7 +306,9 @@ void print_trinamic_uart(TrinamicUartDriver* m, int axis, int gang, const char*
item("r_sense_ohms", m->_r_sense);
item("addr", tmc_addr++);
print_trinamic_common(axis, gang, TrinamicMode(TRINAMIC_UART_RUN_MODE), TrinamicMode(TRINAMIC_UART_HOMING_MODE));
print_uart(TMC_UART, TMC_UART_TX, TMC_UART_RX, UNDEFINED_PIN, 115200, "8n1");
if (tmc_addr == 1) {
print_uart(TMC_UART, TMC_UART_TX, TMC_UART_RX, UNDEFINED_PIN, 115200, "8N1");
}
end_section();
}
void print_null_motor(Motor* m, int axis, int gang, const char* name) {