diff options
author | root <root@no.no.james.local> | 2015-11-17 12:54:57 +0000 |
---|---|---|
committer | root <root@no.no.james.local> | 2015-11-17 12:54:57 +0000 |
commit | ea4510dfe03f891340985594c4de15134e548853 (patch) | |
tree | e9f8df4d1c45a5781aea7d74b9973b5b92ca7d5f /polycom_recv/project.h | |
parent | 7059fd523d6514d04e232f1d0acbc983856bd2e6 (diff) | |
download | polycom-ea4510dfe03f891340985594c4de15134e548853.tar.gz polycom-ea4510dfe03f891340985594c4de15134e548853.tar.bz2 polycom-ea4510dfe03f891340985594c4de15134e548853.zip |
recvr
Diffstat (limited to 'polycom_recv/project.h')
-rw-r--r-- | polycom_recv/project.h | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/polycom_recv/project.h b/polycom_recv/project.h new file mode 100644 index 0000000..08b275a --- /dev/null +++ b/polycom_recv/project.h @@ -0,0 +1,43 @@ +#ifndef __PROJECT_H__
+#define __PROJECT_H__
+
+#define USE_OPTIMIZE_PRINTF
+#define USE_US_TIMER
+
+#if 1
+#define ESP_DBG os_printf
+#else
+#define ESP_DBG
+#endif
+
+
+#include <ets_sys.h>
+#include <os_type.h>
+#include <mem.h>
+#include <osapi.h>
+#include <user_interface.h>
+#include <espconn.h>
+#include <upgrade.h>
+#include <gpio.h>
+#include <eagle_soc.h>
+#include "uart_register.h"
+
+
+#define ESP_DOMAIN "iot.panaceas.org"
+
+#define SOFTAP_PSK "fishsoup"
+
+#define BEACON_TIMEOUT 150000000
+#define BEACON_TIME 50000
+
+#define AP_CACHE 1
+#define AP_CACHE_NUMBER 5
+
+#undef HTTPS
+
+
+#define FOO do { os_printf("%s:%d\n",__FILE__,__LINE__); } while (0)
+
+
+#endif
+
|