IBM IoT Client Ethernet example

Dependencies:   C12832_fix EthernetInterface LM75B MMA7660 MQTT mbed-rtos mbed

Fork of IBMIoTClientEthernetExample by IBM Watson IoT

Files at this revision

API Documentation at this revision

Comitter:
MACRUM
Date:
Thu Mar 19 14:27:39 2015 +0000
Parent:
10:0b5e0dfee08e
Child:
12:c5f8d9bb02b4
Commit message:
Support GR-PEACH Rev.B board

Changed in this revision

C12832.lib Show annotated file Show diff for this revision Revisions of this file
EthernetInterface.lib Show annotated file Show diff for this revision Revisions of this file
RZA1H.h Show annotated file Show diff for this revision Revisions of this file
main.cpp Show annotated file Show diff for this revision Revisions of this file
mbed-rtos.lib Show annotated file Show diff for this revision Revisions of this file
mbed.bld Show annotated file Show diff for this revision Revisions of this file
--- a/C12832.lib	Mon Oct 20 14:37:33 2014 +0000
+++ b/C12832.lib	Thu Mar 19 14:27:39 2015 +0000
@@ -1,1 +1,1 @@
-http://mbed.org/teams/components/code/C12832/#03069e3deaa4
+http://mbed.org/teams/components/code/C12832/#83823e92a9c8
--- a/EthernetInterface.lib	Mon Oct 20 14:37:33 2014 +0000
+++ b/EthernetInterface.lib	Thu Mar 19 14:27:39 2015 +0000
@@ -1,1 +1,1 @@
-http://mbed.org/users/mbed_official/code/EthernetInterface/#5887ae6c0c2c
+http://mbed.org/users/mbed_official/code/EthernetInterface/#2fc406e2553f
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/RZA1H.h	Thu Mar 19 14:27:39 2015 +0000
@@ -0,0 +1,43 @@
+/*******************************************************************************
+ * Copyright (c) 2014 IBM Corp.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * and Eclipse Distribution License v1.0 which accompany this distribution.
+ *
+ * The Eclipse Public License is available at
+ *    http://www.eclipse.org/legal/epl-v10.html
+ * and the Eclipse Distribution License is available at
+ *   http://www.eclipse.org/org/documents/edl-v10.php.
+ *
+ * Contributors:
+ *    Ian Craggs - initial implementation
+ *    Sam Grove  - added method to check the status of the Ethernet cable 
+ *******************************************************************************/
+
+#if !defined(RZA1H_H)
+#define RZA1H_H
+
+C12832 lcd(D11, D13, D12, D7, D10);
+BusOut led2 (LED_BLUE);
+BusOut r (D5);
+BusOut g (D9);
+BusOut b (D8);
+MMA7660 MMA(I2C_SDA, I2C_SCL);
+LM75B sensor(I2C_SDA, I2C_SCL);
+DigitalIn Up(A2); DigitalIn Down(A3); DigitalIn Right(A4); DigitalIn Left(A5); DigitalIn Click(D4);
+AnalogIn ain1(A0); AnalogIn ain2(A1);
+
+#define LED2_OFF 1
+#define LED2_ON 0
+
+#define DEFAULT_TYPE_NAME "iotsample-mbed-gr-peach"
+
+//#include "lpc_phy.h"
+// need a wrapper since K64F and LPC1768 wont have the same name for mii read methods
+static uint32_t linkStatus(void)
+{
+    return (1);
+}
+
+#endif
--- a/main.cpp	Mon Oct 20 14:37:33 2014 +0000
+++ b/main.cpp	Thu Mar 19 14:27:39 2015 +0000
@@ -50,6 +50,9 @@
 #elif defined(TARGET_K64F)
 #warning "Compiling for mbed K64F"
 #include "K64F.h"
+#elif defined(TARGET_RZ_A1H)
+#warning "Compiling for mbed GR-PEACH"
+#include "RZA1H.h"
 #endif
 
 bool quickstartMode = true;
@@ -259,7 +262,11 @@
         
         // this works - reset the system when the retry count gets to a threshold
         if (retryAttempt == 5)
+#if defined(TARGET_RZ_A1H)
+            mbed_die();
+#else
             NVIC_SystemReset();
+#endif
         else
             wait(timeout);
     }
--- a/mbed-rtos.lib	Mon Oct 20 14:37:33 2014 +0000
+++ b/mbed-rtos.lib	Thu Mar 19 14:27:39 2015 +0000
@@ -1,1 +1,1 @@
-http://mbed.org/users/mbed_official/code/mbed-rtos/#aaa1b2c7c64c
+http://mbed.org/users/mbed_official/code/mbed-rtos/#d3d0e710b443
--- a/mbed.bld	Mon Oct 20 14:37:33 2014 +0000
+++ b/mbed.bld	Thu Mar 19 14:27:39 2015 +0000
@@ -1,1 +1,1 @@
-http://mbed.org/users/mbed_official/code/mbed/builds/552587b429a1
\ No newline at end of file
+http://mbed.org/users/mbed_official/code/mbed/builds/487b796308b0
\ No newline at end of file