From 7dbc6a75678e6e06ec99786eb945d043b64e9721 Mon Sep 17 00:00:00 2001 From: gdisirio Date: Tue, 10 Mar 2009 22:05:31 +0000 Subject: git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@829 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- src/chvt.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/chvt.c b/src/chvt.c index 9d4fec138..ce322e35f 100644 --- a/src/chvt.c +++ b/src/chvt.c @@ -102,12 +102,14 @@ void chVTResetI(VirtualTimer *vtp) { * @param[in] end the end of the time window (non inclusive) * @retval TRUE current time within the specified time window. * @retval FALSE current time not within the specified time window. + * @note When start==end then the function returns always true because the + * whole time range is specified. */ bool_t chTimeIsWithin(systime_t start, systime_t end) { systime_t time = chTimeNow(); - return end >= start ? (time >= start) && (time < end) : - (time >= start) || (time < end); + return end > start ? (time >= start) && (time < end) : + (time >= start) || (time < end); } /** @} */ -- cgit v1.2.3