aboutsummaryrefslogtreecommitdiff
path: root/client/time.h
diff options
context:
space:
mode:
authorlonkaars <loek@pipeframe.xyz>2022-05-30 16:53:00 +0200
committerlonkaars <loek@pipeframe.xyz>2022-05-30 16:53:00 +0200
commit79f2164bb6fe1727be284e5208ae402379341009 (patch)
tree37c740231891d7e918a7c69c654fb1f813c0073a /client/time.h
parentb728a15887fa28cdd98d74017c4882d632d6e069 (diff)
terminal drive control concept
Diffstat (limited to 'client/time.h')
-rw-r--r--client/time.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/client/time.h b/client/time.h
index 253451d..30c8124 100644
--- a/client/time.h
+++ b/client/time.h
@@ -3,7 +3,10 @@
/** amount of parallel timers */
#define W2_CLIENT_TIMER_COUNT (4)
extern unsigned long g_w2_client_timers[W2_CLIENT_TIMER_COUNT];
-typedef enum { W2_TIMER_PING = 0 } w2_e_client_timers;
+typedef enum {
+ W2_TIMER_PING = 0,
+ W2_TIMER_UPDATE = 1,
+} w2_e_client_timers;
void w2_timer_start(w2_e_client_timers label);
unsigned long w2_timer_end(w2_e_client_timers label);