IO is an event based input manager which permit to select which composents are manged on your system

Dependencies:   C12832 FXOS8700Q LM75B MMA7660

Revision:
3:1ab88130bb9d
Parent:
0:2ac59c564ab0
--- a/IO.hpp	Tue Feb 23 18:56:50 2016 +0000
+++ b/IO.hpp	Thu Feb 25 14:28:48 2016 +0000
@@ -11,19 +11,19 @@
 struct FrdmK64f
 {
     typedef FrdmK64f_Input< ::Input> Input;         // If we want to use k64f only
-    struct Output { FrdmK64f_Output platform; };    //
+    struct Output { FrdmK64f_Output frdmK64f; };    //
 
     struct AppShield
     {
         typedef FrdmK64f_AppShield_Input<FrdmK64f::Input> Input;                        // If we want to use k64f
-        struct Output { FrdmK64f_Output platform; FrdmK64f_AppShield_Output board; };   // with application shield
+        struct Output { FrdmK64f_Output frdmK64f; FrdmK64f_AppShield_Output appShield; };   // with application shield
     };
 };
 
 struct AppShield
 {
     typedef FrdmK64f_AppShield_Input< ::Input> Input;   // If we want to use 
-    struct Output { FrdmK64f_AppShield_Output board; }; // application shield only
+    struct Output { FrdmK64f_AppShield_Output appShield; }; // application shield only
 };
 
 /*