forked from Churrosoft/OpenEFI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOpenEFI.ino
155 lines (143 loc) · 4.5 KB
/
OpenEFI.ino
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
/*
╔════════════════════════════════════════════════════════════════════════╗
║ Open EFI V 1.5X Team: ║
║ Main Programer FDSoftware | [email protected] | fdsoftware.xyz ║
║ Ex Co-Programer's ║
║ FrancisJPK | ║
║ SFADalmiro | [email protected] ║
║ Program features: ║
║ ∆ Control of diesel / petrol engines up to 8 cylinders ║
║ ∆ Single point and multipoint injection ║
║ ∆ Independent ignition ║
║ ∆ Error report ║
║ ∆ Fixed injection / ignition mode ║
╚════════════════════════════════════════════════════════════════════════╝
*/
/*-----( Define's )-----*/
#define test 1 //modo pruebas con placa debug
#define mtr 1 //definir tipo de motor 0 = diesel ; 1 = nafta
#define dev 1 //habilita modo desarollo
#define alpha 1 //Habilita el modo de prubas alpha
#define GNC_MOD 0 //activa el modo de GNC/GLP en la inyeccion
#define uEFI 0 //en 1 si se compila para una placa uEFI
#define OpenEFImode 0 // en 0 si es OpenEFI con Arduino nano, en 1 si utiliza un Node MCU
/*-----( Importar Librerias )-----*/
#include <Arduino.h>
#include <Wire.h>
#include "interfazSerial.h"
#include "InyecTime.h"
#include "variables.h"
#include "Sensores.h"
#include "Debug.h"
#include "CD4051.h"
#include "pines2.h"
#include "SPWM.h"
#include "AVC.h"
#include "Memory.h"
#include "DTC.h"
/*-----( Inicio de librerias )-----*/
Memory m(0);
Sensores s_main(0);
DTC dtcmain(m,s_main);
AVC avc(dnt, s_main, m);
InyecTime time(s_main,m);
interfazSerial Ser(1);
Debug dbg(Ser,m);
SPWM pwm(byte(12), byte(45), pines, pinesE);
//por ahora las unicas tablas que sincronizan con la memoria son las de avance e inyeccion
//BUG: abrir todas las tablas a la vez satura la RAM
//NO SIRVE, MUCHA RAM AL SOPE, PASAR OBJETO DE MEMORIA POR REFERENCIA Y LISTO
//int **Avance = calloc(11, 18); //tabla de avance
//int **InyTime = calloc(11, 18); //tabla de tiempo de inyeccion
//int **VE = calloc(11, 18);
bool _fxm = false;
void setup() {
Serial.println(F("DBG Iniciando"));
time.TLamb(1500, 45);
time.Tarr();
Wire.begin();
attachInterrupt(digitalPinToInterrupt(2), I_RPM, CHANGE);
Serial.print(F("DBG Tarde: "));
Serial.print(millis());
Serial.println(F("mS"));
}
void loop() {
#if test == false
dtcmain.DTC_Loop();
if (SINC) {
#if alpha == 1
pwm.Iny(time.Aphplus(_RPM));
#endif
#if alpha == 0
pwm.Iny(byte(12)); //loop Inyeccion
#endif
pwm.Ecn(avc.GetTime(), avc.GetAVC(_RPM)); //loop encendido
vent(); //control de electro ventilador
FXM(); //FixedMode
dbg.loop(_RPM); //Debug
}
#endif
#if test == true
pwm.Iny(map(analogRead(A1),0,2500,0,1024));
#endif // test == true
}
void Iny() {
//UNDONE: void Iny()
//este void elige que algoritomo usar par calcular el tiempo de inyeccion
}
void I_RPM() { //interrupcion para rpm
if (SINC) {
_POS++;
_POS2++;
pwm.Intrr();
}
if (!SINC) {
sincINT();
}
}
void vent() {
//Controla electroventilador y corte de inyeccion por sobretemperatura
}
void sincINT() {
//interruppcion para "sincronizar()"
if (!initsinc) {
Ta = micros();
initsinc = true;
}
else {
if (sincB) {
Tb = micros();
T1 = Tb - Ta;
Ta = Tb;
sincB = false;
}
else {
Tb = micros();
T2 = Tb - Ta;
Ta = Tb;
sincB = true;
sincronizar();
}
}
}
void sincronizar() {
//este void caza el ultimo tiempo entre diente y si es mayor por 1.5 veces al anterior,
//marca que es el PMS
if (T2 > (T1 + (T1 / 2.3))) {
SINC = true;
}
}
/*###############################################
########### Fixed Mode Loop & Control############
#################################################*/
void FXM() {
//este seria seudo loop que tendria el modo fijo,
if (Ser.FXMD(_fxm)) {
_fxm = true;
do {
vent();
pwm.Iny(Ser.FXMD(false)); //loop Inyeccion
pwm.Ecn(avc.GetTime(), Ser.FXMD(true)); //loop encendido
} while (Ser.FXMD(_fxm));
}
}