Compare commits

..

5 Commits

Author SHA1 Message Date
EmaMaker 36a745243c initial yaw ctrl for turning
gyro drift hits hard
2024-04-27 11:47:17 +02:00
EmaMaker d1cb40d10c perform calibration 2024-04-26 20:46:16 +02:00
EmaMaker fcc8a4dafd balancing on a incline wooden board 2024-04-26 18:37:48 +02:00
EmaMaker 79cffdac4e initial velocity control loop
Achieved with a PI controller checking the current velocity as output by the motors. Since I'm
using stepper motors, the angular velocity is exact (if the motors are not skipping steps) and does not need encoders on the
motors.

TODO: add a little deadzone either on the setpoint or on the velocity, to prevent
oscillations when around the equilibrium point.
2024-04-25 21:19:16 +02:00
EmaMaker 27ff883a37 misc commit, discard this if committing 2024-04-24 22:06:27 +02:00
6 changed files with 100 additions and 75 deletions

View File

@ -4,7 +4,7 @@
//#define PRINT_ANGLES //#define PRINT_ANGLES
//#define PRINT_QUAT //#define PRINT_QUAT
#define PERFORM_CALIBRATION //Comment to disable startup calibration // #define PERFORM_CALIBRATION //Comment to disable startup calibration
#define IMU_ADDRESS 0x68 //Change to the address of the IMU #define IMU_ADDRESS 0x68 //Change to the address of the IMU
MPU6050 IMU; //Change to the name of any supported IMU! MPU6050 IMU; //Change to the name of any supported IMU!
@ -36,26 +36,10 @@ void setup_imu(){
} }
} }
#ifdef PERFORM_CALIBRATION #ifdef PERFORM_CALIBRATION
Serial.println("Keep IMU level."); delay(1500);
delay(500);
IMU.calibrateAccelGyro(&calib); IMU.calibrateAccelGyro(&calib);
Serial.println("Calibration done!"); delay(1500);
Serial.println("Accel biases X/Y/Z: ");
Serial.print(calib.accelBias[0]);
Serial.print(", ");
Serial.print(calib.accelBias[1]);
Serial.print(", ");
Serial.println(calib.accelBias[2]);
Serial.println("Gyro biases X/Y/Z: ");
Serial.print(calib.gyroBias[0]);
Serial.print(", ");
Serial.print(calib.gyroBias[1]);
Serial.print(", ");
Serial.println(calib.gyroBias[2]);
delay(500);
IMU.init(calib, IMU_ADDRESS); IMU.init(calib, IMU_ADDRESS);
#endif #endif
filter.begin(0.2f); filter.begin(0.2f);

View File

