-
Notifications
You must be signed in to change notification settings - Fork 0
/
io.c
248 lines (219 loc) · 6.35 KB
/
io.c
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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
#include "c_types.h"
#include "osapi.h"
#include "ets_sys.h"
#include "io.h"
#include "gpio16.h"
#include "user_interface.h"
#include "flash_param.h"
static ETSTimer resetBtntimer;
//uint8_t decibel = 0;
#define MSG_ERROR "ERROR\r\n"
void ICACHE_FLASH_ATTR config_cmd_gpio2(serverConnData *conn, uint8_t argc, char *argv[]) {
int laststate = 1;
int i;
if (argc == 0) {
laststate = gpio_read(GPIO_2_PIN);
espbuffsentprintf(conn, "GPIO2=%d\r\n", laststate);
}
else {
uint16_t gpiodelay = 100;
if (argc == 2) {
gpiodelay = atoi(argv[2]);
}
uint8_t value = atoi(argv[1]);
if (value < 3) {
if (value == 0) {
gpio_write(GPIO_2_PIN, value);
espbuffsentstring(conn, "LOW\r\n");
}
if (value == 1) {
gpio_write(GPIO_2_PIN, value);
espbuffsentstring(conn, "HIGH\r\n");
}
if (value == 2) {
gpio_pulse(GPIO_2_PIN, gpiodelay*1000);
espbuffsentstring(conn, "RESET\r\n");
}
} else {
espbuffsentstring(conn, MSG_ERROR);
}
}
}
void ICACHE_FLASH_ATTR config_cmd_mapping(serverConnData *conn, uint8_t argc, char *argv[]) {
while (gpio_read(GPIO_14_PIN)); // Aguardar enquanto pino estiver ocupado - ARM está calculando Média
if (argc > 0) {
uint8_t pulse_size;
uint8_t value = atoi(argv[1]);
set_gpio_mode(GPIO_14_PIN, GPIO_OUTPUT, GPIO_FLOAT);
gpio_write(GPIO_14_PIN, 0);
if (value < 3) {
switch (value) {
case CMDMAP30: // 0 - 30 minutos
pulse_size = 10;
espbuffsentstring(conn, "MAPPING 30 min");
break;
case CMDMAPNT: // 1 - Contínuo
pulse_size = 20;
espbuffsentstring(conn, "MAPPING continuous");
break;
case CMDMAPCMP: // 2 - Complementar
pulse_size = 30;
espbuffsentprintf(conn, "MAPPING complement");
break;
default:
break;
}
gpio_write(GPIO_14_PIN, 1);
os_delay_us(pulse_size * 1000); // largura de pulso mapeamento
gpio_write(GPIO_14_PIN, 0);
} else {
espbuffsentstring(conn, MSG_ERROR);
}
set_gpio_mode(GPIO_14_PIN, GPIO_INPUT, GPIO_FLOAT);
}
}
void ICACHE_FLASH_ATTR config_cmd_reset_dsp(serverConnData *conn, uint8_t argc, char *argv[]) {
while (gpio_read(GPIO_14_PIN)); // Aguardar enquanto pino estiver ocupado - ARM está calculando Média
if (argc == 0) {
set_gpio_mode(GPIO_14_PIN, GPIO_OUTPUT, GPIO_FLOAT);
gpio_write(GPIO_14_PIN, 1);
os_delay_us(40000); // largura de pulso para reset geral
gpio_write(GPIO_14_PIN, 0);
espbuffsentstring(conn, "RESET DSP");
set_gpio_mode(GPIO_14_PIN, GPIO_INPUT, GPIO_FLOAT);
} else {
espbuffsentstring(conn, MSG_ERROR);
}
}
void ICACHE_FLASH_ATTR config_cmd_gpio15(serverConnData *conn, uint8_t argc, char *argv[]) {
if (argc == 0)
espbuffsentprintf(conn, "Args: 0=low, 1=high, 2 <delay in ms>=reset (delay optional).\r\n");
else {
uint16_t gpiodelay = 100;
if (argc == 2) {
gpiodelay = atoi(argv[2]);
}
uint8_t value = atoi(argv[1]);
if (value < 3) {
if (value == 0) {
gpio_write(GPIO_15_PIN, value);
espbuffsentstring(conn, "LOW\r\n");
}
if (value == 1) {
gpio_write(GPIO_15_PIN, value);
espbuffsentstring(conn, "HIGH\r\n");
}
if (value == 2) {
gpio_pulse(GPIO_15_PIN, gpiodelay*1000);
espbuffsentstring(conn, "RESET\r\n");
}
} else {
espbuffsentstring(conn, MSG_ERROR);
}
}
}
void ICACHE_FLASH_ATTR config_cmd_gpio16(serverConnData *conn, uint8_t argc, char *argv[]) {
if (argc == 0)
espbuffsentprintf(conn, "Args: 0=low, 1=high, 2 <delay in ms>=reset (delay optional).\r\n");
else {
uint16_t gpiodelay = 100;
if (argc == 2) {
gpiodelay = atoi(argv[2]);
}
uint8_t value = atoi(argv[1]);
if (value < 3) {
if (value == 0) {
gpio_write(GPIO_16_PIN, value);
espbuffsentstring(conn, "LOW\r\n");
}
if (value == 1) {
gpio_write(GPIO_16_PIN, value);
espbuffsentstring(conn, "HIGH\r\n");
}
if (value == 2) {
gpio_pulse(GPIO_16_PIN, gpiodelay*1000);
espbuffsentstring(conn, "RESET\r\n");
}
} else {
espbuffsentstring(conn, MSG_ERROR);
}
}
}
void ICACHE_FLASH_ATTR intr_callback(unsigned pin, unsigned level) {
// Get the pin reading.
int reading = gpio_read(pin);
switch (pin) {
case GPIO_0_PIN:
break;
default:
break;
}
}
static void ICACHE_FLASH_ATTR pulseTimer(void *arg) {
static uint8_t alarmCmd = 0x9E;
char *data;
unsigned short len;
if (wifi_get_opmode() == SOFTAP_MODE) {
//system_phy_set_max_tpw(decibel);// 0 ~ 82 (hex) - 0,25 dBm unit
struct station_info *stationInfo = wifi_softap_get_station_info();
if (!gpio_read(GPIO_5_PIN)) {
data = &alarmCmd;
len = 0x01;
uart0_tx_buffer(data, len);
os_timer_disarm(&resetBtntimer);
deep_sleep_set_option( 0 );
system_deep_sleep( 0 ); // Sleep forever
}
wifi_softap_free_station_info(); // Free it by calling functions
/*
// Rampa de potência de 1 decibel (440 segundos)
if ((countLKModeDelay % 85) == 0)
{
decibel += 1;
if (decibel > 82) {
decibel = 0;
}
}
*/
}
}
static void ICACHE_FLASH_ATTR enableInterrupt(unsigned pin, unsigned gpio_type, gpio_intr_handler icb) {
set_gpio_mode(pin, GPIO_INT, GPIO_FLOAT);
gpio_intr_init(pin, gpio_type);
gpio_intr_attach(icb);
}
void ioTimerInit(void) {
os_timer_disarm(&resetBtntimer);
os_timer_setfn(&resetBtntimer, pulseTimer, NULL);
os_timer_arm(&resetBtntimer, 62, 1);
}
ETSTimer* getResetBtntimer(void)
{
return &resetBtntimer;
}
/*
#define GPIO_0_PIN 3 // GPIO0 - RET_ALARME
#define GPIO_1_PIN 10 // GPIO1 - TX
#define GPIO_2_PIN 4 // GPIO2
#define GPIO_3_PIN 9 // GPIO3 - RX
#define GPIO_4_PIN 2 // GPIO4 - INTCOM
#define GPIO_5_PIN 1 // GPIO5 - LK1 - wifi mode
#define GPIO_12_PIN 6 // GPIO12 - TX ENABLE
#define GPIO_13_PIN 7 // GPIO13
#define GPIO_14_PIN 5 // GPIO14 - ARM
#define GPIO_15_PIN 8 // GPIO15 -
#define GPIO_16_PIN 0 // GPIO16 -
*/
void ioInit(void) {
// Configurar entradas
// RET_ALARM - GPIO0 - Pin 18 - indicação de alarme da antena - borda negativa (queda do sinal)
while (gpio_read(GPIO_0_PIN) == 0);
enableInterrupt(GPIO_0_PIN, GPIO_PIN_INTR_NEGEDGE, intr_callback);
set_gpio_mode(GPIO_2_PIN, GPIO_INPUT, GPIO_FLOAT);
set_gpio_mode(GPIO_12_PIN, GPIO_INPUT, GPIO_FLOAT);
set_gpio_mode(GPIO_13_PIN, GPIO_INPUT, GPIO_FLOAT);
// GPIO14 - Pin 5 - Comunicação com o ARM - a interrupção recebe indicação do ARM sobre estar ocupado
set_gpio_mode(GPIO_14_PIN, GPIO_INPUT, GPIO_FLOAT);
set_gpio_mode(GPIO_15_PIN, GPIO_INPUT, GPIO_FLOAT);
set_gpio_mode(GPIO_16_PIN, GPIO_INPUT, GPIO_FLOAT);
}