test

Dependencies:   PM2_Libary

Committer:
waldsyve
Date:
Mon Apr 12 08:47:06 2021 +0000
Revision:
11:ed1d7d9959f0
Parent:
10:c5d85e35758c
PES_board

Who changed what in which revision?

UserRevisionLine numberNew contents of line
pmic 1:93d997d6b232 1 #include "mbed.h"
pmic 1:93d997d6b232 2 #include "platform/mbed_thread.h"
pmic 6:e1fa1a2d7483 3
pmic 6:e1fa1a2d7483 4 /* PM2_Libary */
pmic 1:93d997d6b232 5 #include "EncoderCounter.h"
pmic 1:93d997d6b232 6 #include "Servo.h"
pmic 3:d22942631cd7 7 #include "SpeedController.h"
pmic 9:f10b974d01e0 8 #include "FastPWM.h"
pmic 6:e1fa1a2d7483 9
pmic 6:e1fa1a2d7483 10 using namespace std::chrono;
pmic 6:e1fa1a2d7483 11
pmic 8:9bb806a7f585 12 InterruptIn user_button(USER_BUTTON);
pmic 8:9bb806a7f585 13 DigitalOut led(LED1);
pmic 6:e1fa1a2d7483 14
pmic 6:e1fa1a2d7483 15 bool executeMainTask = false;
pmic 6:e1fa1a2d7483 16 Timer user_button_timer, loop_timer;
pmic 7:c0f5bb355f41 17 int Ts_ms = 50;
pmic 6:e1fa1a2d7483 18
pmic 6:e1fa1a2d7483 19 /* declaration of custom button functions */
pmic 6:e1fa1a2d7483 20 void button_fall();
pmic 6:e1fa1a2d7483 21 void button_rise();
pmic 6:e1fa1a2d7483 22
pmic 6:e1fa1a2d7483 23 /* create analog input object */
pmic 6:e1fa1a2d7483 24 AnalogIn analogIn(PC_2);
pmic 6:e1fa1a2d7483 25 float dist = 0.0f;
pmic 6:e1fa1a2d7483 26
pmic 6:e1fa1a2d7483 27 /* create enable dc motor digital out object */
pmic 6:e1fa1a2d7483 28 DigitalOut enable_motors(PB_15);
pmic 10:c5d85e35758c 29 /* create pwm objects */
pmic 10:c5d85e35758c 30 FastPWM pwmOut_M1(PB_13);
pmic 10:c5d85e35758c 31 FastPWM pwmOut_M2(PA_9);
pmic 10:c5d85e35758c 32 FastPWM pwmOut_M3(PA_10);
pmic 10:c5d85e35758c 33 double Ts_pwm_s = 0.00005; // this needs to be a double value (no f at the end)
pmic 6:e1fa1a2d7483 34 /* create encoder read objects */
pmic 10:c5d85e35758c 35 EncoderCounter encoderCounter_M1(PA_6, PC_7);
pmic 10:c5d85e35758c 36 EncoderCounter encoderCounter_M2(PB_6, PB_7);
pmic 10:c5d85e35758c 37 EncoderCounter encoderCounter_M3(PA_0, PA_1);
pmic 10:c5d85e35758c 38 /* create speed controller objects, only M1 and M2, M3 is used open-loop */
pmic 10:c5d85e35758c 39 float counts_per_turn = 20.0f*78.125f; // counts/turn * gearratio
pmic 10:c5d85e35758c 40 float kn = 180.0f/12.0f; // (RPM/V)
pmic 10:c5d85e35758c 41 float max_voltage = 12.0f; // adjust this to 6.0f if only one batterypack is used
pmic 10:c5d85e35758c 42 SpeedController speedController_M1(counts_per_turn, kn, max_voltage, pwmOut_M1, encoderCounter_M1);
pmic 10:c5d85e35758c 43 SpeedController speedController_M2(counts_per_turn, kn, max_voltage, pwmOut_M2, encoderCounter_M2);
pmic 6:e1fa1a2d7483 44
waldsyve 11:ed1d7d9959f0 45
pmic 6:e1fa1a2d7483 46 /* create servo objects */
pmic 10:c5d85e35758c 47 Servo servo_S1(PB_2);
pmic 10:c5d85e35758c 48 Servo servo_S2(PC_8);
waldsyve 11:ed1d7d9959f0 49 Servo servo_S3(PC_6); // not needed in this example
pmic 10:c5d85e35758c 50 int servoPeriod_mus = 20000;
pmic 10:c5d85e35758c 51 int servoOutput_mus_S1 = 0;
pmic 10:c5d85e35758c 52 int servoOutput_mus_S2 = 0;
waldsyve 11:ed1d7d9959f0 53 int servoOutput_mus_S3 = 0;
pmic 10:c5d85e35758c 54 int servo_counter = 0;
pmic 10:c5d85e35758c 55 int loops_per_second = static_cast<int>(ceilf(1.0f/(0.001f*(float)Ts_ms)));
pmic 1:93d997d6b232 56
pmic 1:93d997d6b232 57 int main()
pmic 9:f10b974d01e0 58 {
pmic 6:e1fa1a2d7483 59 user_button.fall(&button_fall);
pmic 6:e1fa1a2d7483 60 user_button.rise(&button_rise);
pmic 6:e1fa1a2d7483 61 loop_timer.start();
pmic 6:e1fa1a2d7483 62
pmic 10:c5d85e35758c 63 /* enable hardwaredriver dc motors */
pmic 10:c5d85e35758c 64 enable_motors = 1;
pmic 10:c5d85e35758c 65 /* initialize pwm for motor M3*/
pmic 10:c5d85e35758c 66 pwmOut_M3.period(Ts_pwm_s);
pmic 6:e1fa1a2d7483 67 /* set pwm output zero at the beginning, range: 0...1 -> u_min...u_max */
pmic 10:c5d85e35758c 68 pwmOut_M3.write(0.5);
pmic 9:f10b974d01e0 69
pmic 10:c5d85e35758c 70 /* enable servos, you can also disable them */
pmic 10:c5d85e35758c 71 servo_S1.Enable(servoOutput_mus_S1, servoPeriod_mus);
pmic 10:c5d85e35758c 72 servo_S2.Enable(servoOutput_mus_S2, servoPeriod_mus);
waldsyve 11:ed1d7d9959f0 73 servo_S3.Enable(servoOutput_mus_S3, servoPeriod_mus);
pmic 6:e1fa1a2d7483 74
pmic 1:93d997d6b232 75 while (true) {
pmic 6:e1fa1a2d7483 76
pmic 6:e1fa1a2d7483 77 loop_timer.reset();
pmic 6:e1fa1a2d7483 78
pmic 6:e1fa1a2d7483 79 /* ------------- start hacking ------------- -------------*/
pmic 6:e1fa1a2d7483 80
pmic 6:e1fa1a2d7483 81 if (executeMainTask) {
pmic 6:e1fa1a2d7483 82
pmic 6:e1fa1a2d7483 83 /* read analog input */
pmic 6:e1fa1a2d7483 84 dist = analogIn.read() * 3.3f;
pmic 6:e1fa1a2d7483 85
pmic 10:c5d85e35758c 86 /* command a speed to dc motors M1 and M2*/
waldsyve 11:ed1d7d9959f0 87 speedController_M1.setDesiredSpeedRPS( -0.1f);
pmic 10:c5d85e35758c 88 speedController_M2.setDesiredSpeedRPS(-0.5f);
pmic 10:c5d85e35758c 89 /* write output voltage to motor M3 */
pmic 10:c5d85e35758c 90 pwmOut_M3.write(0.75);
pmic 6:e1fa1a2d7483 91
pmic 10:c5d85e35758c 92 /* command servo position via output time, this needs to be calibrated */
pmic 10:c5d85e35758c 93 servo_S1.SetPosition(servoOutput_mus_S1);
pmic 10:c5d85e35758c 94 servo_S2.SetPosition(servoOutput_mus_S2);
waldsyve 11:ed1d7d9959f0 95 servo_S3.SetPosition(servoOutput_mus_S3);
pmic 10:c5d85e35758c 96 if (servoOutput_mus_S1 <= servoPeriod_mus & servo_counter%loops_per_second == 0 & servo_counter != 0) {
pmic 10:c5d85e35758c 97 servoOutput_mus_S1 += 100;
pmic 8:9bb806a7f585 98 }
pmic 10:c5d85e35758c 99 if (servoOutput_mus_S2 <= servoPeriod_mus & servo_counter%loops_per_second == 0 & servo_counter != 0) {
pmic 10:c5d85e35758c 100 servoOutput_mus_S2 += 100;
pmic 8:9bb806a7f585 101 }
waldsyve 11:ed1d7d9959f0 102 if (servoOutput_mus_S3 <= servoPeriod_mus & servo_counter%loops_per_second == 0 & servo_counter != 0) {
waldsyve 11:ed1d7d9959f0 103 servoOutput_mus_S3 += 100;
waldsyve 11:ed1d7d9959f0 104 }
pmic 10:c5d85e35758c 105 servo_counter++;
pmic 6:e1fa1a2d7483 106
pmic 6:e1fa1a2d7483 107 /* visual feedback that the main task is executed */
pmic 6:e1fa1a2d7483 108 led = !led;
pmic 9:f10b974d01e0 109
pmic 1:93d997d6b232 110 } else {
pmic 6:e1fa1a2d7483 111
pmic 6:e1fa1a2d7483 112 dist = 0.0f;
pmic 1:93d997d6b232 113
pmic 10:c5d85e35758c 114 speedController_M1.setDesiredSpeedRPS(0.0f);
pmic 10:c5d85e35758c 115 speedController_M2.setDesiredSpeedRPS(0.0f);
pmic 10:c5d85e35758c 116 pwmOut_M3.write(0.5);
pmic 6:e1fa1a2d7483 117
pmic 10:c5d85e35758c 118 servoOutput_mus_S1 = 0;
pmic 10:c5d85e35758c 119 servoOutput_mus_S2 = 0;
waldsyve 11:ed1d7d9959f0 120 servoOutput_mus_S3 = 0;
pmic 10:c5d85e35758c 121 servo_S1.SetPosition(servoOutput_mus_S1);
pmic 10:c5d85e35758c 122 servo_S2.SetPosition(servoOutput_mus_S2);
waldsyve 11:ed1d7d9959f0 123 servo_S3.SetPosition(servoOutput_mus_S3);
pmic 6:e1fa1a2d7483 124
pmic 6:e1fa1a2d7483 125 led = 0;
pmic 1:93d997d6b232 126 }
pmic 6:e1fa1a2d7483 127
pmic 10:c5d85e35758c 128 /* do only output via serial what's really necessary (this makes your code slow)*/
pmic 10:c5d85e35758c 129 printf("%3.3f, %3d, %3d, %3d, %3.3f, %3.3f;\r\n",
pmic 10:c5d85e35758c 130 dist,
pmic 10:c5d85e35758c 131 servoOutput_mus_S1,
pmic 10:c5d85e35758c 132 servoOutput_mus_S2,
waldsyve 11:ed1d7d9959f0 133 servoOutput_mus_S3,
pmic 10:c5d85e35758c 134 encoderCounter_M3.read(),
pmic 10:c5d85e35758c 135 speedController_M1.getSpeedRPS(),
pmic 10:c5d85e35758c 136 speedController_M2.getSpeedRPS());
pmic 8:9bb806a7f585 137
pmic 6:e1fa1a2d7483 138 /* ------------- stop hacking ------------- -------------*/
pmic 6:e1fa1a2d7483 139
pmic 6:e1fa1a2d7483 140 int T_loop_ms = duration_cast<milliseconds>(loop_timer.elapsed_time()).count();
pmic 6:e1fa1a2d7483 141 int dT_loop_ms = Ts_ms - T_loop_ms;
pmic 6:e1fa1a2d7483 142 thread_sleep_for(dT_loop_ms);
pmic 1:93d997d6b232 143 }
pmic 1:93d997d6b232 144 }
pmic 6:e1fa1a2d7483 145
pmic 6:e1fa1a2d7483 146 void button_fall()
pmic 6:e1fa1a2d7483 147 {
pmic 6:e1fa1a2d7483 148 user_button_timer.reset();
pmic 6:e1fa1a2d7483 149 user_button_timer.start();
pmic 6:e1fa1a2d7483 150 }
pmic 6:e1fa1a2d7483 151
pmic 6:e1fa1a2d7483 152 void button_rise()
pmic 6:e1fa1a2d7483 153 {
pmic 6:e1fa1a2d7483 154 int t_button_ms = duration_cast<milliseconds>(user_button_timer.elapsed_time()).count();
pmic 6:e1fa1a2d7483 155 user_button_timer.stop();
pmic 8:9bb806a7f585 156 if (t_button_ms > 200) {
pmic 6:e1fa1a2d7483 157 executeMainTask = !executeMainTask;
pmic 8:9bb806a7f585 158 }
pmic 6:e1fa1a2d7483 159 }