Browse Source

Move kinematic functions to "private" scope

Scott Lahteine 9 years ago
parent
commit
4b1725628b
2 changed files with 1 additions and 4 deletions
  1. 0
    4
      Marlin/Marlin.h
  2. 1
    0
      Marlin/Marlin_main.cpp

+ 0
- 4
Marlin/Marlin.h View File

@@ -317,10 +317,6 @@ float code_value_temp_diff();
317 317
   extern float delta_diagonal_rod_trim_tower_3;
318 318
   void calculate_delta(float cartesian[3]);
319 319
   void recalc_delta_settings(float radius, float diagonal_rod);
320
-  float delta_safe_distance_from_top();
321
-  void set_cartesian_from_steppers();
322
-  void forwardKinematics(float point[3]);
323
-  void forwardKinematics(float z1, float z2, float z3);
324 320
   #if ENABLED(AUTO_BED_LEVELING_FEATURE)
325 321
     extern int delta_grid_spacing[2];
326 322
     void adjust_delta(float cartesian[3]);

+ 1
- 0
Marlin/Marlin_main.cpp View File

@@ -487,6 +487,7 @@ static uint8_t target_extruder;
487 487
     int delta_grid_spacing[2] = { 0, 0 };
488 488
     float bed_level[AUTO_BED_LEVELING_GRID_POINTS][AUTO_BED_LEVELING_GRID_POINTS];
489 489
   #endif
490
+  float delta_safe_distance_from_top();
490 491
 #else
491 492
   static bool home_all_axis = true;
492 493
 #endif

Loading…
Cancel
Save