bldc/applications/app_balance.c

382 lines
10 KiB
C
Raw Normal View History

2019-07-27 21:25:56 -07:00
/*
Copyright 2019 Mitch Lustig
This file is part of the VESC firmware.
The VESC firmware is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
The VESC firmware is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "conf_general.h"
#include "ch.h" // ChibiOS
#include "hal.h" // ChibiOS HAL
#include "mc_interface.h" // Motor control functions
#include "hw.h" // Pin mapping on this hardware
#include "timeout.h" // To reset the timeout
#include "commands.h"
#include "imu/imu.h"
#include "imu/ahrs.h"
2019-08-07 00:22:51 -07:00
#include "utils.h"
#include "datatypes.h"
#include "comm_can.h"
2019-08-07 00:22:51 -07:00
2019-07-27 21:25:56 -07:00
#include <math.h>
// Can
#define MAX_CAN_AGE 0.1
// Data type
typedef enum {
2019-08-27 19:57:35 -07:00
STARTUP = 0,
RUNNING,
2019-08-07 00:22:51 -07:00
FAULT,
DEAD
} BalanceState;
typedef enum {
2019-08-27 19:57:35 -07:00
CENTERING = 0,
2019-08-07 00:22:51 -07:00
TILTBACK
} SetpointAdjustmentType;
2019-08-10 22:00:00 -07:00
// Balance thread
static THD_FUNCTION(balance_thread, arg);
static THD_WORKING_AREA(balance_thread_wa, 2048); // 2kb stack for this thread
2019-07-27 21:25:56 -07:00
2019-08-27 09:10:44 -07:00
static volatile balance_config balance_conf;
static volatile imu_config imu_conf;
2019-07-27 21:25:56 -07:00
static thread_t *app_thread;
2019-07-29 00:31:48 -07:00
// Values used in loop
static BalanceState state;
2019-09-21 01:07:31 -07:00
static float pitch_angle, roll_angle;
static float gyro[3];
2019-08-10 00:16:48 -07:00
static float proportional, integral, derivative;
static float last_proportional;
static float pid_value;
static float setpoint, setpoint_target;
static float yaw_proportional, yaw_integral, yaw_derivative, yaw_last_proportional, yaw_pid_value;
2019-08-07 00:22:51 -07:00
static SetpointAdjustmentType setpointAdjustmentType;
2019-08-10 00:16:48 -07:00
static float startup_step_size, tiltback_step_size;
static systime_t current_time, last_time, diff_time;
2019-08-27 19:57:35 -07:00
static systime_t startup_start_time, startup_diff_time;
static systime_t dead_start_time;
static systime_t fault_start_time;
2019-09-10 01:07:05 -07:00
static uint16_t switches_value;
2019-07-29 00:31:48 -07:00
// Values read to pass in app data to GUI
2019-08-10 00:16:48 -07:00
static float motor_current;
static float motor_position;
2019-07-29 00:31:48 -07:00
void app_balance_configure(balance_config *conf, imu_config *conf2) {
2019-08-27 09:10:44 -07:00
balance_conf = *conf;
imu_conf = *conf2;
2019-07-27 21:25:56 -07:00
}
void app_balance_start(void) {
2019-08-07 00:22:51 -07:00
// Reset all Values
2019-08-27 19:57:35 -07:00
state = STARTUP;
2019-09-21 01:07:31 -07:00
pitch_angle = 0;
roll_angle = 0;
2019-09-10 01:07:05 -07:00
switches_value = 0;
2019-08-07 00:22:51 -07:00
proportional = 0;
integral = 0;
derivative = 0;
last_proportional = 0;
pid_value = 0;
setpoint = 0;
setpoint_target = 0;
2019-08-27 19:57:35 -07:00
setpointAdjustmentType = CENTERING;
2019-08-08 23:39:14 -07:00
startup_step_size = 0;
tiltback_step_size = 0;
2019-08-10 00:16:48 -07:00
current_time = 0;
last_time = 0;
diff_time = 0;
2019-08-27 19:57:35 -07:00
startup_start_time = 0;
startup_diff_time = 0;
2019-07-30 00:27:23 -07:00
2019-09-12 23:08:56 -07:00
#ifdef HW_SPI_PORT_SCK
2019-09-10 01:07:05 -07:00
// Configure pins
if(balance_conf.use_switches){
palSetPadMode(HW_SPI_PORT_SCK, HW_SPI_PIN_SCK, PAL_MODE_INPUT_PULLDOWN);
palSetPadMode(HW_SPI_PORT_MISO, HW_SPI_PIN_MISO, PAL_MODE_INPUT_PULLDOWN);
}
2019-09-12 23:08:56 -07:00
#endif
2019-09-10 01:07:05 -07:00
2019-08-10 22:00:00 -07:00
// Start the balance thread
app_thread = chThdCreateStatic(balance_thread_wa, sizeof(balance_thread_wa), NORMALPRIO, balance_thread, NULL);
2019-07-27 21:25:56 -07:00
}
2019-07-29 00:31:48 -07:00
float app_balance_get_pid_output(void) {
2019-08-07 00:22:51 -07:00
return pid_value;
2019-07-29 00:31:48 -07:00
}
2019-09-21 01:07:31 -07:00
float app_balance_get_pitch_angle(void) {
return pitch_angle;
2019-07-29 00:31:48 -07:00
}
2019-09-21 01:07:31 -07:00
float app_balance_get_roll_angle(void) {
return roll_angle;
2019-07-30 00:27:23 -07:00
}
uint32_t app_balance_get_diff_time(void) {
2019-08-10 00:16:48 -07:00
return ST2US(diff_time);
2019-07-29 00:31:48 -07:00
}
float app_balance_get_motor_current(void) {
2019-08-07 00:22:51 -07:00
return motor_current;
2019-07-27 21:25:56 -07:00
}
2019-07-30 00:27:23 -07:00
float app_balance_get_motor_position(void) {
2019-08-07 00:22:51 -07:00
return motor_position;
}
2019-08-09 20:55:58 -07:00
uint16_t app_balance_get_state(void) {
return state;
}
2019-09-10 01:07:05 -07:00
uint16_t app_balance_get_switch_value(void) {
return switches_value;
}
2019-08-07 00:22:51 -07:00
2019-08-10 00:16:48 -07:00
float get_setpoint_adjustment_step_size(void){
2019-08-07 00:22:51 -07:00
switch(setpointAdjustmentType){
2019-08-27 19:57:35 -07:00
case (CENTERING):
2019-08-07 00:22:51 -07:00
return startup_step_size;
case (TILTBACK):
return tiltback_step_size;
}
return 0;
}
2019-08-10 00:16:48 -07:00
float apply_deadzone(float error){
2019-08-27 09:10:44 -07:00
if(balance_conf.deadzone == 0){
2019-08-07 00:22:51 -07:00
return error;
}
2019-08-27 09:10:44 -07:00
if(error < balance_conf.deadzone && error > -balance_conf.deadzone){
2019-08-07 00:22:51 -07:00
return 0;
2019-08-27 09:10:44 -07:00
} else if(error > balance_conf.deadzone){
return error - balance_conf.deadzone;
2019-08-07 00:22:51 -07:00
} else {
2019-08-27 09:10:44 -07:00
return error + balance_conf.deadzone;
2019-08-07 00:22:51 -07:00
}
2019-07-30 00:27:23 -07:00
}
2019-07-27 21:25:56 -07:00
void brake(void){
// Reset the timeout
timeout_reset();
// Set current
mc_interface_set_brake_current(balance_conf.brake_current);
if(balance_conf.multi_esc){
for (int i = 0;i < CAN_STATUS_MSGS_TO_STORE;i++) {
can_status_msg *msg = comm_can_get_status_msg_index(i);
if (msg->id >= 0 && UTILS_AGE_S(msg->rx_time) < MAX_CAN_AGE) {
comm_can_set_current_brake(msg->id, balance_conf.brake_current);
}
}
}
}
void set_current(float current, float yaw_current){
// Reset the timeout
timeout_reset();
// Set current
if(balance_conf.multi_esc){
mc_interface_set_current(current + yaw_current);
for (int i = 0;i < CAN_STATUS_MSGS_TO_STORE;i++) {
can_status_msg *msg = comm_can_get_status_msg_index(i);
if (msg->id >= 0 && UTILS_AGE_S(msg->rx_time) < MAX_CAN_AGE) {
comm_can_set_current(msg->id, current - yaw_current);
}
}
} else {
mc_interface_set_current(current);
}
}
void app_balance_stop(void) {
if(app_thread != NULL){
chThdTerminate(app_thread);
chThdWait(app_thread);
}
set_current(0, 0);
}
2019-08-10 22:00:00 -07:00
static THD_FUNCTION(balance_thread, arg) {
2019-07-27 21:25:56 -07:00
(void)arg;
2019-08-07 00:22:51 -07:00
chRegSetThreadName("APP_BALANCE");
2019-07-27 21:25:56 -07:00
2019-08-08 23:39:14 -07:00
// Do one off config
2019-08-27 09:10:44 -07:00
startup_step_size = balance_conf.startup_speed / balance_conf.hertz;
tiltback_step_size = balance_conf.tiltback_speed / balance_conf.hertz;
2019-08-08 23:39:14 -07:00
2019-08-27 19:57:35 -07:00
state = STARTUP;
setpointAdjustmentType = CENTERING;
2019-08-08 23:39:14 -07:00
2019-07-27 21:25:56 -07:00
while (!chThdShouldTerminateX()) {
// Update times
current_time = chVTGetSystemTimeX();
2019-08-10 00:16:48 -07:00
if(last_time == 0){
last_time = current_time;
}
diff_time = current_time - last_time;
last_time = current_time;
// Read values for GUI
motor_current = mc_interface_get_tot_current_directional_filtered();
motor_position = mc_interface_get_pid_pos_now();
// Get the values we want
2019-09-21 01:07:31 -07:00
pitch_angle = imu_get_pitch() * 180.0f / M_PI;
roll_angle = imu_get_roll() * 180.0f / M_PI;
imu_get_gyro(gyro);
2019-09-10 01:07:05 -07:00
if(!balance_conf.use_switches){
switches_value = 2;
}else{
switches_value = 0;
2019-09-12 23:08:56 -07:00
#ifdef HW_SPI_PORT_SCK
2019-09-10 01:07:05 -07:00
if(palReadPad(HW_SPI_PORT_SCK, HW_SPI_PIN_SCK)){
switches_value += 1;
}
if(palReadPad(HW_SPI_PORT_MISO, HW_SPI_PIN_MISO)){
switches_value += 1;
}
2019-09-12 23:08:56 -07:00
#endif
2019-09-10 01:07:05 -07:00
}
// State based logic
switch(state){
2019-08-27 19:57:35 -07:00
case (STARTUP):
2019-09-11 23:08:28 -07:00
while(!imu_startup_done()){
// Disable output
brake();
// Wait
2019-09-11 23:08:28 -07:00
chThdSleepMilliseconds(50);
2019-08-27 09:10:44 -07:00
}
2019-09-11 23:08:28 -07:00
state = FAULT;
startup_start_time = 0;
startup_diff_time = 0;
break;
case (RUNNING):
2019-08-07 00:22:51 -07:00
// Check for overspeed
2019-08-27 09:10:44 -07:00
if(fabsf(mc_interface_get_duty_cycle_now()) > balance_conf.overspeed_duty){
if(ST2MS(current_time - dead_start_time) > balance_conf.overspeed_delay){
state = DEAD;
}
} else {
dead_start_time = current_time;
2019-08-07 00:22:51 -07:00
}
// Check for fault
2019-09-10 01:07:05 -07:00
if(
2019-09-21 01:07:31 -07:00
fabsf(pitch_angle) > balance_conf.pitch_fault || // Balnce axis tip over
fabsf(roll_angle) > balance_conf.roll_fault || // Cross axis tip over
2019-09-10 01:07:05 -07:00
app_balance_get_switch_value() == 0 || // Switch fully open
(app_balance_get_switch_value() == 1 && fabsf(mc_interface_get_duty_cycle_now()) < 0.003) // Switch partially open and stopped
){
if(ST2MS(current_time - fault_start_time) > balance_conf.fault_delay){
state = FAULT;
}
} else {
fault_start_time = current_time;
}
// Over speed tilt back safety
2019-09-10 19:29:44 -07:00
if(fabsf(mc_interface_get_duty_cycle_now()) > balance_conf.tiltback_duty ||
2019-09-12 00:07:26 -07:00
(fabsf(mc_interface_get_duty_cycle_now()) > 0.05 && GET_INPUT_VOLTAGE() > balance_conf.tiltback_high_voltage) ||
(fabsf(mc_interface_get_duty_cycle_now()) > 0.05 && GET_INPUT_VOLTAGE() < balance_conf.tiltback_low_voltage)){
2019-09-10 19:29:44 -07:00
if(mc_interface_get_duty_cycle_now() > 0){
setpoint_target = balance_conf.tiltback_angle;
} else {
setpoint_target = -balance_conf.tiltback_angle;
}
2019-08-07 00:22:51 -07:00
setpointAdjustmentType = TILTBACK;
}else{
setpoint_target = 0;
}
// Adjust setpoint
if(setpoint != setpoint_target){
2019-08-07 00:22:51 -07:00
// If we are less than one step size away, go all the way
2019-08-10 00:16:48 -07:00
if(fabsf(setpoint_target - setpoint) < get_setpoint_adjustment_step_size()){
2019-08-07 00:22:51 -07:00
setpoint = setpoint_target;
}else if (setpoint_target - setpoint > 0){
2019-08-08 23:39:14 -07:00
setpoint += get_setpoint_adjustment_step_size();
2019-08-07 00:22:51 -07:00
}else{
2019-08-08 23:39:14 -07:00
setpoint -= get_setpoint_adjustment_step_size();
}
}
// Do PID maths
2019-09-21 01:07:31 -07:00
proportional = setpoint - pitch_angle;
2019-08-07 00:22:51 -07:00
// Apply deadzone
proportional = apply_deadzone(proportional);
// Resume real PID maths
integral = integral + proportional;
derivative = proportional - last_proportional;
2019-08-27 09:10:44 -07:00
pid_value = (balance_conf.kp * proportional) + (balance_conf.ki * integral) + (balance_conf.kd * derivative);
last_proportional = proportional;
2019-08-07 00:22:51 -07:00
// Apply current boost
if(pid_value > 0){
2019-08-27 09:10:44 -07:00
pid_value += balance_conf.current_boost;
2019-08-07 00:22:51 -07:00
}else if(pid_value < 0){
2019-08-27 09:10:44 -07:00
pid_value -= balance_conf.current_boost;
2019-08-07 00:22:51 -07:00
}
if(balance_conf.multi_esc){
// Do PID maths
if(fabsf(mc_interface_get_duty_cycle_now()) < .02){
yaw_proportional = 0 - gyro[2];
} else if(mc_interface_get_duty_cycle_now() < 0){
yaw_proportional = (balance_conf.roll_steer_kp * roll_angle) - gyro[2];
} else{
yaw_proportional = (-balance_conf.roll_steer_kp * roll_angle) - gyro[2];
}
yaw_integral = yaw_integral + yaw_proportional;
yaw_derivative = yaw_proportional - yaw_last_proportional;
yaw_pid_value = (balance_conf.yaw_kp * yaw_proportional) + (balance_conf.yaw_ki * yaw_integral) + (balance_conf.yaw_kd * yaw_derivative);
yaw_last_proportional = yaw_proportional;
2019-08-09 23:16:20 -07:00
}
// Output to motor
set_current(pid_value, yaw_pid_value);
break;
case (FAULT):
2019-09-10 01:07:05 -07:00
// Check for valid startup position and switch state
2019-09-21 01:07:31 -07:00
if(fabsf(pitch_angle) < balance_conf.startup_pitch_tolerance && fabsf(roll_angle) < balance_conf.startup_roll_tolerance && app_balance_get_switch_value() == 2){
setpoint = pitch_angle;
setpoint_target = 0;
2019-08-27 19:57:35 -07:00
setpointAdjustmentType = CENTERING;
state = RUNNING;
break;
}
2019-08-07 00:22:51 -07:00
// Disable output
brake();
2019-08-07 00:22:51 -07:00
break;
case (DEAD):
// Disable output
brake();
break;
}
// Delay between loops
2019-08-27 09:10:44 -07:00
chThdSleepMicroseconds((int)((1000.0 / balance_conf.hertz) * 1000.0));
2019-07-27 21:25:56 -07:00
}
2019-08-07 00:22:51 -07:00
// Disable output
brake();
2019-07-27 21:25:56 -07:00
}