git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@13169 27425a3e-05d8-49a3-a47f-9c15f0e5edd8
This commit is contained in:
Giovanni Di Sirio 2019-11-09 10:33:03 +00:00
parent db257ce84e
commit 1452e78dd9
2 changed files with 3 additions and 1 deletions

View File

@ -429,7 +429,7 @@ msg_t uartSendFullTimeout(UARTDriver *uartp, size_t *np,
/* Waiting for result.*/
msg = osalThreadSuspendTimeoutS(&uartp->threadtx, timeout);
if (msg != MSG_OK) {
*np = uartStopSendI(uartp);
*np -= uartStopSendI(uartp);
}
osalSysUnlock();

View File

@ -135,6 +135,8 @@
- HAL: Added a new interface for range-finder devices (used by EX).
- HAL: Added mcuconf.h updater tool for STM32F407 (backported to 19.1.1).
- NIL: Integrated NIL 4.0.
- FIX: Fixed error in uartSendFullTimeout() HAL function (bug #1057)
(backported to 19.1.4)(backported to 18.2.3).
- FIX: Fixed OS-less Cortex-M OSAL problem with critical zones (bug #1056)
(backported to 19.1.4)(backported to 18.2.3).
- FIX: Fixed missing RTCv1 definitions in STM32F37x registry (bug #1054)