Update revision to use TI's mqtt and Freertos.

Dependencies:   mbed client server

Fork of cc3100_Test_mqtt_CM3 by David Fletcher

Revision:
3:a8c249046181
Parent:
0:dbe5e7db3c45
--- a/cli_uart.cpp	Sat Jun 06 14:06:49 2015 +0000
+++ b/cli_uart.cpp	Thu Sep 03 14:02:37 2015 +0000
@@ -12,6 +12,9 @@
 Serial uart(p37, p31);
 #elif (THIS_BOARD == MBED_BOARD_LPC1768)
 Serial uart(p13, p14);
+#elif (THIS_BOARD == LPCXpresso4337)
+Serial uart(P3_4, P1_14);
+Serial uart0(UART0_TX, UART0_RX);
 #endif
 
 int Uart_Write(unsigned char *inBuff)
@@ -40,7 +43,7 @@
 
         RTOS_MUTEX_RELEASE(&g_printLock);
     } else {
-        printf("Uart Write failed [uart not writeable] now trying printf\r\n");
+//        printf("Uart Write failed [uart not writeable] now trying printf\r\n");
         while (usLength) {
             printf("%c",*inBuff);
             usLength--;
@@ -56,6 +59,7 @@
 void CLI_Configure(void)
 {
     uart.baud(115200);
+//    uart0.baud(115200);
 
     RTOS_MUTEX_CREATE(&g_printLock);