Trond Enger / d7a_1x

Fork of d7a_1x by WizziLab

Revision:
52:c7a58fc48bd2
Parent:
50:30440c9aeb7c
Child:
56:da34fc11e760
diff -r 644de6fe1ee7 -r c7a58fc48bd2 include/d7a_modem.h
--- a/include/d7a_modem.h	Tue Sep 06 15:00:32 2016 +0000
+++ b/include/d7a_modem.h	Tue Sep 06 15:23:39 2016 +0000
@@ -9,49 +9,49 @@
 {    //============================================
     // COMMANDS
     //============================================
-    /// Soft-reset Modem Device
-    /// ARGS: none
+    // Soft-reset Modem Device
+    // ARGS: none
     WM_CMD_RST                      = 0x01,
 
-    /// Start D7A communication stack
-    /// ARGS: none TODO: pass number of fifos ?
+    // Start D7A communication stack
+    // ARGS: none TODO: pass number of fifos ?
     WM_CMD_D7A_STACK_START          = 0x02,
 
-    /// Stop D7A communication stack
-    /// ARGS: none
+    // Stop D7A communication stack
+    // ARGS: none
     WM_CMD_D7A_STACK_STOP           = 0x03,
 
-    /// Register a File for notification
-    /// ARGS: register_file_param_t
+    // Register a File for notification
+    // ARGS: register_file_param_t
     WM_CMD_REGISTER_FILE            = 0x04,
 
-    /// Notify a (previously registered) file
-    /// ARGS: notify_file_param_t
+    // Notify a (previously registered) file
+    // ARGS: notify_file_param_t
     WM_CMD_NOTIFY_FILE              = 0x05,
 
-    /// Command that will be instantly answered with WM_OK
-    /// ARGS: none
+    // Command that will be instantly answered with WM_OK
+    // ARGS: none
     WM_CMD_READY                    = 0x06,
 
     //============================================
     // RESPONSES
     //============================================
-    /// Send by the Modem Device after a command has been executed/taken
-    /// into account, and the Modem is ready to handle a new command.
-    /// ARGS: none
+    // Send by the Modem Device after a command has been executed/taken
+    // into account, and the Modem is ready to handle a new command.
+    // ARGS: none
     WM_OK                           = 0x80,
 
-    /// Send by the Modem Device after a (re)boot.
-    /// ARGS: boot_status_t
+    // Send by the Modem Device after a (re)boot.
+    // ARGS: boot_status_t
     WM_BOOT                         = 0x81,
 
-    /// Send by the Modem Device in case of failing command
-    /// ARGS: wm_error_code_t (u8)
+    // Send by the Modem Device in case of failing command
+    // ARGS: wm_error_code_t (u8)
     WM_ERROR                        = 0x82,
 
-    /// Send by the Modem Device upon the end of a File notification.
-    /// This response is generated depending on ALP's Retry-Policy ('respond' field set)
-    /// ARGS: wm_notif_result_t
+    // Send by the Modem Device upon the end of a File notification.
+    // This response is generated depending on ALP's Retry-Policy ('respond' field set)
+    // ARGS: wm_notif_result_t
     WM_NOTIF_DONE                   = 0x83,
 } wm_cmd_t;