git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@12937 27425a3e-05d8-49a3-a47f-9c15f0e5edd8
This commit is contained in:
Giovanni Di Sirio 2019-08-08 06:48:31 +00:00
parent 272b779bfd
commit 0e9e772f51
2 changed files with 3 additions and 1 deletions

View File

@ -207,7 +207,7 @@ typedef struct {
* *
* @api * @api
*/ */
#define fileStreamGetSize(ip, offset) ((ip)->vmt->getsize(ip), offset) #define fileStreamGetSize(ip, offset) ((ip)->vmt->getsize(ip, offset))
/** /**
* @brief Returns the current file pointer position. * @brief Returns the current file pointer position.

View File

@ -107,6 +107,8 @@
- HAL: Added a new interface for range-finder devices (used by EX). - 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). - HAL: Added mcuconf.h updater tool for STM32F407 (backported to 19.1.1).
- NIL: Integrated NIL 4.0. - NIL: Integrated NIL 4.0.
- FIX: Fixed misplaced parenthesis in hal_files.h (bug #1040)
(backported to 19.1.4).
- FIX: Fixed wrong day-of-the-week in STM32 RTCv2 driver (bug #1039). - FIX: Fixed wrong day-of-the-week in STM32 RTCv2 driver (bug #1039).
- FIX: Fixed missing bracket in MX25 flash driver (bug #1038) - FIX: Fixed missing bracket in MX25 flash driver (bug #1038)
(backported to 19.1.3). (backported to 19.1.3).