Wifly Driver  V1.0
Config.h
Go to the documentation of this file.
1 /*
2  * Config.h
3  *
4  * Created on: 13/12/2015
5  * Author: Victor
6  */
40 #ifndef CONFIG_H_
41 #define CONFIG_H_
42 
43 #include "uart.h"
44 #include "Printf.h"
45 #include "WiFly.h"
46 #include "Log.h"
47 
49 #define WIFLY_RST_PIN 22
50 
51 /* WLAN Settings */
53 #define WLAN_SSID "MORGUE"
54 
56 #define WLAN_PASSWORD "Mireia09&Victor11"
57 
59 #define WLAN_SEC_TYPE MIXED
60 
62 #define WLAN_PING_CHECK "8.8.8.8"
63 
65 #define UART_PORT_WIFLY UART3PORT
66 
68 #define BUFSIZE_WIFLY 512
69 
71 #define UART_PORT_DEBUG UART0PORT
72 
74 #define BUFSIZE_DEBUG 512
75 
77 #define LOG_LVL 3
78 
79 /* Arpalab settings */
81 #define ARPALAB_DNSADDRESS "arpalab.appspot.com"
82 
83 #define ARPALAB_ID 9423
84 
85 #define ARPALAB_APP "TFC"
86 
87 /* TCP settings */
89 #define TCP_ADDRESS "192.168.1.34"
90 
91 #define TCP_PORT 6789
92 
93 /* UDP settings */
95 #define UDP_ADDRESS "192.168.1.34"
96 
97 #define UDP_PORT 2589
98 
99 #define UDP_LOCAL_PORT 2589
100 
101 
102 #endif /* CONFIG_H_ */