2019-01-13 18:25:38 +00:00
//https://github.com/rogerclarkmelbourne/Arduino_STM32 in arduino/hardware
//Board: Generic STM32F103C series
//Upload method: serial
//20k RAM 64k Flash
// RX ist A10, TX ist A9 (3v3 level)
//to flash set boot0 (the one further away from reset button) to 1 and press reset, flash, program executes immediately
//set boot0 back to 0 to run program on powerup
2019-06-11 12:07:54 +00:00
//PA2 may be defective on my bluepill
2019-06-13 23:01:18 +00:00
//#define DEBUG
# define PARAMETEROUTPUT
2019-06-01 16:51:16 +00:00
uint8_t error = 0 ;
2019-03-20 22:29:09 +00:00
# define IMU_NO_CHANGE 2 //IMU values did not change for too long
2019-06-01 16:51:16 +00:00
uint8_t imu_no_change_counter = 0 ;
2019-01-13 23:00:31 +00:00
2019-01-13 18:25:38 +00:00
# define PIN_LED PC13
2019-06-05 12:50:42 +00:00
# define PIN_VBAT PA0 //battery voltage after voltage divider
2019-06-11 12:07:54 +00:00
//#define VBAT_DIV_FACTOR 0.010700 //how much voltage (V) equals one adc unit. measured at 40V and averaged
# define VBAT_DIV_FACTOR 0.01399535423925667828 //how much voltage (V) equals one adc unit. 3444=48.2V
2019-06-05 12:50:42 +00:00
# define PIN_CURRENT PA1 //output of hall sensor for current measurement
2019-06-11 12:07:54 +00:00
# define CURRENT_OFFSET 2048 //adc reading at 0A, with CJMCU-758 typically at Vcc/2. measured with actual voltage supply in hoverbrett
# define CURRENT_FACTOR 0.38461538461538461538 //how much current (A) equals one adc unit. 2045-2032=13 at 5A
float vbat = 0 ; //battery voltage
float ibat = 0 ; //battery current
long last_adcupdated = 0 ;
# define ADC_UPDATEPERIOD 10 //in ms
2019-06-05 12:50:42 +00:00
2019-06-11 12:07:54 +00:00
# define SENDPERIOD 20 //ms. delay for sending speed and steer data to motor controller via serial
2019-06-05 12:50:42 +00:00
2019-06-11 12:07:54 +00:00
//Status information sending
2019-06-11 18:54:30 +00:00
# define PARAMETERSENDPERIOD 50 //delay for sending stat data via nrf24
2019-06-11 12:07:54 +00:00
long last_parametersend = 0 ;
2019-01-13 18:25:38 +00:00
2019-03-20 22:29:09 +00:00
# define CONTROLUPDATEPERIOD 10
2019-06-01 16:51:16 +00:00
long last_controlupdate = 0 ;
2019-03-20 22:29:09 +00:00
2019-06-11 12:07:54 +00:00
# define PIN_GAMETRAK_LENGTH PA1 //yellow (connector) / orange (gametrak module wires): length
# define PIN_GAMETRAK_VERTICAL PA3 //orange / red: vertical
# define PIN_GAMETRAK_HORIZONTAL PA4 //blue / yellow: horizontal
# define GT_LENGTH_OFFSET 4090 //adc offset value (rolled up value)
# define GT_LENGTH_MIN 220 //length in mm at which adc values start to change
# define GT_LENGTH_SCALE -0.73 //(adcvalue-offset)*scale = length[mm] (+length_min)
//2720 at 1000mm+220mm -> 1370 for 1000mm ->
# define GT_LENGTH_MAXLENGTH 2500 //maximum length in [mm]. maximum string length is around 2m80
uint16_t gt_length = 0 ; //0=rolled up, 1unit = 1mm
# define GT_VERTICAL_CENTER 2048 //adc value for center position
# define GT_VERTICAL_RANGE 2047 //adc value difference from center to maximum (30 deg)
int8_t gt_vertical = 0 ; //0=center. joystick can rotate +-30 degrees. -127 = -30 deg
//left = -30 deg, right= 30deg
# define GT_HORIZONTAL_CENTER 2048 //adc value for center position
# define GT_HORIZONTAL_RANGE 2047 //adc value difference from center to maximum (30 deg)
int8_t gt_horizontal = 0 ; //0=center
2019-06-11 22:30:53 +00:00
uint16_t gt_length_set = 1000 ; //set length to keep [mm]
# define GT_LENGTH_MINDIFF 10 //[mm] threshold, do not move within gt_length_set-GT_LENGTH_MINDIFF and gt_length_set+GT_LENGTH_MINDIFF
float gt_speed_p = 0.7 ; //value to multipy difference [mm] with -> out_speed
2019-06-20 14:57:24 +00:00
float gt_speedbackward_p = 0.7 ;
2019-06-14 17:55:49 +00:00
float gt_steer_p = 2.0 ;
2019-06-20 14:57:24 +00:00
# define GT_SPEED_LIMIT 300 //maximum out_speed value +
# define GT_SPEEDBACKWARD_LIMIT 100 //maximum out_speed value (for backward driving) -
2019-06-14 17:55:49 +00:00
# define GT_STEER_LIMIT 300 //maximum out_steer value +-
2019-06-20 14:57:24 +00:00
# define GT_LENGTH_MAXIMUMDIFFBACKWARD -200 //[mm]. if gt_length_set=1000 and GT_LENGTH_MAXIMUMDIFFBACKWARD=-200 then only drives backward if lenght is greater 800
2019-01-13 18:25:38 +00:00
2019-03-17 17:57:32 +00:00
# include <IMUGY85.h>
//https://github.com/fookingthg/GY85
//ITG3200 and ADXL345 from https://github.com/jrowberg/i2cdevlib/tree/master/Arduino
//https://github.com/mechasolution/Mecha_QMC5883L //because QMC5883 on GY85 instead of HMC5883, source: https://circuitdigest.com/microcontroller-projects/digital-compass-with-arduino-and-hmc5883l-magnetometer
2019-06-01 16:51:16 +00:00
//in qmc5883L library read values changed from uint16_t to int16_t
2019-03-17 17:57:32 +00:00
2019-06-11 12:07:54 +00:00
# define IMUUPDATEPERIOD 10 //ms
long last_imuupdated = 0 ;
# define MAX_YAWCHANGE 90 //in degrees, if exceeded in one update intervall error will be triggered
2019-03-17 17:57:32 +00:00
IMUGY85 imu ;
2019-06-01 16:51:16 +00:00
double ax , ay , az , gx , gy , gz , roll , pitch , yaw , mx , my , mz , ma ;
double old_ax , old_ay , old_az , old_gx , old_gy , old_gz , old_roll , old_pitch , old_yaw , old_mx , old_my , old_mz , old_ma ;
2019-03-20 22:29:09 +00:00
2019-06-01 16:51:16 +00:00
double setYaw = 0 ;
float magalign_multiplier = 0 ; //how much the magnetometer should influence steering, 0=none, 1=stay aligned
2019-01-13 18:25:38 +00:00
2019-06-11 12:07:54 +00:00
// Lenovo Trackpoint pinout
2019-03-16 19:02:27 +00:00
//from left to right. pins at bottom. chips on top
//1 GND (black)
//2 Data
//3 Clock
//4 Reset
//5 +5V (red)
//6 Right BTN
//7 Middle BTN
//8 Left BTN
//pinout: https://martin-prochnow.de/projects/thinkpad_keyboard
//see also https://github.com/feklee/usb-trackpoint/blob/master/code/code.ino
2019-01-13 18:25:38 +00:00
2019-03-16 19:02:27 +00:00
# include <SPI.h>
# include "nRF24L01.h"
# include "RF24.h"
2019-06-01 16:51:16 +00:00
RF24 radio ( PB0 , PB1 ) ; //ce, cs
2019-03-16 19:02:27 +00:00
//SCK D13 (Pro mini), A5 (bluepill)
//Miso D12 (Pro mini), A6 (bluepill)
//Mosi D11 (Pro mini), A7 (bluepill)
// Radio pipe addresses for the 2 nodes to communicate.
const uint64_t pipes [ 2 ] = { 0xF0F0F0F0E1LL , 0xF0F0F0F0D2LL } ;
2019-03-20 22:29:09 +00:00
# define NRF24CHANNEL 75
2019-01-13 18:25:38 +00:00
2019-03-16 19:02:27 +00:00
struct nrfdata {
uint8_t steer ;
uint8_t speed ;
uint8_t commands ; //bit 0 set = motor enable
uint8_t checksum ;
} ;
2019-01-13 23:00:31 +00:00
2019-03-16 19:02:27 +00:00
nrfdata lastnrfdata ;
2019-06-01 16:51:16 +00:00
long last_nrfreceive = 0 ; //last time values were received and checksum ok
long nrf_delay = 0 ;
# define MAX_NRFDELAY 100 //ms. maximum time delay at which vehicle will disarm
2019-01-13 23:00:31 +00:00
2019-06-11 12:07:54 +00:00
boolean radiosendOk = false ;
2019-03-16 19:02:27 +00:00
//command variables
2019-06-01 16:51:16 +00:00
boolean motorenabled = false ; //set by nrfdata.commands
2019-01-13 23:00:31 +00:00
2019-06-01 16:51:16 +00:00
long last_send = 0 ;
2019-03-16 19:02:27 +00:00
2019-06-13 23:01:18 +00:00
int16_t out_speedl = 0 ; //between -1000 and 1000
int16_t out_speedr = 0 ;
int16_t lastsend_out_speedl = 0 ; //last value transmitted to motor controller
int16_t lastsend_out_speedr = 0 ;
int16_t set_speed = 0 ;
int16_t set_steer = 0 ;
2019-06-01 16:51:16 +00:00
uint8_t out_checksum = 0 ; //0= disable motors, 255=reserved, 1<=checksum<255
2019-03-16 19:02:27 +00:00
# define NRFDATA_CENTER 127
2019-01-13 18:25:38 +00:00
2019-06-13 16:59:03 +00:00
//boolean armed = false;
2019-06-01 16:51:16 +00:00
boolean lastpacketOK = false ;
2019-01-13 18:25:38 +00:00
2019-06-11 22:30:53 +00:00
//Gametrak
2019-06-13 16:59:03 +00:00
//boolean armed_gt = false;
uint8_t controlmode = 0 ;
# define MODE_DISARMED 0
# define MODE_RADIONRF 1
# define MODE_GAMETRAK 2
2019-01-13 18:25:38 +00:00
void setup ( ) {
2019-06-11 18:54:30 +00:00
Serial . begin ( 115200 ) ; //Debug and Program. A9=TX1, A10=RX1 (3v3 level)
2019-01-13 18:25:38 +00:00
Serial2 . begin ( 19200 ) ; //control. B10=TX3, B11=RX3 (Serial2 is Usart 3)
2019-06-11 12:07:54 +00:00
//Serial1 max be dead on my board?
2019-01-13 18:25:38 +00:00
2019-06-01 16:51:16 +00:00
2019-01-13 18:25:38 +00:00
pinMode ( PIN_LED , OUTPUT ) ;
2019-06-01 16:51:16 +00:00
digitalWrite ( PIN_LED , HIGH ) ;
2019-01-13 18:25:38 +00:00
2019-06-05 12:50:42 +00:00
pinMode ( PIN_VBAT , INPUT_ANALOG ) ;
pinMode ( PIN_CURRENT , INPUT_ANALOG ) ;
2019-06-11 12:07:54 +00:00
pinMode ( PIN_GAMETRAK_LENGTH , INPUT_ANALOG ) ;
pinMode ( PIN_GAMETRAK_VERTICAL , INPUT_ANALOG ) ;
pinMode ( PIN_GAMETRAK_HORIZONTAL , INPUT_ANALOG ) ;
2019-01-13 18:25:38 +00:00
2019-06-11 12:07:54 +00:00
# ifdef DEBUG
2019-03-16 19:02:27 +00:00
Serial . println ( " Initializing nrf24 " ) ;
2019-06-11 12:07:54 +00:00
# endif
2019-06-01 16:51:16 +00:00
2019-03-16 19:02:27 +00:00
radio . begin ( ) ;
2019-03-17 19:09:57 +00:00
radio . setDataRate ( RF24_250KBPS ) ; //set to slow data rate. default was 1MBPS
2019-06-11 12:07:54 +00:00
//radio.setDataRate( RF24_1MBPS );
2019-03-20 22:29:09 +00:00
radio . setChannel ( NRF24CHANNEL ) ; //0 to 124 (inclusive)
2019-06-01 16:51:16 +00:00
radio . setRetries ( 15 , 15 ) ; // optionally, increase the delay between retries & # of retries
2019-03-16 19:02:27 +00:00
radio . setPayloadSize ( 8 ) ; // optionally, reduce the payload size. seems to improve reliability
2019-06-01 16:51:16 +00:00
2019-03-16 19:02:27 +00:00
radio . openWritingPipe ( pipes [ 0 ] ) ; //write on pipe 0
2019-06-01 16:51:16 +00:00
radio . openReadingPipe ( 1 , pipes [ 1 ] ) ; //read on pipe 1
2019-03-16 19:02:27 +00:00
radio . startListening ( ) ;
2019-06-11 12:07:54 +00:00
# ifdef DEBUG
2019-03-17 17:57:32 +00:00
Serial . println ( " Initializing IMU " ) ;
2019-06-11 12:07:54 +00:00
# endif
2019-03-17 17:57:32 +00:00
imu . init ( ) ;
2019-06-11 12:07:54 +00:00
# ifdef DEBUG
Serial . println ( " Initialized " ) ;
# endif
2019-01-13 18:25:38 +00:00
}
void loop ( ) {
2019-06-01 16:51:16 +00:00
if ( millis ( ) - last_imuupdated > IMUUPDATEPERIOD ) {
2019-03-17 17:57:32 +00:00
updateIMU ( ) ;
2019-06-01 16:51:16 +00:00
last_imuupdated = millis ( ) ;
2019-03-17 17:57:32 +00:00
}
2019-06-05 12:50:42 +00:00
2019-06-11 12:07:54 +00:00
if ( millis ( ) - last_adcupdated > ADC_UPDATEPERIOD ) { //update analog readings
2019-06-05 12:50:42 +00:00
vbat = analogRead ( PIN_VBAT ) * VBAT_DIV_FACTOR ;
ibat = ( analogRead ( PIN_CURRENT ) - CURRENT_OFFSET ) * CURRENT_FACTOR ;
2019-06-11 12:07:54 +00:00
gt_length = constrain ( ( analogRead ( PIN_GAMETRAK_LENGTH ) - GT_LENGTH_OFFSET ) * GT_LENGTH_SCALE + GT_LENGTH_MIN , 0 , GT_LENGTH_MAXLENGTH ) ;
if ( gt_length < = GT_LENGTH_MIN ) {
gt_length = 0 ; //if below minimum measurable length set to 0mm
}
gt_vertical = constrain ( map ( analogRead ( PIN_GAMETRAK_VERTICAL ) - GT_VERTICAL_CENTER , + GT_VERTICAL_RANGE , - GT_VERTICAL_RANGE , - 127 , 127 ) , - 127 , 127 ) ; //left negative
gt_horizontal = constrain ( map ( analogRead ( PIN_GAMETRAK_HORIZONTAL ) - GT_HORIZONTAL_CENTER , + GT_HORIZONTAL_RANGE , - GT_HORIZONTAL_RANGE , - 127 , 127 ) , - 127 , 127 ) ; //down negative
last_adcupdated = millis ( ) ;
2019-06-05 12:50:42 +00:00
/*
2019-06-11 12:07:54 +00:00
Serial . print ( " gt_length= " ) ;
Serial . print ( gt_length ) ;
Serial . print ( " , gt_vertical= " ) ;
Serial . print ( gt_vertical ) ;
Serial . print ( " , gt_horizontal= " ) ;
Serial . println ( gt_horizontal ) ; */
/*
Serial . print ( " PIN_GAMETRAK_LENGTH= " ) ;
Serial . print ( analogRead ( PIN_GAMETRAK_LENGTH ) ) ;
Serial . print ( " , PIN_GAMETRAK_VERTICAL= " ) ;
Serial . print ( analogRead ( PIN_GAMETRAK_VERTICAL ) ) ;
Serial . print ( " , PIN_GAMETRAK_HORIZONTAL= " ) ;
Serial . println ( analogRead ( PIN_GAMETRAK_HORIZONTAL ) ) ;
*/
2019-06-05 12:50:42 +00:00
}
2019-06-01 16:51:16 +00:00
2019-03-16 19:02:27 +00:00
//NRF24
2019-06-01 16:51:16 +00:00
nrf_delay = millis ( ) - last_nrfreceive ; //update nrf delay
2019-03-16 19:02:27 +00:00
if ( radio . available ( ) )
{
//Serial.println("radio available ...");
bool done = false ;
while ( ! done )
{
2019-06-01 16:51:16 +00:00
lastpacketOK = false ; //initialize with false, if checksum ok gets set to true
2019-03-16 19:02:27 +00:00
digitalWrite ( PIN_LED , ! digitalRead ( PIN_LED ) ) ;
done = radio . read ( & lastnrfdata , sizeof ( nrfdata ) ) ;
2019-06-01 16:51:16 +00:00
if ( lastnrfdata . speed = = NRFDATA_CENTER & & lastnrfdata . steer = = NRFDATA_CENTER ) { //arm only when centered
2019-06-13 16:59:03 +00:00
controlmode = MODE_RADIONRF ; //set radionrf mode at first received packet
2019-03-20 22:29:09 +00:00
}
2019-03-16 19:02:27 +00:00
2019-06-01 16:51:16 +00:00
uint8_t calcchecksum = ( uint8_t ) ( ( lastnrfdata . steer + 3 ) * ( lastnrfdata . speed + 13 ) ) ;
if ( lastnrfdata . checksum = = calcchecksum ) { //checksum ok?
lastpacketOK = true ;
last_nrfreceive = millis ( ) ;
//parse commands
2019-06-13 16:59:03 +00:00
motorenabled = ( lastnrfdata . commands & ( 1 < < 0 ) ) > > 0 ; //check bit 0
2019-03-16 19:02:27 +00:00
}
2019-06-01 16:51:16 +00:00
2019-06-13 16:59:03 +00:00
/*
2019-06-01 16:51:16 +00:00
# ifdef DEBUG
2019-03-16 19:02:27 +00:00
Serial . print ( " Received: " ) ;
Serial . print ( " st= " ) ;
Serial . print ( lastnrfdata . steer ) ;
Serial . print ( " , sp= " ) ;
Serial . print ( lastnrfdata . speed ) ;
Serial . print ( " , c= " ) ;
Serial . print ( lastnrfdata . commands ) ;
Serial . print ( " , chks= " ) ;
Serial . print ( lastnrfdata . checksum ) ;
2019-06-01 16:51:16 +00:00
2019-03-16 19:02:27 +00:00
Serial . print ( " nrfdelay= " ) ;
Serial . print ( nrf_delay ) ;
2019-06-01 16:51:16 +00:00
Serial . println ( ) ;
# endif
2019-06-13 16:59:03 +00:00
*/
2019-03-16 19:02:27 +00:00
//y positive = forward
//x positive = right
2019-03-17 17:57:32 +00:00
2019-03-17 19:09:57 +00:00
/*
2019-06-01 16:51:16 +00:00
setYaw + = ( ( int16_t ) ( lastnrfdata . steer ) - NRFDATA_CENTER ) * 10 / 127 ;
while ( setYaw < 0 ) {
2019-03-17 17:57:32 +00:00
setYaw + = 360 ;
2019-06-01 16:51:16 +00:00
}
while ( setYaw > = 360 ) {
2019-03-17 17:57:32 +00:00
setYaw - = 360 ;
2019-06-01 16:51:16 +00:00
} */
2019-03-17 17:57:32 +00:00
/*
2019-06-01 16:51:16 +00:00
Serial . print ( " setYaw= " ) ;
Serial . print ( setYaw ) ;
Serial . print ( " Yaw= " ) ;
Serial . println ( yaw ) ; */
2019-03-16 19:02:27 +00:00
}
}
2019-06-11 12:07:54 +00:00
2019-06-13 16:59:03 +00:00
if ( controlmode = = MODE_RADIONRF & & nrf_delay > = MAX_NRFDELAY ) { //too long since last sucessful nrf receive
controlmode = MODE_DISARMED ;
2019-06-01 16:51:16 +00:00
# ifdef DEBUG
Serial . println ( " nrf_delay>=MAX_NRFDELAY, disarmed! " ) ;
# endif
2019-03-16 19:02:27 +00:00
}
2019-06-13 16:59:03 +00:00
if ( controlmode = = MODE_RADIONRF ) { //is armed in nrf mode
2019-06-11 22:30:53 +00:00
2019-06-01 16:51:16 +00:00
if ( lastpacketOK ) { //if lastnrfdata is valid
if ( millis ( ) - last_controlupdate > CONTROLUPDATEPERIOD ) {
last_controlupdate = millis ( ) ;
//out_speed=(int16_t)( (lastnrfdata.y-TRACKPOINT_CENTER)*1000/TRACKPOINT_MAX );
//out_steer=(int16_t)( -(lastnrfdata.x-TRACKPOINT_CENTER)*1000/TRACKPOINT_MAX );
2019-06-13 23:01:18 +00:00
set_speed = ( int16_t ) ( ( ( int16_t ) ( lastnrfdata . speed ) - NRFDATA_CENTER ) * 1000 / 127 ) ; //-1000 to 1000
set_steer = ( int16_t ) ( ( ( int16_t ) ( lastnrfdata . steer ) - NRFDATA_CENTER ) * 1000 / 127 ) ;
2019-06-01 16:51:16 +00:00
//align to compass
double yawdiff = ( setYaw - 180 ) - ( yaw - 180 ) ; //following angle difference works only for angles [-180,180]. yaw here is [0,360]
yawdiff + = ( yawdiff > 180 ) ? - 360 : ( yawdiff < - 180 ) ? 360 : 0 ;
//yawdiff/=2;
int yawdiffsign = 1 ;
if ( yawdiff < 0 ) {
yawdiffsign = - 1 ;
}
yawdiff = yawdiff * yawdiff ; //square
yawdiff = constrain ( yawdiff * 1 , 0 , 800 ) ;
yawdiff * = yawdiffsign ; //redo sign
2019-06-13 23:01:18 +00:00
int16_t set_steer_mag = ( int16_t ) ( yawdiff ) ;
2019-06-01 16:51:16 +00:00
float new_magalign_multiplier = map ( abs ( ( int16_t ) ( lastnrfdata . steer ) - NRFDATA_CENTER ) , 2 , 10 , 1.0 , 0.0 ) ; //0=normal steering, 1=only mag steering
new_magalign_multiplier = 0 ; //Force mag off
new_magalign_multiplier = constrain ( new_magalign_multiplier , 0.0 , 1.0 ) ;
magalign_multiplier = min ( new_magalign_multiplier , min ( 1.0 , magalign_multiplier + 0.01 ) ) ; //go down fast, slowly increase
magalign_multiplier = constrain ( magalign_multiplier , 0.0 , 1.0 ) ; //safety constrain again
2019-06-13 23:01:18 +00:00
set_steer = set_steer * ( 1 - magalign_multiplier ) + set_steer_mag * magalign_multiplier ;
2019-06-01 16:51:16 +00:00
setYaw = setYaw * magalign_multiplier + yaw * ( 1 - magalign_multiplier ) ; //if magalign_multiplier 0, setYaw equals current yaw
2019-06-13 23:01:18 +00:00
//calculate speed l and r from speed and steer
# define SPEED_COEFFICIENT_NRF 1 // higher value == stronger
# define STEER_COEFFICIENT_NRF 0.5 // higher value == stronger
out_speedl = constrain ( set_speed * SPEED_COEFFICIENT_NRF + set_steer * STEER_COEFFICIENT_NRF , - 1000 , 1000 ) ;
out_speedr = constrain ( set_speed * SPEED_COEFFICIENT_NRF - set_steer * STEER_COEFFICIENT_NRF , - 1000 , 1000 ) ;
2019-06-01 16:51:16 +00:00
/*
Serial . print ( " Out steer= " ) ;
Serial . println ( out_steer ) ; */
2019-03-20 22:29:09 +00:00
}
2019-06-01 16:51:16 +00:00
} //if pastpacket not ok, keep last out_steer and speed values until disarmed
2019-06-13 16:59:03 +00:00
if ( ! motorenabled ) { //radio connected but not actively driving, keep values reset
setYaw = yaw ;
magalign_multiplier = 0 ;
}
2019-06-01 16:51:16 +00:00
# ifdef DEBUG
2019-06-11 22:30:53 +00:00
if ( ! lastpacketOK ) {
2019-06-01 16:51:16 +00:00
Serial . println ( " Armed but packet not ok " ) ;
2019-06-11 12:07:54 +00:00
}
2019-06-01 16:51:16 +00:00
# endif
2019-06-13 16:59:03 +00:00
2019-06-11 22:30:53 +00:00
}
2019-01-13 23:00:31 +00:00
2019-06-13 16:59:03 +00:00
if ( controlmode = = MODE_DISARMED ) { //check if gametrak can be armed
2019-06-11 22:30:53 +00:00
if ( gt_length > gt_length_set & & gt_length < gt_length_set + 10 ) { //is in trackable length
2019-06-13 16:59:03 +00:00
controlmode = MODE_GAMETRAK ; //enable gametrak mode
2019-06-11 22:30:53 +00:00
}
2019-06-13 16:59:03 +00:00
} else if ( controlmode = = MODE_GAMETRAK ) { //gametrak control active and not remote active
2019-06-11 22:30:53 +00:00
//Gametrak Control Code
motorenabled = true ;
if ( gt_length < = GT_LENGTH_MIN ) { //let go
2019-06-13 16:59:03 +00:00
controlmode = MODE_DISARMED ;
2019-06-11 22:30:53 +00:00
motorenabled = false ;
}
int16_t _gt_length_diff = gt_length - gt_length_set ; //positive if needs to drive forward
2019-06-20 14:57:24 +00:00
if ( _gt_length_diff > - GT_LENGTH_MINDIFF & _gt_length_diff < GT_LENGTH_MINDIFF ) { //minimum difference to drive
2019-06-11 22:30:53 +00:00
_gt_length_diff = 0 ; //threshold
}
2019-06-20 14:57:24 +00:00
2019-06-13 23:01:18 +00:00
set_steer = constrain ( ( int16_t ) ( - gt_horizontal * gt_steer_p ) , - GT_STEER_LIMIT , GT_STEER_LIMIT ) ; //steer positive is left //gt_horizontal left is negative
2019-06-20 14:57:24 +00:00
if ( _gt_length_diff > 0 ) { //needs to drive forward
set_speed = constrain ( ( int16_t ) ( _gt_length_diff * gt_speed_p ) , 0 , GT_SPEED_LIMIT ) ;
} else { //drive backward
if ( _gt_length_diff > GT_LENGTH_MAXIMUMDIFFBACKWARD ) { //only drive if not pulled back too much
set_speed = constrain ( ( int16_t ) ( _gt_length_diff * gt_speedbackward_p ) , - GT_SPEEDBACKWARD_LIMIT , 0 ) ;
} else {
set_speed = 0 ; //stop
set_steer = 0 ;
}
}
2019-06-13 23:01:18 +00:00
//calculate speed l and r from speed and steer
# define SPEED_COEFFICIENT_GT 1 // higher value == stronger
# define STEER_COEFFICIENT_GT 0.5 // higher value == stronger
out_speedl = constrain ( set_speed * SPEED_COEFFICIENT_GT + set_steer * STEER_COEFFICIENT_GT , - 1000 , 1000 ) ;
out_speedr = constrain ( set_speed * SPEED_COEFFICIENT_GT - set_steer * STEER_COEFFICIENT_GT , - 1000 , 1000 ) ;
2019-06-11 22:30:53 +00:00
}
2019-06-13 16:59:03 +00:00
if ( error > 0 ) { //disarm if error occured
controlmode = MODE_DISARMED ; //force disarmed
}
if ( controlmode = = MODE_DISARMED ) { //all disarmed
2019-06-13 23:01:18 +00:00
out_speedl = 0 ;
out_speedr = 0 ;
2019-06-11 12:07:54 +00:00
}
2019-03-16 19:02:27 +00:00
2019-01-13 18:25:38 +00:00
2019-06-11 12:07:54 +00:00
if ( millis ( ) - last_send > SENDPERIOD ) {
//calculate checksum
2019-06-13 23:01:18 +00:00
out_checksum = ( ( uint8_t ) ( ( uint8_t ) out_speedl ) * ( ( uint8_t ) out_speedr ) ) ; //simple checksum
2019-06-11 12:07:54 +00:00
if ( out_checksum = = 0 | | out_checksum = = 255 ) {
out_checksum = 1 ; //cannot be 0 or 255 (special purpose)
}
if ( ! motorenabled ) { //disable motors?
out_checksum = 0 ; //checksum=0 disables motors
}
2019-06-13 23:01:18 +00:00
Serial2 . write ( ( uint8_t * ) & out_speedl , sizeof ( out_speedl ) ) ;
Serial2 . write ( ( uint8_t * ) & out_speedr , sizeof ( out_speedr ) ) ;
2019-06-11 12:07:54 +00:00
Serial2 . write ( ( uint8_t * ) & out_checksum , sizeof ( out_checksum ) ) ;
2019-06-13 23:01:18 +00:00
lastsend_out_speedl = out_speedl ; //remember last transmittet values (for stat sending)
lastsend_out_speedr = out_speedr ;
2019-06-11 12:07:54 +00:00
last_send = millis ( ) ;
# ifdef DEBUG
2019-06-13 23:01:18 +00:00
Serial . print ( " out_speedl= " ) ;
Serial . print ( out_speedl ) ;
Serial . print ( " out_speedr= " ) ;
Serial . print ( out_speedr ) ;
2019-06-11 12:07:54 +00:00
Serial . print ( " checksum= " ) ;
Serial . print ( out_checksum ) ;
2019-06-13 16:59:03 +00:00
Serial . print ( " controlmode= " ) ;
Serial . print ( controlmode ) ;
2019-06-11 12:07:54 +00:00
Serial . println ( ) ;
2019-06-13 16:59:03 +00:00
2019-06-11 12:07:54 +00:00
# endif
2019-06-01 16:51:16 +00:00
}
2019-06-11 12:07:54 +00:00
//
# ifdef PARAMETEROUTPUT
if ( millis ( ) - last_parametersend > PARAMETERSENDPERIOD ) {
//Serial.write((uint8_t *) &counter, sizeof(counter));//uint8_t, 1 byte
//Serial.write((uint8_t *) &value1, sizeof(value1)); //uint16_t, 2 bytes
//Serial.write((uint8_t *) &value2, sizeof(value2)); //int16_t, 2 bytes
//Serial.write((uint8_t *) &floatvalue, sizeof(floatvalue)); //float, 4 bytes
2019-06-01 16:51:16 +00:00
2019-06-13 16:59:03 +00:00
uint8_t booleanvalues = 0 ; //reset
booleanvalues | = motorenabled < < 0 ; //bit 0
booleanvalues | = ( controlmode & 0 b00000011 ) < < 1 ; //bit 1 and 2 (2bit number for controlmodes (3)
2019-06-11 12:36:02 +00:00
2019-06-13 23:01:18 +00:00
Serial . write ( ( uint8_t * ) & out_speedl , sizeof ( out_speedl ) ) ; //int16_t, 2 bytes
Serial . write ( ( uint8_t * ) & out_speedr , sizeof ( out_speedr ) ) ; //int16_t, 2 bytes
2019-06-13 16:59:03 +00:00
Serial . write ( ( uint8_t * ) & booleanvalues , sizeof ( booleanvalues ) ) ; //uint8_t, 1 byte //booleanvalues
2019-06-11 12:07:54 +00:00
Serial . write ( ( uint8_t * ) & vbat , sizeof ( vbat ) ) ; //float, 4 bytes
2019-06-11 12:36:02 +00:00
//Serial.write((uint8_t *) &ibat, sizeof(ibat)); //float, 4 bytes
2019-06-11 12:07:54 +00:00
float yaw_float = yaw ;
Serial . write ( ( uint8_t * ) & yaw_float , sizeof ( yaw_float ) ) ; //float, 4 bytes
2019-06-11 12:36:02 +00:00
Serial . write ( ( uint8_t * ) & gt_length , sizeof ( gt_length ) ) ; //uint16_t, 2 bytes
Serial . write ( ( uint8_t * ) & gt_horizontal , sizeof ( gt_horizontal ) ) ; //int8_t, 1 byte
Serial . write ( ( uint8_t * ) & gt_vertical , sizeof ( gt_vertical ) ) ; //int8_t, 1 byte
2019-06-11 12:07:54 +00:00
last_parametersend = millis ( ) ;
}
# endif
2019-06-01 16:51:16 +00:00
}
2019-06-11 12:07:54 +00:00
/*
void sendRF ( nrfstatdata senddata ) {
# ifdef DEBUG
Serial . println ( " Transmitting... " ) ;
# endif
radio . stopListening ( ) ; //stop listening to be able to transmit
radiosendOk = radio . write ( & senddata , sizeof ( nrfstatdata ) ) ;
if ( ! radiosendOk ) {
# ifdef DEBUG
Serial . println ( " send failed " ) ;
# endif
}
radio . startListening ( ) ; //start listening again
2019-01-13 18:25:38 +00:00
}
2019-06-11 12:07:54 +00:00
*/
2019-03-17 17:57:32 +00:00
void updateIMU ( )
{
2019-06-01 16:51:16 +00:00
if ( old_ax = = ax & & old_ay = = ay & & old_az = = az & & old_gx = = gx & & old_gy = = gy & & old_gz = = gz & & old_mx = = mx & & old_my = = my & & old_mz = = mz ) {
2019-03-20 22:29:09 +00:00
imu_no_change_counter + + ;
2019-06-01 16:51:16 +00:00
if ( imu_no_change_counter > 10 ) {
error = IMU_NO_CHANGE ;
2019-06-11 12:07:54 +00:00
# ifdef DEBUG
2019-03-20 22:29:09 +00:00
Serial . println ( " Error: IMU_NO_CHANGE " ) ;
2019-06-11 12:07:54 +00:00
# endif
2019-03-20 22:29:09 +00:00
}
2019-06-01 16:51:16 +00:00
} else {
imu_no_change_counter = 0 ;
2019-03-20 22:29:09 +00:00
}
2019-06-01 16:51:16 +00:00
old_ax = ax ;
old_ay = ay ;
old_az = az ;
old_gx = gx ;
old_gy = gy ;
old_gz = gz ;
old_mx = mx ;
old_my = my ;
old_mz = mz ;
old_roll = roll ;
old_pitch = pitch ;
old_yaw = yaw ;
2019-03-17 17:57:32 +00:00
//Update Imu and write to variables
imu . update ( ) ;
imu . getAcceleration ( & ax , & ay , & az ) ;
imu . getGyro ( & gx , & gy , & gz ) ;
2019-06-01 16:51:16 +00:00
imu . getMag ( & mx , & my , & mz , & ma ) ; //calibration data such as bias is set in IMUGY85.h
2019-03-17 17:57:32 +00:00
roll = imu . getRoll ( ) ;
pitch = imu . getPitch ( ) ;
yaw = imu . getYaw ( ) ;
/*Directions:
2019-06-01 16:51:16 +00:00
Components on top .
Roll : around Y axis ( pointing to the right ) , left negative
Pitch : around X axis ( pointing forward ) , up positive
Yaw : around Z axis , CCW positive , 0 to 360
*/
2019-03-17 17:57:32 +00:00
}