Etherios Cloud Connector very first porting for mbed. Tested in an LPC1768

Etherios Cloud Connector for Embedded v2.1.0.3 library for mbed. Early porting.

This port is centered mainly in the platform code. So it should work properly with the provided examples of send_data, device_request, data_points, RCI and firmware_update (stub implementation, not a real one... yet ;-)). Filesystem is not implemented yet, and some examples might need changes.

To run, it needs the following libraries: - mbed - mbed-rtos - EthernetInterface

Find more information (and the source code!) about Etherios Cloud Connector for Embedded here: http://www.etherios.com/products/devicecloud/support/connector and in: http://www.etherios.com

Revision:
0:1c358ea10753
diff -r 000000000000 -r 1c358ea10753 private/rci_binary_element.h
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/private/rci_binary_element.h	Tue Dec 03 13:34:02 2013 +0000
@@ -0,0 +1,33 @@
+/*
+ * Copyright (c) 2013 Digi International Inc.,
+ * All rights not expressly granted are reserved.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this file,
+ * You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * Digi International Inc. 11001 Bren Road East, Minnetonka, MN 55343
+ * =======================================================================
+ */
+
+#define ELEMENT_ID_VARIABLE(rci)        ((rci)->shared.element.id)
+#define set_element_id(rci, value)      (ELEMENT_ID_VARIABLE(rci) = (value))
+#define get_element_id(rci)             (ELEMENT_ID_VARIABLE(rci))
+#define invalidate_element_id(rci)      set_element_id(rci, INVALID_ID)
+#define have_element_id(rci)            (get_element_id(rci) != INVALID_ID)
+
+static connector_group_element_t const * get_current_element(rci_t const * const rci)
+{
+    ASSERT(have_group_id(rci));
+    ASSERT(have_element_id(rci));
+
+    {
+        connector_group_t const * const group = get_current_group(rci);
+        unsigned int const id = get_element_id(rci);
+
+        ASSERT(id < group->elements.count);
+
+        return (group->elements.data + id);
+    }
+}
+