mirror of
https://github.com/bdring/Grbl_Esp32.git
synced 2025-08-20 21:32:03 +02:00
fix typo
This commit is contained in:
@@ -45,8 +45,8 @@ void system_ini() // Renamed from system_init() due to conflict with esp32 files
|
|||||||
|
|
||||||
#endif
|
#endif
|
||||||
//customize pin definition if needed
|
//customize pin definition if needed
|
||||||
#if (GRBL_SPI_SS != -1) || (GRBL_SPI_MIS0 != -1) || (GRBL_SPI_MOSI != -1) || (GRBL_SPI_SCK != -1)
|
#if (GRBL_SPI_SS != -1) || (GRBL_SPI_MISO != -1) || (GRBL_SPI_MOSI != -1) || (GRBL_SPI_SCK != -1)
|
||||||
SPI.begin(GRBL_SPI_SCK, GRBL_SPI_MIS0, GRBL_SPI_MOSI, GRBL_SPI_SS);
|
SPI.begin(GRBL_SPI_SCK, GRBL_SPI_MISO, GRBL_SPI_MOSI, GRBL_SPI_SS);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user