From 273133f6f666d4ad1a341872cb302b8b37b7b2f5 Mon Sep 17 00:00:00 2001 From: "kevin.larke" Date: Sat, 18 Apr 2020 08:59:35 -0400 Subject: [PATCH] cwTime.cpp : Added >=, <= tests to test(). --- cwTime.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cwTime.cpp b/cwTime.cpp index 9d604da..d6e756d 100644 --- a/cwTime.cpp +++ b/cwTime.cpp @@ -170,7 +170,7 @@ cw::rc_t cw::time::test() unsigned dMs = elapsedMs(t0,t1); - printf("dMs:%i\n",dMs); + printf("dMs:%i : GTE:%i LTE:%i\n",dMs, isGTE(t0,t1), isLTE(t0,t1) ); return kOkRC;