@ -15,25 +15,45 @@ constexpr double MAX_HALF_PERIOD = 75; // in microseconds
// Which means there is a maximum velocity achievable // Which means there is a maximum velocity achievable
constexpr double MAX_VELOCITY = 1000000 * WHEEL_RADIUS / (2 * MAX_HALF_PERIOD * ANGLE_PER_STEP) * PI / 180; constexpr double MAX_VELOCITY = 1000000 * WHEEL_RADIUS / (2 * MAX_HALF_PERIOD * ANGLE_PER_STEP) * PI / 180;
constexpr double CONVERSION_FACTOR = 180 / WHEEL_RADIUS / PI;
// Derived and analytical model, linearized it and simulated in MATLAB. // Derived and analytical model, linearized it and simulated in MATLAB.
// PID values are then calculated and verified by simulation in Simulink. I ain't calibrating a PID by hand on this robot // PID values are then calculated and verified by simulation in Simulink. I ain't calibrating a PID by hand on this robot
// I modified the ArduPID library to make it accept negative values for the parameters // I modified the ArduPID library to make it accept negative values for the parameters
constexpr double KP = 42; constexpr float KP = 42;
constexpr double KI = KP * 10.8852; constexpr float KI = KP * 10.8852;
constexpr double KD = 0.3; constexpr float KD = 0.3;
// PI constants for outer velocity control loop
constexpr float KP_vel = 0.0065;
constexpr float KI_vel = 0.0005;
constexpr float KP_yaw = 0.8;
constexpr float KI_yaw = 0.06;
float angle_setpoint = 0.0;
float angle_output = 0;
float angle_input = 0;
float yaw_setpoint = 0.0;
float yaw_output = 0;
float yaw_input = 0;
float vel_setpoint = 0.0;
float vel_input = 0.0;
// IMU little bit tilted
// TODO: Implement an outer control loop for angular velocity. But that requires encoders on the motors
// TODO: try to achieve it crudely by just using a PI controller on the velocity given by the PID balance controller
float setpoint = 0.0;
float output = 0;
float input = 0;
float yaw{ 0 }, pitch{ 0 }, roll{ 0 }; float yaw{ 0 }, pitch{ 0 }, roll{ 0 };
QuickPID pitchCtrl(&input, &output, &setpoint, KP, KI, KD, pitchCtrl.pMode::pOnError, pitchCtrl.dMode::dOnMeas, pitchCtrl.iAwMode::iAwCondition, pitchCtrl.Action::reverse); QuickPID pitchCtrl(&pitch, &angle_output, &angle_setpoint, KP, KI, KD, pitchCtrl.pMode::pOnError, pitchCtrl.dMode::dOnMeas, pitchCtrl.iAwMode::iAwCondition, pitchCtrl.Action::reverse);
// TODO: a little deadzone when the input is almost 0, just to avoid unnecessary "nervous" control and eventual oscillations
QuickPID velCtrl(&angle_output, &angle_setpoint, &vel_setpoint, KP_vel, KI_vel, 0, velCtrl.pMode::pOnError, velCtrl.dMode::dOnMeas, velCtrl.iAwMode::iAwClamp, velCtrl.Action::direct);
QuickPID yawCtrl(&yaw, &yaw_output, &yaw_setpoint, KP_yaw, KI_yaw, 0, yawCtrl.pMode::pOnError, yawCtrl.dMode::dOnMeas, yawCtrl.iAwMode::iAwClamp, yawCtrl.Action::direct);
void setup() { void setup() {
Serial.begin(9600); Serial.begin(9600);
@ -48,7 +68,7 @@ void setup() {
// Let the initial error from madgwick filter discharge without affecting the integral term of the PID // Let the initial error from madgwick filter discharge without affecting the integral term of the PID
unsigned long t = millis(); unsigned long t = millis();
while (millis() - t < 5000) { while (millis() - t < 2000) {
update_imu(); update_imu();
} }
@ -57,7 +77,17 @@ void setup() {
pitchCtrl.SetMode(pitchCtrl.Control::automatic); pitchCtrl.SetMode(pitchCtrl.Control::automatic);
pitchCtrl.SetSampleTimeUs(1000); pitchCtrl.SetSampleTimeUs(1000);
velCtrl.SetOutputLimits(-0.35, 0.35);
velCtrl.SetMode(velCtrl.Control::automatic);
velCtrl.SetSampleTimeUs(10000);
yawCtrl.SetOutputLimits(-MAX_VELOCITY*0.01, MAX_VELOCITY*0.01);
yawCtrl.SetMode(yawCtrl.Control::automatic);
yawCtrl.SetSampleTimeUs(10000);
digitalWrite(LED_BUILTIN, LOW); digitalWrite(LED_BUILTIN, LOW);
yaw_setpoint = yaw;
} }
void setup1() { void setup1() {
@ -68,43 +98,53 @@ void setup1(){
pinMode(MOT_SX_STEP, OUTPUT); pinMode(MOT_SX_STEP, OUTPUT);
} }
unsigned long last_time_motors = micros(), current_time_motors = micros();
bool b = true;
// Such a long halfperiod means that the motors are not moving
uint32_t t = INT_MAX;
int32_t period = INT_MAX, halfperiod1 = INT_MAX;
void loop1() { void loop1() {
static bool sx_b = true, dx_b = true;
static uint32_t last_time_sx = micros(), last_time_dx = micros(), current_time_motors = micros();
// TODO: handle the steppers using interrupt timers. The second core could be used for IMU processing, while the first one handles the different control loops // TODO: handle the steppers using interrupt timers. The second core could be used for IMU processing, while the first one handles the different control loops
static int32_t tmotsx_period = INT_MAX, tmotdx_period = INT_MAX;
static uint32_t motsx_period = INT_MAX, motdx_period = INT_MAX;
// Retrieve the half period value from core0. Non blocking call // Retrieve the half period value from core0. Non blocking call
if(rp2040.fifo.available()) {
rp2040.fifo.pop_nb(&t);
int32_t period = (int32_t)t; if (rp2040.fifo.available() > 2) {
uint32_t t;
rp2040.fifo.pop_nb(&t);
tmotsx_period = (int32_t) t;
rp2040.fifo.pop_nb(&t);
tmotdx_period = (int32_t) t;
}
// Direction need to be changed during motor pulse // Direction need to be changed during motor pulse
// Doing it here unsure it happens at the correct time // Doing it here unsure it happens at the correct time
if(period > 0){ if (tmotsx_period > 0) {
// Positivie direction
digitalWriteFast(MOT_DX_DIR, HIGH);
digitalWriteFast(MOT_SX_DIR, HIGH); digitalWriteFast(MOT_SX_DIR, HIGH);
halfperiod1 = (uint32_t)(period); motsx_period = (uint32_t)(tmotsx_period);
} else {
// Negative direction
digitalWriteFast(MOT_SX_DIR, LOW);
motsx_period = (uint32_t)(-tmotsx_period);
}
if (tmotdx_period > 0) {
digitalWriteFast(MOT_DX_DIR, HIGH);
motdx_period = (uint32_t)(tmotdx_period);
} else { } else {
// Negative direction // Negative direction
digitalWriteFast(MOT_DX_DIR, LOW); digitalWriteFast(MOT_DX_DIR, LOW);
digitalWriteFast(MOT_SX_DIR, LOW); motdx_period = (uint32_t)(-tmotdx_period);
halfperiod1 = (uint32_t)(-period);
}
} }
current_time_motors = micros(); current_time_motors = micros();
if(current_time_motors - last_time_motors > halfperiod1){ if (current_time_motors - last_time_sx > motsx_period) {
// Half a pulse. Next cycle will be the rest // Half a pulse. Next cycle will be the rest
digitalWriteFast(MOT_DX_STEP, b); digitalWriteFast(MOT_SX_STEP, sx_b);
digitalWriteFast(MOT_SX_STEP, b); sx_b = !sx_b;
b = !b; last_time_sx = current_time_motors;
last_time_motors = current_time_motors; }
if (current_time_motors - last_time_dx > motdx_period) {
// Half a pulse. Next cycle will be the rest
digitalWriteFast(MOT_DX_STEP, dx_b);
dx_b = !dx_b;
last_time_dx = current_time_motors;
} }
} }
@ -117,19 +157,20 @@ uint32_t current_time = millis(), last_time = millis();
void loop() { void loop() {
update_imu(); update_imu();
input = pitch; velCtrl.Compute();
//if(abs(input -setpoint) <= 0.01) input = setpoint; yawCtrl.Compute();
// I also modified the ArduPID library to use compute as a boolean. If calculations were done, it returns true. If not enough time has elapsed, it returns false
if (pitchCtrl.Compute()) { if (pitchCtrl.Compute()) {
double tvelocity = angle_output;
double tvelocity = output; frequency = (tvelocity + yaw_output) * CONVERSION_FACTOR * ANGLE_PER_STEP ;
tvelocity = tvelocity / WHEEL_RADIUS * 180 / PI;
frequency = tvelocity * 0.1125;
half_period0 = 1000000 / (2 * frequency); half_period0 = 1000000 / (2 * frequency);
// Send the half period of one motor to core 1. Non blocking
rp2040.fifo.push_nb(half_period0);
// Send the half period to core 1. Non blocking frequency = (tvelocity - yaw_output) * CONVERSION_FACTOR * ANGLE_PER_STEP ;
half_period0 = 1000000 / (2 * frequency);
// Send the half period of the other motor to core 1. Non blocking
rp2040.fifo.push_nb(half_period0); rp2040.fifo.push_nb(half_period0);
} }
} }

Binary file not shown.

Binary file not shown.