/************************************************************************* ************************************************************************** ** M E G A S Q U I R T II - 2 0 0 4 - V1.000 ** ** (C) 2003 - B. A. Bowling And A. C. Grippo ** ** This header must appear on all derivatives of this code. ** *************************************************************************** **************************************************************************/ /************************************************************************* ************************************************************************** ** GCC Port ** ** (C) 2004,2005 - Philip L Johnson ** ** This header must appear on all derivatives of this code. ** *************************************************************************** **************************************************************************/ /*------------------------ Version 1.000 This version has all the basic capabilities of MS, but much higher precision - in the usec range. It adds larger tuning tables (12x12), WBO2, IAC, dual tables, and ignition control which assumes 1 coil and a mechanical distributor to distribute spark or EDIS for multicoil wasted spark. Version 1.100 Made serial comms more robust: added one word read, write + verify commands, write to ram inhibit when overrun detection, receiver timeout check. Version 1.200 Fixed various problems with trigger offsets ATDC (charge time can occur after input capture at very low rpms and other related ignition timing problems.) Version 1.300 Changed tps, tpsdot units to % x 10; added accel tailoff algorithm. Version 2.000 This version works with the CAN v3 pcb and has a template for CAN comms. Additional changes: increased input area to 4 x 512 byte blocks; inhibit coil charge 2 sec after turning ign key on; changed ports for FP, Idle (but connect to same pins on motherboard); knock ADC input in Vx100; all unused ports initialized as inputs. Made IACstart, PrimeP, CWU,CWH, AWEV,AWC,asecount ints instead of bytes. PrimeP,AWEV,AWC made function of initial coolant temperature. Expanded IAC control options for cranking plus switch to time based after start; added pulse tolerance inputs for cranking and after start; IAC option(5) to always enable stepper motor chip for 15 minutes after start, then revert to option 2. Version 2.100 Added crank trigger mode.Ignition fires with only mech adv during cranking; added kpa to display outputs. Version 2.200 Modified/ added ADC averaging: provided lag filter averaging for all ADC inputs (also for rpm). Relocated VE tables in anticipation of Block Learn Mode. Version 2.300 Improved ego closed loop correction algorithms; flex fuel correction for alternative fuels; generic spare output ports;fixed logic error for IdleCtl=5; added fix to maintain coherence of inputs when changed thru serial port. Version 2.310, 2.320, 2.330, 2340, 2.350, 2.360 Fixed bug in ASE logic;set PW=0 in RevLimit mode;gcc compatibility changes; fixed bug in spare port hysteresis; changed some defaults; fixed bug in masking of TimerIn interrupts for dt/2; limited pw_open in case of battery spikes. Fixed stepper motor bug. -----------------------*/ #include "hcs12def.h" /* common defines and macros */ #include "flash.h" /* flashburner defines, structures */ #include //#define CAN_TEST #ifdef GCC_BUILD #define FAR_TEXT1_ATTR __attribute__ ((far)) __attribute__ ((section (".text1"))) #define TEXT1_ATTR __attribute__ ((section (".text1"))) #define EEPROM_ATTR __attribute__ ((section (".eeprom"))) #define INTERRUPT #define POST_INTERRUPT __attribute__((interrupt)) #define ENABLE_INTERRUPTS __asm__ __volatile__ ("cli"); #define DISABLE_INTERRUPTS __asm__ __volatile__ ("sei"); #define NEAR #define VECT_ATTR __attribute__ ((section (".vectors"))) extern void _start(void); /* Startup routine */ #else #define FAR_TEXT1_ATTR #define TEXT1_ATTR #define EEPROM_ATTR #define INTERRUPT interrupt #define POST_INTERRUPT #define ENABLE_INTERRUPTS asm cli; #define DISABLE_INTERRUPTS asm sei; #define NEAR near #define VECT_ATTR @0xFF80 #pragma CODE_SEG NON_BANKED /* Interrupt section for this module. Placement will be in NON_BANKED area. */ extern void near _Startup(void); /* Startup routine */ #endif INTERRUPT void UnimplementedISR(void) POST_INTERRUPT; INTERRUPT void ISR_Ign_TimerIn(void) POST_INTERRUPT; INTERRUPT void ISR_Ign_TimerOut(void) POST_INTERRUPT; INTERRUPT void ISR_Inj1_TimerOut(void) POST_INTERRUPT; INTERRUPT void ISR_Inj2_TimerOut(void) POST_INTERRUPT; INTERRUPT void ISR_TimerOverflow(void) POST_INTERRUPT; INTERRUPT void ISR_Timer_Clock(void) POST_INTERRUPT; INTERRUPT void ISR_SCI_Comm(void) POST_INTERRUPT; INTERRUPT void CanTxIsr(void) POST_INTERRUPT; INTERRUPT void CanRxIsr(void) POST_INTERRUPT; typedef void (* NEAR tIsrFunc)(void); const tIsrFunc _vect[] VECT_ATTR = { /* Interrupt table */ UnimplementedISR, /* vector 63 */ UnimplementedISR, /* vector 62 */ UnimplementedISR, /* vector 61 */ UnimplementedISR, /* vector 60 */ UnimplementedISR, /* vector 59 */ UnimplementedISR, /* vector 58 */ UnimplementedISR, /* vector 57 */ UnimplementedISR, /* vector 56 */ UnimplementedISR, /* vector 55 */ UnimplementedISR, /* vector 54 */ UnimplementedISR, /* vector 53 */ UnimplementedISR, /* vector 52 */ UnimplementedISR, /* vector 51 */ UnimplementedISR, /* vector 50 */ UnimplementedISR, /* vector 49 */ UnimplementedISR, /* vector 48 */ UnimplementedISR, /* vector 47 */ UnimplementedISR, /* vector 46 */ UnimplementedISR, /* vector 45 */ UnimplementedISR, /* vector 44 */ UnimplementedISR, /* vector 43 */ UnimplementedISR, /* vector 42 */ UnimplementedISR, /* vector 41 */ UnimplementedISR, /* vector 40 */ CanTxIsr, /* vector 39 */ CanRxIsr, /* vector 38 */ CanRxIsr, /* vector 37 */ UnimplementedISR, /* vector 36 */ UnimplementedISR, /* vector 35 */ UnimplementedISR, /* vector 34 */ UnimplementedISR, /* vector 33 */ UnimplementedISR, /* vector 32 */ UnimplementedISR, /* vector 31 */ UnimplementedISR, /* vector 30 */ UnimplementedISR, /* vector 29 */ UnimplementedISR, /* vector 28 */ UnimplementedISR, /* vector 27 */ UnimplementedISR, /* vector 26 */ UnimplementedISR, /* vector 25 */ UnimplementedISR, /* vector 24 */ UnimplementedISR, /* vector 23 */ UnimplementedISR, /* vector 22 */ UnimplementedISR, /* vector 21 */ ISR_SCI_Comm, /* vector 20 */ UnimplementedISR, /* vector 19 */ UnimplementedISR, /* vector 18 */ UnimplementedISR, /* vector 17 */ ISR_TimerOverflow, /* vector 16 */ UnimplementedISR, /* vector 15 */ UnimplementedISR, /* vector 14 */ ISR_Ign_TimerOut, /* vector 13 */ UnimplementedISR, /* vector 12 */ ISR_Inj2_TimerOut, /* vector 11 */ UnimplementedISR, /* vector 10 */ ISR_Inj1_TimerOut, /* vector 09 */ ISR_Ign_TimerIn, /* vector 08 */ ISR_Timer_Clock, /* vector 07 */ UnimplementedISR, /* vector 06 */ UnimplementedISR, /* vector 05 */ UnimplementedISR, /* vector 04 */ UnimplementedISR, /* vector 03 */ UnimplementedISR, /* vector 02 */ UnimplementedISR, /* vector 01 */ #ifdef GCC_BUILD _start /* Reset vector */ }; #else _Startup /* Reset vector */ }; #pragma CODE_SEG DEFAULT #endif #include "cltfactor.inc" #include "matfactor.inc" #include "egofactor.inc" #include "maffactor.inc" #define NO_TBLES 7 #define NO_FMAPS 12 #define NO_SMAPS 12 #define NO_FRPMS 12 #define NO_SRPMS 12 #define NO_INJ 2 #define NO_TEMPS 10 #define NO_TPS_DOTS 4 #define NO_MAP_DOTS 4 #define NPORT 7 #define NO_COILCHG_PTS 5 #define EGODT 78 /* 78 .128 ms tics = 10 ms */ #define MSG_CMD 0 #define MSG_REQ 1 #define MSG_RSP 2 #define MSG_XSUB 3 #define NO_VAR_BLKS 16 #define NO_CANMSG 10 #define NO_CANBOARDS 16 #define CANID_THIS_BOARD 0 // Error status words: // -bits 0-7 are current errors // -bits 8-15 are corresponding latched errors #define XMT_ERR 0x0101 #define CLR_XMT_ERR 0xFFFE #define XMT_TOUT 0x0202 #define CLR_XMT_TOUT 0xFFFD #define RCV_ERR 0x0404 #define CLR_RCV_ERR 0xFFFB #define SYS_ERR 0x0808 // User inputs - 1 set in flash, 1 in ram typedef struct { unsigned char no_cyl,no_skip_pulses, // skip >= n pulses at startup ICIgnOption, // Bit 0: Input capture: 0 = falling edge, 1 rising // Bit 1: 1= trigger return mode in cranking; for this // mode, set bit 0 to normal edge, then opp.edge used in cranking. // trigger return not applicable to EDIS // Bit 2: 1 = fire on tach trigger with no advance // while cranking; not applicable for EDIS. Bits 1,2 cannot both=1 // Bit 3: spare // Bits 4-7: 0 = standard - charge coil, spark // 1 = Ford EDIS option // 2 = EDIS with multispark spkout_hi_lo, // Ign Output compare: 0 = spark low (gnd) max_coil_dur,max_spk_dur,DurAcc; // ms x 10 char deltV_table[NO_COILCHG_PTS],deltDur_table[NO_COILCHG_PTS], // Vx10,msx10 RevLimOption, // 0=none, 1=spark retard, 2=fuel cut RevLimMaxRtd, // max amount of spark retard (degx10) (at Rpm2 below) PredOpt; // Option for prediction algorithm for next tach plse // 0=use last time interval // 1=use 1st deriv prediction; 2=use 1st deriv at hi // rpm, 2nd deriv prediction at lo rpm; // 3=use 2nd deriv prediction always. int crank_rpm; // rpm at which cranking is through (~300 - 400 rpm) int cold_adv_table[NO_TEMPS], adv_offset, // all in deg x 10 // adv_offset is no deg(x10) between trigger (Input Capture) and TDC. // It may be +btdc (IC1 to TDC) or -atdc (TDC to IC2). // // | | | // | | | // -|---------------|-----|- // IC1 TDC IC2 RevLimRpm1,RevLimRpm2; // Optn 1:Retard spk by 0 deg at Rpm1 and increase // to RevLimMaxRtd at Rpm2 // Optn 2:Cut fuel above Rpm2, restore below Rpm1 unsigned char afr_table[NO_INJ][NO_FMAPS][NO_FRPMS], // afr x 10 warmen_table[NO_TEMPS], // % enrichment vs temp tpsen_table[NO_TPS_DOTS], // accel enrichment pw in .1 ms units vs tpsdot mapen_table[NO_MAP_DOTS]; // accel enrichment pw in .1 ms units vs mapdot int iacstep_table[NO_TEMPS]; // iac steps vs temp unsigned int frpm_table[NO_FRPMS],srpm_table[NO_SRPMS]; // fuel, spk rpm tables int fmap_table[NO_FMAPS],smap_table[NO_SMAPS], // kpa x 10, temp_table[NO_TEMPS], // deg x 10 (C or F) tpsdot_table[NO_TPS_DOTS], // change in % x 10 per .1 sec mapdot_table[NO_MAP_DOTS]; // change in kPa x 10 per .1 sec int map0,mapmax,clt0,cltmult,mat0,matmult,tps0,tpsmax,batt0,battmax, // kPa x 10, deg F or C x 10, adc counts, volts x 10 ego0,egomult,baro0,baromax,bcor0,bcormult,knock0,knockmax; // afr x 10, kpa x 10, volts x 100 int Dtpred_Gain; // % unsigned char CrnkTol,ASTol,PulseTol, // % tolerance for next input pulse // during cranking, after start and normal running IdleCtl, // idle: 0 = none, 1= solenoid, 2= iac stepper motor // - enabled only when moving, 3 = iac motor - always enabled. // 4 = Ford pwm, 5 = 3 for 15 min, then = 2. IACtstep, // iac stepper motor nominal time between steps (.1 ms units) IACaccstep, // iac stepper motor accel/decel step time (.1 ms)-future use IACnaccstep, // iac stepper motor no. of accel/decel steps - future use cpad1; // pad byte for alignment int IACStart, // no. of steps to send at startup to put stepper // motor at reference (wide open) position IdleHyst, // amount clt temp must move before Idle position is changed IACcrankpos, // IAC pos must be open(<) at least this much(steps) in cranking IACcrankxt, // no. seconds from end of cranking for IAC pos to blend into // coolant dependent pos. IACcoldtmp,IACcoldpos,IACcoldxt, // when startup coolant temp < IACcoldtmp, // then when reach (>=) IACcoldpos switch to time based ctl: interpolate // bet IACcoldpos and final table IAC pos for period IACcoldxt secs. PrimePU,PrimePH, // priming pulsewidths at min, max temps in temp_table (ms x 10) CWU,CWH, // crank pulsewidths at min, max temps in temp_table (ms x 10) AWEVU,AWEVH, // after start warmup % enrich add-on value at min,max temps in // temp_table AWCU,AWCH; // after start enrichment no. cycles at min,max temps in temp_table unsigned char Tpsacold, // cold (-40F) accel amount in .1 ms units AccMult, // cold (-40F) accel multiply factor (%) TpsThresh, // tpsdot threshhold for acc/decel enrichment(change in %x10 per .1 sec) MapThresh, // mapdot threshhold for acc/decel enrichment(change in kPax10 per .1 s) TpsAsync, // clock duration (in .1 sec tics) for accel enrichment TPSDQ; // deceleration fuel cut option (%) int TPSWOT, // TPS value at WOT (for flood clear) in %x10 TPSOXLimit; // Max tps value (%x10) where O2 closed loop active unsigned char Tps_acc_wght, // weight (0-100) to be given to tpsdot for accel enrichment. // 100 - Tps_acc_wght will then be given to mapdot. BaroOption, // 0=no baro, 1=baro is 1st reading of map (before cranking), // 2=independent barometer (=> EgoOption < 3) EgoOption, // 0 = no ego;1= nb o2;2=single wbo2;3=dual wbo2. NOTE: // BaroOption MUST be < 2 if EgoOption = 3 EgoCountCmp, // Ign Pulse counts between when EGO corrections are made EgoStep, // % step change for EGO corrections EgoLimit, // Upper/Lower rail limit (egocorr inside 100 +/- limit) AFRTarget, // NBO2 AFR determining rich/ lean Temp_Units, // 0= coolant & mat in deg F; 1= deg C MafOption,cpad2; // MAF options - (future use) int FastIdle, // fast idle Off temperature (idle_ctl = 1 only) EgoTemp, // min clt temp where ego active RPMOXLimit; // Min rpm where O2 closed loop is active unsigned int ReqFuel; // fuel pulsewidth (usec) at wide open throttle unsigned char Divider, // divide factor for input tach pulses Alternate, // option to alternate injector banks InjOpen, // Injector open time (.1 ms units) InjPWMTim, // Time (.1 ms units) after Inj opening to start pwm InjPWMPd, // Inj PWM period (us) - keep between 10-25 KHz (100-40 us) InjPWMDty, // Inj PWM duty cycle (%) BatFac, // Battery fuel pw correction factor (msx10) EngStroke, // 0 = 4 stroke // 1 = 2 stroke InjType, // 0 = port injection // 1 = throttle body NoInj, // no. of injectors (1-12) OddFire1, // > 0 = odd fire option - smaller angle bet firings (deg) OddFire2, // > 0 = odd fire option - larger angle bet firings (deg) rpmLF,mapLF,tpsLF, // Lag filter coefficient for Rpm,Map,Tps. Acts like egoLF, // averager: xnew = xold + xLF * (xmeas - xold), so xLF=0 adcLF,knkLF, // means value will never change, xLF=100 means no filtering. // egoLF is coefficient for ego filter, adcLF is for clt,mat,batt, // knkLF is for knock. BLMOption, // Block Learn Mode option (future use) dual_tble_optn, // 1 = use dual table option - ve, afr tables for each inj FuelAlpha, // option for alpha-N mode: 0=none;1=use map,tps blend algorithm; // 2=same as 1, but don't use kpa multiplier in plsewidth eq. IgnAlpha, // option to use map,tps(alphaN) blend algorithm for ignition AfrAlpha,cpad3; // option to use map,tps(alphaN) blend algorithm for WBO2 AFR int alpha_lorpm, // option to use map,tps(alphaN) blend algorithm for fuel alpha_hirpm, // use tps if < lorpm; use map if > hirpm; else blend., in which // case lo, hirpm should be consecutive entries in frpm_table. // set lorpm=hirpm =0 to use map enrichment only, // set lorpm =25K to use alpha-N enrichment only, alpha_map_table[6][6], // Table of ave map values (kpa x 10) for [tps][rpm] // pairs. Used only for alpha-N algorithm. // Allows ve table to retain same ve values // whether in alpha-N mode or not, amap_tps[6]; // Tps values (% x 10) for alpha_map table unsigned int amap_rpm[6]; // Rpm values for alpha_map table unsigned long baud; // baud rate int MAPOXLimit; // Max map value (kPax10) where O2 closed loop active unsigned char board_id_type[NO_CANBOARDS]; // board type (1-255) of ith board; // type=0, no board present at ith slot. // type=1, ECU (MS II) // type=2. Router board // type=3, I/O board, ...... // Generic spare port parameters: spr_port = 0(don't use)/1(use),where // spr_port[0-7] = PM2 - PM5; PTT6,7; PORTA0; they are set as outs to main // pcb; out_offset,out_byte= byte offset from start of outpc structure and // size in bytes of 1st, 2nd variables to be tested for setting port; // condition='<', '>', '=';cond12 = '&','|',' ' connects the conditions for // the two variables with ' ' meaning only the first variable condition is // desired; thresh = value for the condition(e.g., var1 > thresh1); init_val, // port_val=value (0/1) to which the pin will be set at startup and when the // condition(s) is met; hyst is a hysteresis delta and works as ff: if a // setpoint condition is > and it is met, set port to val and leave until // variable is < thresh - hyst, then set pin back to 1 - val. Similarly if // condition is <, wait til var > thresh + hyst. For dual conditions, the // hysteresis conditions are evaluated the same way, but use the opposite // of cond12 to connect them (if cnd12 is &, use | and vice versa). char spr_port [NPORT], // NPORT == 7 condition1 [NPORT], condition2 [NPORT], cond12 [NPORT], init_val [NPORT], port_val [NPORT], out_byte1 [NPORT], out_byte2 [NPORT]; int out_offset1[NPORT], out_offset2[NPORT], thresh1 [NPORT], thresh2 [NPORT], hyst1 [NPORT], hyst2 [NPORT]; unsigned char TpsAsync2, // accel tailoff duration (sec x 10) cpad4; int TpsAccel2; // end pulsewidth of accel enrichment (ms x 10) unsigned char EgoAlg, // 0=simple prop error algorithm; // 1=same algorithm with variable transport delay; // 2=full PID with Smith Pred correction. egoKP, egoKI, egoKD; // PID coefficients in %; egoKP also gain for // EgoAlg=0, with 100 = no gain; egoKD includes // 1/dt factor since fixed time step. unsigned int egoKdly1, // coefficients used to calculate ego transport egoKdly2; // delay (ms) = Kdly1 + Kdly2*120000 / (map(kPax10)*rpm) unsigned char FlexFuel, // Flex fuel option - modifies pw based on % alcohol cpad5, fuelFreq[2], // Table of fuel sensor freq(Hz) vs %fuel corr; fuelCorr[2]; } inputs1; typedef struct { unsigned char ve_table[NO_INJ][NO_FMAPS][NO_FRPMS]; int adv_table[NO_SMAPS][NO_SRPMS]; } inputs2; #ifndef GCC_BUILD #pragma ROM_VAR INP_ROM #endif // flash copy of inputs - initialized #define SECTOR_BYTES 1024 // bytes #define SECTOR_WORDS ((int)(SECTOR_BYTES/2)) #define N_SECTORS(theStruct) ((int)((sizeof(theStruct)+SECTOR_BYTES-1)/SECTOR_BYTES)) #define N_PADDING(theStruct) ((int)(N_SECTORS(theStruct)*SECTOR_BYTES - sizeof(theStruct))) const inputs1 in1flash EEPROM_ATTR = { 8, // no_cyl (1-12) 3, // no_skip_pulses, skip >=3 pulses 0x05, 1, // ICIgnOption,spkout_hi_lo, 31, 20, 6, // max_coil_dur,max_spk_dur,DurAcc msx10 {-40,-20,0,20,40}, // deltaV_table[], Vx10 = batt_voltx10 - 120 {24, 9, 0,-5,-9}, // deltaDur_table[], msx10 = correction for batt_volt 1, // RevLimOption:0,none; 1,retard spk; 2,fuel cut 120, // RevLimMaxRtd, deg x 10 2, // PredOpt (For EDIS PredOpt=0 is sufficient) // For EDIS keep total adv (incl. offset & cold adv) < 60 deg 300, // rpm at which cranking through {60, // cold_adv_table[TEMP no = 0], deg x 10 50,40,30,20,10,0,0,0,0}, 0, // adv_offset, deg x 10 5500, 6000, // RevLimRpm1,2 {{{130, // afr_table[inj1][MAP/tps no =0][RPM no = 0], afrx10 135,160,160,160,149,143,132,131,132,131,130}, {132, // afr_table[inj1][MAP/tps no =1][RPM no = 0], afrx10 137,157,157,155,149,142,132,130,129,128,127}, {134, // afr_table[inj1][MAP/tps no =2][RPM no = 0], afrx10 139,155,155,154,149,141,130,129,128,127,127}, {135, // afr_table[inj1][MAP/tps no =3][RPM no = 0], afrx10 140,152,152,150,147,140,130,129,128,127,126}, {136, // afr_table[inj1][MAP/tps no =4][RPM no = 0], afrx10 141,150,149,147,147,140,129,128,127,126,126}, {135, // afr_table[inj1][MAP/tps no =5][RPM no = 0], afrx10 138,145,143,141,141,135,128,127,126,126,126}, {134, // afr_table[inj1][MAP/tps no =6][RPM no = 0], afrx10 134,139,137,136,136,131,127,126,126,126,126}, {132, // afr_table[inj1][MAP/tps no =7][RPM no = 0], afrx10 132,135,133,133,132,130,126,125,125,125,125}, {130, // afr_table[inj1][MAP/tps no =8][RPM no = 0], afrx10 130,131,130,130,129,130,125,125,125,125,125}, {130, // afr_table[inj1][MAP/tps no =9][RPM no = 0], afrx10 129,129,128,128,127,126,125,125,125,125,124}, {130, // afr_table[inj1][MAP/tps no =10][RPM no = 0], afrx10 129,129,128,128,127,126,125,125,125,123,123}, {130, // afr_table[inj1][MAP/tps no =11][RPM no = 0], afrx10 129,129,128,128,127,126,125,125,122,122,122}}, {{130, // afr_table[inj2][MAP/tps no =0][RPM no = 0], afrx10 135,160,160,160,149,143,132,131,132,131,130}, {132, // afr_table[inj2][MAP/tps no =1][RPM no = 0], afrx10 137,157,157,155,149,142,132,130,129,128,127}, {134, // afr_table[inj2][MAP/tps no =2][RPM no = 0], afrx10 139,155,155,154,149,141,130,129,128,127,127}, {135, // afr_table[inj2][MAP/tps no =3][RPM no = 0], afrx10 140,152,152,150,147,140,130,129,128,127,126}, {136, // afr_table[inj2][MAP/tps no =4][RPM no = 0], afrx10 141,150,149,147,147,140,129,128,127,126,126}, {135, // afr_table[inj2][MAP/tps no =5][RPM no = 0], afrx10 138,145,143,141,141,135,128,127,126,126,126}, {134, // afr_table[inj2][MAP/tps no =6][RPM no = 0], afrx10 134,139,137,136,136,131,127,126,126,126,126}, {132, // afr_table[inj2][MAP/tps no =7][RPM no = 0], afrx10 132,135,133,133,132,130,126,125,125,125,125}, {130, // afr_table[inj2][MAP/tps no =8][RPM no = 0], afrx10 130,131,130,130,129,130,125,125,125,125,125}, {130, // afr_table[inj2][MAP/tps no =9][RPM no = 0], afrx10 129,129,128,128,127,126,125,125,125,125,124}, {130, // afr_table[inj2][MAP/tps no =10][RPM no = 0], afrx10 129,129,128,128,127,126,125,125,125,123,123}, {130, // afr_table[inj2][MAP/tps no =11][RPM no = 0], afrx10 129,129,128,128,127,126,125,125,122,122,122}}}, {180, // warmen_table[TEMP no = 0], % enrichment vs temp 180,160,150,135,125,113,108,102,100}, {20, // tpsen_table[TPS_DOT no = 0], enrichment in .1ms vs tpsdot 50,105,150}, {0, // mapen_table[TPS_DOT no = 0], enrichment in .1ms vs mapdot 0,0,0}, {40, // iacstep_table[TEMP no = 0], 60,75,90,105,120,130,140,150,160}, {500, // frpm_table[RPM no = 0] , use in VE, AFR tables 800,1100,1400,2000,2600,3100,3700,4300,4900,5400,6000}, {700, // srpm_table[RPM no = 0] , use in spark advance table 900,1200,1500,2000,2600,3100,3700,4300,4900,5400,6000}, {300, // fmap_table[MAP/tps no = 0], kPa x 10 , use for VE, AFR 350,450,500,550,600,700,750,800,850,950,1000}, {200, // smap_table[MAP/tps no = 0], kPa x 10 , use for spk adv 250,300,350,400,450,500,600,700,800,900,1000}, {-400, // temp_table[TEMP no = 0], deg x 10 -200,0,200,400,600,800,1000,1300,1600}, {100, // tpsdot_table[TPS_DOT no =0], 400,800,1540}, // change in % x 10 per .1 sec {0, // mapdot_table[TPS_DOT no =0], 0,0,0}, // change in kPa x 10 per .1 sec 93, // map0, kPa x 10, value @ 0 ADC counts 2609, // mapmax, kPa x 10, value @ max(1023) ADC counts 0, // clt0, deg (C or F) x 10 100, // cltmult, % 0, // mat0, deg (C or F) x 10 100, // matmult, % 0, // tps0, adc counts 1023, // tpsmax, adc counts 1, // batt0, v x 10 297, // battmax, v x 10 0, // ego0, afr x 10 100, // egomult, % 93, // baro0, kPa x 10 2609, // baromax, kPa x 10 147, -47, // bcor0,bcormult kpax10, slope 0, // knock0, v x 100 500, // knockmax, v x 100 20, // Dtpred_Gain, % 50,70,25, // PulseTol, % tolerance for next input pulse during // cranking, after start for 3 secs, normal running 5, // IdleCtl, idle: 0 = none, 1= solenoid, 2= iac stepper motor // - enabled only when moving, 3 = iac motor - always enabled. // 4 = Ford PWM iac, 5 = 3 for 15 min, then = 2 25, // IACtstep, .1 ms units (25 gives pulse freq of 400 Hz) 0, // IACaccstep 0, // IACnaccstep 0, // byte pad 160, // IACStart, no. of steps to send at startup to put stepper // motor at reference (wide open) position 50, // IdleHyst amount (degx10) 100,5, // > IAC opening (< steps) during cranking and few secs after 0,120,40, // when startup coolant temp < IACcoldtmp (degx10), // then when reach (>=) IACcoldpos switch to time based ctl: interpolate // bet IACcoldpos and final table IAC pos for period IACcoldxt secs. 60, 20, // PrimePU,H priming pulsewidths at min, max temps in temp_table (ms x10) 120, 40, // CWU,CWH, crank pw at min, max temps in temp_table (ms x 10) 45,25, // AWEV, after start warmup % enrich add-on value at min, max clt temps, 350,150, // AWC, after start enrichment no. of cycles at min, max clt temps 30, // Tpsacold, cold (-40F) accel amount in .1 ms units 130, // AccMult, cold (-40F) accel multiply factor (%) 200, // TpsThresh, tpsdot threshhold for accel enrichment(change in %x10 per .1 s) 100, // MapThresh, mapdot threshhold for accel enrichment(change in kPax10 per .1 s) 2, // TpsAsync, clock duration (in .1 sec tics) for accel enrichment 90, // TPSDQ, deceleration fuel cut option (%) 700, // TPSWOT, TPS value at WOT (for flood clear), %x10 700, // TPSOXLimit, Max tps value (%x10) where O2 closed loop active 100, // Tps_acc_wght, weight to be given to tpsdot for accel enrichment. // 100 - Tps_acc_wght will then be given to mapdot. 1, // BaroOption, 0=no baro, 1=baro is 1st reading of map (before cranking), // 2=independent barometer 1, // EgoOption, 0 = no ego;1= nb o2;2=single wbo2;3=dual wbo2. 16, // EgoCountCmp, Ign Pulse counts between when EGO corrections are made 1, // EgoStep, % step change for EGO corrections 15, // EgoLimit, Upper/Lower rail limit (egocorr inside 100 +/- limit) 140, // AFRTarget, NBO2 afr (afrx10) determining rich/ lean 0, // Temp_Units, 0= coolant & mat in deg F; 1= deg C 0,0, // MAF options(future),pad byte 1400, // FastIdle, fast idle temperature (degx10) (idle_ctl = 1 only) 1600, // EgoTemp, min clt temp where ego active, degx10 1300, // RPMOXLimit, Min rpm where O2 closed loop is active 15500, // ReqFuel; fuel pulsewidth (usec) at wide open throttle 4, // Divider, divide factor for input tach pulses 1, // Alternate, option to alternate injector banks 10, // InjOpen, Injector open time (.1 ms units) 255, // InjPWMTim, Time (.1 ms units) after opening to start pwm 66, // InjPWMPd, Injector PWM period (us) 75, // InjPWMDty, Injector PWM duty cycle (%) 12, // BatFac, Battery fuel pw correction factor (msx10) 0, // EngStroke, 0 = 4 stroke, 1 = 2 stroke 0, // InjType, 0 = port injection, 1 = throttle body 8, // NoInj, no. of injectors (1-12) 0,0, // OddFire smaller, larger angle between firings 50,50,50, // Lag filter coefficients (1-100%) for Rpm,Map,Tps, 60, // ego1,2 50,80, // Lag filter coefficients for other adc(clt,mat,batt), knock. 0, // BLM option 0, // dual table option 0, // fuel alpha-N, map blend option 0, // ign alpha-N, map blend option 0,0, // WBO2 AFR alpha-N, map blend option; cpad 0, // lo rpm for alpha-N, map blend option 0, // alpha-N hi rpm {{1000,600,300,350,400,400}, // alpha_map_table[tps no =0][RPM nos 0-5] (kpa x 10) {1000,650,350,400,450,450}, // alpha_map_table[tps no =1][RPM nos 0-5] {1000,700,400,450,500,500}, // alpha_map_table[tps no =2][RPM nos 0-5] {1000,750,450,500,550,550}, // alpha_map_table[tps no =3][RPM nos 0-5] {1000,800,500,550,600,600}, // alpha_map_table[tps no =4][RPM nos 0-5] {1000,800,500,550,600,600}}, // alpha_map_table[tps no =5][RPM nos 0-5] {0,120,160,300,600,600}, // amap_tps[0 - 5] (% x 10); {0,500,1000,1500,2000,2000}, // amap_rpm[0 - 5] 115200, // baud rate 900, // MAPOXLimit, Max MAP value (kPax10) where O2 closed loop active {1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}, // board types {0,0,0,0,0,0,0}, // spr_port {'<','<','<','<','<','<','<'}, // condition1 {'<','<','<','<','<','<','<'}, // condition2 {' ',' ',' ',' ',' ',' ',' '}, // cond12 {0,0,0,0,0,0,0}, {0,0,0,0,0,0,0},{0,0,0,0,0,0,0},{0,0,0,0,0,0,0}, {0,0,0,0,0,0,0},{0,0,0,0,0,0,0}, {0,0,0,0,0,0,0},{0,0,0,0,0,0,0},{0,0,0,0,0,0,0},{0,0,0,0,0,0,0}, // spr pin params 1,0, // accel tail duration (sec x 10) 20, // accel end pwidth enrichment (ms x 10) 0, // EgoAlg, 0=simple algorithm; 1=Prop err alg;2=PID w. Smith pred 100,20,0, // KP,KI,KD, PID coefficients in % 10,4000, // egoKdly1,2 = coefficients used to calculate ego transport // delay (ms) = Kdly1 + Kdly2*120000 / (map(kPax10)*rpm). // Defaults based on xpt delay of .1 s at wot, 1 s at idle 0,0, // Flex fuel option - modifies pw based on freq signal for // % alcohol, pad byte {50, 150}, // Table of fuel sensor freq(Hz) vs {100,163} // fuel pw correction in %. }; const unsigned char in1padding[N_PADDING(inputs1)] EEPROM_ATTR ={0}; const inputs2 in2flash EEPROM_ATTR = { {{{26, // ve_table[inj1][MAP/tps no =0][RPM no = 0] 26,29,34,40,46,50,55,58,61,61,60}, {29, // ve_table[inj1][MAP/tps no =1][RPM no = 0] 29,32,38,46,53,56,60,63,66,65,62}, {38, // ve_table[inj1][MAP/tps no =2][RPM no = 0] 37,39,44,53,61,65,67,69,73,71,66}, {43, // ve_table[inj1][MAP/tps no =3][RPM no = 0] 42,43,45,54,63,66,69,71,75,73,67}, {48, // ve_table[inj1][MAP/tps no =4][RPM no = 0] 46,48,50,58,65,69,71,73,77,75,69}, {52, // ve_table[inj1][MAP/tps no =5][RPM no = 0] 51,52,55,62,67,71,73,75,79,77,71}, {57, // ve_table[inj1][MAP/tps no =6][RPM no = 0] 59,61,65,69,72,76,78,81,85,85,80}, {61, // ve_table[inj1][MAP/tps no =7][RPM no = 0] 62,65,69,72,75,79,82,85,89,88,84}, {65, // ve_table[inj1][MAP/tps no =8][RPM no = 0] 66,69,73,76,78,82,86,90,93,92,88}, {68, // ve_table[inj1][MAP/tps no =9][RPM no = 0] 70,73,78,81,83,86,90,94,98,97,93}, {72, // ve_table[inj1][MAP/tps no =10][RPM no = 0] 77,82,87,90,93,95,100,105,109,108,103}, {74, // ve_table[inj1][MAP/tps no =11][RPM no = 0] 81,86,91,95,97,100,105,111,114,113,108}}, {{26, // ve_table[inj2][MAP/tps no =0][RPM no = 0] 26,29,34,40,46,50,55,58,61,61,60}, {29, // ve_table[inj2][MAP/tps no =1][RPM no = 0] 29,32,38,46,53,56,60,63,66,65,62}, {38, // ve_table[inj2][MAP/tps no =2][RPM no = 0] 37,39,44,53,61,65,67,69,73,71,66}, {43, // ve_table[inj2][MAP/tps no =3][RPM no = 0] 42,43,45,54,63,66,69,71,75,73,67}, {48, // ve_table[inj2][MAP/tps no =4][RPM no = 0] 46,48,50,58,65,69,71,73,77,75,69}, {52, // ve_table[inj2][MAP/tps no =5][RPM no = 0] 51,52,55,62,67,71,73,75,79,77,71}, {57, // ve_table[inj2][MAP/tps no =6][RPM no = 0] 59,61,65,69,72,76,78,81,85,85,80}, {61, // ve_table[inj2][MAP/tps no =7][RPM no = 0] 62,65,69,72,75,79,82,85,89,88,84}, {65, // ve_table[inj2][MAP/tps no =8][RPM no = 0] 66,69,73,76,78,82,86,90,93,92,88}, {68, // ve_table[inj2][MAP/tps no =9][RPM no = 0] 70,73,78,81,83,86,90,94,98,97,93}, {72, // ve_table[inj2][MAP/tps no =10][RPM no = 0] 77,82,87,90,93,95,100,105,109,108,103}, {74, // ve_table[inj2][MAP/tps no =11][RPM no = 0] 81,86,91,95,97,100,105,111,114,113,108}}}, {{157, // adv_table[MAP/tps no=0][RPM no=0], deg x 10 175,200,286,328,375,370,375,380,380,380,380}, {157, // adv_table[MAP/tps no=1][RPM no=0], deg x 10 178,201,282,324,370,370,370,375,380,380,380}, {156, // adv_table[MAP/tps no=2][RPM no=0], deg x 10 180,202,278,324,368,370,375,375,380,380,380}, {155, // adv_table[MAP/tps no=3][RPM no=0], deg x 10 182,204,274,323,364,370,370,375,375,380,380}, {155, // adv_table[MAP/tps no=4][RPM no=0], deg x 10 184,206,272,322,360,368,374,374,376,376,380}, {157, // adv_table[MAP/tps no=5][RPM no=0], deg x 10 186,207,268,321,360,366,372,375,375,375,375}, {158, // adv_table[MAP/tps no=6][RPM no=0], deg x 10 188,208,258,320,360,365,365,365,370,370,370}, {160, // adv_table[MAP/tps no=7][RPM no=0], deg x 10 185,205,250,317,358,360,362,362,362,362,362}, {160, // adv_table[MAP/tps no=8][RPM no=0], deg x 10 183,203,241,308,353,360,360,360,360,360,360}, {155, // adv_table[MAP/tps no=9][RPM no=0], deg x 10 175,200,235,299,348,360,360,360,360,360,360}, {151, // adv_table[MAP/tps no=10][RPM no=0], deg x 10 172,195,228,295,343,360,360,360,360,360,360}, {148, // adv_table[MAP/tps no=11][RPM no=0], deg x 10 168,190,216,282,335,360,360,360,360,360,360}} }; const unsigned char in2padding[N_PADDING(inputs2)] EEPROM_ATTR ={0}; // 512 = 1 block flash #ifndef GCC_BUILD #pragma ROM_VAR DEFAULT #pragma ROM_VAR OVF_ROM #endif // IAC stepper motor sequence const unsigned char IACCoilA[8] = {0,0,1,1,0,0,1,1}; const unsigned char IACCoilB[8] = {1,0,0,1,1,0,0,1}; // array of TC overflow numbers at which to increment secs cntr. const unsigned int TC_ovfla[60] = { 23, 46, 69, 92, 114, 137, 160, 183, 206, 229, 252, 275, 298, 320, 343, 366, 389, 412, 435, 458, 481, 504, 526, 549, 572, 595, 618, 641, 664, 687, 710, 732, 755, 778, 801, 824, 847, 870, 893, 916, 938, 961, 984, 1007, 1030, 1053, 1076, 1099, 1122, 1144, 1167, 1190, 1213, 1236, 1259, 1282, 1305, 1328, 1350, 1373 }; const char RevNum[20] = { // revision no: // only change for major rev and/or interface change. "MSII Rev 2.30000 " }, Signature[32] = { // program title. // Change this every time you tweak a feature. "** V2.36Embedded Code by B&G **" }; #ifndef GCC_BUILD #pragma ROM_VAR DEFAULT #endif // ram copy of inputs inputs1 inpram; inputs2 in2ram; // sensor variables int last_tps,last_map,tpsdot_ltch,mapdot_ltch; // fuel variables unsigned int pwcalc1,pwcalc2,pw_open,PrimeP,AWEV,AWC; unsigned int Fl1OCt_overflow,Fl2OCt_overflow; unsigned long Fl1TimerComp,Fl2TimerComp; unsigned char pwm1_on,pwm2_on; unsigned long pwm1_time,pwm2_time; // ignition variables unsigned char SPK,CHG, pulse_no,ign_state,ign_setpin, IgnOCpinstate,first_edis,PulseTol; long adv_us,charge_time,coil_dur_set; int ICt_overflow,IgnOCt_overflow,coil_dur,ic_adv_deg; unsigned long IgnTimerComp,dtpred; // IAC variables unsigned long motor_time; int motor_step, IACmotor_pos,last_iacclt; char IAC_moving,IACmotor_reset,IdleCtl; // General variables unsigned int mms,millisec,burn_flag,iacpwmctr; unsigned int TC_ovflow,TC_ov_ix; unsigned long lmms,t_enable_IC,t_chgoff,Rpm_Coeff,ltch_lmms,rcv_timeout,adc_lmms; unsigned int asecount; unsigned char flocker,tpsaclk,egocount,igncount,altcount,next_adc,first_adc, txmode,tble_idx,burn_idx,synch,trig_ret_mode,crank_trig_mode,reinit_flag, egopstat,afrSL, FSensStat; int ego1err,ego1errm1,ego2err,ego2errm1,sego1err,sego2err,egoKPX; unsigned int afrdl1,afrdl2,afrtgt_skip, FSens_Pd,FSensFreq; unsigned long tegoclk,tegoXpt,tegoupdate; /* Clocks: - igncount: counts up each tach pulse, cleared when hit Divider pulses (and injection occurs). - asecount: counts up each time igncount = 0 (each Divider pulses). - egocount: counts up each tach pulse, cleared when hits EgoCountCmp - tpsaclk: counts every .1 sec - altcount: flips 0,1,0,1... on each injection, resulting in firing alternate injector banks if Alternate option. */ unsigned int txcnt,txgoal,rxoffset,rxnbytes,rxcnt,tble_word,ntword; // CAN variables unsigned long cansendclk; char *canvar_blkptr[NO_VAR_BLKS]; unsigned short can_status; unsigned char can_clr_stat,can_reset,can_id; struct canmsg { /* CAN Xmt mssge ring buffer: can[0] is to hold Rx,TxISR messages, can[1] for main loop messages */ unsigned char cxno,cxno_in,cxno_out; unsigned char cx_msg_type[NO_CANMSG], cx_varblk[NO_CANMSG], cx_dest[NO_CANMSG],cx_varbyt[NO_CANMSG]; unsigned short cx_varoff[NO_CANMSG]; unsigned char cx_datbuf[NO_CANMSG][8]; // max msg data = 8 bytes } can[2]; // pointers for spare port pins volatile unsigned char *pPTMpin[8], *pPTTpin[8], *pPTApin0; unsigned char dummyReg,lst_pval[NPORT]; // rs232 Outputs to pc typedef struct { unsigned int seconds,pw1,pw2,rpm; // pw in usec int adv_deg; // adv in deg x 10 unsigned char squirt,engine,afrtgt1,afrtgt2; // afrtgt in afr x 10 /* ; Squirt Event Scheduling Variables - bit fields for "squirt" variable above inj1: equ 0 ; 0 = no squirt; 1 = inj squirting inj2: equ 1 ; Engine Operating/Status variables - bit fields for "engine" variable above ready: equ 0 ; 0 = engine not ready; 1 = ready to run (fuel pump on or ign plse) crank: equ 1 ; 0 = engine not cranking; 1 = engine cranking startw: equ 2 ; 0 = not in startup warmup; 1 = in startw enrichment warmup: equ 3 ; 0 = not in warmup; 1 = in warmup tpsaen: equ 4 ; 0 = not in TPS acceleration mode; 1 = TPS acceleration mode tpsden: equ 5 ; 0 = not in deacceleration mode; 1 = in deacceleration mode */ unsigned char wbo2_en1,wbo2_en2; // from wbo2 - indicates whether wb afr valid int baro,map,mat,clt,tps,batt,ego1,ego2,knock, // baro - kpa x 10 // map - kpa x 10 // mat, clt deg(C/F)x 10 // tps - % x 10 // batt - vlts x 10 // ego1,2 - afr x 10 // knock - volts x 100 egocor1,egocor2,aircor,warmcor, // all in % tpsaccel,tpsfuelcut,barocor,gammae, // tpsaccel - acc enrich(.1 ms units) // tpsfuelcut - % // barcor,gammae - % vecurr1,vecurr2,iacstep,cold_adv_deg, // vecurr - % // iacstep - steps // cold_adv_deg - deg x 10 tpsdot,mapdot, // tps, map rate of change - %x10/.1 sec, // kPax10 / .1 sec coil_dur, maf, kpa, // msx10 coil chge set by ecu // maf for future; kpa (=map or tps) fuelcor; // fuel composition correction - % unsigned char port_status; // Bits indicating spare port status. char rpad1; int spare[18]; unsigned long dt3; // delta t bet. rpm pulses (us) } variables; variables outpc, txbuf; #ifndef GCC_BUILD #pragma ROM_VAR OVF_ROM #endif typedef struct { unsigned int *addrRam; unsigned int *addrFlash; unsigned int n_bytes; } tableDescriptor; const tableDescriptor tables[NO_TBLES] = { { NULL, (unsigned int *)cltfactor_table, sizeof(cltfactor_table) }, { NULL, (unsigned int *)matfactor_table, sizeof(matfactor_table) }, { NULL, (unsigned int *)egofactor_table, sizeof(egofactor_table) }, { NULL, (unsigned int *)maffactor_table, sizeof(maffactor_table) }, { (unsigned int *)&inpram, (unsigned int *)&in1flash, sizeof(inputs1) }, { (unsigned int *)&in2ram, (unsigned int *)&in2flash, sizeof(inputs2) }, { (unsigned int *)&txbuf, NULL, sizeof(txbuf) } }; #ifndef GCC_BUILD #pragma ROM_VAR DEFAULT #endif #define tableInit(iTable) (void)memcpy(tables[iTable].addrRam, tables[iTable].addrFlash, tables[iTable].n_bytes) #define tableByteRam(iTable, iByte) ((unsigned char *)tables[iTable].addrRam + iByte) #define tableWordRam(iTable, iWord) (tables[iTable].addrRam + iWord) #define tableByteFlash(iTable, iByte) ((unsigned char *)tables[iTable].addrFlash + iByte) #define tableWordFlash(iTable, iWord) (tables[iTable].addrFlash + iWord) #define tableBytes(iTable) (tables[iTable].n_bytes) #define tableWords(iTable) ((tables[iTable].n_bytes+1)/2) // Round up // Prototypes - Note: ISRs prototyped above. void main(void) FAR_TEXT1_ATTR; void ign_reset(void); void get_adc(char chan1, char chan2); int move_IACmotor(void) TEXT1_ATTR; void fburner(unsigned int* progAdr, unsigned int* bufferPtr, unsigned int no_words) TEXT1_ATTR; void tburner(char erase_write, unsigned int* addr, unsigned int word) FAR_TEXT1_ATTR; int ign_table(unsigned int rpm, int map) TEXT1_ATTR; int cold_ign_table(int clt) TEXT1_ATTR; int barocor_table(int baro) TEXT1_ATTR; int aircor_table(int mat) TEXT1_ATTR; int warmcor_table(int clt) TEXT1_ATTR; int iaccmd_table(int clt) TEXT1_ATTR; int tpscor_table(int tpsdot) TEXT1_ATTR; int mapcor_table(int mapdot) TEXT1_ATTR; int vecalc_table(unsigned int rpm, int map, char inj) TEXT1_ATTR; int afrcalc_table(unsigned int rpm, int map, char inj) TEXT1_ATTR; int alphcalc_table(unsigned int rpm, int tps) TEXT1_ATTR; void set_spr_port(char port, char val) TEXT1_ATTR; int coil_dur_table(int delta_volt) TEXT1_ATTR; unsigned char afrLF_calc(long t) TEXT1_ATTR; void CanInit(void) TEXT1_ATTR; void can_xsub01(void) FAR_TEXT1_ATTR; void Flash_Init(unsigned long oscclk) TEXT1_ATTR; void Flash_Erase_Sector(unsigned int *address) FAR_TEXT1_ATTR; void Flash_Write_Word(unsigned int *address, unsigned int data) TEXT1_ATTR; extern void DoOnStack(unsigned int* address) TEXT1_ATTR; extern void reboot(void) FAR_TEXT1_ATTR; extern void monitor(void) FAR_TEXT1_ATTR; void main(void) { int ix; int tmp1,tmp2,tmp3,tmp4,wrmtmp,tpsatmp,tpsaccel_end; unsigned int utmp1; long lsum,lsum1,lsum2,beta,ltmp; int start_clt; unsigned int tcrank_done,tcold_pos; int ego1step,ego2step; char motflg,ctmp1,ctmp2; //PPAGE = 0x3C; // initalize PLL - reset default is Oscillator clock // 8 MHz oscillator, PLL freq = 48 MHz, 24 MHz bus, // divide by 16 for timer of 2/3 usec tic PLLCTL &= 0xBF; // Turn off PLL so can change freq SYNR = 0x02; // set PLL/ Bus freq to 48/ 24 MHz REFDV = 0x00; PLLCTL |= 0x40; // Turn on PLL // wait for PLL lock while (!(CRGFLG & 0x08)); CLKSEL = 0x80; // select PLL as clock // wait for clock transition to finish for (ix = 0; ix < 60; ix++); // open flash programming capability Flash_Init(8000); //inp_spare used to force inpflash, flashve_table into sectors. // Must use in program or it won't use up the entire sector. POS CW // ignores the pragma making this stupid statement necessary. ix = in1padding[0]; ix = in2padding[0]; // load all user inputs from Flash to RAM tableInit(4); tableInit(5); // set up i/o ports // - port M2 is fast idle solenoid // - port M3 is inj led // - port M4 is accel led // - port M5 is warmup led // - port E4 is fuel pump // - port P5 is bootload pin (input) // - port T6 is IAC Coil A // - port T7 is IAC Coil B // - port B4 is IAC Enable // - port A0 is Knock Enable (if set, means retard timing) DDRM |= 0xFC; // port M - all outputs, full drive by default DDRE |= 0x10; // port E4 - output DDRT |= 0xC0; // port T6-7 - outputs DDRB |= 0x10; // port B4 - output DDRA |= 0x01; // port A0 - output // Set pointers to real port addresses for(ix = 0; ix < 8; ix++) { pPTMpin[ix] = pPTM; pPTTpin[ix] = pPTT; } pPTApin0 = pPORTA; // reset those pointers to pins which are to be used as alternate outputs outpc.port_status = 0; for(ix = 0;ix < NPORT; ix++) { if(inpram.spr_port[ix]) { // pin output from normal function goes to dumy reg in ram if(ix < 4) pPTMpin[ix + 2] = &dummyReg; else if(ix < 6) pPTTpin[ix + 2] = &dummyReg; else pPTApin0 = &dummyReg; set_spr_port((char)ix, inpram.init_val[ix]); lst_pval[ix] = inpram.init_val[ix]; } } // turn off fidle solenoid, leds *pPTMpin[2] &= ~0x04; *pPTMpin[3] &= ~0x08; *pPTMpin[4] &= ~0x10; *pPTMpin[5] &= ~0x20; PORTE &= ~0x10; // turn off fuel pump *pPTTpin[6] &= ~0xC0; // turn off IAC coils (do both pins[6,7] in 1 cmd) if(inpram.IdleCtl == 2) { PORTB |= 0x10; // disable current to motor (set bit= 1) } else { // IdleCtl = 3, 5 or no stepper motor (set bit = 0) PORTB &= ~0x10; // enable current to motor always(set bit= 0) } *pPTApin0 &= ~0x01; // no knock signal // set all unused (even unbonded) ports to inputs with pullups DDRA &= 0x01; DDRB &= 0x10; DDRE &= 0x10; PUCR |= 0x13; // enable pullups for ports E, B and A DDRP = 0x00; PERP = 0xFF; // enable pullup resistance for port P DDRJ &= 0x3F; PERJ |= 0xC0; // enable pullup resistance for port J6,7 DDRS &= 0xF3; PERS |= 0x0C; // enable pullup resistance for port S2,3 reinit_flag = 0; // set up CRG RTI Interrupt for .128 ms clock. CRG from 8MHz oscillator. mms = 0; // .128 ms tics millisec = 0; // 1.024 ms clock (8 tics) for adcs lmms = 0; cansendclk = 7812; ltch_lmms = 0; outpc.seconds = 0; // (1.0035) secs burn_flag = 0; RTICTL = 0x10; // load timeout register for .128 ms (smallest possible) CRGINT |= 0x80; // enable interrupt CRGFLG = 0x80; // clear interrupt flag (0 writes have no effect) // Set up SCI (rs232): SCI BR reg= BusFreq(=24MHz)/16/baudrate //inpram.baud = 115200; // Use this for debugging corrupted flash sectors. SCI0BDL = (unsigned char)(1500000/inpram.baud); ltmp = (150000000/inpram.baud) - ((long)SCI0BDL*100); if(ltmp > 50)SCI0BDL++; // round up //inpram.baud = in1flash.baud; // See above. SCI0CR1 = 0x00; SCI0CR2 = 0x24; // TIE=0,RIE = 1; TE=0,RE =1 txcnt = 0; rxcnt = 0; txmode = 0; txgoal = 0; rcv_timeout = 0xFFFFFFFF; // Initialize timers: // Note: Inj OC and PWM are Nanded. // -when turn on inj1 i/o, also enable pwm1 @ 100 % duty & // set pwm1 timer = 0 (.1 ms units). // -When pwm1 timer = InjPWMTim, set duty cycle to InjPWMDty. // -when done injecting, turn off inj1 i/o and pwm1. // TC0: Input capture (tach) - no pullup (default) for MSII // TC1: Output compare for injector output - bank 1 // TC2: PWM2 for injector bank 1 // TC3: Output compare for injector output - bank 2 // TC4: PWM4 for injector bank 2 // TC5: Ouput compare for ignition output SPK = 1 - inpram.spkout_hi_lo; // 0=spk low, but inverted logic CHG = 1 - SPK; // after transistor TIOS |= 0x3E; // Timer ch 0 = IC, ch 1-5 = OC & PWM, // ch 6,7 = I/O output // Set prescaler to 16. This divides bus clk (= PLLCLK/2 = 24 MHz) // by 16. This gives 1.5 MHz timer, 1 tic = 2/3 us. TSCR2 = 0x04; TCTL2 |= 0x88; // bit OM1,3,5 = 1. OC output line high or // low iaw OL1,3,5 (not toggle or disable) TCTL1 |= 0x08; TSCR2 |= 0x80; // enable timer overflow interrupt (TOI) // ensure not charging ignition coil TCTL1 = (TCTL1 & 0xFB) | (SPK << 2); // set OC o/p in OL5 CFORC |= 0x20; // force output in OL5 onto OC pin IgnOCpinstate = SPK; t_chgoff = 0xFFFFFFFF; // Set up injector PWMs - PWM2, 4 MODRR = 0x14; // Make Port T pins 2,4 be PWM PWME = 0; // disable pwms initially PWMPOL = 0x14; // polarity = 1, => go hi when start PWMCLK = 0x14; // select scaled clocks SB, SA PWMPRCLK = 0x00; // prescale A,B clocks = bus = 24 MHz PWMSCLA = 0x0C; // pwm clk = SA clk/(2*SCLA) = 24MHz/24 = 1 us clk PWMSCLB = 0x0C; // pwm clk = SB clk/(2*SCLB) = 24MHz/24 = 1 us clk PWMCAE = 0x00; // standard left align pulse: ----- // | |______ // duty // <---period---> PWMPER2 = inpram.InjPWMPd; // set PWM period (us) PWMPER4 = inpram.InjPWMPd; // set PWM period (us) ign_reset(); first_edis = 1; // IACStart = enough steps to set IAC wide open. // Set current IAC position to IACStart (all way closed), then move // to the 0 position (wide open - fast idle) and zero out. After // this all subsequent IAC commands will gradually close air passage // as clt temp rises. // Note: Ignore all move commands until finished current move. IdleCtl = inpram.IdleCtl; IAC_moving = 0; motor_step = -1; if(IdleCtl == 4) IACmotor_reset = 1; else IACmotor_reset = 0; outpc.iacstep = inpram.IACStart; // set current motor step position // to closed since don't have actual position. IACmotor_pos = 0; // command motor step position to wide open if(IdleCtl > 1) (void)move_IACmotor(); last_iacclt = -3200; iacpwmctr = 0; // set up ADC processing // ATD0 // - AN0 is MAP // - AN1 is MAT // - AN2 is CLT // - AN3 is TPS // - AN4 is BAT // - AN5 is EGO1 (NB or non-MS single chan WB) // - AN6 is Spare or BARO (BaroOption =2) or EGO2 (EgoOption = 3) // - AN7 is Spare or KNOCK // Set up ADCs so they continuously convert, then read result registers // every millisecond next_adc = 0; // specifies next adc channel to be read ATD0CTL2 = 0x40; // leave interrupt disabled, set fast flag clear ATD0CTL3 = 0x00; // do 8 conversions/ sequence ATD0CTL4 = 0x67; // 10-bit resoln, 16 tic cnvsn (max accuracy), // prescaler divide by 16 => 2/3 us tic x 18 tics ATD0CTL5 = 0xB0; // right justified,unsigned, continuous cnvsn, // sample 8 channels starting with AN0 ATD0CTL2 |= 0x80; // turn on ADC0 // wait for ADC engine charge-up or P/S ramp-up for(ix = 0; ix < 160; ix++) { while(!(ATD0STAT0 >> 7)); // wait til conversion complete ATD0STAT0 = 0x80; } // get all adc values first_adc = 1; get_adc(0,7); first_adc = 0; if(inpram.BaroOption == 0) outpc.baro = 1000; // kPa x 10 else if(inpram.BaroOption == 1) outpc.baro = outpc.map; // kPa x 10 adc_lmms = lmms; // Initialize variables flocker = 0; Rpm_Coeff = 120000000 / inpram.no_cyl; pw_open = inpram.InjOpen; pwcalc1 = 0; // us outpc.pw1 = pwcalc1; pwcalc2 = 0; // us outpc.pw2 = pwcalc2; outpc.adv_deg = 0; // crank deg x 10 ic_adv_deg = outpc.adv_deg - inpram.adv_offset; coil_dur = inpram.max_coil_dur; // msx10 coil_dur_set = coil_dur * 100; // us outpc.coil_dur = (int)(coil_dur_set / 100); // msx10 PulseTol = inpram.CrnkTol; outpc.kpa = outpc.map; // kPa x 10 last_tps = outpc.tps; // % x 10 last_map = outpc.map; // kPa x 10 outpc.afrtgt1 = 147; // afr x 10 outpc.afrtgt2 = outpc.afrtgt1; outpc.aircor = 100; outpc.vecurr1 = 100; outpc.vecurr2 = outpc.vecurr1; outpc.barocor = 100; outpc.warmcor = 100; outpc.cold_adv_deg = 0; // crank deg x 10 outpc.wbo2_en1 = 1; outpc.wbo2_en2 = 1; outpc.egocor1 = 100; outpc.egocor2 = 100; outpc.tpsfuelcut = 100; outpc.gammae = 100; outpc.tpsaccel = 0; tcrank_done = 0xFFFF; tcold_pos = 0xFFFF; FSensStat = 0; FSens_Pd = 0; outpc.fuelcor = 100; // % /* set variable block addresses to be used for CAN communications */ canvar_blkptr[0] = (char *)&inpram; canvar_blkptr[1] = (char *)&outpc; for(ix = 2;ix < NO_VAR_BLKS; ix++) { // rest spares for now canvar_blkptr[ix] = 0; } /* Initialize CAN comms */ can_reset = 0; can_id = 0; // MS-II is processor 0 CanInit(); // make IC highest priority interrupt HPRIO = 0xEE; // enable global interrupts ENABLE_INTERRUPTS // Prime Pulse - shoot 1 prime pulse of length PrimeP ms x 10 start_clt = outpc.clt; if(outpc.clt >= inpram.temp_table[NO_TEMPS-1]) { PrimeP = (unsigned short)inpram.PrimePH; AWEV = (unsigned short)inpram.AWEVH; AWC = (unsigned short)inpram.AWCH; } else if(outpc.clt <= inpram.temp_table[0]) { PrimeP = (unsigned short)inpram.PrimePU; AWEV = (unsigned short)inpram.AWEVU; AWC = (unsigned short)inpram.AWCU; } else { ltmp = (outpc.clt - inpram.temp_table[0]) * (long)(inpram.PrimePH - inpram.PrimePU); PrimeP = (unsigned short)(inpram.PrimePU + (ltmp / (inpram.temp_table[NO_TEMPS-1] - inpram.temp_table[0]))); // msx10 ltmp = (outpc.clt - inpram.temp_table[0]) * (long)(inpram.AWEVH - inpram.AWEVU); AWEV = (unsigned short)(inpram.AWEVU + (ltmp / (inpram.temp_table[NO_TEMPS-1] - inpram.temp_table[0]))); // % ltmp = (outpc.clt - inpram.temp_table[0]) * (long)(inpram.AWCH - inpram.AWCU); AWC = (unsigned short)(inpram.AWCU + (ltmp / (inpram.temp_table[NO_TEMPS-1] - inpram.temp_table[0]))); // cycles } if(PrimeP) { outpc.pw1 = PrimeP * 100; // us outpc.pw2 = outpc.pw1; // Turn on fuel pump PORTE |= 0x10; // Turn On injectors & PWMs TCTL2 |= 0x44; // set outputs hi in OL1,3 CFORC |= 0x0A; // force high // set PWM duty (on time) to 100 % PWMDTY2 = PWMPER2; PWMDTY4 = PWMDTY2; pwm1_on = 0; pwm1_time = 0; pwm2_on = 0; pwm2_time = 0; PWMCNT2 = 0x00; PWMCNT4 = 0x00; PWME |= 0x14; // enable PWMs // Set up to turn Off injectors when get to pw us Fl1TimerComp = TCNT + ((3*(long)outpc.pw1)>>1); // 2/3 us TCTL2 &= ~0x44; // set outputs lo in OL1,3 Fl1OCt_overflow = Fl1TimerComp >> 16; Fl1TimerComp &= 0xFFFF; Fl2TimerComp = Fl1TimerComp; Fl2OCt_overflow = Fl1OCt_overflow; TC1 = (unsigned short)Fl1TimerComp; // load OC compare register TC3 = (unsigned short)Fl2TimerComp; // load OC compare register if(Fl1OCt_overflow <= 1) { Fl1OCt_overflow = 0; Fl2OCt_overflow = 0; // Enable OC interrupt TIE |= 0x0A; } else { // Disable OC interrupt TIE &= ~0x0A; TFLG1 = 0x0A; // clear OC interrupt flag } // turn on inj led *pPTMpin[3] |= 0x08; outpc.squirt |= 0x03; // both injectors squirting outpc.engine |= 0x01; // engine in ready to run status // Note: prime pulse should be over (65 ms max) before cranking starts } // main loop for (;;) { if((lmms - adc_lmms) > 78) { // every 10 ms (78 x .128 ms clk) adc_lmms = lmms; // read 10-bit ADC results, convert to engineering units and filter next_adc++; if(next_adc > 7)next_adc = 1; // skip map (in Timer Int) if(next_adc == 3)next_adc++; // skip tps (in Timer Int) if(next_adc == 5)next_adc++; // do ego1,2 together if(inpram.EgoAlg == 0) { // get ego1,2 on every pass (get in ego algorithm for EgoAlg=1,2) if(inpram.BaroOption != 2) { get_adc(5,6); // get ego1,2 if(next_adc == 6) next_adc++; } else { get_adc(5,5); // get ego1 outpc.ego2 = outpc.ego1; } } get_adc(next_adc,next_adc); // get one channel on each pass } if(inpram.BaroOption == 0) { outpc.barocor = 100; } else { // barometric correction (%) outpc.barocor = barocor_table(outpc.baro); } outpc.aircor = aircor_table(outpc.mat); // airdensity correction (%) /* Determine if in Speed-density or Alpha-N mode. If in Alpha-N mode, set the variable "kpa" = "tps". This will not break anything, since this check is performed again when multiplying MAP against the enrichments, and the SCI version of the variable is MAP, not kpa. */ if(!inpram.FuelAlpha) { outpc.kpa = outpc.map; // kpa x 10 } else if(outpc.rpm < inpram.alpha_lorpm) { outpc.kpa = alphcalc_table(outpc.rpm,outpc.tps); // kpa x 10 } else if(outpc.rpm > inpram.alpha_hirpm) { outpc.kpa = outpc.map; // kpa x 10 } else { beta = ((long)100 * (outpc.rpm - inpram.alpha_lorpm)) / (inpram.alpha_hirpm - inpram.alpha_lorpm); tmp1 = (short)((alphcalc_table(inpram.alpha_lorpm,outpc.tps) * (100 - beta)) / 100); outpc.kpa =(short)(tmp1 + ((outpc.map * beta) / 100)); } // check for stall if(((outpc.engine & 0x01) == 0) || (outpc.rpm == 0))goto BURN_FLASH; // check idle control if(IdleCtl == 1) { if(outpc.clt < inpram.FastIdle) *pPTMpin[2] |= 0x04; // turn on fast idle solenoid if(outpc.clt < inpram.FastIdle - inpram.IdleHyst) *pPTMpin[2] |= 0x04; // turn on fast idle solenoid else if(outpc.clt > inpram.FastIdle) *pPTMpin[2] &= ~0x04; // turn off fast idle solenoid } else if(IACmotor_reset && ((IdleCtl >= 2) && (IdleCtl <= 5))) { motflg = 0; // after cranking flare back to normal temperature dependent pos if((outpc.seconds >= tcrank_done) && (outpc.seconds <= tcrank_done + inpram.IACcrankxt)) { IACmotor_pos = iaccmd_table(outpc.clt); if(IACmotor_pos > inpram.IACcrankpos) { tmp1 =(int)((long)(inpram.IACcrankpos - IACmotor_pos) * (tcrank_done + inpram.IACcrankxt - outpc.seconds) / inpram.IACcrankxt); IACmotor_pos += tmp1; } motflg = 1; } // switch to time based control if cold enough at startup else if((outpc.seconds >= tcold_pos) && (outpc.seconds <= tcold_pos + inpram.IACcoldxt)) { IACmotor_pos = iaccmd_table(outpc.clt); if(IACmotor_pos > inpram.IACcoldpos) { tmp1=(int)((long)(inpram.IACcoldpos - inpram.iacstep_table[NO_TEMPS-1]) *(tcold_pos + inpram.IACcoldxt - outpc.seconds) /inpram.IACcoldxt); IACmotor_pos = inpram.iacstep_table[NO_TEMPS-1] + tmp1; } motflg = 1; } // check if there has been a significant change in clt temp else if((outpc.clt < last_iacclt - inpram.IdleHyst) || (outpc.clt > last_iacclt)) { IACmotor_pos = iaccmd_table(outpc.clt); if((outpc.rpm < inpram.crank_rpm) && (IACmotor_pos > inpram.IACcrankpos)) IACmotor_pos = inpram.IACcrankpos; // want IAC open at // least this much during cranking regardless of temp motflg = 1; } if(motflg && (outpc.iacstep != IACmotor_pos)) { // move IAC motor to new step position if(move_IACmotor()) last_iacclt = outpc.clt; } // check if/ when to start extended time-based idle control if(start_clt < inpram.IACcoldtmp) { if((outpc.seconds > tcrank_done) && (tcold_pos == 0xFFFF) && (IACmotor_pos > inpram.IACcoldpos)) tcold_pos = outpc.seconds; } if((inpram.IdleCtl == 5) && (outpc.seconds > 900)) { IdleCtl = 2; if(!IAC_moving) PORTB |= 0x10; // disable current to stepper motor(bit=1) } } /************************************************************************** ** ** Cranking Mode ** ** Pulsewidth is directly set by the coolant temperature to a value of ** CWU (at temp_table[0]) and CWH (at temp_table[NO_TEMPS -1]). ** The value is interpolated at clt. ** **************************************************************************/ if(outpc.rpm < inpram.crank_rpm) { PulseTol = inpram.CrnkTol; tcrank_done = 0xFFFF; outpc.engine |= 0x02; // set cranking bit outpc.engine &= ~0x0C; // clr starting warmup bit & warmup bit if(outpc.tps > inpram.TPSWOT) { pwcalc1 = 300; // usec (.3 ms for Flood Clear) pwcalc2 = pwcalc1; goto DIST_ADV; } // KJW if outside the interpolation range, rail to CWU or CWH as // appropriate, else interpolate if(outpc.clt >= inpram.temp_table[NO_TEMPS-1]) pwcalc1 = (unsigned short)inpram.CWH * 100; else if(outpc.clt <= inpram.temp_table[0]) pwcalc1 = (unsigned short)inpram.CWU * 100; else { ltmp = (outpc.clt - inpram.temp_table[0]) * (long)(inpram.CWH - inpram.CWU) * 100; pwcalc1 = (unsigned short)(inpram.CWU * (long)100 + (ltmp / (inpram.temp_table[NO_TEMPS-1] - inpram.temp_table[0]))); // usec } pwcalc2 = pwcalc1; goto DIST_ADV; } else if(tcrank_done == 0xFFFF)tcrank_done = outpc.seconds; /************************************************************************** ** ** Warm-up and After-start Enrichment Section ** ** The Warm-up enrichment is a linear interpolated value for the current clt ** temperature from warmen_table[NO_TEMPS] vs temp_table[NO_TEMPS]. The ** interpolation is done in subroutine warmcor_table. ** ** Also, the after-start enrichment value is calculated and applied here - it ** is an added percent value on top of the warmup enrichment, and it is applied ** for the number of ignition cycles specified in AWC. This enrichment starts ** at a value of AWEV at first, then it linearly interpolates down to zero ** after AWC cycles. ** ** If (startw, engine is set) then: ** compare if (AWC > 0) then: ** interpolate for warmup enrichment ** else clear startw bit in engine ** **************************************************************************/ wrmtmp = outpc.warmcor; if(outpc.engine & 0x02) { // if engine cranking outpc.engine &= ~0x02; // clear crank bit outpc.engine |= 0x0C; // set starting warmup bit & warmup bit asecount = 0; PulseTol = inpram.ASTol; } wrmtmp = warmcor_table(outpc.clt); // % outpc.cold_adv_deg = cold_ign_table(outpc.clt); // deg x 10 if(wrmtmp == 100) { // done warmup outpc.engine &= ~0x0C; // clear start warmup bit & warmup bit *pPTMpin[5] &= ~0x20; // clear warmup led PulseTol = inpram.PulseTol; goto END_WRM; } *pPTMpin[5] |= 0x20; // set warmup led outpc.engine |= 0x08; // set warmup bit if(!(outpc.engine & 0x04)) // if starting warmup bit clear goto END_WRM; if(asecount > AWC) { outpc.engine &= ~0x04; // clear start warmup bit PulseTol = inpram.PulseTol; goto END_WRM; } if(AWC > 0) { utmp1 = AWEV * asecount; wrmtmp += (AWEV - (utmp1 / AWC)); } END_WRM: outpc.warmcor = wrmtmp; /************************************************************************** ** ** Throttle Position Acceleration Enrichment ** ** Method is the following: ** ** ** ACCELERATION ENRICHMENT: ** If (tpsdot < 0) goto DEACCELERATION_ENRICHMENT ** If tpsdot > tpsthresh and TPSAEN bit = 0 then (acceleration enrichment): ** { ** 1) Set acceleration mode ** 2) Continuously determine rate-of-change of throttle, and perform ** interpolation of table values to determine acceleration ** enrichment amount to apply. ** } ** If (TPSACLK > TpsAsync) and TPSAEN is set then: ** { ** 1) Clear TPSAEN bit in engine ** 2) Set TPSACCEL to 0 ** 3) Go to EGO Delta Step Check Section ** } ** Enrichment tail-off pulsewidth: ** ** ------------------ tpsaccel ** | |\ ** | | \ ** | | \ ** | | \ ____ TpsAccel2 ** | | | ** | | | ** --------------------------- ** <--TpsAsync--><-TpsAsync2-> ** ** ** DEACCELERATION ENRICHMENT: ** If (-tpsdot) > tpsthresh then (deceleration fuel cut) ** { ** If (TPSAEN = 1) then: ** { ** 1) TPSACCEL = 0 (no acceleration) ** 2) Clear TPSAEN bit in ENGINE ** 3) Go to EGO Delta Step ** } ** If (RPM > 1500 then (fuel cut mode): ** { ** 1) Set TPSACCEL value to TPSDQ ** 2) Set TPSDEN bit in ENGINE ** 3) Go to EGO Delta Step Check Section ** } ** } ** else ** { ** If (TPSDEN = 1) then ** { ** 1) Clear TPSDEN bit in ENGINE ** 2) TPSACCEL = 0 ** 3) Go to EGO Delta Step Check Section ** } ** } ** **************************************************************************/ tpsatmp = outpc.tpsaccel; DISABLE_INTERRUPTS tpsdot_ltch = outpc.tpsdot; mapdot_ltch = outpc.mapdot; ENABLE_INTERRUPTS if(tpsdot_ltch < 0)goto TDE; // we are decelerating if(outpc.engine & 0x10)goto AE_COMP_SHOOT_AMT; // if accel enrich bit set if(((inpram.Tps_acc_wght == 0) || (tpsdot_ltch < inpram.TpsThresh)) && ((inpram.Tps_acc_wght == 100) || (mapdot_ltch < inpram.MapThresh))) goto TAE_CHK_TIME; // start out using first element - determine actual next time around tpsatmp = (((short)inpram.tpsen_table[0] * inpram.Tps_acc_wght) + ((short)inpram.mapen_table[0] * (100 - inpram.Tps_acc_wght))) / 100; tpsaclk = 0; // incremented in .1 sec timer outpc.engine |= 0x10; // set tpsaen bit outpc.engine &= ~0x20; // clear tpsden bit *pPTMpin[4] |= 0x10; // set accel led goto END_TPS; /* First, calculate Cold temperature add-on enrichment value from coolant value TPSACOLD at min temp & 0 at high temp. Then determine cold temperature multiplier value ACCELMULT (in percent). Next, Calculate Shoot amount (quantity) for acceleration enrichment from table. Find bins (between) for corresponding TPSDOT and MAPDOT, and linear interpolate to find enrichment amount from table. This is continuously checked every time thru main loop while in acceleration mode, and the highest value is latched and used. The final acceleration enrichment (in .1 ms units) applied is AE = (((Alookup(TPSDOT)*Tps_acc_wght + Alookup(MAPDOT)*(100 - Tps_acc_wght)) /100) * ACCELMULT/100) + TPSACOLD. */ AE_COMP_SHOOT_AMT: if(tpsaclk <= inpram.TpsAsync) { tmp1 = (short)inpram.Tpsacold - (short)((inpram.Tpsacold * (long)(outpc.clt - inpram.temp_table[0]) / (inpram.temp_table[NO_TEMPS-1] - inpram.temp_table[0]))); // in .1 ms tmp2 = (short)inpram.AccMult + (short)(((100 - inpram.AccMult) * (long)(outpc.clt - inpram.temp_table[0]) / (inpram.temp_table[NO_TEMPS-1] - inpram.temp_table[0]))); // in % if(inpram.Tps_acc_wght > 0) { tmp3 = tpscor_table(tpsdot_ltch); // .1 ms units } else tmp3 = 0; if(inpram.Tps_acc_wght < 100) { tmp4 = mapcor_table(mapdot_ltch); // .1 ms units } else tmp4 = 0; tmp3 = ((tmp3 * inpram.Tps_acc_wght) + (tmp4 * (100 - inpram.Tps_acc_wght))) / 100; tmp3 = (tmp3 * tmp2) / 100; if(tmp3 > 200) tmp3 = 200; // rail at 20 ms tmp3 += tmp1; if(tmp3 > tpsatmp) tpsatmp = tmp3; // make > tps/mapen_table entry for lowest tps/mapdot // plus latch and hold largest pw tpsaccel_end = tpsatmp; // latch last tpsaccel before tailoff } else { // tailoff enrichment pulsewidth if(inpram.TpsAsync2 > 0) { tpsatmp = tpsaccel_end + (short)(((inpram.TpsAccel2 - tpsaccel_end) * (long)(tpsaclk - inpram.TpsAsync)) / inpram.TpsAsync2); } else tpsatmp = 0; } TAE_CHK_TIME: // check if accel is done // if tps decel bit not set, accel bit is if(!(outpc.engine & 0x20) && (outpc.engine & 0x10)) { if(tpsaclk < (inpram.TpsAsync + inpram.TpsAsync2))goto END_TPS; } outpc.engine &= ~0x10; // clear tps accel bit outpc.tpsfuelcut = 100; tpsatmp = 0; *pPTMpin[4] &= ~0x10; // clear accel led outpc.engine &= ~0x20; // clear tps decel bit goto END_TPS; TDE: // decel if((-tpsdot_ltch) < inpram.TpsThresh)goto TDE_CHK_DONE; if(outpc.engine & 0x10) { // if tps accel bit set outpc.tpsfuelcut = 100; tpsatmp = 0; outpc.engine &= ~0x10; // clear tps accel bit *pPTMpin[4] &= ~0x10; // clear accel led outpc.engine &= ~0x20; // clear tps decel bit goto END_TPS; } if(outpc.rpm < 1500)goto END_TPS; outpc.tpsfuelcut = inpram.TPSDQ; // in % outpc.engine |= 0x20; // set tps decel bit outpc.engine &= ~0x10; // clear tps accel bit *pPTMpin[4] &= ~0x10; // clear accel led goto END_TPS; TDE_CHK_DONE: // ** Jedrik bug fix if(outpc.engine & 0x30) { // if decel or just finished accel outpc.engine &= ~0x30; // clear tps decel, accel bits outpc.tpsfuelcut = 100; *pPTMpin[4] &= ~0x10; // clear accel led tpsatmp = 0; } END_TPS: outpc.tpsaccel = tpsatmp; /************************************************************************** ** ** Exhaust Gas Oxygen Sensor Measurement Section ** **************************************************************************/ if( (inpram.EgoOption == 0) || (outpc.rpm < inpram.RPMOXLimit) || (outpc.engine & 0x30) || // engine accel/ decel (outpc.clt < inpram.EgoTemp) || (outpc.tps > inpram.TPSOXLimit) || (outpc.map > inpram.MAPOXLimit) || (outpc.seconds < 30)) { outpc.egocor1 = 100; outpc.egocor2 = outpc.egocor1; // get ego1,2 from sensor get_adc(5,6); egopstat = 0; // out of ego closed PID loop goto VETABLELOOKUP; } if(inpram.EgoAlg == 0) { // simple (non-pid) ego closed loop if(egocount < inpram.EgoCountCmp)goto VETABLELOOKUP; // check if rich/ lean after every EgoCountCmp ignition pulses // get ego1,2 from sensor get_adc(5,6); egocount = 0; if(inpram.EgoOption == 1) { // NBO2 outpc.afrtgt1 = inpram.AFRTarget; outpc.afrtgt2 = inpram.AFRTarget; if(outpc.ego1 > outpc.afrtgt1) { // O2_IS_LEAN ego1step = (int)inpram.EgoStep; } else { // O2_IS_RICH ego1step = -(int)inpram.EgoStep; } ego2step = ego1step; } else if(inpram.EgoOption >= 2) { // WBO2 // calculate target AFR outpc.afrtgt1 = (unsigned char)afrcalc_table(outpc.rpm, outpc.kpa, 0); // afr x 10 if(inpram.dual_tble_optn) outpc.afrtgt2 = (unsigned char)afrcalc_table(outpc.rpm, outpc.kpa, 1); // afr x 10 else outpc.afrtgt2 = outpc.afrtgt1; // calculate error ego1step = (inpram.egoKP * (outpc.ego1 - outpc.afrtgt1)) / outpc.afrtgt1; ego2step = (inpram.egoKP * (outpc.ego2 - outpc.afrtgt2)) / outpc.afrtgt2; } // end EgoOption = 2 } // end EgoAlg = 0 else { // Prop err corr with transport delay or // PID algorithm with Smith predictor if(egopstat == 0) { // set up for ego closed P/PID loop egopstat = 1; tegoclk = 0; ego1err = 0; sego1err = 0; ego1errm1 = ego1err; ego2err = 0; sego2err = 0; ego2errm1 = ego2err; outpc.egocor1 = 100; outpc.egocor2 = 100; afrtgt_skip = 0; afrdl1 = outpc.afrtgt1; afrdl2 = outpc.afrtgt2; } if(lmms < tegoclk)goto VETABLELOOKUP; // get ego1,2 from sensor get_adc(5,6); // update correction // calculate target AFR if(inpram.EgoOption == 1) { // NBO2 outpc.afrtgt1 = inpram.AFRTarget; outpc.afrtgt2 = inpram.AFRTarget; } else if(inpram.EgoOption >= 2) { // WBO2 outpc.afrtgt1 = (unsigned char)afrcalc_table(outpc.rpm, outpc.kpa, 0); // afr x 10 if(inpram.dual_tble_optn) outpc.afrtgt2 = (unsigned char)afrcalc_table(outpc.rpm, outpc.kpa, 1); // afr x 10 else outpc.afrtgt2 = outpc.afrtgt1; } // go through pid/Smith pred algorithm tegoclk = lmms + EGODT; // .128 tics if(outpc.rpm > 0) { ltmp = inpram.egoKdly1 + (((long)(inpram.egoKdly2 * 120000) / outpc.map) / outpc.rpm); // sensor + transport delay (ms) tegoXpt = (ltmp * 1000) / 128; // .128 tics } else { tegoXpt = 7812; // = 1 sec in .128 tics } if(inpram.EgoAlg == 2) { if(afrtgt_skip) afrtgt_skip--; else { if(tegoXpt > 0) { // Calculate slow lag coeff(%) for delayed afr target afrSL = afrLF_calc(tegoXpt); if(afrSL < 34) { // From eq for afrdly (below) any SL < 34 and (afrtgt - afrdly) // < 3 (afrx10) means the update for afrdly will be 0. In this // case keep afrSL =34, but skip (tegoXpt/txpt(SL=34)) updates. afrSL = 34; afrtgt_skip = (unsigned short)(tegoXpt / (unsigned short)468); } else { afrtgt_skip = 0; if(afrSL > 100)afrSL = 100; } } else { afrtgt_skip = 0; afrSL = 100; } // Smith Predictor delay free model outputs = outpc.afrtgt1,2 // delayed model outputs = afrdl1,2 afrdl1 += (int)((afrSL * (int)(outpc.afrtgt1 - afrdl1)) / 100); afrdl2 += (int)((afrSL * (int)(outpc.afrtgt2 - afrdl2)) / 100); } } // calc err from model o/ps: egoerr = ego + (afrtgt - afrdly) - afrtgt ego1err = outpc.ego1 - afrdl1; ego2err = outpc.ego2 - afrdl2; if(egopstat == 1) { // 1st time just correct and wait tegoXpt delay ego1step = ((int)(inpram.egoKP * ego1err) / (int)afrdl1); ego2step = ((int)(inpram.egoKP * ego2err) / (int)afrdl2); if(inpram.EgoAlg == 1) { // for this alg. correct based on ego measurement (which is delayed) // and the delayed afrtgt - so both at approx. same time. tegoupdate = tegoclk; afrdl1 = outpc.afrtgt1; afrdl2 = outpc.afrtgt2; } egopstat = 2; } else if(egopstat == 2) { ego1step = 0; // initially don't do anything til tegoXpt delay ego2step = 0; if(inpram.EgoAlg == 1) { if(tegoclk - tegoupdate > tegoXpt) egopstat = 1; // make another correction next time thru } else { if(tegoclk > tegoXpt) egopstat = 3; } } else { // egopstat=3 = normal error correction for EgoAlg = 2 egoKPX = (int)(((int)EGODT * inpram.egoKP) / tegoXpt); if(egoKPX < 1)egoKPX = 1; if(ego1err * ego1errm1 <= 0)sego1err = 0; sego1err += ego1err; if(sego1err > 16000)sego1err = 16000; if(sego1err < -16000)sego1err = -16000; ego1step = (int)(egoKPX * (ego1err + (int)((inpram.egoKI* sego1err)/ 100) + (int)(inpram.egoKD * (ego1err - ego1errm1) / 100)) / (int)afrdl1); if(ego1step != 0)sego1err = 0; ego1errm1 = ego1err; if(ego2err * ego2errm1 <= 0)sego2err = 0; sego2err += ego2err; if(sego2err > 16000)sego2err = 16000; if(sego2err < -16000)sego2err = -16000; ego2step = (int)(egoKPX * (ego2err + (int)((inpram.egoKI* sego2err)/ 100) + (int)(inpram.egoKD * (ego2err - ego2errm1) / 100)) / (int)afrdl2); if(ego2step != 0)sego2err = 0; ego2errm1 = ego2err; } } // end p/pid loop - EgoAlg = 1,2 // implement correction - update egocor1,2 if(!outpc.wbo2_en1) { // no valid ego rdbk outpc.egocor1 = 100; } else { if(ego1step > 0) { // O2_IS_LEAN if((outpc.egocor1 + ego1step) <= (100 + inpram.EgoLimit)) outpc.egocor1 += ego1step; // egocor not railed else outpc.egocor1 = 100 + inpram.EgoLimit; // railed } else { // O2_IS_RICH if((outpc.egocor1 + ego1step) >= (100 - inpram.EgoLimit)) outpc.egocor1 += ego1step; // egocor not railed else outpc.egocor1 = 100 - inpram.EgoLimit; // railed } } if(!outpc.wbo2_en2) { // no valid ego rdbk outpc.egocor2 = 100; } else { if(ego2step > 0) { // O2_IS_LEAN if((outpc.egocor2 + ego2step) <= (100 + inpram.EgoLimit)) outpc.egocor2 += ego2step; // egocor not railed else outpc.egocor2 = 100 + inpram.EgoLimit; // railed } else { // O2_IS_RICH if((outpc.egocor2 + ego2step) >= (100 - inpram.EgoLimit)) outpc.egocor2 += ego2step; // egocor not railed else outpc.egocor2 = 100 - inpram.EgoLimit; // railed } } VETABLELOOKUP: // Look up volumetric efficiency as function of rpm and map (tps // in alpha N mode) outpc.vecurr1 = vecalc_table(outpc.rpm, outpc.kpa, 0); // in % if(inpram.dual_tble_optn) outpc.vecurr2 = vecalc_table(outpc.rpm, outpc.kpa, 1); // in % else { outpc.vecurr2 = outpc.vecurr1; } /************************************************************************** ** ** Computation of Fuel Parameters ** Note that GAMMAE only includes Warm, Tpsfuelcut, Barocor, and Aircor ** (EGO no longer included) ** **************************************************************************/ lsum = ((outpc.warmcor * outpc.tpsfuelcut) / 100); lsum = (lsum * ((outpc.barocor * outpc.aircor) / 100)/100); outpc.gammae = (int)lsum; if(inpram.FuelAlpha != 2) lsum2 = (long)outpc.kpa; else lsum2 = 1000; // normalizes to ~1 when divide by baro lsum1 = (lsum * ((outpc.egocor1 * lsum2) / outpc.baro)/100); lsum1 = (lsum1 * ((outpc.vecurr1 * (long)inpram.ReqFuel)/ 100)/ 100); // usec lsum2 = (lsum * ((outpc.egocor2 * lsum2) / outpc.baro)/100); lsum2 = (lsum2 * ((outpc.vecurr2 * (long)inpram.ReqFuel)/ 100)/ 100); // usec /************************************************************************** ** ** Calculation of Battery Voltage Correction for Injector Opening Time ** ** Injector open time is implemented as a linear function of ** battery voltage, from 7.2 volts to 19.2 volts, ** with 13.2 volts being the nominal operating voltage ** ** INJOPEN = injector open time at 13.2 volts in ms x 10 ** BATTFAC = injector open adjustment factor 6 volts from 13.2V in ms x 10 ** ** ** + (INJOPEN + BATTFAC) ** + * ** + (INJOPEN) ** + * ** + (INJOPEN - BATTFAC) ** + * ** + ** ++++++++++++++++++++++++++++++++++++++++++++++++++++++ ** 7.2V 13.2V 19.2 ** **************************************************************************/ tmp1 = (inpram.InjOpen + inpram.BatFac) - ((inpram.BatFac * (outpc.batt - 72)) / 60); // ms x 10 if(tmp1 > 0) pw_open = (unsigned int)tmp1; // if < 0, => bat spike, use prior val. /************************************************************************** ** ** Calculation of Flex Fuel Sensor %alcohol and PW correction (fuelcor) ** **************************************************************************/ if(inpram.FlexFuel && (FSens_Pd > 0)) { FSensFreq = (int)(7812 / FSens_Pd); // Hz, (FSens_Pd in .128 tics) if((FSensFreq >= 10) || (FSensFreq <= 300)) { outpc.fuelcor = inpram.fuelCorr[0] + (((short)(FSensFreq - inpram.fuelFreq[0]) * (inpram.fuelCorr[1] - inpram.fuelCorr[0])) / (inpram.fuelFreq[1] - inpram.fuelFreq[0])); // % } else { // sensor reading bad - use default outpc.fuelcor = 100; // % } lsum1 = (lsum1 * outpc.fuelcor)/ 100; // usec lsum2 = (lsum2 * outpc.fuelcor)/ 100; // usec } else { // no flex fuel or fuel sensor not yet ready/ broken outpc.fuelcor = 100; // % } /************************************************************************** ** ** Calculation of Final Pulse Width ** **************************************************************************/ lsum = (pw_open + outpc.tpsaccel) * 100; // usec lsum1 += lsum; // usec if(lsum1 > 32000)lsum1 = 32000; // rail at 32 ms pwcalc1 = (unsigned int)lsum1; lsum2 += lsum; // usec if(lsum2 > 32000)lsum2 = 32000; pwcalc2 = (unsigned int)lsum2; /************************************************************************** ** ** Calculation of Distributor Advance & coil charge time correction ** **************************************************************************/ DIST_ADV: lsum = ign_table(outpc.rpm, outpc.kpa) + outpc.cold_adv_deg; // degx 10 if(inpram.RevLimOption == 1) { if(outpc.rpm > inpram.RevLimRpm2) lsum -= inpram.RevLimMaxRtd; // deg x 10 else if(outpc.rpm > inpram.RevLimRpm1) { lsum -= (((long)inpram.RevLimMaxRtd*(outpc.rpm- inpram.RevLimRpm1))/ (inpram.RevLimRpm2 - inpram.RevLimRpm1)); // deg x 10 } } ic_adv_deg = (int)(lsum - inpram.adv_offset); // relative to IC outpc.adv_deg = (int)lsum; // relative to true TDC // Base dwell tmp1 = inpram.max_coil_dur; // Add correction if accelerating if(outpc.tpsaccel > 0) tmp1 += inpram.DurAcc; // Correct for battery voltage tmp1 += coil_dur_table(outpc.batt - 120); coil_dur = tmp1; // msx10, will be used in IC Isr. // following belongs in Input Capture ISR, but this saves long div in ISR outpc.coil_dur = (int)(coil_dur_set / 100); // msx10 /*************************************************************************** ** ** Check whether to burn flash ** **************************************************************************/ BURN_FLASH: if (burn_flag) { // burn flash 512 byte(256 word) sector(s) fburner(tableWordFlash(burn_idx, 0), tableWordRam(burn_idx, 0), tableWords(burn_idx)); if(burn_flag >= tableWords(burn_idx)) { burn_flag = 0; flocker = 0; } else burn_flag++; } /*************************************************************************** ** ** Check for reinit command ** **************************************************************************/ if(reinit_flag) { reinit_flag = 0; // update initialization of variables/ registers dependent on // user config inputs Rpm_Coeff = 120000000 / inpram.no_cyl; SPK = 1 - inpram.spkout_hi_lo; // 0=spk low, but inverted logic CHG = 1 - SPK; // after transistor if(!(inpram.ICIgnOption & 0x02)) trig_ret_mode = 0; else if(outpc.rpm < inpram.crank_rpm) trig_ret_mode = 2; TCTL4 &= ~0x03; // clear bits 0,1 if(inpram.ICIgnOption & 0x01) { // normal rising edge input capture if(!trig_ret_mode) // not trig ret mode TCTL4 |= 0x01; // rising edge input capture else // reverse in trigger return mode TCTL4 |= 0x02; // falling edge input capture } else { // normal falling edge input capture if(!trig_ret_mode) // not trig ret mode TCTL4 |= 0x02; // falling edge input capture else // reverse in trigger return mode TCTL4 |= 0x01; // rising edge input capture } if(outpc.clt >= inpram.temp_table[NO_TEMPS-1]) { AWEV = (unsigned short)inpram.AWEVH; AWC = (unsigned short)inpram.AWCH; } else if(outpc.clt <= inpram.temp_table[0]) { AWEV = (unsigned short)inpram.AWEVU; AWC = (unsigned short)inpram.AWCU; } else { ltmp = (outpc.clt - inpram.temp_table[0]) * (long)(inpram.AWEVH - inpram.AWEVU); AWEV = (unsigned short)(inpram.AWEVU + (ltmp / (inpram.temp_table[NO_TEMPS-1] - inpram.temp_table[0]))); // % ltmp = (outpc.clt - inpram.temp_table[0]) * (long)(inpram.AWCH - inpram.AWCU); AWC = (unsigned short)(inpram.AWCU + (ltmp / (inpram.temp_table[NO_TEMPS-1] - inpram.temp_table[0]))); // cycles } crank_trig_mode = (inpram.ICIgnOption & 0x04) >> 2; // Set up SCI (rs232): SCI BR reg= BusFreq(=24MHz)/16/baudrate SCI0BDL = (unsigned char)(1500000/inpram.baud); ltmp = (150000000/inpram.baud) - ((long)SCI0BDL*100); if(ltmp > 50)SCI0BDL++; // round up } /*************************************************************************** ** ** Determine spare port settings ** **************************************************************************/ for(ix = 0;ix < NPORT; ix++) { if(inpram.spr_port[ix]) { // Evaluate first condition if(inpram.out_byte1[ix] == 1) tmp1 = *((char *)(&outpc) + inpram.out_offset1[ix]); else tmp1 = *( int *)((char *)(&outpc) + inpram.out_offset1[ix]); tmp1 = tmp1 - inpram.thresh1[ix]; if(inpram.condition1[ix] == '<') tmp1 = -tmp1; // convert < condition to same as > condition if(inpram.condition1[ix] == '=') { if((tmp1 >= -inpram.hyst1[ix]) && (tmp1 <= inpram.hyst1[ix])) ctmp1 = 1; // 1st condition true } else if(tmp1 > 0) ctmp1 = 1; // 1st condition true else ctmp1 = 0; // 1st condition false // Evaluate second condition if there is one if(inpram.cond12[ix] != ' ') { if(inpram.out_byte2[ix] == 1) tmp2 = *((char *)(&outpc) + inpram.out_offset2[ix]); else tmp2 = *( int *)((char *)(&outpc) + inpram.out_offset2[ix]); tmp2 = tmp2 - inpram.thresh2[ix]; if(inpram.condition2[ix] == '<') tmp2 = -tmp2; // convert < condition to same as > condition if(inpram.condition2[ix] == '=') { if((tmp2 >= -inpram.hyst2[ix]) && (tmp2 <= inpram.hyst2[ix])) ctmp2 = 1; // 2nd condition true } else if(tmp2 > 0) ctmp2 = 1; // 2nd condition true else ctmp2 = 0; // 2nd condition false } // Evaluate final condition if(((inpram.cond12[ix] == '&') && (ctmp1 && ctmp2)) || ((inpram.cond12[ix] == '|') && (ctmp1 || ctmp2)) || ((inpram.cond12[ix] == ' ') && ctmp1)) { if(lst_pval[ix] != inpram.port_val[ix]) { set_spr_port((char)ix, inpram.port_val[ix]); lst_pval[ix] = inpram.port_val[ix]; } } else { // Evaluate hysteresis conditions if((inpram.condition1[ix] == '>') || (inpram.condition1[ix] == '<')) tmp1 = -tmp1 - inpram.hyst1[ix]; if(inpram.condition1[ix] == '=') { ctmp1 = 1 - ctmp1; // 1st hyst. condition opposite of set cond } else if(tmp1 > 0) ctmp1 = 1; // 1st hysteresis condition true else ctmp1 = 0; // 1st hysteresis condition false if(inpram.cond12[ix] != ' ') { if((inpram.condition2[ix] == '>') || (inpram.condition2[ix] == '<')) tmp2 = -tmp2 - inpram.hyst2[ix]; if(inpram.condition2[ix] == '=') { ctmp2 = 1 - ctmp2; // 2nd hyst. condition opposite of set cond } else if(tmp2 > 0) ctmp2 = 1; // 2nd hysteresis condition true else ctmp2 = 0; // 2nd hysteresis condition false } // Evaluate final hysteresis condition if(((inpram.cond12[ix] == '&') && (ctmp1 || ctmp2)) || ((inpram.cond12[ix] == '|') && (ctmp1 && ctmp2)) || ((inpram.cond12[ix] == ' ') && ctmp1)) { if(lst_pval[ix] != 1 - inpram.port_val[ix]) { set_spr_port((char)ix, 1 - inpram.port_val[ix]); lst_pval[ix] = 1 - inpram.port_val[ix]; } } } // end eval of hysteresis conditions } // end if spr_port } // end for ix loop /*************************************************************************** ** ** Check for serial receiver timeout ** **************************************************************************/ if(lmms > rcv_timeout) { txmode = 0; // break out of current receive sequence rcv_timeout = 0xFFFFFFFF; } /*************************************************************************** ** ** Check for CAN reset ** **************************************************************************/ if(can_reset) { /* Re-initialize CAN comms */ CanInit(); can_reset = 0; } #ifdef CAN_TEST // sample code to send periodic messages if(lmms > cansendclk) { cansendclk = lmms + 7812; // 1 sec(7812 x .128 ms) clk for(ix = 0;ix < 6;ix++) { // load ring buffer - send rpm (void)memcpy(&can[1].cx_datbuf[can[1].cxno_in][0],(char *)&outpc.rpm, 2); can[1].cx_msg_type[can[1].cxno_in] = MSG_CMD; can[1].cx_varblk[can[1].cxno_in] = 1; // Told to put rpm in outpc.spare[3]; below is offset can[1].cx_varoff[can[1].cxno_in] = (unsigned short)(&outpc.spare[3]) - (unsigned short)(&outpc); can[1].cx_dest[can[1].cxno_in] = 1; // send to device 1 can[1].cx_varbyt[can[1].cxno_in] = 2; // 2 bytes // This is where (in xmt ring buffer) to put next message if(can[1].cxno_in < (NO_CANMSG - 1)) can[1].cxno_in++; else can[1].cxno_in = 0; // increment counter if(can[1].cxno < NO_CANMSG) can[1].cxno++; else can[1].cxno = NO_CANMSG; } if(!(CANTIER & 0x07)) { // Following will cause entry to TxIsr without sending msg // since when CANTIER = 0, CANTFLG left as buff empty(>0). // If CANTIER has at least 1 int buf enabled, will enter // TxIsr automatically. CANTBSEL = CANTFLG; CANTIER = CANTBSEL; } } #endif // end sample CAN send code } // END Main while(1) Loop } void ign_reset(void) { // enter here at init and when in stall condition // Disable IC, Ign,Inj OC interrupts TIE &= 0xD4; TSCR1 &= 0x7F; // disable all timers // reinitialize synch = 0; t_chgoff = 0xFFFFFFFF; outpc.engine = 0; outpc.rpm = 0; ICt_overflow = 0; IgnOCt_overflow = 0; Fl1OCt_overflow = 0; Fl2OCt_overflow = 0; TC_ovflow = 0; TC_ov_ix = 0; pulse_no = 0; // This will inhibit overflow counters t_enable_IC = 0xFFFFFFFF; igncount = 0; altcount = 0; egocount = 0; egopstat = 0; tpsaclk = 0; asecount = 0; if(!(inpram.ICIgnOption & 0x02)) trig_ret_mode = 0; else trig_ret_mode = 2; TCTL4 &= ~0x03; // clear bits 0,1 if(inpram.ICIgnOption & 0x01) { // normal rising edge input capture if(!trig_ret_mode) // not trig ret mode TCTL4 |= 0x01; // rising edge input capture else // reverse in trigger return mode TCTL4 |= 0x02; // falling edge input capture } else { // normal falling edge input capture if(!trig_ret_mode) // not trig ret mode TCTL4 |= 0x02; // falling edge input capture else // reverse in trigger return mode TCTL4 |= 0x01; // rising edge input capture } crank_trig_mode = (inpram.ICIgnOption & 0x04) >> 2; // if coil charging, set flg to cease aft 1 s if no resynch t_chgoff = lmms + 7812; // Turn Off injectors TCTL2 &= ~0x44; // set outputs lo in OL1,3 CFORC |= 0x0A; PWME &= ~0x14; // turn off pwms // clear OC interrupt flags TFLG1 = (0x02 | 0x08 | 0x20); *pPTMpin[3] &= ~0x08; // turn off inj led outpc.squirt = 0; // injectors off IgnOCpinstate = SPK; // enable timer & IC interrupt TSCR1 |= 0x80; TFLG1 = 0x01; TIE |= 0x01; return; } void get_adc(char chan1, char chan2) { char chan; long adcval; for (chan = chan1; chan <= chan2; chan++) { switch(chan) { case 0: adcval = (long)inpram.map0 + ((long)(inpram.mapmax - inpram.map0) * ATD0DR0) / 1023; // kPa x 10 if(first_adc) outpc.map = (short)adcval; else outpc.map += (short)((inpram.mapLF * (adcval - outpc.map)) / 100); break; case 1: adcval = (long)inpram.mat0 + ((long)inpram.matmult * matfactor_table[ATD0DR1]) / 100; // deg F or C x 10 if(first_adc) outpc.mat = (short)adcval; else outpc.mat += (short)((inpram.adcLF * (adcval - outpc.mat)) / 100); break; case 2: adcval = (long)inpram.clt0 + ((long)inpram.cltmult * cltfactor_table[ATD0DR2]) / 100; // deg F or C x 10 if(first_adc) outpc.clt = (short)adcval; else outpc.clt += (short)((inpram.adcLF * (adcval - outpc.clt)) / 100); break; case 3: adcval = (ATD0DR3 - (long)inpram.tps0) * 1000 / (inpram.tpsmax - inpram.tps0); // % x 10 if(first_adc) outpc.tps = (short)adcval; else outpc.tps += (short)((inpram.tpsLF * (adcval - outpc.tps)) / 100); break; case 4: adcval = (long)inpram.batt0 + ((long)(inpram.battmax - inpram.batt0) * ATD0DR4) / 1023; // V x 10 if(first_adc) outpc.batt = (short)adcval; else outpc.batt += (short)((inpram.adcLF * (adcval - outpc.batt)) / 100); break; case 5: if(inpram.EgoOption >= 1) { adcval = (long)inpram.ego0 + ((long)inpram.egomult * egofactor_table[ATD0DR5]) / 100; // afr x 10 if(first_adc) outpc.ego1 = (short)adcval; else outpc.ego1 += (short)((inpram.egoLF * (adcval - outpc.ego1)) / 100); } break; case 6: if(inpram.EgoOption == 3) { adcval = (long)inpram.ego0 + ((long)inpram.egomult * egofactor_table[ATD0DR6]) / 100; // afr x 10 if(first_adc) outpc.ego2 = (short)adcval; else outpc.ego2 += (short)((inpram.egoLF * (adcval - outpc.ego2)) / 100); } else outpc.ego2 = outpc.ego1; if(inpram.BaroOption == 2) { adcval = (long)inpram.baro0 + ((long)(inpram.baromax - inpram.baro0) * ATD0DR6) / 1023; // kPa x 10 if(first_adc) outpc.baro = (short)adcval; else outpc.baro += (short)((inpram.adcLF * (adcval - outpc.baro)) / 100); } break; case 7: adcval = (long)inpram.knock0 + ((long)(inpram.knockmax - inpram.knock0) * ATD0DR7) / 1023; // V x 100 if(first_adc) outpc.knock = (short)adcval; else outpc.knock += (short)((inpram.knkLF * (adcval - outpc.knock)) / 100); break; default: break; } // end of switch } // end of for loop return; } #ifndef GCC_BUILD #pragma CODE_SEG NON_BANKED #endif INTERRUPT void ISR_Timer_Clock(void) { unsigned char coils,fsensdat; static unsigned char last_fsensdat; static unsigned short FPdcounter; long adcval; // .128 ms clock interrupt - clear flag immediately to resume count CRGFLG = 0x80; // clear RTI interrupt flag // also generate 1.024 ms, .10035 sec and 1.0035 sec clocks lmms++; // free running clock(.128 ms tics) good for ~ 110 hrs mms++; // in .128 ms tics - reset every 8 tics = 1.0024 ms // check for re-enabling IC interrupt if(lmms > t_enable_IC) { TFLG1 = 0x01; // clear Ignition IC interrupt flag TIE |= 0x01; // enable Ignition IC interrupt t_enable_IC = 0xFFFFFFFF; } if(lmms > t_chgoff) { // cease charging ignition coil after fuel has dispersed TCTL1 = (TCTL1 & 0xFB) | (SPK << 2); // set OC o/p in OL5 CFORC |= 0x20; // force output in OL5 onto OC pin IgnOCpinstate = SPK; t_chgoff = 0xFFFFFFFF; } // check for turning on pwm duty cycle if(!(outpc.engine & 0x02)) { // if engine not cranking if(!pwm1_on) { // and haven't started pwm if(lmms > pwm1_time) { pwm1_on = 1; PWMPER2 = inpram.InjPWMPd; // set PWM period (us) // set PWM duty (on time) PWMDTY2 = (unsigned char)((inpram.InjPWMDty * PWMPER2) / 100); } } if(!pwm2_on) { // and haven't started pwm if(lmms > pwm2_time) { pwm2_on = 1; PWMPER4 = inpram.InjPWMPd; // set PWM period (us) // set PWM duty (on time) PWMDTY4 = (unsigned char)((inpram.InjPWMDty * PWMPER4) / 100); } } } // check for IAC step pulses if(IdleCtl == 4) { iacpwmctr++; if (iacpwmctr >= 100) iacpwmctr=0; if (IACmotor_pos > iacpwmctr) *pPTMpin[2] &= ~0x04; // turn off fast idle solenoid else *pPTMpin[2] |= 0x04; // turn on fast idle solenoid outpc.iacstep = IACmotor_pos; // Dual purpose as idle DC - E.Fahlgren fix } else { if(IAC_moving > 1) { if(lmms > motor_time) { motor_time = lmms + ((inpram.IACtstep*8)/10); // .128 ms motor_step++; if(motor_step > 7)motor_step = 0; if(IACmotor_pos > outpc.iacstep) { // cw outpc.iacstep++; coils = (IACCoilA[7-motor_step] << 6) | (IACCoilB[7-motor_step] << 7); } else { //ccw outpc.iacstep--; coils = (IACCoilA[motor_step] << 6) | (IACCoilB[motor_step] << 7); } *pPTTpin[6] = (PTT & ~0xC0) | coils; if(outpc.iacstep == IACmotor_pos) { if(!IACmotor_reset) { IACmotor_reset = 1; last_iacclt = -3200; // this will cause to go to // temperature based position after initial reset IAC_moving = 0; } else { motor_time += 32000; // delay next move for ~4 secs IAC_moving = 1; } if(IdleCtl == 2) PORTB |= 0x10; // disable current to stepper motor(bit=1) } } } else if(IAC_moving) { if(lmms > motor_time) { IAC_moving = 0; } } } // check rpm for stall condition (< 50 rpm) after engine synch if(synch) { if((lmms - ltch_lmms) > (18750/inpram.no_cyl)) { // Engine is stalled, clear all in engine PORTE &= ~0x10; // Turn off fuel Pump *pPTMpin[2] &= ~0x04; // Turn off fast idle ** Bug Fix By Guy Hill ** ign_reset(); } } // if no tach pulse within 2 sec else if((lmms - ltch_lmms) > 15625) { PORTE &= ~0x10; // Turn off fuel Pump *pPTMpin[2] &= ~0x04; // Turn off fast idle ** Bug Fix By Guy Hill ** } // read fuel sensor data, determine freq(proportional to %alcohol) if(inpram.FlexFuel) { fsensdat = PORTE & 0x01; switch(FSensStat) { case 0: // first time - save pin value last_fsensdat = fsensdat; FPdcounter = 0; FSens_Pd = 0; FSensStat = 1; break; case 1: // wait for pin hi -> lo transition to start period(freq) count if(last_fsensdat && !fsensdat) { FPdcounter++; // .128 ms tics FSensStat = 2; } break; case 2: // continue period count if(last_fsensdat && !fsensdat) { // transition hi -> lo // save present count = period FSens_Pd = FPdcounter; // .128 ms tics FPdcounter = 0; // start new period count } FPdcounter++; break; default: break; } // end of switch last_fsensdat = fsensdat; } // check mms to generate other clocks if(mms < 8)goto CLK_DONE; mms = 0; millisec++; // actually 1.024 ms if((millisec == 49) || (millisec >= 98)) { // 50 ms calculations // get map, tps // map, tps lag(IIR) filters adcval = (long)inpram.map0 + ((long)(inpram.mapmax - inpram.map0) * ATD0DR0) / 1023; // kPa x 10 outpc.map += (short)((inpram.mapLF * (adcval - outpc.map)) / 100); adcval = (ATD0DR3 - (long)inpram.tps0) * 1000 / (inpram.tpsmax - inpram.tps0); // % x 10 outpc.tps += (short)((inpram.tpsLF * (adcval - outpc.tps)) / 100); // save last tps, map for calculation of tpsdot, mapdot outpc.tpsdot = 2 * (outpc.tps - last_tps); // % x 10 change per .1 sec last_tps = outpc.tps; outpc.mapdot = 2 * (outpc.map - last_map); // kPa x 10 change per .1 sec last_map = outpc.map; if(millisec > 97) { millisec = 0; tpsaclk++; // .10035 sec clock } } // end 50 ms calculations CLK_DONE: return; } #ifndef GCC_BUILD #pragma CODE_SEG DEFAULT #pragma CODE_SEG NON_BANKED #endif INTERRUPT void ISR_Ign_TimerIn(void) { static unsigned long t_in2,t_in3,dt1,dt2,dt3; long ddt2,ddt3,dddt3,tcnt; static unsigned long dtpred_old; static char missed_pulse, cut_fuel; unsigned int sched_both,rpm_pred=0,rpm=0; unsigned long ltmp1; long coil_dur_calc,old_charge; // Just received new input pulse - 1/ cyl / 2 crank revs (1 for 2 stroke) if(pulse_no == 0) { // 1st input pulse pulse_no++; ICt_overflow = 0; t_in3 = (((long)TC0<<1)/3); dt2 = 0; dt3 = 0; // time difference between pulses, us outpc.dt3 = (int)dt3; // for HP calculations ddt2 = 0; // derivative of time difference ddt3 = 0; // derivative of time difference dddt3 = 0; // 2nd derivative of time difference dtpred = dt3; // predicted time difference for next pulse ign_state = 0; missed_pulse = 0; cut_fuel = 0; // clear IC interrupt flag TFLG1 = 0x01; return; } t_chgoff = 0xFFFFFFFF; ltch_lmms = lmms; // latch RTI .128 ms clk // calculate new dt. All times in us. t_in2 = t_in3; dt1 = dt2; dt2 = dt3; t_in3 = (((long)TC0<<1)/3); if(trig_ret_mode == 1) { // transitioning out of trigger return mode if(!(TFLG2 & 0x80) || (TCNT < TC0)) // check for t overflow isr pending ICt_overflow = 0; else ICt_overflow = -1; // pending, so -1 will cause to clear in isr. // use last dt3 as prediction for next IC for this one time transition; // also leave rpm as is. dtpred_old = dtpred; dtpred = dt3; trig_ret_mode = 0; // done with trig return til ign_reset goto AVE; } // Need to test for overflow because overflow ISR < priority than // IC ISR and might be pending, so ICt_overflow not up to date. if(!(TFLG2 & 0x80) || (TCNT < TC0)) { // check for t overflow isr pending // no pending overflow isr or IC occurred < overflow if(!ICt_overflow) dt3 = t_in3 - t_in2; else { dt3 = t_in3 + ((long)ICt_overflow * 43690) - t_in2; ICt_overflow = 0; } } else { // pending overflow isr and IC after overflow dt3 = t_in3 + ((long)(ICt_overflow + 1) * 43690) - t_in2; ICt_overflow = -1; // pending, so -1 will cause to clear in isr } if(pulse_no >= inpram.no_skip_pulses) { // after 1st few pulses, start checking for missed/ extra pulses if(dt3 < ((100 - PulseTol) * dt2) / 100) { // reject false trigger t_in3 = t_in2; dt3 = dt2; outpc.dt3 = (int)dt3; // clear IC interrupt flag TFLG1 = 0x01; return; // wait for next (true) pulse } ltmp1 = ((100 + PulseTol) * dt2) / 100; if(dt3 > ltmp1) { missed_pulse++; if(missed_pulse > 2) { PORTE &= ~0x10; // Turn off fuel Pump *pPTMpin[2] &= ~0x04; // Turn off fast idle ** Bug Fix By Guy Hill ** ign_reset(); return; } // make up for missing pulse - set dt3 to last dt2 dt3 = dt2; } else { missed_pulse = 0; } } outpc.dt3 = dt3; // Predict next dt - account for accel + Kalman filter for random errors if(pulse_no >= 3) { //have enough pulses to calc all derivatives synch = 1; if(!inpram.PredOpt) { dtpred_old = dtpred; outpc.spare[0] = (int)(dt3 - dtpred_old); dtpred = dt3; } else if((inpram.PredOpt == 3)|| ((inpram.PredOpt == 2 ) && (dtpred_old > 2000))) { // < 7500 rpm with 8 cyl /* 0th pulse -- |- dt1 -- 1st pulse -- |- ddt2 -- |- dt2 -- |- dddt3 2nd pulse -- |_ ddt3 -- | | |- dt3 -- | |_ ddtpred 3rd pulse -- | |_ dtpred- | 4th pulse -- dtn = tn - tn-1 ddtn = (dtn - dtn-1) / ((dtn + dtn-1)/2) ddtn-1 = (dtn-1 - dtn-2) / ((dtn-1 + dtn-2)/2) dddtn = (ddtn - ddtn-1)/((((dtn + dtn-1)/2) + ((dtn-1 + dtn-2)/2))/2) ddtpred = ddtn + dddtn * dtn dtpred = dtn + ddtpred * dtn = dtn + (ddtn * dtn) + (dddtn * dtn * dtn) */ ltmp1 = dt3 + dt2; if(ltmp1 > 0) ddt3 = (long)(2*(dt3 - dt2)*dt3) / (long)ltmp1; // calculate new derivative x dt3 else ddt3 = 0; ltmp1 = dt2 + dt1; if(ltmp1 > 0) ddt2 = (long)(2*(dt2 - dt1)*dt3) / (long)ltmp1; // calculate prev derivative x dt3 else ddt2 = 0; ltmp1 += dt3 + dt2; if(ltmp1 > 0) dddt3 = (long)(4*(ddt3 - ddt2)*dt3) / (long)ltmp1; // calc 2nd derivative x dt3 else dddt3 = 0; dtpred_old = dtpred; dtpred = dt3 + ddt3 + dddt3; // pred new time interval - time bet now and next plse // predict next time interval // Kalman filter random error correction (proportional to difference // (between current dt3 and last predicted dt3). outpc.spare[0] = (int)(dt3 - dtpred_old); dtpred += (inpram.Dtpred_Gain * (long)(dt3 - dtpred_old) / 100); } else { // > 7500 rpm with 8 cyl /* 1st pulse -- |- dt2 -- 2nd pulse -- |- ddt3 |- dt3 -- 3rd pulse -- | |- dtpred- 4th pulse -- dtn = tn - tn-1 ddtn = (dtn - dtn-1) / dtn dtpred = dtn + ddtn * dtn = dtn + (dtn - dtn-1) */ dtpred_old = dtpred; outpc.spare[0] = (int)(dt3 - dtpred_old); dtpred = 2*dt3 - dt2; // pred new time interval - time bet now and next plse // predict next time interval } } else { // < 3 pulses received dtpred_old = dtpred; dtpred = dt3; } if(pulse_no < inpram.no_skip_pulses) { // skip 1st few (>1) pulses pulse_no++; // clear IC interrupt flag TFLG1 = 0x01; return; } else { if(pulse_no < 3) pulse_no++; } // calculate rpm halfway between now and next ign pulse if(dtpred > 100) rpm_pred = (unsigned int)(Rpm_Coeff / dtpred); else { // Noise or beyond rev limit, clear all in engine PORTE &= ~0x10; // Turn off fuel Pump *pPTMpin[2] &= ~0x04; // Turn off fast idle ** Bug Fix By Guy Hill ** ign_reset(); return; } rpm = (unsigned int)(Rpm_Coeff / dt3); AVE: // lag (iir) filter if(!synch) outpc.rpm = rpm; else outpc.rpm += (int)((inpram.rpmLF * ((long)rpm - outpc.rpm)) / 100); // calculate ignition parameters if(trig_ret_mode == 2) { /* Example tach signal used in trigger return mode // n-2 n-1 n n+1 n+2 // lead edge(70 btdc) TDC trail edge(5 btdc) // \/ | \/ //--- -------- -------- -------- -------- // | | | | | | | | | // |__| |__| |__| |__| |_ // /\ /\ /\ /\ /\ /\ // IC & Spk IC&Spk IC&Spk IC Spk IC // |----dt-----| |----dt-----| // Cranking------->|<--------Not Cranking // /\ // transition(trig_ret_mode=1) */ // Force spark NOW TCTL1 = (TCTL1 & 0xFB) | (SPK << 2); // set OC o/p in OL5 CFORC |= 0x20; // force output in OL5 onto OC pin IgnOCpinstate = SPK; if(outpc.rpm > inpram.crank_rpm) { // finished cranking // transition to other edge for future ICs and out of trig ret mode if((TCTL4 & 0x03) == 0x01) TCTL4 = (TCTL4 & 0xFC) | 0x02; else if((TCTL4 & 0x03) == 0x02) TCTL4 = (TCTL4 & 0xFC) | 0x01; trig_ret_mode = 1; adv_us = 0; // don't want to do anything else til next IC on opposite edge, // then will set up to charge & spark in normal way, so disable // Ign OC interrupt. TIE &= ~0x20; goto IC_EXIT; } else { adv_us = 0; coil_dur_calc = (coil_dur * 100) << 1; // us, double to be sure coil // sufficiently charged before next, possibly erratic IC charge_time = dtpred - adv_us - coil_dur_calc; // us // want to start charging coil_dur_calc usec before next predicted IC, // but don't want to discharge til next IC, so will disable OC // when start charging. } tcnt = TCNT - TC0; // TC0 is latched time at entry to ISR if(tcnt < 0)tcnt += 65535; tcnt = TC0 + tcnt + 90; // add some extra time for final reg setting IgnTimerComp = TC0 + ((3*charge_time)>>1); // 2/3 us if(IgnTimerComp < tcnt) IgnTimerComp = tcnt; ign_state = 0; ign_setpin = CHG; // use to set OC o/p in OL5 goto CHECK_OVFLO; } else if(crank_trig_mode) { // Force spark NOW TCTL1 = (TCTL1 & 0xFB) | (SPK << 2); // set OC o/p in OL5 CFORC |= 0x20; // force output in OL5 onto OC pin IgnOCpinstate = SPK; if(outpc.rpm > inpram.crank_rpm) { // finished cranking crank_trig_mode = 0; goto NORM_IGN; } else { adv_us = 0; coil_dur_calc = coil_dur * 100; // us ltmp1 = coil_dur_calc + (inpram.max_spk_dur * 100); if(ltmp1 > dtpred) { // scale down chg/ dischg time to fit time available coil_dur_calc = (coil_dur_calc * dtpred) / ltmp1; } else { // double dwell to be sure coil sufficiently charged before // next, possibly erratic, IC coil_dur_calc = coil_dur_calc << 1; ltmp1 = coil_dur_calc + (inpram.max_spk_dur * 100); if(ltmp1 > dtpred) { // reduce charge time to fit time available coil_dur_calc = dtpred - (inpram.max_spk_dur * 100); } } charge_time = dtpred - adv_us - coil_dur_calc; // us // want to start charging coil_dur_calc usec before next predicted IC, // but don't want to discharge til next IC, so will disable OC // when start charging. } tcnt = TCNT - TC0; // TC0 is latched time at entry to ISR if(tcnt < 0)tcnt += 65535; tcnt = TC0 + tcnt + 90; // add some extra time for final reg setting IgnTimerComp = TC0 + ((3*charge_time)>>1); // 2/3 us if(IgnTimerComp < tcnt) IgnTimerComp = tcnt; ign_state = 0; ign_setpin = CHG; // use to set OC o/p in OL5 goto CHECK_OVFLO; } NORM_IGN: if((inpram.ICIgnOption >> 4) < 1) { // Normal Ignition Output // Note: tdc is really input capture (IC) // cyl n cyl n+1 // tdc tdc // |--------------- dtpred -------------------| // | __________ | // | | | | // | |-coil_dur-|----adv_us-----| // |--charge_time--| | | // |_______________| |_______________| // TC0 Spk // adv_us = ((long)16667 * ic_adv_deg) / rpm_pred; // The following limits max adv to 60 deg at 10krpm for 8 cyl and // much more for < rpm, < no. cyl. It provides enough calculation // time to do a prediction before the spark event. if(adv_us > (long)(dtpred - 500)) adv_us = (long)(dtpred - 500); // calculate time to start charging coil coil_dur_calc = coil_dur * 100; // us ltmp1 = coil_dur_calc + (inpram.max_spk_dur * 100); if(ltmp1 > dtpred) { // scale down chg/ dischg time to fit time available coil_dur_calc = (coil_dur_calc * dtpred) / ltmp1; } charge_time = (long)(dtpred - adv_us - coil_dur_calc); // us ltmp1 = dtpred - (dtpred >> 4); IgnOCpinstate = (PTIT & 0x20) >> 5; // present pin state old_charge = 0; if(charge_time > (long)ltmp1) { // charge time is > 6% of next IC; due to normal fluctuation // this could result in starting charge after IC. if(charge_time > dtpred) { // In this case switch to 'this cylinder' mode (spark on // this cylinder) adv_us += dtpred; if(IgnOCpinstate == SPK) { charge_time -= dtpred; } else { ign_state = 2; } } else { if(IgnOCpinstate == CHG) { // extend coil dur to ensure we start charging before dtpred coil_dur_calc += charge_time - ltmp1; charge_time = ltmp1; ign_state = 0; } else { old_charge = charge_time; charge_time = 0; adv_us = dtpred + adv_us; } } } } else { // EDIS Ignition Output // cyl n cyl n+1 // tdc tdc // |-------- dtpred ---------------------------| // |-delay- __________ | // | | | | // | |---SAW----| | // | | | | // |_______| |________________________| // TC0 // adv_us = 0; // send SAW pulse after delay, so we don't send // SAW while still sparking (send at 64us atdc) charge_time = 64; //us // SAW pulse calculation ltmp1 = 1536 - ((long)256 * ic_adv_deg) / 100; // multispk EDIS if((inpram.ICIgnOption >> 4) == 2) { if(first_edis) { // 1st SAW for multispk is 2048 us first_edis = 0; ltmp1 = 2048; // 1024 if ever have 10 cyl } else if(outpc.rpm < 1200) { ltmp1 += 2048; // 1024 if ever have 10 cyl } } coil_dur_calc = ltmp1; IgnOCpinstate = SPK; tcnt = TCNT - TC0; // TC0 is latched time at entry to ISR if(tcnt < 0)tcnt += 65535; tcnt = TC0 + tcnt + 90; // add some extra time for final reg setting IgnTimerComp = TC0 + ((3*charge_time)>>1); // 2/3 us if(IgnTimerComp < tcnt) IgnTimerComp = tcnt; ign_state = 0; ign_setpin = CHG; // use to set OC o/p in OL5 goto CHECK_OVFLO; } // Only get here for normal ignition output if(IgnOCpinstate == SPK) { tcnt = TCNT - TC0; // TC0 is latched time at entry to ISR if(tcnt < 0)tcnt += 65535; tcnt = TC0 + tcnt + 20; // add extra time for final reg setting IgnTimerComp = TC0 + ((3*charge_time)>>1); // 2/3 us if(IgnTimerComp < tcnt) { // transitioning to early chge (large adv) state ign_state = 2; // Charge NOW TCTL1 = (TCTL1 & 0xFB) | (CHG << 2); // set OC o/p in OL5 CFORC |= 0x20; // force output in OL5 onto OC pin IgnOCpinstate = CHG; // Set time to spark ltmp1 = (dtpred - adv_us); IgnTimerComp = TC0 + ((3*ltmp1)>>1); // 2/3 us ign_setpin = SPK; // use to set OC o/p in OL5 if(old_charge > 0) { charge_time = old_charge - ltmp1; } else { // next chge time - predicted to be prior to next pulse input charge_time += adv_us; // rel to spk event } } else { // normal state - wait til time to charge ign_state = 0; ign_setpin = CHG; // use to set OC o/p in OL5 } } else { // OC output is charging if(charge_time <= 0) { // => early chge, OC interrupt enabled // in early chge (large adv) state - stay there ign_state = 2; // Reset OC reg to update to latest spk time IgnTimerComp = TC0 + ((3*(dtpred - adv_us))>>1); // 2/3 us // next chge time charge_time += adv_us; // rel to spk event ign_setpin = SPK; } else { if(ign_state == 2) { // transitioning to normal charge state ign_state = 0; // Reset OC reg to update to latest spk time IgnTimerComp = TC0 + ((3*(dtpred - adv_us))>>1); // 2/3 us ign_setpin = SPK; } else { if(ic_adv_deg >= 0) { // IC came earlier than predicted and haven't sparked yet. FORCE_SPK: // Force spark NOW TCTL1 = (TCTL1 & 0xFB) | (SPK << 2); // set OC o/p in OL5 CFORC |= 0x20; // force output in OL5 onto OC pin IgnOCpinstate = SPK; IgnTimerComp = TC0 + ((3*charge_time)>>1); // 2/3 us ign_setpin = CHG; ign_state = 0; } else { // desired advance is atdc - update register to latest spk time IgnTimerComp = TC0 - ((3 * adv_us)>>1); // 2/3 us tcnt = TCNT - TC0; // TC0 is latched time at entry to ISR if(tcnt < 0)tcnt += 65535; tcnt = TC0 + tcnt + 90; // add some extra time to exit isr if(IgnTimerComp < tcnt) goto FORCE_SPK; charge_time += adv_us; // rel to spk event ign_setpin = SPK; ign_state = 1; } } } } // check if v. short OC reg occurs after TCNT (=free running, common // timer). tcnt = TCNT - TC0; // TC0 is latched time at entry to ISR if(tcnt < 0)tcnt += 65535; tcnt = TC0 + tcnt + 90; // add some extra time to get out of isr if(IgnTimerComp < tcnt) { if(ign_setpin == CHG) { // make spk time in OC come out exact ltmp1 = ((tcnt - IgnTimerComp)<<1)/3; // us coil_dur_calc -= ltmp1; if(coil_dur_calc < 2)coil_dur_calc = 2; } IgnTimerComp = tcnt; } CHECK_OVFLO: coil_dur_set = coil_dur_calc; if(IgnTimerComp > (long)65535) { IgnOCt_overflow = IgnTimerComp >> 16; IgnTimerComp &= 0xFFFF; } else IgnOCt_overflow = 0; if(!IgnOCt_overflow) { TC5 = (unsigned short)IgnTimerComp; // load OC compare register // Set Ign OC pin & enable interrupt TCTL1 = (TCTL1 & 0xFB) | (ign_setpin << 2); TIE |= 0x20; TFLG1 = 0x20; // clear ign OC interrupt flag } else { // Disable Ign OC interrupt until ovflow done TIE &= ~0x20; } // Set up for Injector squirt(s) if(igncount == 0) asecount++; egocount++; // Turn on fuel pump PORTE |= 0x10; outpc.engine |= 0x01; // set engine running if(outpc.engine & 0x02)goto SCHED_SQUIRT; // if engine cranking igncount++; if(igncount < inpram.Divider) goto IC_EXIT; // skip Divider tach pulses SCHED_SQUIRT: igncount = 0; if(inpram.RevLimOption == 2) { if(outpc.rpm > inpram.RevLimRpm2) // Cut fuel for Over Rev cut_fuel = 1; else if(outpc.rpm < inpram.RevLimRpm1) // restore fuel cut_fuel = 0; if(cut_fuel) { outpc.pw1 = 0; // Jedrik fix - let world know injectors are off outpc.pw2 = 0; goto IC_EXIT; } } if((outpc.engine & 0x02) || !inpram.Alternate) { // if cranking or no alternate option sched_both = 1; goto SCHED1; } sched_both = 0; altcount = 1 - altcount; if(altcount) goto SCHED2; SCHED1: // Turn On Inj1 TCTL2 |= 0x04; // set output hi in OL1 CFORC |= 0x02; // force high PWMPER2 = inpram.InjPWMPd; // set PWM period (us) PWMDTY2 = PWMPER2; // set PWM duty to 100 % pwm1_on = 0; pwm1_time = lmms + ((inpram.InjPWMTim*8)/10); // .128 ms PWMCNT2 = 0x00; // clear counter PWME |= 0x04; // enable PWM2 // Set up to turn Off Inj1 when get to pw us outpc.pw1 = pwcalc1; Fl1TimerComp = TCNT + ((3*(long)outpc.pw1)>>1); // 2/3 us Fl1OCt_overflow = (unsigned short)(Fl1TimerComp >> 16); TC1 = (unsigned short)(Fl1TimerComp & 0xFFFF); // load OC compare reg if(Fl1OCt_overflow <= 1) { // don't need to handle <= 1 overflow because TCNT will not // = TimerComp until after the overflow as long as pw < ~43 ms Fl1OCt_overflow = 0; TCTL2 = TCTL2 & 0xFB; // set output lo in OL1 TIE |= 0x02; // Enable Inj1 OC interrupt TFLG1 = 0x02; // clear OC interrupt flag } else { // Disable Inj1 OC interrupt until ovflows done // do below to allow enough time to set OC pin in overflow isr if(TC1 < 30)TC1 = 30; TIE &= ~0x02; } *pPTMpin[3] |= 0x08; // turn on inj led outpc.squirt |= 0x01; // inj1 squirting if(!sched_both) goto IC_EXIT; SCHED2: // Turn On Inj2 TCTL2 |= 0x40; // set output hi in OL3 CFORC |= 0x08; // force high PWMPER4 = inpram.InjPWMPd; // set PWM period (us) PWMDTY4 = PWMPER4; // set PWM duty to 100 % pwm2_on = 0; pwm2_time = lmms + ((inpram.InjPWMTim*8)/10); // .128 ms PWMCNT4 = 0x00; // clear counter PWME |= 0x10; // enable PWM4 // Set up to turn Off Inj2 when get to pw us outpc.pw2 = pwcalc2; Fl2TimerComp = TCNT + ((3*(long)outpc.pw2)>>1); // 2/3 us Fl2OCt_overflow = (unsigned short)(Fl2TimerComp >> 16); TC3 = (unsigned short)(Fl2TimerComp & 0xFFFF); // load OC compare reg if(Fl2OCt_overflow <= 1) { // don't need to handle <= 1 overflow because TCNT will not // = TimerComp until after the overflow as long as pw < ~43 ms Fl2OCt_overflow = 0; TCTL2 = TCTL2 & 0xBF; // set output lo in OL3 TIE |= 0x08; // Enable Inj2 OC interrupt TFLG1 = 0x08; // clear OC interrupt flag } else { // Disable Inj2 OC interrupt until ovflows done // do below to allow enough time to set OC pin in overflow isr if(TC3 < 30)TC3 = 30; TIE &= ~0x08; } *pPTMpin[3] |= 0x08; // turn on inj led outpc.squirt |= 0x02; // inj2 squirting IC_EXIT: // Set up to renable IC interrupt in Timer ISR at 1/2 way // to next IC to avoid coil ringing noise false interrupts t_enable_IC = ltch_lmms + ((dtpred * 8) / 2000); // .128 ms units TIE &= ~0x01; // disable interrupt TFLG1 = 0x01; // clear flag return; } #ifndef GCC_BUILD #pragma CODE_SEG DEFAULT #pragma CODE_SEG NON_BANKED #endif INTERRUPT void ISR_TimerOverflow(void) { // Get display seconds from continuously running TCNT TC_ovflow++; if(TC_ovflow >= TC_ovfla[TC_ov_ix]) { // update seconds to send back to PC outpc.seconds++; if(TC_ov_ix >= 59) { TC_ov_ix = 0; TC_ovflow = 0; } else TC_ov_ix++; } // Handle Ign IC stuff if(pulse_no == 0) { // clear Timer Overflow interrupt flag (TOF) TFLG2 = 0x80; return; } else { ICt_overflow++; } // Handle Ign OC stuff // Example: TC0 = 30K us, dt = 80K, TC0 + dt = 110k // OC reg = 110K - 65K = 45K => overflow = 1 // Timer counter goes from 30K to 65K/ 0 to 45K/ 1 // elapsed time = (65 - 30 = 35K) + 45K = 80K = dt if(IgnOCt_overflo