Merge branch 'Development' into manual-bed-leveling+mesh-bed-level

Fixed conflicts:
	Marlin/planner.h
This commit is contained in:
Edward Patel
2015-03-17 22:48:08 +01:00
20 changed files with 1958 additions and 83 deletions

View File

@ -84,9 +84,11 @@ void plan_init();
#if defined(ENABLE_AUTO_BED_LEVELING) || defined(MESH_BED_LEVELING)
void plan_buffer_line(float x, float y, float z, const float &e, float feed_rate, const uint8_t &extruder);
// Get the position applying the bed level matrix if enabled
#if defined(ENABLE_AUTO_BED_LEVELING)
vector_3 plan_get_position();
#ifndef DELTA
// Get the position applying the bed level matrix if enabled
vector_3 plan_get_position();
#endif
#endif // ENABLE_AUTO_BED_LEVELING
#else
void plan_buffer_line(const float &x, const float &y, const float &z, const float &e, float feed_rate, const uint8_t &extruder);