-
-
Notifications
You must be signed in to change notification settings - Fork 19.2k
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
Add support MKS MINI12864 V3 for MKS Robin Nano V2, Nano V3 board #22285
Changes from all commits
5c8f4a5
5d5f4e6
34b9df8
a3b0f9d
bf9ee2e
2d95919
4bdaec1
45d1077
8a8da49
7dc13be
a96c6de
d4bdd00
0f9b303
7c622f3
1c8c018
453f220
cd14a96
bc5d316
07b33a9
4cb7f4a
8b08e95
ceb896f
aee8e75
e323c13
2a0f81c
ff8a7e2
fe2f3cd
ee8db31
a3b7b83
b39f490
b7ae0f9
034dd99
e64c055
60a264a
3c8ff62
0657f35
0a9b678
9a20663
c05e1ce
8578cb7
ca78c7d
f6aa532
9105b0f
6b3c6e8
54946ec
9bec460
474ec0b
3d63772
f20e156
9580e37
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -155,6 +155,17 @@ | |
#define DOGLCD_SCK PB13 | ||
#define DOGLCD_MOSI PB15 | ||
|
||
#elif ENABLED(MKS_MINI_12864_V3) | ||
#define ENABLE_SPI3 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. So, theoretically, you could attach a FYSETC MINI 12864 v2.1 and it would also work? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If that is the case, then this might as well just be There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
// MKS MINI12864 and MKS LCD12864B; If using MKS LCD12864A (Need to remove RPK2 resistor)
But I still have a blue screen There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. #if ENABLED(FYSETC_GENERIC_12864_1_1)
All OK!!! THANKSSSSS There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The next challenge is to make the SD work, when I try to read the screen it freezes ... There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
I have the same problem in my test. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The SD is detected on the screen it shows the correct message but nevertheless when you enter it remains blocked, I think that if the SD we put it in MKS it does the same. |
||
#define DOGLCD_CS PA4 | ||
#define DOGLCD_A0 PA5 | ||
#define LCD_PINS_DC DOGLCD_A0 | ||
#define LCD_BACKLIGHT_PIN -1 | ||
#define LCD_RESET_PIN PA6 | ||
#define NEOPIXEL_PIN PA7 | ||
#define DOGLCD_MOSI PB15 | ||
#define DOGLCD_SCK PB13 | ||
|
||
#else | ||
|
||
#define LCD_PINS_D4 PA6 | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If Neopixel is now working with HAL/STM32F1, that is news to me.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry, maybe I told you earlier, my latest test situation.
A. If i have enable #define FORCE_SOFT_SPI, the lcd blacklight's color is can be change by lcd, but read card by lcd and it will display stuck
B. If i have disenable #define FORCE_SOFT_SPI, the lcd blacklight's color is can not be change by lcd, but read card by lcd is OK