git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@8357 35acf78f-673a-0410-8e92-d51de3d6d3f4
master
Giovanni Di Sirio 2015-10-11 09:35:53 +00:00
parent fed322ed3c
commit fbcb70d739
2 changed files with 3 additions and 1 deletions

View File

@ -285,7 +285,7 @@ static inline bool chVTIsTimeWithinX(systime_t time,
systime_t start,
systime_t end) {
return (bool)((time - start) < (end - start));
return (bool)((systime_t)(time - start) < (systime_t)(end - start));
}
/**

View File

@ -119,6 +119,8 @@
- HAL: Fixed STM32F3xx HAL checking for non-existing macros (bug #648)
(backported to 3.0.3 and 2.6.10).
- HAL: Fixed error in STM32F030 EXT driver (bug #647)(backported to 3.0.3).
- RT: Fixed problem with chVTIsTimeWithinX() (bug #646)(backported to
3.0.3 and 2.6.10).
- VAR: Fixed _sbrk_r with incr == 0 should be valid (bug #645)(backported to
3.0.3 and 2.6.10).
- RT: Fixed issues in CMSIS RTOS interface (bug #644)(backported to 3.0.3).