Makelangelo 5 with MKS Board v1.4
- This topic has 6 replies, 2 voices, and was last updated 6 years ago by .
Viewing 7 posts - 1 through 7 (of 7 total)
Viewing 7 posts - 1 through 7 (of 7 total)
- You must be logged in to reply to this topic.
Shop › Forum › Makelangelo Polargraph Art Robot › Makelangelo 5 with MKS Board v1.4
hi Dan, id saw there is support file for BOARD_MKS.H on the makelengelo firmware… but i didnt see it (to define the board) in configure.h
// NOTE: MKS boards are identical to RAMPS boards, except that they have a few extra features.
so can i just use #define MOTHERBOARD BOARD_RAMPS ?
best regards
Hi Dan, id successfully setup Makelangelo using MKS Board Gen V1.4 using Define BOARD_RAMPS.. but then it wont recognise my RepRapD1scount Smart Controller & stuck at this command
Logging error: Invalid insert
BADLINENUM 0
N0 G90;*43
BADLINENUM 1
N1 M06 T0;*107
N2 G00 F1600 A2000;*34
N3 M117 Change to black Click to continue;*18
N4 M300 S60 P250;*45
N5 M226;*27
G00 F5000 Z60
G00 F2000
id delete / uncommand HAS_LCD & HAS_SD still that command appear.. how to solve this ?
best regards
In Makelangelo-firmware, near line 744,
int pin = parseNumber('P', -1);
if(pin == -1) return; // no pin specified.
#endif
should be
int pin = parseNumber('P', -1);
#endif
if(pin == -1) return; // no pin specified.
Try that and let me know if it works.
Thank you Dan for the reply.. Actually I’d just comment every error that appear while compiling the firmware & it’s work..
But I will try your suggestion later..
I don’t get it why MKS Gen V1.4 board have different port or slot for RepRapD1scount Smart Controller cable?.. The LCD didn’t show anything but then I’d notice some click or button sound when I try the knob.
Maybe some flaw in Makelangelo latest firmware for board_ramps?
check the history of board_ramps.h, maybe there’s been a change. https://github.com/MarginallyClever/Makelangelo-firmware/
There is problem with LCD slot with MKS.. The black slot should be flip side. Maybe this will help.. I don’t try it yet but all this after I’d saw this video..
It’s easy to take out the black slot for exp1 & 2 for smart display.
Anyway previous firmware ver 7 can make my StepperMotor 17HS4401 (pair with A4988 red) really fast & stable without jumping or skip move but with latest firmware ver 9 kind of make it skipping move although I like the smooth acceleration it’s won’t draw very well..
I have to use the slowest speed as possible then my drawing would be perfect with no skipping move or frame.
Do I need to change for max step calculation etc in the Makelangelo firmware? Or should I using other driver to make it move faster without skip any move?