Murata RF modules are designed to simplify wireless development and certification by minimizing the amount of RF expertise you need to wirelessly enable a wide range of applications.

Revision:
9:0ce800923eda
Parent:
0:8e83b9448758
--- a/ErrorCode/CMDCode.h	Mon Feb 15 15:17:50 2016 +0000
+++ b/ErrorCode/CMDCode.h	Wed Mar 16 15:04:46 2016 +0000
@@ -3,9 +3,18 @@
 
 namespace SmartLabMuRata
 {
+/**
+* General Management Response Code
+*/
 enum CMDCode {
+    
+    /// Response timeout due to no data avaliable 
     GEN_NORESPONSE = -1,
+    
+    /// OK
     GEN_SUCCESS = 0x00,
+    
+    /// ERROR
     GEN_FAILED = 0x01,
 };
 }