Page 1 of 1

Marlin 1.1.4

Posted: August 27th, 2017, 5:22 pm
by Roberts_Clif
Now I have two Hictops one 12volt and One 24volt.
They have the same controller card they were both upgraded to Marlin 1.1.4-RC6 - they both have different problems.
The only firmware lines that are different are as follows.

RED
#define CUSTOM_MACHINE_NAME " HicRed 1.1.4 "
#define DEFAULT_AXIS_STEPS_PER_UNIT { 80, 80, 1600, 94.4962144 }

BLUE
#define CUSTOM_MACHINE_NAME " HicBlue 1.1.4 "
#define DEFAULT_AXIS_STEPS_PER_UNIT { 80, 80, 400, 94.4962144 }

Both has a problem that after It Auto homes while displaying " HicBlue 1.1.4 " Z-axis will rise changing the display to " Endstops Z " or "G28 Z Forbidden"
#define Z_CLEARANCE_DEPLOY_PROBE 10 // Z Clearance " this is why Z-axis rises by design " to give be room for clearing the leaking filament.

attached is the Configuration.h
Configuration.h
(61.34 KiB) Downloaded 464 times
Attached is Configuration_adv.h
Configuration_adv.h
(56.66 KiB) Downloaded 415 times
They both print all functions seems to operate correctly
Both get a CRC when when using M500 using 461 bytes."do not know if 'CRC' was an added feature", only using 53% EEProm.

Re: Marlin 1.1.4

Posted: August 27th, 2017, 6:20 pm
by LePaul
I wish I could help
I have 1.1.2 and changed the esteps and PID settings. I've uploaded and new changes aren't showing

Re: Marlin 1.1.4

Posted: August 28th, 2017, 7:10 am
by Roberts_Clif
LePaul wrote: August 27th, 2017, 6:20 pm I wish I could help
I have 1.1.2 and changed the esteps and PID settings. I've uploaded and new changes aren't showing
Does Marlin 1.1.2 Have the save features as 1.1.4.
Separate X, Y, and Z homes
Auto bed leveling in Menu
Light dimmer form Controller

Re: Marlin 1.1.4

Posted: August 28th, 2017, 8:28 am
by LePaul
Not sure about that

Re: Marlin 1.1.4

Posted: August 28th, 2017, 9:14 am
by Roberts_Clif
I have Changed Bed leveling from Linear to Bi-linear saving 6812bytes still CRC error but smaller number "-118."
Still " Endstops Z " on display.

Have dropped the Memory use below 50% Still CRC on M500.
Must be something to do with Endstop Z coding will look again!!!!!!!

I have determined the Exact line causing the Problem.

#define Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN

I am using the above line with a PNP Proximity Sensor in place of the Z end-stop
switch, along with the following lines

#define Z_CLEARANCE_DEPLOY_PROBE 10 // Z Clearance for Deploy/Stow
#define Z_CLEARANCE_BETWEEN_PROBES 2 // Z Clearance between probe points

This allows me to home then raise Z-Axis 10mm for a clearance of 10.5mm " #define Z_PROBE_OFFSET_FROM_EXTRUDER -0.5 "
When I auto Home I get her errors " Endstops Z " or "G28 Z Forbidden "
Now when I use this line

#define Z_MIN_PROBE_ENDSTOP

I get no errors, though I can not get the Z-Axis to Raise.