Fixed bug 3449139, increased version numbers.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@3552 35acf78f-673a-0410-8e92-d51de3d6d3f4master
parent
a8a8535845
commit
0faef9a292
|
@ -31,7 +31,7 @@ PROJECT_NAME = ChibiOS/RT
|
|||
# This could be handy for archiving the generated documentation or
|
||||
# if some version control system is used.
|
||||
|
||||
PROJECT_NUMBER = 2.3.4
|
||||
PROJECT_NUMBER = 2.3.5
|
||||
|
||||
# Using the PROJECT_BRIEF tag one can provide an optional one line description
|
||||
# for a project that appears at the top of each page and should give viewer
|
||||
|
|
|
@ -31,7 +31,7 @@ PROJECT_NAME = ChibiOS/RT
|
|||
# This could be handy for archiving the generated documentation or
|
||||
# if some version control system is used.
|
||||
|
||||
PROJECT_NUMBER = 2.3.4
|
||||
PROJECT_NUMBER = 2.3.5
|
||||
|
||||
# Using the PROJECT_BRIEF tag one can provide an optional one line description
|
||||
# for a project that appears at the top of each page and should give viewer
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
<tbody>
|
||||
<tr style="height: 56px;">
|
||||
<td style="padding-left: 0.5em;">
|
||||
<div id="projectname">ChibiOS/RT <span id="projectnumber">2.3.4</span></div>
|
||||
<div id="projectname">ChibiOS/RT <span id="projectnumber">2.3.5</span></div>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
|
|
|
@ -20,7 +20,7 @@ $(document).ready(initResizable);
|
|||
<tbody>
|
||||
<tr style="height: 92px;">
|
||||
<td style="padding-left: 0.5em;">
|
||||
<div id="projectname">ChibiOS/RT<br><span id="projectnumber">2.3.4</span></div>
|
||||
<div id="projectname">ChibiOS/RT<br><span id="projectnumber">2.3.5</span></div>
|
||||
</td>
|
||||
<td style="padding-left: 3em;">
|
||||
<script type="text/javascript"><!--
|
||||
|
|
|
@ -62,8 +62,9 @@ void hal_lld_init(void) {
|
|||
been initialized in the board initialization file (board.c).*/
|
||||
rccResetAHB1(!0);
|
||||
rccResetAHB2(!0);
|
||||
rccResetAHB3(!0);
|
||||
rccResetAPB1(!RCC_APB1RSTR_PWRRST);
|
||||
rccResetAPB2(!RCC_APB2RSTR_SYSCFGRST);
|
||||
rccResetAPB2(!0);
|
||||
|
||||
/* SysTick initialization using the system clock.*/
|
||||
SysTick->LOAD = STM32_HCLK / CH_FREQUENCY - 1;
|
||||
|
@ -152,6 +153,10 @@ void stm32_clock_init(void) {
|
|||
;
|
||||
#endif
|
||||
#endif /* STM32_NO_INIT */
|
||||
|
||||
/* SYSCFG clock enabled here because it is a multi-functional unit shared
|
||||
among multiple drivers.*/
|
||||
rccEnableAPB2(RCC_APB2ENR_SYSCFGEN, TRUE);
|
||||
}
|
||||
|
||||
/** @} */
|
||||
|
|
|
@ -60,8 +60,8 @@ void hal_lld_init(void) {
|
|||
|
||||
/* Reset of all peripherals.*/
|
||||
rccResetAHB(!RCC_AHBRSTR_FLITFRST);
|
||||
rccResetAPB1(!0);
|
||||
rccResetAPB2(!RCC_APB2RSTR_SYSCFGRST);
|
||||
rccResetAPB1(!RCC_APB1RSTR_PWRRST);
|
||||
rccResetAPB2(!0);
|
||||
|
||||
/* SysTick initialization using the system clock.*/
|
||||
SysTick->LOAD = STM32_HCLK / CH_FREQUENCY - 1;
|
||||
|
@ -170,6 +170,10 @@ void stm32_clock_init(void) {
|
|||
;
|
||||
#endif
|
||||
#endif /* STM32_NO_INIT */
|
||||
|
||||
/* SYSCFG clock enabled here because it is a multi-functional unit shared
|
||||
among multiple drivers.*/
|
||||
rccEnableAPB2(RCC_APB2ENR_SYSCFGEN, TRUE);
|
||||
}
|
||||
#else
|
||||
void stm32_clock_init(void) {}
|
||||
|
|
|
@ -40,7 +40,7 @@
|
|||
/**
|
||||
* @brief Kernel version string.
|
||||
*/
|
||||
#define CH_KERNEL_VERSION "2.3.4unstable"
|
||||
#define CH_KERNEL_VERSION "2.3.5unstable"
|
||||
|
||||
/**
|
||||
* @name Kernel version
|
||||
|
@ -59,7 +59,7 @@
|
|||
/**
|
||||
* @brief Kernel version patch number.
|
||||
*/
|
||||
#define CH_KERNEL_PATCH 4
|
||||
#define CH_KERNEL_PATCH 5
|
||||
/** @} */
|
||||
|
||||
/*
|
||||
|
|
|
@ -74,6 +74,7 @@
|
|||
*****************************************************************************
|
||||
|
||||
*** 2.3.5 ***
|
||||
- FIX: Fixed SYSCFG clock not started in STM32L1/F4 HALs (bug 3449139).
|
||||
- FIX: Fixed wrong definitions in STM32L-Discovery board file (bug 3449076).
|
||||
|
||||
*** 2.3.4 ***
|
||||
|
|
Loading…
Reference in New Issue