Fixed bug 3579434.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@4780 35acf78f-673a-0410-8e92-d51de3d6d3f4
master
gdisirio 2012-10-28 07:10:50 +00:00
parent a5de0f57f4
commit dc09d4cc0d
2 changed files with 4 additions and 3 deletions

View File

@ -340,15 +340,15 @@ typedef struct {
/**
* @brief Initialization value for the CR1 register.
*/
uint16_t cr1;
uint32_t cr1;
/**
* @brief Initialization value for the CR2 register.
*/
uint16_t cr2;
uint32_t cr2;
/**
* @brief Initialization value for the CR3 register.
*/
uint16_t cr3;
uint32_t cr3;
} UARTConfig;
/**

View File

@ -82,6 +82,7 @@
*****************************************************************************
*** 2.5.1 ***
- FIX: Fixed wrong type for UART config registers (bug 3579434).
- FIX: Fixed various typos and wrong limits in the STM32F4/F2 HAL driver
(bug 3578944)(backported to 2.4.3).
- FIX: Fixed ARM CMx crt0.c fails at low optimization levels (bug 3578927)