2019-10-06 13:09:15 +00:00
/*
* This file is part of the hoverboard - firmware - hack project .
*
* Copyright ( C ) 2017 - 2018 Rene Hopf < renehopf @ mac . com >
* Copyright ( C ) 2017 - 2018 Nico Stute < crinq @ crinq . de >
* Copyright ( C ) 2017 - 2018 Niklas Fauth < niklas . fauth @ kit . fail >
2019-11-29 16:31:53 +00:00
* Copyright ( C ) 2019 - 2020 Emanuel FERU < aerdronix @ gmail . com >
2019-10-06 13:09:15 +00:00
*
* This program 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 .
*
* This program 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/>.
*/
2020-12-09 19:35:26 +00:00
# include <stdio.h>
2019-10-06 13:09:15 +00:00
# include <stdlib.h> // for abs()
# include "stm32f1xx_hal.h"
# include "defines.h"
# include "setup.h"
# include "config.h"
2020-03-01 09:00:26 +00:00
# include "util.h"
# include "BLDC_controller.h" /* BLDC's header file */
2019-10-06 13:09:15 +00:00
# include "rtwtypes.h"
2021-01-05 11:40:30 +00:00
# include "comms.h"
2019-10-06 13:09:15 +00:00
2019-11-26 22:58:20 +00:00
# if defined(DEBUG_I2C_LCD) || defined(SUPPORT_LCD)
2020-03-01 09:00:26 +00:00
# include "hd44780.h"
2019-11-26 22:58:20 +00:00
# endif
2019-10-06 13:09:15 +00:00
void SystemClock_Config ( void ) ;
2020-03-01 09:00:26 +00:00
//------------------------------------------------------------------------
// Global variables set externally
//------------------------------------------------------------------------
2019-10-06 13:09:15 +00:00
extern TIM_HandleTypeDef htim_left ;
extern TIM_HandleTypeDef htim_right ;
extern ADC_HandleTypeDef hadc1 ;
extern ADC_HandleTypeDef hadc2 ;
extern volatile adc_buf_t adc_buffer ;
2019-11-26 22:58:20 +00:00
# if defined(DEBUG_I2C_LCD) || defined(SUPPORT_LCD)
2020-03-01 09:00:26 +00:00
extern LCD_PCF8574_HandleTypeDef lcd ;
2019-11-26 22:58:20 +00:00
extern uint8_t LCDerrorFlag ;
# endif
2019-10-06 13:09:15 +00:00
extern UART_HandleTypeDef huart2 ;
2019-11-29 16:31:53 +00:00
extern UART_HandleTypeDef huart3 ;
2019-10-06 13:09:15 +00:00
2020-11-22 20:54:59 +00:00
volatile uint8_t uart_buf [ 200 ] ;
2019-11-29 16:31:53 +00:00
2020-03-01 09:00:26 +00:00
// Matlab defines - from auto-code generation
//---------------
extern P rtP_Left ; /* Block parameters (auto storage) */
extern P rtP_Right ; /* Block parameters (auto storage) */
extern ExtY rtY_Left ; /* External outputs */
extern ExtY rtY_Right ; /* External outputs */
//---------------
2020-06-06 23:33:19 +00:00
2020-12-20 09:16:31 +00:00
extern uint8_t inIdx ; // input index used for dual-inputs
2021-01-02 09:49:55 +00:00
extern uint8_t inIdx_prev ;
2020-12-20 09:16:31 +00:00
extern InputStruct input1 [ ] ; // input structure
extern InputStruct input2 [ ] ; // input structure
2019-10-06 13:09:15 +00:00
2020-03-01 09:00:26 +00:00
extern int16_t speedAvg ; // Average measured speed
extern int16_t speedAvgAbs ; // Average measured speed in absolute
2020-12-20 09:16:31 +00:00
extern volatile uint32_t timeoutCntGen ; // Timeout counter for the General timeout (PPM, PWM, Nunchuk)
extern volatile uint8_t timeoutFlgGen ; // Timeout Flag for the General timeout (PPM, PWM, Nunchuk)
extern uint8_t timeoutFlgADC ; // Timeout Flag for for ADC Protection: 0 = OK, 1 = Problem detected (line disconnected or wrong ADC data)
extern uint8_t timeoutFlgSerial ; // Timeout Flag for Rx Serial command: 0 = OK, 1 = Problem detected (line disconnected or wrong Rx data)
2019-10-06 13:09:15 +00:00
2019-12-12 22:44:33 +00:00
extern volatile int pwml ; // global variable for pwm left. -1000 to 1000
extern volatile int pwmr ; // global variable for pwm right. -1000 to 1000
2019-10-06 13:09:15 +00:00
2019-12-12 22:44:33 +00:00
extern uint8_t enable ; // global variable for motor enable
2019-10-06 13:09:15 +00:00
2019-12-12 22:44:33 +00:00
extern int16_t batVoltage ; // global variable for battery voltage
2019-10-06 13:09:15 +00:00
2020-06-06 23:33:19 +00:00
//extern int16_t curL_DC; // global variable for left motor current. to get current in Ampere divide by A2BIT_CONV
//extern int16_t curR_DC; // global variable for right motor current
extern int16_t curL_phaA ;
extern int16_t curL_phaB ;
extern int16_t curR_phaA ;
extern int16_t curR_phaB ;
2019-12-20 21:21:21 +00:00
2020-03-01 09:00:26 +00:00
# if defined(SIDEBOARD_SERIAL_USART2)
extern SerialSideboard Sideboard_L ;
2019-11-29 16:31:53 +00:00
# endif
2020-03-01 09:00:26 +00:00
# if defined(SIDEBOARD_SERIAL_USART3)
extern SerialSideboard Sideboard_R ;
# endif
2020-06-25 18:17:55 +00:00
# if (defined(CONTROL_PPM_LEFT) && defined(DEBUG_SERIAL_USART3)) || (defined(CONTROL_PPM_RIGHT) && defined(DEBUG_SERIAL_USART2))
2019-10-06 13:09:15 +00:00
extern volatile uint16_t ppm_captured_value [ PPM_NUM_CHANNELS + 1 ] ;
# endif
2020-06-25 18:17:55 +00:00
# if (defined(CONTROL_PWM_LEFT) && defined(DEBUG_SERIAL_USART3)) || (defined(CONTROL_PWM_RIGHT) && defined(DEBUG_SERIAL_USART2))
2020-03-24 19:36:19 +00:00
extern volatile uint16_t pwm_captured_ch1_value ;
2020-03-21 18:24:29 +00:00
extern volatile uint16_t pwm_captured_ch2_value ;
# endif
2019-10-06 13:09:15 +00:00
2020-03-01 09:00:26 +00:00
//------------------------------------------------------------------------
// Global variables set here in main.c
//------------------------------------------------------------------------
uint8_t backwardDrive ;
volatile uint32_t main_loop_counter ;
//------------------------------------------------------------------------
// Local variables
//------------------------------------------------------------------------
2019-11-29 16:31:53 +00:00
# if defined(FEEDBACK_SERIAL_USART2) || defined(FEEDBACK_SERIAL_USART3)
typedef struct {
uint16_t start ;
int16_t cmd1 ;
int16_t cmd2 ;
int16_t speedR_meas ;
int16_t speedL_meas ;
int16_t batVoltage ;
int16_t boardTemp ;
2021-02-26 17:48:49 +00:00
int16_t curL_DC ;
int16_t curR_DC ;
2020-11-28 09:38:17 +00:00
uint16_t cmdLed ;
2019-11-29 16:31:53 +00:00
uint16_t checksum ;
} SerialFeedback ;
static SerialFeedback Feedback ;
# endif
2020-03-01 09:00:26 +00:00
# if defined(FEEDBACK_SERIAL_USART2)
static uint8_t sideboard_leds_L ;
# endif
# if defined(FEEDBACK_SERIAL_USART3)
static uint8_t sideboard_leds_R ;
# endif
2019-10-06 13:09:15 +00:00
2020-03-01 09:00:26 +00:00
# ifdef VARIANT_TRANSPOTTER
extern uint8_t nunchuk_connected ;
extern float setDistance ;
static uint8_t checkRemote = 0 ;
static uint16_t distance ;
static float steering ;
static int distanceErr ;
static int lastDistance = 0 ;
static uint16_t transpotter_counter = 0 ;
2019-11-29 16:31:53 +00:00
# endif
2019-10-06 13:09:15 +00:00
2019-12-14 12:51:37 +00:00
static int16_t speed ; // local variable for speed. -1000 to 1000
2020-01-03 23:09:57 +00:00
# ifndef VARIANT_TRANSPOTTER
2019-12-14 12:51:37 +00:00
static int16_t steer ; // local variable for steering. -1000 to 1000
static int16_t steerRateFixdt ; // local fixed-point variable for steering rate limiter
static int16_t speedRateFixdt ; // local fixed-point variable for speed rate limiter
2019-12-31 12:35:01 +00:00
static int32_t steerFixdt ; // local fixed-point variable for steering low-pass filter
static int32_t speedFixdt ; // local fixed-point variable for speed low-pass filter
# endif
2020-02-16 20:58:15 +00:00
2020-03-01 09:00:26 +00:00
static uint32_t inactivity_timeout_counter ;
2020-07-19 09:24:37 +00:00
static MultipleTap MultipleTapBrake ; // define multiple tap functionality for the Brake pedal
2019-10-06 13:09:15 +00:00
int main ( void ) {
HAL_Init ( ) ;
__HAL_RCC_AFIO_CLK_ENABLE ( ) ;
HAL_NVIC_SetPriorityGrouping ( NVIC_PRIORITYGROUP_4 ) ;
/* System interrupt init*/
/* MemoryManagement_IRQn interrupt configuration */
HAL_NVIC_SetPriority ( MemoryManagement_IRQn , 0 , 0 ) ;
/* BusFault_IRQn interrupt configuration */
HAL_NVIC_SetPriority ( BusFault_IRQn , 0 , 0 ) ;
/* UsageFault_IRQn interrupt configuration */
HAL_NVIC_SetPriority ( UsageFault_IRQn , 0 , 0 ) ;
/* SVCall_IRQn interrupt configuration */
HAL_NVIC_SetPriority ( SVCall_IRQn , 0 , 0 ) ;
/* DebugMonitor_IRQn interrupt configuration */
HAL_NVIC_SetPriority ( DebugMonitor_IRQn , 0 , 0 ) ;
/* PendSV_IRQn interrupt configuration */
HAL_NVIC_SetPriority ( PendSV_IRQn , 0 , 0 ) ;
/* SysTick_IRQn interrupt configuration */
HAL_NVIC_SetPriority ( SysTick_IRQn , 0 , 0 ) ;
SystemClock_Config ( ) ;
__HAL_RCC_DMA1_CLK_DISABLE ( ) ;
MX_GPIO_Init ( ) ;
MX_TIM_Init ( ) ;
MX_ADC1_Init ( ) ;
MX_ADC2_Init ( ) ;
2020-03-01 09:00:26 +00:00
BLDC_Init ( ) ; // BLDC Controller Init
2019-10-06 13:09:15 +00:00
2020-11-28 09:38:17 +00:00
HAL_GPIO_WritePin ( OFF_PORT , OFF_PIN , GPIO_PIN_SET ) ; // Activate Latch
2020-03-01 09:00:26 +00:00
Input_Lim_Init ( ) ; // Input Limitations Init
Input_Init ( ) ; // Input Init
2019-10-06 13:09:15 +00:00
HAL_ADC_Start ( & hadc1 ) ;
HAL_ADC_Start ( & hadc2 ) ;
2020-03-01 09:00:26 +00:00
poweronMelody ( ) ;
2020-02-16 20:58:15 +00:00
HAL_GPIO_WritePin ( LED_PORT , LED_PIN , GPIO_PIN_SET ) ;
2019-10-06 13:09:15 +00:00
2020-12-13 20:52:29 +00:00
int16_t cmdL = 0 , cmdR = 0 ;
int16_t cmdL_prev = 0 , cmdR_prev = 0 ;
2019-10-20 11:31:47 +00:00
2020-06-22 18:21:18 +00:00
int32_t board_temp_adcFixdt = adc_buffer . temp < < 16 ; // Fixed-point filter output initialized with current ADC converted to fixed-point
2019-10-20 11:31:47 +00:00
int16_t board_temp_adcFilt = adc_buffer . temp ;
int16_t board_temp_deg_c ;
2019-10-06 13:09:15 +00:00
2021-01-27 21:45:57 +00:00
// Loop until button is released
2021-01-29 18:47:03 +00:00
while ( HAL_GPIO_ReadPin ( BUTTON_PORT , BUTTON_PIN ) ) { HAL_Delay ( 10 ) ; }
2019-12-06 21:08:17 +00:00
2019-10-06 13:09:15 +00:00
while ( 1 ) {
2020-12-13 20:52:29 +00:00
HAL_Delay ( DELAY_IN_MAIN_LOOP ) ; // delay in ms
2019-11-26 22:58:20 +00:00
2020-12-20 09:16:31 +00:00
readCommand ( ) ; // Read Command: input1[inIdx].cmd, input2[inIdx].cmd
2020-03-01 09:00:26 +00:00
calcAvgSpeed ( ) ; // Calculate average measured speed: speedAvg, speedAvgAbs
2019-12-31 12:35:01 +00:00
2020-01-03 23:09:57 +00:00
# ifndef VARIANT_TRANSPOTTER
2019-11-26 22:58:20 +00:00
// ####### MOTOR ENABLING: Only if the initial input is very small (for SAFETY) #######
2020-12-20 09:16:31 +00:00
if ( enable = = 0 & & ( ! rtY_Left . z_errCode & & ! rtY_Right . z_errCode ) & & ( input1 [ inIdx ] . cmd > - 50 & & input1 [ inIdx ] . cmd < 50 ) & & ( input2 [ inIdx ] . cmd > - 50 & & input2 [ inIdx ] . cmd < 50 ) ) {
2020-11-28 09:38:17 +00:00
beepShort ( 6 ) ; // make 2 beeps indicating the motor enable
beepShort ( 4 ) ; HAL_Delay ( 100 ) ;
2020-11-18 18:16:56 +00:00
steerFixdt = speedFixdt = 0 ; // reset filters
2019-11-26 22:58:20 +00:00
enable = 1 ; // enable motors
2020-12-10 18:35:13 +00:00
# if defined(DEBUG_SERIAL_USART2) || defined(DEBUG_SERIAL_USART3)
2020-12-09 19:35:26 +00:00
printf ( " -- Motors enabled -- \r \n " ) ;
2020-12-10 18:35:13 +00:00
# endif
2019-11-26 22:58:20 +00:00
}
2019-12-06 21:08:17 +00:00
2020-12-13 20:52:29 +00:00
// ####### VARIANT_HOVERCAR #######
2020-07-20 18:33:42 +00:00
# if defined(VARIANT_HOVERCAR) || defined(VARIANT_SKATEBOARD) || defined(ELECTRIC_BRAKE_ENABLE)
2020-07-19 09:24:37 +00:00
uint16_t speedBlend ; // Calculate speed Blend, a number between [0, 1] in fixdt(0,16,15)
speedBlend = ( uint16_t ) ( ( ( CLAMP ( speedAvgAbs , 10 , 60 ) - 10 ) < < 15 ) / 50 ) ; // speedBlend [0,1] is within [10 rpm, 60rpm]
2019-11-30 20:42:32 +00:00
# endif
2019-10-06 13:09:15 +00:00
2020-11-12 21:41:29 +00:00
# ifdef STANDSTILL_HOLD_ENABLE
standstillHold ( ) ; // Apply Standstill Hold functionality. Only available and makes sense for VOLTAGE or TORQUE Mode
2019-12-06 21:07:06 +00:00
# endif
2019-10-06 13:09:15 +00:00
2020-12-13 20:52:29 +00:00
# ifdef VARIANT_HOVERCAR
2020-12-20 09:16:31 +00:00
if ( inIdx = = CONTROL_ADC ) { // Only use use implementation below if pedals are in use (ADC input)
2020-07-19 09:24:37 +00:00
if ( speedAvgAbs < 60 ) { // Check if Hovercar is physically close to standstill to enable Double tap detection on Brake pedal for Reverse functionality
2020-12-20 09:16:31 +00:00
multipleTapDet ( input1 [ inIdx ] . cmd , HAL_GetTick ( ) , & MultipleTapBrake ) ; // Brake pedal in this case is "input1" variable
2020-07-19 09:24:37 +00:00
}
2019-12-06 21:08:17 +00:00
2020-12-20 09:16:31 +00:00
if ( input1 [ inIdx ] . cmd > 30 ) { // If Brake pedal (input1) is pressed, bring to 0 also the Throttle pedal (input2) to avoid "Double pedal" driving
input2 [ inIdx ] . cmd = ( int16_t ) ( ( input2 [ inIdx ] . cmd * speedBlend ) > > 15 ) ;
2020-10-20 17:54:38 +00:00
cruiseControl ( ( uint8_t ) rtP_Left . b_cruiseCtrlEna ) ; // Cruise control deactivated by Brake pedal if it was active
2019-12-31 12:35:01 +00:00
}
2020-12-20 09:16:31 +00:00
}
2020-07-19 09:24:37 +00:00
# endif
2019-10-06 13:09:15 +00:00
2020-12-13 20:52:29 +00:00
# ifdef ELECTRIC_BRAKE_ENABLE
2020-07-19 09:24:37 +00:00
electricBrake ( speedBlend , MultipleTapBrake . b_multipleTap ) ; // Apply Electric Brake. Only available and makes sense for TORQUE Mode
# endif
2019-11-29 16:31:53 +00:00
2020-12-13 20:52:29 +00:00
# ifdef VARIANT_HOVERCAR
2020-12-20 09:16:31 +00:00
if ( inIdx = = CONTROL_ADC ) { // Only use use implementation below if pedals are in use (ADC input)
2020-07-19 09:24:37 +00:00
if ( speedAvg > 0 ) { // Make sure the Brake pedal is opposite to the direction of motion AND it goes to 0 as we reach standstill (to avoid Reverse driving by Brake pedal)
2020-12-20 09:16:31 +00:00
input1 [ inIdx ] . cmd = ( int16_t ) ( ( - input1 [ inIdx ] . cmd * speedBlend ) > > 15 ) ;
2019-11-29 16:31:53 +00:00
} else {
2020-12-20 09:16:31 +00:00
input1 [ inIdx ] . cmd = ( int16_t ) ( ( input1 [ inIdx ] . cmd * speedBlend ) > > 15 ) ;
2019-11-29 16:31:53 +00:00
}
2020-12-20 09:16:31 +00:00
}
2019-12-31 12:35:01 +00:00
# endif
2019-12-03 21:31:53 +00:00
2020-07-20 18:33:42 +00:00
# ifdef VARIANT_SKATEBOARD
2020-12-20 09:16:31 +00:00
if ( input2 [ inIdx ] . cmd < 0 ) { // When Throttle is negative, it acts as brake. This condition is to make sure it goes to 0 as we reach standstill (to avoid Reverse driving)
2020-12-13 20:52:29 +00:00
if ( speedAvg > 0 ) { // Make sure the braking is opposite to the direction of motion
2020-12-20 09:16:31 +00:00
input2 [ inIdx ] . cmd = ( int16_t ) ( ( input2 [ inIdx ] . cmd * speedBlend ) > > 15 ) ;
2020-07-20 19:06:39 +00:00
} else {
2020-12-20 09:16:31 +00:00
input2 [ inIdx ] . cmd = ( int16_t ) ( ( - input2 [ inIdx ] . cmd * speedBlend ) > > 15 ) ;
2020-07-20 19:06:39 +00:00
}
2019-12-06 21:08:17 +00:00
}
2020-07-20 18:33:42 +00:00
# endif
2019-12-06 21:08:17 +00:00
2019-11-26 22:58:20 +00:00
// ####### LOW-PASS FILTER #######
2020-12-20 09:16:31 +00:00
rateLimiter16 ( input1 [ inIdx ] . cmd , RATE , & steerRateFixdt ) ;
rateLimiter16 ( input2 [ inIdx ] . cmd , RATE , & speedRateFixdt ) ;
2019-12-31 12:35:01 +00:00
filtLowPass32 ( steerRateFixdt > > 4 , FILTER , & steerFixdt ) ;
filtLowPass32 ( speedRateFixdt > > 4 , FILTER , & speedFixdt ) ;
2020-03-01 09:00:26 +00:00
steer = ( int16_t ) ( steerFixdt > > 16 ) ; // convert fixed-point to integer
2020-07-19 09:24:37 +00:00
speed = ( int16_t ) ( speedFixdt > > 16 ) ; // convert fixed-point to integer
2020-01-03 23:09:57 +00:00
// ####### VARIANT_HOVERCAR #######
2020-12-20 09:16:31 +00:00
# ifdef VARIANT_HOVERCAR
if ( inIdx = = CONTROL_ADC ) { // Only use use implementation below if pedals are in use (ADC input)
2020-07-19 09:24:37 +00:00
if ( ! MultipleTapBrake . b_multipleTap ) { // Check driving direction
speed = steer + speed ; // Forward driving: in this case steer = Brake, speed = Throttle
2019-12-31 12:35:01 +00:00
} else {
2020-07-19 09:24:37 +00:00
speed = steer - speed ; // Reverse driving: in this case steer = Brake, speed = Throttle
2019-12-06 21:08:17 +00:00
}
2020-12-20 09:16:31 +00:00
steer = 0 ; // Do not apply steering to avoid side effects if STEER_COEFFICIENT is NOT 0
2019-12-06 21:08:17 +00:00
}
2019-12-31 12:35:01 +00:00
# endif
2019-10-06 13:09:15 +00:00
2019-11-26 22:58:20 +00:00
// ####### MIXER #######
2020-12-13 20:52:29 +00:00
// cmdR = CLAMP((int)(speed * SPEED_COEFFICIENT - steer * STEER_COEFFICIENT), INPUT_MIN, INPUT_MAX);
// cmdL = CLAMP((int)(speed * SPEED_COEFFICIENT + steer * STEER_COEFFICIENT), INPUT_MIN, INPUT_MAX);
2020-12-10 18:35:13 +00:00
mixerFcn ( speed < < 4 , steer < < 4 , & cmdR , & cmdL ) ; // This function implements the equations above
2019-11-26 22:58:20 +00:00
2020-03-23 20:09:17 +00:00
// ####### SET OUTPUTS (if the target change is less than +/- 100) #######
2020-12-13 20:52:29 +00:00
if ( ( cmdL > cmdL_prev - 100 & & cmdL < cmdL_prev + 100 ) & & ( cmdR > cmdR_prev - 100 & & cmdR < cmdR_prev + 100 ) ) {
2019-11-26 22:58:20 +00:00
# ifdef INVERT_R_DIRECTION
2020-12-10 18:35:13 +00:00
pwmr = cmdR ;
2019-11-26 22:58:20 +00:00
# else
2020-12-10 18:35:13 +00:00
pwmr = - cmdR ;
2019-11-26 22:58:20 +00:00
# endif
# ifdef INVERT_L_DIRECTION
2020-12-10 18:35:13 +00:00
pwml = - cmdL ;
2019-11-26 22:58:20 +00:00
# else
2020-12-10 18:35:13 +00:00
pwml = cmdL ;
2019-11-26 22:58:20 +00:00
# endif
2019-12-06 21:08:17 +00:00
}
# endif
2020-01-03 23:09:57 +00:00
# ifdef VARIANT_TRANSPOTTER
2020-12-20 09:16:31 +00:00
distance = CLAMP ( input1 [ inIdx ] . cmd - 180 , 0 , 4095 ) ;
steering = ( input2 [ inIdx ] . cmd - 2048 ) / 2048.0 ;
2020-03-01 09:00:26 +00:00
distanceErr = distance - ( int ) ( setDistance * 1345 ) ;
if ( nunchuk_connected = = 0 ) {
2020-12-10 18:35:13 +00:00
cmdL = cmdL * 0.8f + ( CLAMP ( distanceErr + ( steering * ( ( float ) MAX ( ABS ( distanceErr ) , 50 ) ) * ROT_P ) , - 850 , 850 ) * - 0.2f ) ;
cmdR = cmdR * 0.8f + ( CLAMP ( distanceErr - ( steering * ( ( float ) MAX ( ABS ( distanceErr ) , 50 ) ) * ROT_P ) , - 850 , 850 ) * - 0.2f ) ;
2020-12-13 20:52:29 +00:00
if ( ( cmdL < cmdL_prev + 50 & & cmdL > cmdL_prev - 50 ) & & ( cmdR < cmdR_prev + 50 & & cmdR > cmdR_prev - 50 ) ) {
2020-03-01 09:00:26 +00:00
if ( distanceErr > 0 ) {
enable = 1 ;
}
if ( distanceErr > - 300 ) {
# ifdef INVERT_R_DIRECTION
2020-12-10 18:35:13 +00:00
pwmr = cmdR ;
2020-03-01 09:00:26 +00:00
# else
2020-12-10 18:35:13 +00:00
pwmr = - cmdR ;
2020-03-01 09:00:26 +00:00
# endif
# ifdef INVERT_L_DIRECTION
2020-12-10 18:35:13 +00:00
pwml = - cmdL ;
2020-03-01 09:00:26 +00:00
# else
2020-12-10 18:35:13 +00:00
pwml = cmdL ;
2020-03-01 09:00:26 +00:00
# endif
if ( checkRemote ) {
if ( ! HAL_GPIO_ReadPin ( LED_PORT , LED_PIN ) ) {
//enable = 1;
} else {
enable = 0 ;
}
}
} else {
enable = 0 ;
}
}
2020-12-20 09:16:31 +00:00
timeoutCntGen = 0 ;
timeoutFlgGen = 0 ;
2020-03-01 09:00:26 +00:00
}
2019-12-06 21:08:17 +00:00
2020-12-20 09:16:31 +00:00
if ( timeoutFlgGen ) {
2019-11-26 22:58:20 +00:00
pwml = 0 ;
pwmr = 0 ;
enable = 0 ;
# ifdef SUPPORT_LCD
2020-03-01 09:00:26 +00:00
LCD_SetLocation ( & lcd , 0 , 0 ) ; LCD_WriteString ( & lcd , " Len: " ) ;
LCD_SetLocation ( & lcd , 8 , 0 ) ; LCD_WriteString ( & lcd , " m( " ) ;
LCD_SetLocation ( & lcd , 14 , 0 ) ; LCD_WriteString ( & lcd , " m) " ) ;
2019-11-26 22:58:20 +00:00
# endif
HAL_Delay ( 1000 ) ;
2020-01-18 00:05:06 +00:00
nunchuk_connected = 0 ;
2019-11-26 22:58:20 +00:00
}
2019-12-06 21:08:17 +00:00
2019-11-26 22:58:20 +00:00
if ( ( distance / 1345.0 ) - setDistance > 0.5 & & ( lastDistance / 1345.0 ) - setDistance > 0.5 ) { // Error, robot too far away!
enable = 0 ;
2020-11-28 09:38:17 +00:00
beepLong ( 5 ) ;
2019-11-26 22:58:20 +00:00
# ifdef SUPPORT_LCD
LCD_ClearDisplay ( & lcd ) ;
HAL_Delay ( 5 ) ;
2020-03-01 09:00:26 +00:00
LCD_SetLocation ( & lcd , 0 , 0 ) ; LCD_WriteString ( & lcd , " Emergency Off! " ) ;
LCD_SetLocation ( & lcd , 0 , 1 ) ; LCD_WriteString ( & lcd , " Keeper too fast. " ) ;
2019-11-26 22:58:20 +00:00
# endif
poweroff ( ) ;
}
2019-12-06 21:08:17 +00:00
2020-01-18 00:15:45 +00:00
# ifdef SUPPORT_NUNCHUK
2020-03-01 09:00:26 +00:00
if ( transpotter_counter % 500 = = 0 ) {
2020-01-18 00:05:06 +00:00
if ( nunchuk_connected = = 0 & & enable = = 0 ) {
if ( Nunchuk_Ping ( ) ) {
2019-11-26 22:58:20 +00:00
HAL_Delay ( 500 ) ;
2020-01-18 00:05:06 +00:00
Nunchuk_Init ( ) ;
2019-11-26 22:58:20 +00:00
# ifdef SUPPORT_LCD
2020-03-01 09:00:26 +00:00
LCD_SetLocation ( & lcd , 0 , 0 ) ; LCD_WriteString ( & lcd , " Nunchuk Control " ) ;
2019-11-26 22:58:20 +00:00
# endif
2020-12-20 09:16:31 +00:00
timeoutCntGen = 0 ;
timeoutFlgGen = 0 ;
2019-11-26 22:58:20 +00:00
HAL_Delay ( 1000 ) ;
2020-01-18 00:05:06 +00:00
nunchuk_connected = 1 ;
2019-11-26 22:58:20 +00:00
}
}
2019-12-14 12:51:37 +00:00
}
2019-12-06 21:08:17 +00:00
# endif
2019-10-06 13:09:15 +00:00
2019-11-26 22:58:20 +00:00
# ifdef SUPPORT_LCD
2020-03-01 09:00:26 +00:00
if ( transpotter_counter % 100 = = 0 ) {
2019-11-26 22:58:20 +00:00
if ( LCDerrorFlag = = 1 & & enable = = 0 ) {
} else {
2020-01-18 00:05:06 +00:00
if ( nunchuk_connected = = 0 ) {
2020-03-01 09:00:26 +00:00
LCD_SetLocation ( & lcd , 4 , 0 ) ; LCD_WriteFloat ( & lcd , distance / 1345.0 , 2 ) ;
LCD_SetLocation ( & lcd , 10 , 0 ) ; LCD_WriteFloat ( & lcd , setDistance , 2 ) ;
2019-11-26 22:58:20 +00:00
}
2020-03-01 09:00:26 +00:00
LCD_SetLocation ( & lcd , 4 , 1 ) ; LCD_WriteFloat ( & lcd , batVoltage , 1 ) ;
// LCD_SetLocation(&lcd, 11, 1); LCD_WriteFloat(&lcd,MAX(ABS(currentR), ABS(currentL)),2);
2019-11-26 22:58:20 +00:00
}
}
2019-10-20 11:31:47 +00:00
# endif
2020-03-01 09:00:26 +00:00
transpotter_counter + + ;
2019-11-26 22:58:20 +00:00
# endif
2019-10-06 13:09:15 +00:00
2020-03-01 09:00:26 +00:00
// ####### SIDEBOARDS HANDLING #######
2020-12-20 09:16:31 +00:00
# if defined(SIDEBOARD_SERIAL_USART2) && defined(FEEDBACK_SERIAL_USART2)
2020-03-01 09:00:26 +00:00
sideboardLeds ( & sideboard_leds_L ) ;
sideboardSensors ( ( uint8_t ) Sideboard_L . sensors ) ;
# endif
2020-12-20 09:16:31 +00:00
# if defined(SIDEBOARD_SERIAL_USART3) && defined(FEEDBACK_SERIAL_USART3)
2020-03-01 09:00:26 +00:00
sideboardLeds ( & sideboard_leds_R ) ;
sideboardSensors ( ( uint8_t ) Sideboard_R . sensors ) ;
# endif
2019-10-06 13:09:15 +00:00
2019-12-06 21:08:17 +00:00
// ####### CALC BOARD TEMPERATURE #######
2019-12-31 12:35:01 +00:00
filtLowPass32 ( adc_buffer . temp , TEMP_FILT_COEF , & board_temp_adcFixdt ) ;
2020-03-01 09:00:26 +00:00
board_temp_adcFilt = ( int16_t ) ( board_temp_adcFixdt > > 16 ) ; // convert fixed-point to integer
2019-12-06 21:08:17 +00:00
board_temp_deg_c = ( TEMP_CAL_HIGH_DEG_C - TEMP_CAL_LOW_DEG_C ) * ( board_temp_adcFilt - TEMP_CAL_LOW_ADC ) / ( TEMP_CAL_HIGH_ADC - TEMP_CAL_LOW_ADC ) + TEMP_CAL_LOW_DEG_C ;
2019-11-29 16:31:53 +00:00
2019-12-06 21:08:17 +00:00
// ####### DEBUG SERIAL OUT #######
# if defined(DEBUG_SERIAL_USART2) || defined(DEBUG_SERIAL_USART3)
2021-01-05 11:40:30 +00:00
if ( main_loop_counter % 25 = = 0 ) { // Send data periodically every 125 ms
2021-01-29 18:47:03 +00:00
# if defined(DEBUG_SERIAL_PROTOCOL)
process_debug ( ) ;
# else
2021-01-05 11:40:30 +00:00
printf ( " in1:%i in2:%i cmdL:%i cmdR:%i BatADC:%i BatV:%i TempADC:%i Temp:%i \r \n " ,
input1 [ inIdx ] . raw , // 1: INPUT1
input2 [ inIdx ] . raw , // 2: INPUT2
cmdL , // 3: output command: [-1000, 1000]
cmdR , // 4: output command: [-1000, 1000]
adc_buffer . batt1 , // 5: for battery voltage calibration
batVoltage * BAT_CALIB_REAL_VOLTAGE / BAT_CALIB_ADC , // 6: for verifying battery voltage calibration
board_temp_adcFilt , // 7: for board temperature calibration
board_temp_deg_c ) ; // 8: for verifying board temperature calibration
# endif
2020-03-01 09:00:26 +00:00
}
# endif
2019-12-06 21:08:17 +00:00
// ####### FEEDBACK SERIAL OUT #######
2020-03-01 09:00:26 +00:00
# if defined(FEEDBACK_SERIAL_USART2) || defined(FEEDBACK_SERIAL_USART3)
if ( main_loop_counter % 2 = = 0 ) { // Send data periodically every 10 ms
Feedback . start = ( uint16_t ) SERIAL_START_FRAME ;
2020-12-20 09:16:31 +00:00
Feedback . cmd1 = ( int16_t ) input1 [ inIdx ] . cmd ;
Feedback . cmd2 = ( int16_t ) input2 [ inIdx ] . cmd ;
2020-02-02 13:42:56 +00:00
Feedback . speedR_meas = ( int16_t ) rtY_Right . n_mot ;
2020-03-01 09:00:26 +00:00
Feedback . speedL_meas = ( int16_t ) rtY_Left . n_mot ;
2019-12-06 21:08:17 +00:00
Feedback . batVoltage = ( int16_t ) ( batVoltage * BAT_CALIB_REAL_VOLTAGE / BAT_CALIB_ADC ) ;
Feedback . boardTemp = ( int16_t ) board_temp_deg_c ;
2020-06-06 23:33:19 +00:00
//Feedback.curL_DC = (int16_t)curL_DC; //divide by A2BIT_CONV to get current in amperes
//Feedback.curR_DC = (int16_t)curR_DC;
Feedback . curL_DC = ( int16_t ) curL_phaA ;
Feedback . curR_DC = ( int16_t ) curL_phaB ;
2019-12-06 21:08:17 +00:00
2020-03-01 09:00:26 +00:00
# if defined(FEEDBACK_SERIAL_USART2)
2020-06-21 21:14:46 +00:00
if ( __HAL_DMA_GET_COUNTER ( huart2 . hdmatx ) = = 0 ) {
2020-12-13 20:52:29 +00:00
Feedback . cmdLed = ( uint16_t ) sideboard_leds_L ;
Feedback . checksum = ( uint16_t ) ( Feedback . start ^ Feedback . cmd1 ^ Feedback . cmd2 ^ Feedback . speedR_meas ^ Feedback . speedL_meas
2021-02-26 17:48:49 +00:00
^ Feedback . batVoltage ^ Feedback . boardTemp ^ Feedback . curL_DC ^ Feedback . curR_DC ^ Feedback . cmdLed ) ;
2020-06-21 21:14:46 +00:00
HAL_UART_Transmit_DMA ( & huart2 , ( uint8_t * ) & Feedback , sizeof ( Feedback ) ) ;
2020-03-01 09:00:26 +00:00
}
# endif
# if defined(FEEDBACK_SERIAL_USART3)
2020-06-21 21:14:46 +00:00
if ( __HAL_DMA_GET_COUNTER ( huart3 . hdmatx ) = = 0 ) {
2020-12-13 20:52:29 +00:00
Feedback . cmdLed = ( uint16_t ) sideboard_leds_R ;
Feedback . checksum = ( uint16_t ) ( Feedback . start ^ Feedback . cmd1 ^ Feedback . cmd2 ^ Feedback . speedR_meas ^ Feedback . speedL_meas
2021-02-26 17:48:49 +00:00
^ Feedback . batVoltage ^ Feedback . boardTemp ^ Feedback . curL_DC ^ Feedback . curR_DC ^ Feedback . cmdLed ) ;
2020-06-21 21:14:46 +00:00
HAL_UART_Transmit_DMA ( & huart3 , ( uint8_t * ) & Feedback , sizeof ( Feedback ) ) ;
2020-03-01 09:00:26 +00:00
}
2020-12-13 20:52:29 +00:00
# endif
2019-11-29 16:31:53 +00:00
}
2019-12-06 21:08:17 +00:00
# endif
2019-10-06 13:09:15 +00:00
2019-12-06 21:08:17 +00:00
// ####### POWEROFF BY POWER-BUTTON #######
2020-03-01 09:00:26 +00:00
poweroffPressCheck ( ) ;
2019-10-06 13:09:15 +00:00
2019-12-06 21:08:17 +00:00
// ####### BEEP AND EMERGENCY POWEROFF #######
2020-03-01 09:00:26 +00:00
if ( ( TEMP_POWEROFF_ENABLE & & board_temp_deg_c > = TEMP_POWEROFF & & speedAvgAbs < 20 ) | | ( batVoltage < BAT_DEAD & & speedAvgAbs < 20 ) ) { // poweroff before mainboard burns OR low bat 3
2019-12-06 21:08:17 +00:00
poweroff ( ) ;
2020-11-28 09:38:17 +00:00
} else if ( rtY_Left . z_errCode | | rtY_Right . z_errCode ) { // 1 beep (low pitch): Motor error, disable motors
enable = 0 ;
beepCount ( 1 , 24 , 1 ) ;
2020-12-20 09:16:31 +00:00
} else if ( timeoutFlgADC ) { // 2 beeps (low pitch): ADC timeout
2020-11-28 09:38:17 +00:00
beepCount ( 2 , 24 , 1 ) ;
2020-12-20 09:16:31 +00:00
} else if ( timeoutFlgSerial ) { // 3 beeps (low pitch): Serial timeout
2020-11-28 09:38:17 +00:00
beepCount ( 3 , 24 , 1 ) ;
2020-12-20 09:16:31 +00:00
} else if ( timeoutFlgGen ) { // 4 beeps (low pitch): General timeout (PPM, PWM, Nunchuk)
2020-11-28 09:38:17 +00:00
beepCount ( 4 , 24 , 1 ) ;
} else if ( TEMP_WARNING_ENABLE & & board_temp_deg_c > = TEMP_WARNING ) { // 5 beeps (low pitch): Mainboard temperature warning
beepCount ( 5 , 24 , 1 ) ;
} else if ( BAT_LVL1_ENABLE & & batVoltage < BAT_LVL1 ) { // 1 beep fast (medium pitch): Low bat 1
beepCount ( 0 , 10 , 6 ) ;
} else if ( BAT_LVL2_ENABLE & & batVoltage < BAT_LVL2 ) { // 1 beep slow (medium pitch): Low bat 2
beepCount ( 0 , 10 , 30 ) ;
} else if ( BEEPS_BACKWARD & & ( ( speed < - 50 & & speedAvg < 0 ) | | MultipleTapBrake . b_multipleTap ) ) { // 1 beep fast (high pitch): Backward spinning motors
beepCount ( 0 , 5 , 1 ) ;
2020-03-01 09:00:26 +00:00
backwardDrive = 1 ;
2019-12-06 21:08:17 +00:00
} else { // do not beep
2020-11-28 09:38:17 +00:00
beepCount ( 0 , 0 , 0 ) ;
2020-03-01 09:00:26 +00:00
backwardDrive = 0 ;
2019-12-06 21:08:17 +00:00
}
2019-10-06 13:09:15 +00:00
2019-12-06 21:08:17 +00:00
// ####### INACTIVITY TIMEOUT #######
2020-12-10 18:35:13 +00:00
if ( abs ( cmdL ) > 50 | | abs ( cmdR ) > 50 ) {
2019-12-06 21:08:17 +00:00
inactivity_timeout_counter = 0 ;
} else {
2020-07-01 17:50:32 +00:00
inactivity_timeout_counter + + ;
2019-12-06 21:08:17 +00:00
}
if ( inactivity_timeout_counter > ( INACTIVITY_TIMEOUT * 60 * 1000 ) / ( DELAY_IN_MAIN_LOOP + 1 ) ) { // rest of main loop needs maybe 1ms
poweroff ( ) ;
2019-10-06 13:09:15 +00:00
}
2020-02-02 13:27:36 +00:00
2020-03-01 09:00:26 +00:00
// HAL_GPIO_TogglePin(LED_PORT, LED_PIN); // This is to measure the main() loop duration with an oscilloscope connected to LED_PIN
2021-01-02 09:49:55 +00:00
// Update states
inIdx_prev = inIdx ;
cmdL_prev = cmdL ;
cmdR_prev = cmdR ;
2020-02-02 13:27:36 +00:00
main_loop_counter + + ;
2019-10-06 13:09:15 +00:00
}
}
2019-12-31 12:35:01 +00:00
2019-12-23 09:11:48 +00:00
// ===========================================================
2019-10-06 13:09:15 +00:00
/** System Clock Configuration
*/
void SystemClock_Config ( void ) {
RCC_OscInitTypeDef RCC_OscInitStruct ;
RCC_ClkInitTypeDef RCC_ClkInitStruct ;
RCC_PeriphCLKInitTypeDef PeriphClkInit ;
/**Initializes the CPU, AHB and APB busses clocks
*/
RCC_OscInitStruct . OscillatorType = RCC_OSCILLATORTYPE_HSI ;
RCC_OscInitStruct . HSIState = RCC_HSI_ON ;
RCC_OscInitStruct . HSICalibrationValue = 16 ;
RCC_OscInitStruct . PLL . PLLState = RCC_PLL_ON ;
RCC_OscInitStruct . PLL . PLLSource = RCC_PLLSOURCE_HSI_DIV2 ;
RCC_OscInitStruct . PLL . PLLMUL = RCC_PLL_MUL16 ;
HAL_RCC_OscConfig ( & RCC_OscInitStruct ) ;
/**Initializes the CPU, AHB and APB busses clocks
*/
RCC_ClkInitStruct . ClockType = RCC_CLOCKTYPE_HCLK | RCC_CLOCKTYPE_SYSCLK | RCC_CLOCKTYPE_PCLK1 | RCC_CLOCKTYPE_PCLK2 ;
RCC_ClkInitStruct . SYSCLKSource = RCC_SYSCLKSOURCE_PLLCLK ;
RCC_ClkInitStruct . AHBCLKDivider = RCC_SYSCLK_DIV1 ;
RCC_ClkInitStruct . APB1CLKDivider = RCC_HCLK_DIV2 ;
RCC_ClkInitStruct . APB2CLKDivider = RCC_HCLK_DIV1 ;
HAL_RCC_ClockConfig ( & RCC_ClkInitStruct , FLASH_LATENCY_2 ) ;
PeriphClkInit . PeriphClockSelection = RCC_PERIPHCLK_ADC ;
// PeriphClkInit.AdcClockSelection = RCC_ADCPCLK2_DIV8; // 8 MHz
PeriphClkInit . AdcClockSelection = RCC_ADCPCLK2_DIV4 ; // 16 MHz
HAL_RCCEx_PeriphCLKConfig ( & PeriphClkInit ) ;
/**Configure the Systick interrupt time
*/
HAL_SYSTICK_Config ( HAL_RCC_GetHCLKFreq ( ) / 1000 ) ;
/**Configure the Systick
*/
HAL_SYSTICK_CLKSourceConfig ( SYSTICK_CLKSOURCE_HCLK ) ;
/* SysTick_IRQn interrupt configuration */
HAL_NVIC_SetPriority ( SysTick_IRQn , 0 , 0 ) ;
}