Skip to content

Commit

Permalink
Fix MKS Robin Nano V3 I2C pins (#21174)
Browse files Browse the repository at this point in the history
  • Loading branch information
rhapsodyv authored Feb 25, 2021
1 parent a3a10b6 commit d5b0662
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
8 changes: 6 additions & 2 deletions buildroot/share/PlatformIO/variants/MARLIN_F4x7Vx/variant.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 3 additions & 1 deletion platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -1486,7 +1486,7 @@ extra_scripts = ${common.extra_scripts}
[env:mks_robin_nano_v3]
platform = ${common_stm32.platform}
extends = common_stm32
build_flags = ${common_stm32.build_flags} -DHAL_PCD_MODULE_ENABLED -DUSBCON -DUSBD_USE_CDC
build_flags = ${common_stm32.build_flags} -DHAL_PCD_MODULE_ENABLED -DUSBCON -DUSBD_USE_CDC -DPIN_WIRE_SCL=PB6 -DPIN_WIRE_SDA=PB7
board = genericSTM32F407VGT6
board_build.core = stm32
board_build.variant = MARLIN_F4x7Vx
Expand All @@ -1509,6 +1509,7 @@ extra_scripts = ${common.extra_scripts}
extends = env:mks_robin_nano_v3
platform_packages = ${stm32_flash_drive.platform_packages}
build_flags = ${stm32_flash_drive.build_flags}
-DPIN_WIRE_SCL=PB6 -DPIN_WIRE_SDA=PB7
-DUSBCON
-DUSE_USBHOST_HS
-DUSBD_IRQ_PRIO=5
Expand All @@ -1525,6 +1526,7 @@ extends = env:mks_robin_nano_v3
platform_packages = framework-arduinoststm32@https://github.com/rhapsodyv/Arduino_Core_STM32/archive/usb-host-msc-cdc-msc.zip
build_unflags = ${common_stm32.build_unflags} -DUSBD_USE_CDC
build_flags = ${stm32_flash_drive.build_flags}
-DPIN_WIRE_SCL=PB6 -DPIN_WIRE_SDA=PB7
-DUSBCON
-DUSE_USBHOST_HS
-DUSBD_IRQ_PRIO=5
Expand Down

0 comments on commit d5b0662

Please sign in to comment.