//const uint16_t throttleCurvePerMM[] = {414,460,490,511,527,539,548,555,561,567,573,578,584,590,599,611,630,657,697,754,789,795}; //adc values for every unit (mm) of linear travel
constuint16_tthrottleCurvePerMM[]={8485,8904,9177,9368,9513,9623,9705,9768,9823,9877,9932,9978,10032,10087,10169,10278,10451,10697,11061,11579,11898,11952};//adc values for every unit (mm) of linear travel
#define PIN_BRAKE A8
constuint16_tcalib_brake_min=2000;//better a bit too high than too low
constuint16_tcalib_brake_max=11000;
constuint16_tfailsafe_brake_min=700;//if adc value falls below this failsafe is triggered
uint16_tbrake_raw=failsafe_brake_min;//start at min so that failsafe is not triggered
#define ADC_OUTOFRANGE_TIME 100
unsignedlongthrottle_ok_time=0;
unsignedlongbrake_ok_time=0;
boolerror_throttle_outofrange=false;
boolerror_brake_outofrange=false;
boolerror_ads_max_read_interval=false;
#define REVERSE_ENABLE_TIME 1000 //ms. how long standstill to be able to drive backward
#define REVERSE_SPEED 0.25 //reverse driving speed //0 to 1
#define NORMAL_MAX_ACCELERATION_RATE 10000
#define SLOW_MAX_ACCELERATION_RATE 500
int16_tmax_acceleration_rate=NORMAL_MAX_ACCELERATION_RATE;//maximum cmd send increase per second
//Driving parameters
int16_tminimum_constant_cmd_reduce=1;//reduce cmd every loop by this constant amount when freewheeling/braking
int16_tbrake_cmdreduce_proportional=500;//cmd gets reduced by an amount proportional to brake position (ignores freewheeling). cmd_new-=brake_cmdreduce_proportional / second @ full brake. with BREAK_CMDREDUCE_CONSTANT=1000 car would stop with full brake at least after a second (ignoring influence of brake current control/freewheeling)
floatstartbrakecurrent=2;//Ampere. "targeted brake current @full brake". at what point to start apply brake proportional to brake_pos. for everything above that cmd is reduced by freewheel_break_factor
floatstartbrakecurrent_offset=0.13;//offset start point for breaking, because of reading fluctuations around 0A. set this slightly above idle current reading
#define CURRENT_FILTER_SIZE 60 //latency is about CURRENT_FILTER_SIZE/2*MEASURE_INTERVAL (measure interval is defined by hoverboard controller)
#define CURRENT_MEANVALUECOUNT 20 //0<= meanvaluecount < CURRENT_FILTER_SIZE/2. how many values will be used from sorted weight array from the center region. abour double this values reading are used