Host library for controlling a WiConnect enabled Wi-Fi module.

Dependents:   wiconnect-ota_example wiconnect-web_setup_example wiconnect-test-console wiconnect-tcp_server_example ... more

Revision:
0:ea85c4bb5e1f
Child:
1:6ec9998427ad
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/types/ScanResultList.h	Mon Aug 11 09:58:24 2014 +0000
@@ -0,0 +1,49 @@
+/*
+ * Copyright 2014, ACKme Networks
+ * All Rights Reserved.
+ *
+ * This is UNPUBLISHED PROPRIETARY SOURCE CODE of ACKme Networks;
+ * the contents of this file may not be disclosed to third parties, copied
+ * or duplicated in any form, in whole or in part, without the prior
+ * written permission of ACKme Networks.
+ */
+
+#pragma once
+
+#include "WiconnectTypes.h"
+#include "types/ScanResult.h"
+
+
+
+namespace wiconnect
+{
+
+
+
+class ScanResultList
+{
+public:
+    ScanResultList(int bufferLen = 0, void *buffer = NULL);
+    ~ScanResultList();
+
+    const ScanResult* getListHead() const;
+    int getCount() const;
+    const ScanResult* getResult(int i) const;
+    const ScanResult* operator [](int i) const;
+
+protected:
+    ScanResult *listHead, *listTail;
+    uint8_t *buffer;
+    uint8_t *bufferPtr;
+    int bufferLen;
+    int count;
+
+    WiconnectResult add(const char *channelStr, const char *rssiStr, const char* macStr, const char *rateStr, const char *secStr, const char *ssidStr);
+
+
+    friend class NetworkInterface;
+};
+
+
+}
+