cc3000_ntp_demo_F446RE

Dependencies:   NTPClient2 NVIC_set_all_priorities cc3000_hostdriver_mbedsocket mbed

Fork of cc3000_ntp_demo by Martin Kojtal

Revision:
2:f163731f852a
Parent:
1:fd70c76e74b2
Child:
3:4a2dfa38a61e
diff -r fd70c76e74b2 -r f163731f852a main.h
--- a/main.h	Tue Oct 01 04:48:37 2013 +0000
+++ b/main.h	Thu Oct 03 14:46:22 2013 +0000
@@ -16,7 +16,13 @@
 #ifndef MAIN_H
 #define MAIN_H
 
-/* use this defines in AP_SECURITY */
+#define WIGO           1
+#define WIFI_DIPCORTEX 2
+#define UNDEFINED      3
+
+#define MY_BOARD WIGO
+
+// use this defines in AP_SECURITY
 #define NONE 0
 #define WEP  1
 #define WPA  2
@@ -27,25 +33,9 @@
 
  // Default SSID Settings
 #define AP_KEY       "zxcvbnm,./"
-#define AP_SECURITY     WPA2            // WPA2 must be enabled for use with iPhone or Android phone hotspot!
-#define SSID           "SSID"
-/* Board specific */
-#define WIGO_BOARD 1
-
-#if (WIGO_BOARD == 1)
+#define AP_SECURITY  WPA2            // WPA2 must be enabled for use with iPhone or Android phone hotspot!
+#define SSID         "SSID"
 
-#define SET_PWR_EN1    PWR_EN1 = 0
-#define SET_PWR_EN2    PWR_EN2 = 1
-
-#define WLAN_ISF_PCR        PORTA->PCR[16]
-#define WLAN_ISF_ISFR       PORTA->ISFR
-#define WLAN_ISF_MASK       (1<<16)
-
-#define CLEAR_PCR_INTERRUPT    WLAN_ISF_PCR|=PORT_PCR_ISF_MASK;
-#define CLEAN_PORT_INTERRUPT   WLAN_ISF_ISFR|=WLAN_ISF_MASK;
-
-#else
+void init();
 
 #endif
-
-#endif