extruder_multiplier => flow_percentage

This commit is contained in:
Scott Lahteine
2016-08-18 22:13:47 -05:00
parent 464d594450
commit 628dcbc764
5 changed files with 26 additions and 23 deletions

View File

@ -118,4 +118,7 @@
#define CEILING(x,y) (((x) + (y) - 1) / (y))
#define MAX3(a, b, c) max(max(a, b), c)
#define MAX4(a, b, c, d) max(max(max(a, b), c), d)
#endif //__MACROS_H