event reporting format change and make report only specific device

r1261 | dcl | 2006-11-09 11:04:10 +1100 (Thu, 09 Nov 2006) | 2 lines
This commit is contained in:
Douglas Clowes
2006-11-09 11:04:10 +11:00
parent f1247f8502
commit f6e85f1859
2 changed files with 26 additions and 26 deletions

View File

@@ -8,16 +8,16 @@
#include "utility.h"
#include "params.h"
typedef enum counter_state_t
typedef enum device_state_t
{
/** The counter has not yet been created or has been destroyed */
counter_idle = 0,
device_idle = 0,
/** The counter has not yet been started or has been stopped */
counter_stopped,
device_stopped,
/** The counter is counting */
counter_running,
device_running,
/** the counter has been paused */
counter_paused
device_paused
} DEVICE_STATE;
/**