Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
CartesianSolution.cpp
00001 #include "CartesianSolution.h" 00002 #include <math.h> 00003 00004 CartesianSolution::CartesianSolution(Config* passed_config) : config(passed_config){ 00005 this->alpha_steps_per_mm = this->config->value(alpha_steps_per_mm_checksum)->as_number(); 00006 this->beta_steps_per_mm = this->config->value( beta_steps_per_mm_checksum)->as_number(); 00007 this->gamma_steps_per_mm = this->config->value(gamma_steps_per_mm_checksum)->as_number(); 00008 } 00009 00010 void CartesianSolution::millimeters_to_steps( double millimeters[], int steps[] ){ 00011 steps[ALPHA_STEPPER] = floor( millimeters[X_AXIS] * this->alpha_steps_per_mm +0.5); 00012 steps[BETA_STEPPER ] = floor( millimeters[Y_AXIS] * this->beta_steps_per_mm +0.5); 00013 steps[GAMMA_STEPPER] = floor( millimeters[Z_AXIS] * this->gamma_steps_per_mm +0.5); 00014 } 00015 00016 void CartesianSolution::steps_to_millimeters( int steps[], double millimeters[] ){}
Generated on Tue Jul 12 2022 14:14:39 by
1.7.2