git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/stable_20.3.x@14050 27425a3e-05d8-49a3-a47f-9c15f0e5edd8
This commit is contained in:
Giovanni Di Sirio 2021-02-13 09:16:32 +00:00
parent 3cdf4899c0
commit 2686d8b982
2 changed files with 4 additions and 3 deletions

View File

@ -750,9 +750,9 @@
#endif /* defined(STM32F745xx) || defined(STM32F746xx) || defined(STM32F756xx) */
/*===========================================================================*/
/* STM32F767xx, STM32F769xx, STM32F777xx, STM32F779xx. */
/* STM32F765xx, STM32F767xx, STM32F769xx, STM32F777xx, STM32F779xx. */
/*===========================================================================*/
#if defined(STM32F767xx) || defined(STM32F769xx) || \
#if defined(STM32F765xx) || defined(STM32F767xx) || defined(STM32F769xx) || \
defined(STM32F777xx) || defined(STM32F779xx) || \
defined(__DOXYGEN__)
/* ADC attributes.*/
@ -1098,7 +1098,7 @@
#define STM32_HAS_CRC TRUE
#define STM32_CRC_PROGRAMMABLE FALSE
#endif /* defined(STM32F767xx) || defined(STM32F769xx) ||
#endif /* defined(STM32F765xx) || defined(STM32F767xx) || defined(STM32F769xx) ||
defined(STM32F777xx) || defined(STM32F779xx) */
/** @} */

View File

@ -76,6 +76,7 @@
*** 20.3.3 ***
- NEW: RT, NIL: Renamed _THREADS_QUEUE_DECL to THREADS_QUEUE_DECL for
consistency.
- FIX: Fixed missing STM32F765 from registry (bug #1145).
- FIX: Fixed wrong macro check on STM32 SPIv3 (bug #1144).
- FIX: Fixed wrong check on STM32 TIM9 timer (bug #1143).
- FIX: Fixed FAT time problem in RTC driver (bug #1142).