some compatibility fixes and upload instructions

This commit is contained in:
Filip Ayazi 2021-06-02 00:56:23 +01:00
parent 35d969aadd
commit edd0246cc5
6 changed files with 43 additions and 7 deletions

View file

@ -110,6 +110,7 @@ void start_move(long displ[n_motors])
move_start_time = micros();
final_scaled_t = (float)max_steps * min_step_delay; //NB total time taken will be final_scaled_t + 2*ramp_time
stage_moving = true;
Serial.println("done.");
}
void stage_loop()
@ -209,6 +210,7 @@ void stage_release(String command)
{
releaseMotor(i);
}
Serial.println("done");
}
void stage_p(String command)

View file

@ -4,7 +4,6 @@
#include <Arduino.h>
#define EACH_MOTOR for (int i = 0; i < STAGE_N_MOTORS; i++)
#define VER_STRING "Sangaboard Firmware v0.6"
void stage_setup();
void stage_loop();