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
   extern float delta_diagonal_rod_trim_tower_3;
317
   extern float delta_diagonal_rod_trim_tower_3;
318
   void calculate_delta(float cartesian[3]);
318
   void calculate_delta(float cartesian[3]);
319
   void recalc_delta_settings(float radius, float diagonal_rod);
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
   #if ENABLED(AUTO_BED_LEVELING_FEATURE)
320
   #if ENABLED(AUTO_BED_LEVELING_FEATURE)
325
     extern int delta_grid_spacing[2];
321
     extern int delta_grid_spacing[2];
326
     void adjust_delta(float cartesian[3]);
322
     void adjust_delta(float cartesian[3]);

+ 1
- 0
Marlin/Marlin_main.cpp View File

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

Loading…
Cancel
Save