forked from mriscoc/Ender3V2S1
-
-
Notifications
You must be signed in to change notification settings - Fork 22
Closed
Labels
already fixedIssue has been addressedIssue has been addressed
Description
MRiscoCProUI/Marlin/src/module/settings.cpp
Line 944 in fef8476
| dummyf = float(DEFAULT_EJERK); |
Hi, a little problem with DEFAULT_EJERK - the thing is that it is defined just in case of ENABLED(CLASSIC_JERK), and otherwise it just doesn't exist and the above line gives a compilation error.
MRiscoCProUI/configurations/Voxelab Aquila 427/UBL/Configuration.h
Lines 1367 to 1386 in fef8476
| #define CLASSIC_JERK | |
| #if ENABLED(CLASSIC_JERK) | |
| #define DEFAULT_XJERK 10.0 | |
| #define DEFAULT_YJERK 10.0 | |
| #define DEFAULT_ZJERK 0.4 | |
| #define DEFAULT_EJERK 10.0 | |
| //#define DEFAULT_IJERK 0.3 | |
| //#define DEFAULT_JJERK 0.3 | |
| //#define DEFAULT_KJERK 0.3 | |
| //#define DEFAULT_UJERK 0.3 | |
| //#define DEFAULT_VJERK 0.3 | |
| //#define DEFAULT_WJERK 0.3 | |
| //#define TRAVEL_EXTRA_XYJERK 0.0 // Additional jerk allowance for all travel moves | |
| //#define LIMITED_JERK_EDITING // Limit edit via M205 or LCD to DEFAULT_aJERK * 2 | |
| #if ENABLED(LIMITED_JERK_EDITING) | |
| #define MAX_JERK_EDIT_VALUES { 20, 20, 1, 20 } // ...or, set your own edit limits | |
| #endif | |
| #endif |
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
already fixedIssue has been addressedIssue has been addressed