mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-08-09 23:05:00 -06:00
Fix MKS Robin Nano V3 I2C pins (#21174)
This commit is contained in:
parent
a3a10b62f2
commit
d5b06624fb
2 changed files with 9 additions and 3 deletions
|
@ -143,8 +143,12 @@ extern "C" {
|
|||
#define PIN_SPI_SCK PA5
|
||||
|
||||
// I2C definitions
|
||||
#define PIN_WIRE_SDA PB9
|
||||
#define PIN_WIRE_SCL PB8
|
||||
#ifndef PIN_WIRE_SDA
|
||||
#define PIN_WIRE_SDA PB9
|
||||
#endif
|
||||
#ifndef PIN_WIRE_SCL
|
||||
#define PIN_WIRE_SCL PB8
|
||||
#endif
|
||||
|
||||
// Timer Definitions
|
||||
// Use TIM6/TIM7 when possible as servo and tone don't need GPIO output pin
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue