|
@@ -278,10 +278,10 @@ extern bool axis_known_position[3]; // axis[n].is_known
|
278
|
278
|
extern bool axis_homed[3]; // axis[n].is_homed
|
279
|
279
|
|
280
|
280
|
// GCode support for external objects
|
281
|
|
-extern bool code_seen(char);
|
282
|
|
-extern float code_value();
|
283
|
|
-extern long code_value_long();
|
284
|
|
-extern int16_t code_value_short();
|
|
281
|
+bool code_seen(char);
|
|
282
|
+float code_value();
|
|
283
|
+long code_value_long();
|
|
284
|
+int16_t code_value_short();
|
285
|
285
|
|
286
|
286
|
#if ENABLED(DELTA)
|
287
|
287
|
extern float delta[3];
|
|
@@ -355,15 +355,10 @@ extern int16_t code_value_short();
|
355
|
355
|
// Handling multiple extruders pins
|
356
|
356
|
extern uint8_t active_extruder;
|
357
|
357
|
|
358
|
|
-#if ENABLED(DIGIPOT_I2C)
|
359
|
|
- extern void digipot_i2c_set_current(int channel, float current);
|
360
|
|
- extern void digipot_i2c_init();
|
361
|
|
-#endif
|
362
|
|
-
|
363
|
358
|
#if HAS_TEMP_HOTEND || HAS_TEMP_BED
|
364
|
359
|
void print_heaterstates();
|
365
|
360
|
#endif
|
366
|
361
|
|
367
|
|
-extern void calculate_volumetric_multipliers();
|
|
362
|
+void calculate_volumetric_multipliers();
|
368
|
363
|
|
369
|
364
|
#endif //MARLIN_H
|