Re: How to update Marlin
Doesn't seem so. It is why you better document all the changes you make to avoid future frustration (even if you plan to retire your board, you never know ! ).
View ArticleRe: Python Checksum Implementation
Many thanks Dust. Could you explain what exactly Gcoder.py does?
View ArticleRe: Python Checksum Implementation
It simulates in memory a print of the gcode, displays the dimensions, layers, how much filament is used and estimated print time.
View ArticleBlinking H - why?
Just installed Marlin 1.1.9 on my AnyCubic Kossel and everything is working just great! But...while doing a print, the H Icon for the heated bed is blinking. The Thermometer Icon is on solid. I can't...
View ArticleRe: Einsy + BLTouch? compilation issues..
So this just happened to me last night, I can't compile BLtouch on an einsy board... did you ever get a response for this? Arduino: 1.8.5 (Mac OS X), Board: "RAMBo" sketch/Marlin_main.cpp: In function...
View ArticleRe: Einsy + BLTouch? compilation issues..
Hi, for me it was a bad board.. got a new one and working well. Other issues may be also.
View ArticleRe: Einsy + BLTouch? compilation issues..
The code only defines STOW_Z_SERVO if HAS_SERVOS is defined which comes from #define HAS_SERVOS (defined(NUM_SERVOS) && NUM_SERVOS > 0 && (HAS_SERVO_0 || HAS_SERVO_1 || HAS_SERVO_2...
View ArticleMarlin doesnt compile after enabling delta_auto_calibration
I am trying to enable delta autocalibration but it gives me an error in marlin_main.cpp around line 5678. I am running the latest marlin 1.1.9 freshly downloaded. This is the error:...
View ArticleRe: Einsy + BLTouch? compilation issues..
Yep have the MB selected correctly and everything.. and by default those pins are called out for the einsy_board, aren't they.. I double checked everything and they are there...(attached file) is...
View ArticleMachine Parse-able configuration(_adv).h files
Can't seem to find a place to post Ideas instead of Help requests, so I guess here is as good as any. I know there are web-apps that help users change settings in configuration.h and...
View ArticleShow Fan Speed on Info Screen?
Anyone know of a setting in Marlin to show the Part Cooling Fan Speed on the Main (Info) Screen? I realize there is no much room, but for me, showing X & Y coordinates is pretty useless as the...
View ArticleRe: How do you disable endstops during calibration?
Not sure why you have Z_Max as your Probe Pin since the Z Probe for a delta should be on the Min Endstop. But to disable/enable software endstops, in configuration.h set these lines as shown: #if...
View ArticleRe: Retraction speed question
Rely on your slicer. There is no setting in Marlin (AFAIK), to set independent Max Feed Rates for the Extruder based on function (extrude v. retract).
View ArticleRe: Extruder retracts before start of print
Do you actually see the extruder motor turning backward (retracting) at the start of the feed line? I ask because not printing the first part of the purge line is normal. Filament naturally oozes out...
View ArticleRe: Extruder retracts before start of print
Hi, Yes, i see the gear of my Titan extruder turning the "wrong" way (i.e. Retracting)
View ArticleRe: Marlin doesnt compile after enabling delta_auto_calibration
I searched through my older version of the Marlin FW and could not find the keyword. float lcd_probe_pt(const float &rx, const float &ry); The code above is the declaration of a function...
View ArticleRe: Show Fan Speed on Info Screen?
I had a look at my relatively old version of Marlin and could see no such option. I doubt it has been 'added' since. So I would say no, there is not such setting. Do you understand C/C++ (or any...
View ArticleRe: Show Fan Speed on Info Screen?
Thanks! I found the functions in ultralcd_impl_HD44780.h and replaced the "draw_axis_value(X_AXIS..." with my own function for displaying the Fan Speed "_draw_fan_status(0, fanSpeeds[0], blink" and it...
View ArticleRe: Blinking H - why?
Found my answer parsing through the code: It indicates Bed Leveling is Active. Simple enough!
View Article