speeduino/speeduino/auxiliaries.h

59 lines
2.0 KiB
C
Raw Normal View History

2016-10-06 23:34:27 -07:00
#ifndef AUX_H
#define AUX_H
#include BOARD_H //Note that this is not a real file, it is defined in globals.h.
2016-10-06 23:34:27 -07:00
void initialiseAuxPWM();
void boostControl();
2018-07-19 06:26:31 -07:00
void boostDisable();
void idleControl();
2016-10-06 23:34:27 -07:00
void vvtControl();
2016-10-25 07:04:37 -07:00
void initialiseFan();
void nitrousControl();
2018-08-15 00:44:30 -07:00
void fanControl();
#define BOOST_PIN_LOW() *boost_pin_port &= ~(boost_pin_mask)
#define BOOST_PIN_HIGH() *boost_pin_port |= (boost_pin_mask)
#define VVT_PIN_LOW() *vvt_pin_port &= ~(vvt_pin_mask)
#define VVT_PIN_HIGH() *vvt_pin_port |= (vvt_pin_mask)
#define FAN_PIN_LOW() *fan_pin_port &= ~(fan_pin_mask)
#define FAN_PIN_HIGH() *fan_pin_port |= (fan_pin_mask)
#define N2O_STAGE1_PIN_LOW() *n2o_stage1_pin_port &= ~(n2o_stage1_pin_mask)
#define N2O_STAGE1_PIN_HIGH() *n2o_stage1_pin_port |= (n2o_stage1_pin_mask)
#define N2O_STAGE2_PIN_LOW() *n2o_stage2_pin_port &= ~(n2o_stage2_pin_mask)
#define N2O_STAGE2_PIN_HIGH() *n2o_stage2_pin_port |= (n2o_stage2_pin_mask)
#define READ_N2O_ARM_PIN() ((*n2o_arming_pin_port & n2o_arming_pin_mask) ? true : false)
volatile PORT_TYPE *boost_pin_port;
volatile byte boost_pin_mask;
volatile PORT_TYPE *vvt_pin_port;
volatile byte vvt_pin_mask;
volatile PORT_TYPE *fan_pin_port;
volatile byte fan_pin_mask;
volatile PORT_TYPE *n2o_stage1_pin_port;
volatile byte n2o_stage1_pin_mask;
volatile PORT_TYPE *n2o_stage2_pin_port;
volatile byte n2o_stage2_pin_mask;
volatile PORT_TYPE *n2o_arming_pin_port;
volatile byte n2o_arming_pin_mask;
volatile bool boost_pwm_state;
unsigned int boost_pwm_max_count; //Used for variable PWM frequency
2015-09-26 23:41:07 -07:00
volatile unsigned int boost_pwm_cur_value;
2016-05-15 04:05:49 -07:00
long boost_pwm_target_value;
long boost_cl_target_boost;
byte boostCounter;
2018-07-19 00:35:35 -07:00
byte fanHIGH = HIGH; // Used to invert the cooling fan output
byte fanLOW = LOW; // Used to invert the cooling fan output
volatile bool vvt_pwm_state;
unsigned int vvt_pwm_max_count; //Used for variable PWM frequency
2015-09-26 23:41:07 -07:00
volatile unsigned int vvt_pwm_cur_value;
2016-05-15 04:05:49 -07:00
long vvt_pwm_target_value;
static inline void boostInterrupt();
static inline void vvtInterrupt();
2016-05-15 04:05:49 -07:00
2017-02-14 21:51:01 -08:00
2016-10-06 23:34:27 -07:00
#endif