This program can detect the type(mbed or LPCXpresso) of platform. The sample recognizes mbed or LPCXpresso.

Dependencies:   mbed

This program detects the LPCXpresso and mbed at run time.

There is a difference in the value of the CoreDebugRegister LPCXpresso and mbed.

The program check those bits and select platform type.

#include "mbed.h"
#include "PlatformInfo.h"
DigitalOut mbedled(LED1);
DigitalOut lpcxled(P0_22);
using namespace MiMic;
int main(){
    switch(PlatformInfo::getPlatformType()){
    case PlatformInfo::PF_MBED:
        while(1) {
            mbedled = 1;
            wait(0.2);
            mbedled = 0;
            wait(0.2);
        }
    case PlatformInfo::PF_LPCXPRESSO:
        while(1) {
            lpcxled = 1;
            wait(0.1);
            lpcxled = 0;
            wait(0.1);
        }
    }    
}

If program run on mbed, LED1(blue) will be blinking. If it run on LPCXpresso, LED2(red) will be blinking.

Revision:
0:ef577a5fd78f
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Sun May 05 11:29:12 2013 +0000
@@ -0,0 +1,26 @@
+#include "mbed.h"
+#include "PlatformInfo.h"
+DigitalOut mbedled(LED1);
+DigitalOut lpcxled(P0_22);
+using namespace MiMic;
+int main(){
+    
+
+    
+    switch(PlatformInfo::getPlatformType()){
+    case PlatformInfo::PF_MBED:
+        while(1) {
+            mbedled = 1;
+            wait(0.2);
+            mbedled = 0;
+            wait(0.2);
+        }
+    case PlatformInfo::PF_LPCXPRESSO:
+        while(1) {
+            lpcxled = 1;
+            wait(0.1);
+            lpcxled = 0;
+            wait(0.1);
+        }
+    }    
+}