Fixed bug #421.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@6063 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
3bae1b202a
commit
72a1f3b4be
|
@ -65,6 +65,11 @@
|
||||||
#include "hal.h"
|
#include "hal.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifndef __errno_r
|
||||||
|
#include <sys/reent.h>
|
||||||
|
#define __errno_r(reent) reent->_errno
|
||||||
|
#endif
|
||||||
|
|
||||||
/***************************************************************************/
|
/***************************************************************************/
|
||||||
|
|
||||||
int _read_r(struct _reent *r, int file, char * ptr, int len)
|
int _read_r(struct _reent *r, int file, char * ptr, int len)
|
||||||
|
|
|
@ -91,8 +91,9 @@
|
||||||
*** 2.7.0 ***
|
*** 2.7.0 ***
|
||||||
- FIX: Fixed wrong RTC macro names in STM32L1xx HAL (bug #422)(backported to
|
- FIX: Fixed wrong RTC macro names in STM32L1xx HAL (bug #422)(backported to
|
||||||
2.6.1 and 2.4.5).
|
2.6.1 and 2.4.5).
|
||||||
- FIX: Fixed FSMC reset on STM32F4xx (bug #420)(backported to 2.6.1
|
- FIX: Fixed CodeSourcery personal version fails to build with undefined
|
||||||
and 2.4.4).
|
errno_r (bug #421)(backported to 2.6.1).
|
||||||
|
- FIX: Fixed FSMC reset on STM32F4xx (bug #420)(backported to 2.6.1 and 2.4.4).
|
||||||
- FIX: Fixed invalid directory links in the demo files (bug #419)(backported
|
- FIX: Fixed invalid directory links in the demo files (bug #419)(backported
|
||||||
to 2.6.1).
|
to 2.6.1).
|
||||||
- FIX: Fixed missing casts in time-conversion macros (bug #418)(backported
|
- FIX: Fixed missing casts in time-conversion macros (bug #418)(backported
|
||||||
|
|
Loading…
Reference in New Issue