Fixed bug #767.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@9723 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
1c271826cc
commit
4f6a6abcfc
|
@ -31,6 +31,26 @@
|
||||||
/* Driver constants. */
|
/* Driver constants. */
|
||||||
/*===========================================================================*/
|
/*===========================================================================*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* The following definitions are missing from some implementations, fixing
|
||||||
|
* as zeroed masks.
|
||||||
|
*/
|
||||||
|
#if !defined(SDIO_STA_STBITERR)
|
||||||
|
#define SDIO_STA_STBITERR 0
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if !defined(SDIO_ICR_STBITERRC)
|
||||||
|
#define SDIO_ICR_STBITERRC 0
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if !defined(SDIO_ICR_CEATAENDC)
|
||||||
|
#define SDIO_ICR_CEATAENDC 0
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if !defined(SDIO_MASK_STBITERRIE)
|
||||||
|
#define SDIO_MASK_STBITERRIE 0
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Value to clear all interrupts flag at once.
|
* @brief Value to clear all interrupts flag at once.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -123,6 +123,8 @@
|
||||||
- RT: Merged RT4.
|
- RT: Merged RT4.
|
||||||
- NIL: Merged NIL2.
|
- NIL: Merged NIL2.
|
||||||
- NIL: Added STM32F7 demo.
|
- NIL: Added STM32F7 demo.
|
||||||
|
- HAL: Fixed SDIO driver not compiling on STM32F446 devices (bug #767)
|
||||||
|
(backported to 16.1.6).
|
||||||
- HAL: Fixed error in STM32L4xx ST headers (bug #766)(backported to 16.1.6).
|
- HAL: Fixed error in STM32L4xx ST headers (bug #766)(backported to 16.1.6).
|
||||||
- HAL: Fixed wrong check in win32 simulator serial driver (bug #765)
|
- HAL: Fixed wrong check in win32 simulator serial driver (bug #765)
|
||||||
(backported to 16.1.6, 3.0.6, 2.6.10).
|
(backported to 16.1.6, 3.0.6, 2.6.10).
|
||||||
|
|
Loading…
Reference in New Issue