main.c
6.02 KB
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
#include <string.h>
#include "libwismart.h"
#include "libwismart_irqs.h" /* implement irq handlers */
#include "lwip/inet.h"
#include "globals.h"
#include "httpClient.h"
#include "callbacks.h"
#include "buffer.h"
#include "i2c.h"
#include "configServer.h"
#include "sensors.h"
#define WIFI_MODE WIFI_MODE_CLIENT
#define NETWORK_SSID_AP "modularsens"
#define NETWORK_KEY_AP NULL
#define NETWORK_CHANNEL_AP 1
#define HARD_LIMIT_WAIT_TIME 10*1000 //5*60*1000
wismart_registryKey_t geo;
void initLibwismart(void)
{
wismart_hwif_t hwif = libwismart_GetDefaultHWIF();
libwismart_Init(hwif);
}
uint8_t connected=0;
uint8_t timeout=0;
uint8_t retries=0;
void init_registry(void)
{
config_params_t config;
strcpy(config.localization,"none");
libwismart_RegistryCreateKey(&geo, 1, sizeof(config));
libwismart_RegistryOpen(1);
if(!libwismart_RegistryIsValueEmpty(&geo))
{
libwismart_RegistryGet(&geo,&config);
}
printf("SSID = %s\r\n",config.ssid);
printf("Wep key = %s\r\n",config.wepkey);
printf("Passphrase = %s\r\n", config.passphrase);
printf("User = %s\r\n",config.user);
printf("Password = %s\r\n",config.password);
printf("Encryption type = %d\r\n",config.security);
printf("Geo Localization = %s\r\n", config.localization);
strcpy(mod.geoloc,config.localization);
if(config.security == PROFILE_SECURITY_OPEN)
{
printf("open detected\r\n");
libwismart_WiFiConnect(config.ssid,NULL,wifi_connect_result_cb);
}
else if(config.security == PROFILE_SECURITY_WPA_WPA2)
{
if(!strcmp(config.user,""))
{
printf("wpa detected\r\n");
libwismart_WiFiConnect(config.ssid,config.passphrase,wifi_connect_result_cb);
}
else
{
printf("wpa Enterprise detected\r\n");
struct wpa_param wpa;
wpa.eap_method = WISMART_EAP_METHOD_TTLS;
wpa.u.ttls.identity = config.user;
wpa.u.ttls.password = config.password;
wpa.u.ttls.ca_cert=NULL;
libwismart_WiFiConnectEnterprise(config.ssid, &wpa, wifi_connect_result_cb);
}
}
else
{
printf("wep detected\r\n");
//Is WEP
libwismart_WiFiConnect(config.ssid,config.wepkey,wifi_connect_result_cb);
}
while(connected == 0 && timeout != 1 )
{chThdSleepMilliseconds(500);}
}
int main(void)
{
initLibwismart();
libwismart_PowerSave_Enable();
libwismart_PowerSave_HigherProfile(TRUE);
libwismart_RegisterDhcpCB(dhcp_connect_result_cb);
libwismart_WiFiInit();
libwismart_SetScanRunsForConnTimeout(4); //Edit a 4
libwismart_EnableBsdSocketAPI();
uint32_t ind[4]={0};
char** buffers[4];
uint32_t sizes[4]={0};
char* sensor_id[TOTAL_SENSORS];
int i;
init_registry();
if(timeout==1)
{
printf("Creating AP\r\n");
//corroborar los parametros del AP
configServer_start(1);
libwismart_WiFi_SoftAP_Start(NETWORK_SSID_AP,NETWORK_CHANNEL_AP,NULL,softapMode_apStartedCb, softapMode_clientIndicationCb);
for(;;)
{
chThdSleepMilliseconds(1000);
}
}
for(;;)
{
// i2c gets the data and combines it with the time stamp
char* data="message,0";
char* data2="message,1";
char* data3="message,2";
for(i=0;i<TOTAL_SENSORS;i++){
printf("------------------BUFFER %d ----------------------\r\n",i);
printf("index=%d\r\n",ind[i]);
// 3 missatges de prova a cada buffer
buffers[i]=put_message(data, buffers[i] ,&ind[i],&sizes[i]);
buffers[i]=put_message(data2, buffers[i] ,&ind[i],&sizes[i]);
buffers[i]=put_message(data3, buffers[i] ,&ind[i],&sizes[i]);
printf("mirant memoria\r\n");
int res=check_memory();
if(res==SOFT_REACHED){
printf("--------------soft limit-------------\r\n");
int j;
for(j=0;j<TOTAL_SENSORS;j++)
{
printf(" enviant buffer %d\r\n",j);
// fem servir 085 de prova, però haurem de fer servir sensor_id[j]
int ok=send(buffers[j],&ind[j],&sizes[j], mod.ID, sensor_id[j]);
if(ok==JSON_COMM_ERROR)
{
printf("wismart is not connected\r\n");
}
else if( ok==JSON_OTHER_ERROR){
printf("some error ocurred\r\n");
}
else if(ok ==JSON_POST_OK){
printf(" send OK \r\n");
}
}
}
else if(res==HARD_REACHED){
/*printf("--------------hard limit-------------\r\n");
// fem servir 085 de prova, però haurem de fer servir sensor_id[0]
while( send(buffers[0],&ind[0],&sizes[0], mod.ID, sensor_id[j]) != JSON_POST_OK )
{
// El servidor no ens sap dir si tenim permisos o no sense registrar una mostra.
// Intentem enviar un buffer sencer, a veure si ja podem buidar.
// No podem enviar només una mostra perquè json és rígid en aquest sentit.
printf("hard_reached and unable to sentd.\r\nLa biblia en vers: i Jesús digué: Aixeca't, Llàtzer!!\r\n");
chThdSleepMilliseconds(HARD_LIMIT_WAIT_TIME);
}
int j;
for(j=1;j<TOTAL_SENSORS;j++)
{
printf(" enviant buffer %d\r\n",j);
// fem servir 085 de prova, però haurem de fer servir sensor_id[j]
int ok=send(buffers[j],&ind[j],&sizes[j], mod.ID, sensor_id[j]);
if(ok==JSON_COMM_ERROR)
{
printf("wismart is not connected\r\n");
}
else if( ok==JSON_OTHER_ERROR){
printf("some error ocurred\r\n");
}
else if(ok ==JSON_POST_OK){
printf(" send OK \r\n");
}
}*/
}
}
//chThdSleepMilliseconds(100);
}
}
//SE DEBE LIBERAR LA MEMORIA DE LAS FUNCIONES value DE LOS SENSORES!!!