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 MKS SGEN_L V2 fans pin define #19462

Merged
merged 27 commits into from
Sep 22, 2020
Merged
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
5c8f4a5
Merge pull request #1 from MarlinFirmware/bugfix-2.0.x
mks-viva Jul 28, 2020
5d5f4e6
Merge pull request #2 from MarlinFirmware/bugfix-2.0.x
mks-viva Jul 28, 2020
34b9df8
Support MKS SGEN_L V2 board
Jul 28, 2020
a3b0f9d
Update pins_MKS_SGEN_L_V2.h
thinkyhead Jul 29, 2020
bf9ee2e
Update pins_MKS_SGEN_L_V2.h
thinkyhead Jul 29, 2020
2d95919
4K size stated
thinkyhead Jul 29, 2020
4bdaec1
Update pins_MKS_SGEN_L_V2.h
thinkyhead Sep 1, 2020
45d1077
Merge pull request #3 from MarlinFirmware/bugfix-2.0.x
mks-viva Sep 5, 2020
8a8da49
Fix MKS LCD12864A/B display on MKS Robin E3/E3D and MKS SGEN_L
Sep 5, 2020
7dc13be
Merge pull request #4 from MarlinFirmware/bugfix-2.0.x
makerbase-mks Sep 8, 2020
a96c6de
Add support for MKS GEN_L V2.1
Sep 9, 2020
d4bdd00
Merge pull request #5 from MarlinFirmware/bugfix-2.0.x
makerbase-mks Sep 9, 2020
0f9b303
Merge branch 'bugfix-2.0.x' of https://github.com/mks-viva/Marlin int…
Sep 9, 2020
7c622f3
Add support for MKS Gen-L V2.1
Sep 9, 2020
1c8c018
Update pins_MKS_GEN_L_V21.h
makerbase-mks Sep 9, 2020
453f220
Update pins_MKS_GEN_L_V21.h
makerbase-mks Sep 9, 2020
cd14a96
Update MarlinCore.cpp
makerbase-mks Sep 9, 2020
bc5d316
Update Configuration.h
makerbase-mks Sep 9, 2020
07b33a9
Update MarlinCore.cpp
makerbase-mks Sep 9, 2020
4cb7f4a
Update MarlinCore.cpp
thinkyhead Sep 10, 2020
8b08e95
Add Makefile, clean up
thinkyhead Sep 10, 2020
ceb896f
fix Makefile and board file
Sep 16, 2020
aee8e75
Merge pull request #6 from MarlinFirmware/bugfix-2.0.x
makerbase-mks Sep 16, 2020
e323c13
Merge pull request #7 from MarlinFirmware/bugfix-2.0.x
makerbase-mks Sep 17, 2020
2a0f81c
Merge pull request #8 from MarlinFirmware/bugfix-2.0.x
makerbase-mks Sep 21, 2020
ff8a7e2
Fix MKS SGEN_L V2 FAN pins
Sep 21, 2020
fe2f3cd
Update pins_MKS_SGEN_L_V2.h
thinkyhead Sep 22, 2020
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
16 changes: 8 additions & 8 deletions Marlin/src/pins/lpc1769/pins_MKS_SGEN_L_V2.h
Original file line number Diff line number Diff line change
Expand Up @@ -207,20 +207,20 @@
//
#define HEATER_BED_PIN P2_05
#define HEATER_0_PIN P2_07
#if HOTENDS == 1
#ifndef FAN1_PIN
#define FAN1_PIN P2_06
#endif
#else
#if HAS_MULTI_HOTEND
#ifndef HEATER_1_PIN
#define HEATER_1_PIN P2_06
#endif
#else
#ifndef FAN2_PIN
#define FAN2_PIN P2_06 // HE1 for FAN3
#endif
#endif
#ifndef FAN_PIN
#define FAN_PIN P2_04
#define FAN_PIN P2_04 // FAN1
#endif
#ifndef FAN2_PIN
#define FAN2_PIN P1_04
#ifndef FAN1_PIN
#define FAN1_PIN P1_04 // FAN2
#endif

//
Expand Down