Dual Brushless Motor ESC, 10-62V, up to 50A per motor. Motors ganged or independent, multiple control input methods, cycle-by-cycle current limit, speed mode and torque mode control. Motors tiny to kW. Speed limit and other parameters easily set in firmware. As used in 'The Brushless Brutalist' locomotive - www.jons-workshop.com. See also Model Engineer magazine June-October 2019.

Dependencies:   mbed BufferedSerial Servo PCT2075 FastPWM

Update 17th August 2020 Radio control inputs completed

Committer:
JonFreeman
Date:
Tue Jan 15 09:03:57 2019 +0000
Revision:
10:e40d8724268a
Parent:
9:ac2412df01be
Child:
11:bfb73f083009
Buggered serial comms to TS controller

Who changed what in which revision?

UserRevisionLine numberNew contents of line
JonFreeman 10:e40d8724268a 1 // Feb 2018 Now using DGD21032 mosfet drivers via 74HC00 pwm gates (low side) - GOOD, works well with auto-tickle of high side drivers
JonFreeman 10:e40d8724268a 2
JonFreeman 10:e40d8724268a 3 // Jan 2019 Trying to add two Radio Control inputs on PC_14 and PC_15, previously connected to unused LF Xtal.
JonFreeman 10:e40d8724268a 4 // Problem - Appears to conflict with serial port used for comms with controller
JonFreeman 10:e40d8724268a 5 // Earlier efforts to use 'Servo' ports as 'you choose' between I/O failed as pins not capable of use as 'InterruptIn'
JonFreeman 10:e40d8724268a 6
JonFreeman 10:e40d8724268a 7 // Experiment disabling RC inputs to see if clearing serial conflict is possible
JonFreeman 10:e40d8724268a 8
JonFreeman 10:e40d8724268a 9 //#define RC1IN
JonFreeman 10:e40d8724268a 10 //#define RC2IN
JonFreeman 10:e40d8724268a 11
JonFreeman 10:e40d8724268a 12
JonFreeman 7:6deaeace9a3e 13
JonFreeman 7:6deaeace9a3e 14 // Port A -> MotorA, Port B -> MotorB
JonFreeman 7:6deaeace9a3e 15 const uint16_t
JonFreeman 10:e40d8724268a 16 // This is where port bits get assigned to motor output phase switches.
JonFreeman 10:e40d8724268a 17 // Phases are U, V and W.
JonFreeman 10:e40d8724268a 18 // Each phase uses two bits, one for the low side switch, one for the high side switch.
JonFreeman 10:e40d8724268a 19 //MotorN_port_bits[] = {UL, VL, WL, UH, VH, WH}, // Order must be as shown - 3 low side switches U,V,W followed by 3 high side switches U,V,W
JonFreeman 10:e40d8724268a 20 MotorA_port_bits[] = {0, 6, 4, 1, 7, 8}, // List of port A bits used to drive motor A UL, VL, WL, UH, VH, WH
JonFreeman 10:e40d8724268a 21 MotorB_port_bits[] = {0, 1, 2, 10, 12, 13}, // List of port B bits used to drive motor B UL, VL, WL, UH, VH, WH
JonFreeman 10:e40d8724268a 22 // Using port bit info in the two lines above, the compiler sorts all this into creation of lookup table
JonFreeman 10:e40d8724268a 23 // to provide correct energisation sequencing as motors rotate.
JonFreeman 10:e40d8724268a 24 // You need concern yourself no further about any of this.
JonFreeman 10:e40d8724268a 25
JonFreeman 7:6deaeace9a3e 26
JonFreeman 10:e40d8724268a 27 AUL = (1 << MotorA_port_bits[0]),
JonFreeman 10:e40d8724268a 28 AVL = (1 << MotorA_port_bits[1]), // These are which port bits connect to which mosfet driver
JonFreeman 10:e40d8724268a 29 AWL = (1 << MotorA_port_bits[2]),
JonFreeman 7:6deaeace9a3e 30
JonFreeman 10:e40d8724268a 31 AUH = (1 << MotorA_port_bits[3]),
JonFreeman 10:e40d8724268a 32 AVH = (1 << MotorA_port_bits[4]),
JonFreeman 10:e40d8724268a 33 AWH = (1 << MotorA_port_bits[5]),
JonFreeman 10:e40d8724268a 34
JonFreeman 10:e40d8724268a 35 AUHVL = AUH | AVL, // Each of 6 possible output energisations made up of one hi and one low
JonFreeman 10:e40d8724268a 36 AVHUL = AVH | AUL,
JonFreeman 10:e40d8724268a 37 AUHWL = AUH | AWL,
JonFreeman 10:e40d8724268a 38 AWHUL = AWH | AUL,
JonFreeman 10:e40d8724268a 39 AVHWL = AVH | AWL,
JonFreeman 10:e40d8724268a 40 AWHVL = AWH | AVL,
JonFreeman 7:6deaeace9a3e 41
JonFreeman 7:6deaeace9a3e 42 KEEP_L_MASK_A = AUL | AVL | AWL,
JonFreeman 7:6deaeace9a3e 43 KEEP_H_MASK_A = AUH | AVH | AWH,
JonFreeman 7:6deaeace9a3e 44
JonFreeman 7:6deaeace9a3e 45 BRA = AUL | AVL | AWL, // All low side switches on (and all high side off) for braking
JonFreeman 7:6deaeace9a3e 46
JonFreeman 10:e40d8724268a 47 BUL = (1 << MotorB_port_bits[0]), // Likewise for MotorB but different port bits on different port
JonFreeman 10:e40d8724268a 48 BVL = (1 << MotorB_port_bits[1]),
JonFreeman 10:e40d8724268a 49 BWL = (1 << MotorB_port_bits[2]),
JonFreeman 7:6deaeace9a3e 50
JonFreeman 10:e40d8724268a 51 BUH = (1 << MotorB_port_bits[3]),
JonFreeman 10:e40d8724268a 52 BVH = (1 << MotorB_port_bits[4]),
JonFreeman 10:e40d8724268a 53 BWH = (1 << MotorB_port_bits[5]),
JonFreeman 7:6deaeace9a3e 54
JonFreeman 10:e40d8724268a 55 BUHVL = BUH | BVL,
JonFreeman 10:e40d8724268a 56 BVHUL = BVH | BUL,
JonFreeman 10:e40d8724268a 57 BUHWL = BUH | BWL,
JonFreeman 10:e40d8724268a 58 BWHUL = BWH | BUL,
JonFreeman 10:e40d8724268a 59 BVHWL = BVH | BWL,
JonFreeman 10:e40d8724268a 60 BWHVL = BWH | BVL,
JonFreeman 7:6deaeace9a3e 61
JonFreeman 7:6deaeace9a3e 62 KEEP_L_MASK_B = BUL | BVL | BWL,
JonFreeman 7:6deaeace9a3e 63 KEEP_H_MASK_B = BUH | BVH | BWH,
JonFreeman 7:6deaeace9a3e 64
JonFreeman 7:6deaeace9a3e 65 BRB = BUL | BVL | BWL,
JonFreeman 7:6deaeace9a3e 66
JonFreeman 7:6deaeace9a3e 67 PORT_A_MASK = AUL | AVL | AWL | AUH | AVH | AWH, // NEW METHOD FOR DGD21032 MOSFET DRIVERS
JonFreeman 7:6deaeace9a3e 68 PORT_B_MASK = BUL | BVL | BWL | BUH | BVH | BWH;
JonFreeman 7:6deaeace9a3e 69
JonFreeman 7:6deaeace9a3e 70 PortOut MotA (PortA, PORT_A_MASK); // Activate output ports to motor drivers
JonFreeman 7:6deaeace9a3e 71 PortOut MotB (PortB, PORT_B_MASK);
JonFreeman 7:6deaeace9a3e 72
JonFreeman 7:6deaeace9a3e 73 // Pin 1 VBAT NET +3V3
JonFreeman 7:6deaeace9a3e 74
JonFreeman 7:6deaeace9a3e 75 //DigitalIn J3 (PC_13, PullUp);// Pin 2 Jumper pulls to GND, R floats Hi
JonFreeman 7:6deaeace9a3e 76 InterruptIn Temperature_pin (PC_13);// Pin 2 June 2018 - taken for temperature sensor - hard wired to T1 due to wrong thought T1 could be InterruptIn
JonFreeman 7:6deaeace9a3e 77
JonFreeman 7:6deaeace9a3e 78
JonFreeman 10:e40d8724268a 79 #ifdef RC1IN
JonFreeman 10:e40d8724268a 80 InterruptIn RC_1_in (PC_14); //New Dec 2018 tryiing to find pins to use for servo in
JonFreeman 10:e40d8724268a 81 #endif
JonFreeman 10:e40d8724268a 82 #ifdef RC2IN
JonFreeman 10:e40d8724268a 83 InterruptIn RC_2_in (PC_15); //Yes, PC_14 and PC_15 do work
JonFreeman 10:e40d8724268a 84 #endif
JonFreeman 10:e40d8724268a 85
JonFreeman 10:e40d8724268a 86 // Pin 3 PC14-OSC32_IN NET O32I Xtal chucked off these pins, now needed for RC inputs
JonFreeman 7:6deaeace9a3e 87 // Pin 4 PC15-OSC32_OUT NET O32O
JonFreeman 7:6deaeace9a3e 88 // Pin 5 PH0-OSC_IN NET PH1
JonFreeman 7:6deaeace9a3e 89 // Pin 6 PH1-OSC_OUT NET PH1
JonFreeman 7:6deaeace9a3e 90 // Pin 7 NRST NET NRST
JonFreeman 7:6deaeace9a3e 91 AnalogIn Ain_DriverPot (PC_0); // Pin 8 Spare Analogue in, net SAIN fitted with external pull-down
JonFreeman 7:6deaeace9a3e 92 AnalogIn Ain_SystemVolts (PC_1); // Pin 9
JonFreeman 7:6deaeace9a3e 93 AnalogIn Motor_A_Current (PC_2); // Pin 10
JonFreeman 7:6deaeace9a3e 94 AnalogIn Motor_B_Current (PC_3); // Pin 11
JonFreeman 7:6deaeace9a3e 95 // Pin 12 VSSA/VREF- NET GND
JonFreeman 7:6deaeace9a3e 96 // Pin 13 VDDA/VREF+ NET +3V3
JonFreeman 7:6deaeace9a3e 97 // Pin 14 Port_A AUL
JonFreeman 7:6deaeace9a3e 98 // Pin 15 Port_A AUH
JonFreeman 7:6deaeace9a3e 99 // Pins 16, 17 BufferedSerial pc
JonFreeman 7:6deaeace9a3e 100 BufferedSerial pc (PA_2, PA_3, 512, 4, NULL); // Pins 16, 17 tx, rx to pc via usb lead
JonFreeman 7:6deaeace9a3e 101 // Pin 18 VSS NET GND
JonFreeman 7:6deaeace9a3e 102 // Pin 19 VDD NET +3V3
JonFreeman 7:6deaeace9a3e 103 // Pin 20 Port_A AWL
JonFreeman 7:6deaeace9a3e 104 // Pin 21 DigitalOut led1(LED1);
JonFreeman 7:6deaeace9a3e 105 DigitalOut LED (PA_5); // Pin 21
JonFreeman 7:6deaeace9a3e 106 // Pin 22 Port_A AVL
JonFreeman 7:6deaeace9a3e 107 // Pin 23 Port_A AVH
JonFreeman 7:6deaeace9a3e 108 InterruptIn MBH2 (PC_4); // Pin 24
JonFreeman 7:6deaeace9a3e 109 InterruptIn MBH3 (PC_5); // Pin 25
JonFreeman 7:6deaeace9a3e 110 // Pin 26 Port_B BUL
JonFreeman 7:6deaeace9a3e 111 // Pin 27 Port_B BVL
JonFreeman 7:6deaeace9a3e 112 // Pin 28 Port_B BWL
JonFreeman 7:6deaeace9a3e 113 // Pin 29 Port_B BUH
JonFreeman 7:6deaeace9a3e 114 // Pin 30 VCAP1
JonFreeman 7:6deaeace9a3e 115 // Pin 31 VSS
JonFreeman 7:6deaeace9a3e 116 // Pin 32 VDD
JonFreeman 7:6deaeace9a3e 117 // Pin 33 Port_B BVH
JonFreeman 7:6deaeace9a3e 118 // Pin 34 Port_B BWH
JonFreeman 7:6deaeace9a3e 119 DigitalOut T4 (PB_14); // Pin 35
JonFreeman 7:6deaeace9a3e 120 DigitalOut T3 (PB_15); // Pin 36
JonFreeman 7:6deaeace9a3e 121 // BufferedSerial com2 pins 37 Tx, 38 Rx
JonFreeman 7:6deaeace9a3e 122 BufferedSerial com2 (PC_6, PC_7); // Pins 37, 38 tx, rx to XBee module
JonFreeman 8:93203f473f6e 123 FastPWM A_MAX_V_PWM (PC_8, PWM_PRESECALER_DEFAULT), // Pin 39 pwm3/3
JonFreeman 8:93203f473f6e 124 A_MAX_I_PWM (PC_9, PWM_PRESECALER_DEFAULT); // pin 40, prescaler value pwm3/4
JonFreeman 7:6deaeace9a3e 125 //InterruptIn MotB_Hall (PA_8); // Pin 41
JonFreeman 7:6deaeace9a3e 126 // Pin 41 Port_A AWH
JonFreeman 7:6deaeace9a3e 127 // BufferedSerial com3 pins 42 Tx, 43 Rx
JonFreeman 7:6deaeace9a3e 128 //InterruptIn tryseredge (PA_9);
JonFreeman 7:6deaeace9a3e 129 BufferedSerial com3 (PA_9, PA_10); // Pins 42, 43 tx, rx to any aux module
JonFreeman 7:6deaeace9a3e 130 // PA_9 is Tx. I wonder, can we also use InterruptIn on this pin to generate interrupts on tx bit transitions ? Let's find out !
JonFreeman 7:6deaeace9a3e 131 // No.
JonFreeman 7:6deaeace9a3e 132
JonFreeman 7:6deaeace9a3e 133 // Feb 2018 Pins 44 and 45 now liberated, could use for serial or other uses
JonFreeman 7:6deaeace9a3e 134 //BufferedSerial extra_ser (PA_11, PA_12); // Pins 44, 45 tx, rx to XBee module
JonFreeman 7:6deaeace9a3e 135 DigitalOut T2 (PA_11); // Pin 44
JonFreeman 7:6deaeace9a3e 136 // was DigitalOut T1 (PA_12); // Pin 45
JonFreeman 7:6deaeace9a3e 137
JonFreeman 7:6deaeace9a3e 138
JonFreeman 7:6deaeace9a3e 139 //InterruptIn T1 (PA_12); // Pin 45 now input counting pulses from LMT01 temperature sensor
JonFreeman 7:6deaeace9a3e 140 // InterruptIn DOES NOT WORK ON PA_12. Boards are being made, will have to wire link PA12 to PC13
JonFreeman 7:6deaeace9a3e 141 DigitalIn T1 (PA_12);
JonFreeman 7:6deaeace9a3e 142 ////InterruptIn T1 (PC_13); // Pin 45 now input counting pulses from LMT01 temperature sensor
JonFreeman 7:6deaeace9a3e 143
JonFreeman 7:6deaeace9a3e 144
JonFreeman 7:6deaeace9a3e 145
JonFreeman 7:6deaeace9a3e 146 // Pin 46 SWDIO
JonFreeman 7:6deaeace9a3e 147 // Pin 47 VSS
JonFreeman 7:6deaeace9a3e 148 // Pin 48 VDD
JonFreeman 7:6deaeace9a3e 149 // Pin 49 SWCLK
JonFreeman 7:6deaeace9a3e 150
JonFreeman 7:6deaeace9a3e 151 //Was DigitalOut T5 (PA_15); // Pin 50
JonFreeman 7:6deaeace9a3e 152 DigitalIn T5 (PA_15); // Pin 50 now fwd/rev from remote control box if fitted
JonFreeman 7:6deaeace9a3e 153 InterruptIn MAH1 (PC_10); // Pin 51
JonFreeman 7:6deaeace9a3e 154 InterruptIn MAH2 (PC_11); // Pin 52
JonFreeman 7:6deaeace9a3e 155 InterruptIn MAH3 (PC_12); // Pin 53
JonFreeman 7:6deaeace9a3e 156 InterruptIn MBH1 (PD_2); // Pin 54
JonFreeman 7:6deaeace9a3e 157 DigitalOut T6 (PB_3); // Pin 55
JonFreeman 8:93203f473f6e 158 FastPWM B_MAX_V_PWM (PB_4, PWM_PRESECALER_DEFAULT), // Pin 56 pwm3/3
JonFreeman 8:93203f473f6e 159 B_MAX_I_PWM (PB_5, PWM_PRESECALER_DEFAULT); // pin 57, prescaler value pwm3/4
JonFreeman 7:6deaeace9a3e 160
JonFreeman 7:6deaeace9a3e 161 I2C i2c (PB_7, PB_6); // Pins 58, 59 For 24LC64 eeprom
JonFreeman 7:6deaeace9a3e 162 // Pin 60 BOOT0
JonFreeman 7:6deaeace9a3e 163
JonFreeman 7:6deaeace9a3e 164 // Servo pins, 2 off. Configured as Input to read radio control receiver
JonFreeman 10:e40d8724268a 165 // ** Update December 2018 **
JonFreeman 10:e40d8724268a 166 // These pins can not be used as InterruptIn.
JonFreeman 10:e40d8724268a 167 // Can be used as outputs by 'Servo'
JonFreeman 7:6deaeace9a3e 168 // If used as servo output, code gives pin to 'Servo' - seems to work
JonFreeman 10:e40d8724268a 169 //InterruptIn Servo1_i (PB_8); // Pin 61 to read output from rc rx
JonFreeman 10:e40d8724268a 170 //InterruptIn Servo2_i (PB_9); // Pin 62 to read output from rc rx
JonFreeman 9:ac2412df01be 171 // *** NOTE *** Above InterruptIn Servo using PB pins seems not to work, probably due to other Port B pins used as PortOut (try PortInOut?)
JonFreeman 9:ac2412df01be 172 // Nov 2018 - Yet to try using PC14, PC15, free now as 32k768 xtal not fitted
JonFreeman 9:ac2412df01be 173
JonFreeman 7:6deaeace9a3e 174
JonFreeman 7:6deaeace9a3e 175 // Pin 63 VSS
JonFreeman 7:6deaeace9a3e 176 // Pin 64 VDD
JonFreeman 7:6deaeace9a3e 177 // SYSTEM CONSTANTS
JonFreeman 7:6deaeace9a3e 178