Struct comments

This commit is contained in:
Alex Voinea 2020-03-23 14:57:03 +02:00
parent ea1a2bb362
commit 5c4b3eea87
No known key found for this signature in database
GPG Key ID: F5034E7CFCF2F973
1 changed files with 4 additions and 0 deletions

View File

@ -178,7 +178,11 @@ float default_retraction = DEFAULT_RETRACTION;
float homing_feedrate[] = HOMING_FEEDRATE;
//Although this flag and many others like this could be represented with a struct/bitfield for each axis (more readable and efficient code), the implementation
//would not be standard across all platforms. That being said, the code will continue to use bitmasks for independent axis.
uint8_t axis_relative_modes = 0;
int feedmultiply=100; //100->1 200->2
int extrudemultiply=100; //100->1 200->2
int extruder_multiply[EXTRUDERS] = {100