Commit b13c640858c206602399000caebf33fff1ee2280

Authored by Imanol-Mikel Barba Sabariego
1 parent d85dea2d

--no commit message

Project/applications/smartcities/Makefile
... ... @@ -10,7 +10,7 @@
10 10 SDK_ROOT = ../../
11 11 PROJECT_OUT = smartcities
12 12  
13   -USER_SRC = main.c httpClient.c callbacks.c
  13 +USER_SRC = main.c httpClient.c callbacks.c module.c sensors.c
14 14 USER_INCDIR = include/
15 15  
16 16 # if you need to add build Defines options add to USER_DEFS define
... ...
Project/applications/smartcities/main.c
... ... @@ -37,7 +37,7 @@ int main(void)
37 37  
38 38 libwismart_WiFiInit();
39 39 //falta definir les variables de la xarxa
40   - libwismart_WiFiConnectEnterprise(NETWORK_SSID, &wpa, wifii_connect_result_cb);
  40 + libwismart_WiFiConnectEnterprise(NETWORK_SSID, &wpa, wifi_connect_result_cb);
41 41  
42 42 //int httpRequest(struct httpHeaders head, char* content, int content_size)
43 43 //chThdSleepMilliseconds(5000);
... ...