Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix code doc ; swapped pins E0_DIR_PIN, E0_ENABLE_PIN #3

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Marlin/src/pins/stm32f7/pins_NUCLEO_F767ZI.h
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ _*  ̄ ̄ ̄ _CN10
* (TEMP_BED) PC0 | · · | PD6 PB1 | · · | PF14
* PC3 | · · | PD5 PC2 | · · | PE13
* PF3 | · · | PD4 PF4 | · · | PF15
* PF5 | · · | PD3 (E_STEP) PB6 | · · | PG14 (E_DIR)
* PF5 | · · | PD3 (E_STEP) PB6 | · · | PG14 (E_EN)
* PF10 | · · | GND (E_DIR) PB2 | · · | PG9 (E_CS)
* NC | · · | PE2 GND | · · | PE8
* PA7 | · · | PE4 PD13 | · · | PE7
Expand Down Expand Up @@ -125,8 +125,8 @@ _*  ̄ ̄ ̄ _CN10
#define Z_CS_PIN PE12

#define E0_STEP_PIN PB6
#define E0_DIR_PIN PG14
#define E0_ENABLE_PIN PB2
#define E0_DIR_PIN PB2
#define E0_ENABLE_PIN PG14
#define E0_CS_PIN PG9

#if HAS_TMC_UART
Expand Down