Fixed bugs 3536522 and 3536523.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@4309 35acf78f-673a-0410-8e92-d51de3d6d3f4master
parent
0d1164787e
commit
6af0806da3
|
@ -196,7 +196,7 @@ CH_IRQ_HANDLER(TIM5_IRQHandler) {
|
|||
*
|
||||
* @isr
|
||||
*/
|
||||
CH_IRQ_HANDLER(TIM8_IRQHandler) {
|
||||
CH_IRQ_HANDLER(TIM8_UP_IRQHandler) {
|
||||
|
||||
CH_IRQ_PROLOGUE();
|
||||
|
||||
|
|
|
@ -141,11 +141,28 @@ CH_IRQ_HANDLER(TIM1_CC_IRQHandler) {
|
|||
|
||||
CH_IRQ_EPILOGUE();
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief TIM1 compare interrupt handler.
|
||||
* @note It is assumed that the various sources are only activated if the
|
||||
* associated callback pointer is not equal to @p NULL in order to not
|
||||
* perform an extra check in a potentially critical interrupt handler.
|
||||
*
|
||||
* @isr
|
||||
*/
|
||||
CH_IRQ_HANDLER(TIM1_UP_IRQHandler) {
|
||||
|
||||
CH_IRQ_PROLOGUE();
|
||||
|
||||
icu_lld_serve_interrupt(&ICUD1);
|
||||
|
||||
CH_IRQ_EPILOGUE();
|
||||
}
|
||||
#endif /* STM32_ICU_USE_TIM1 */
|
||||
|
||||
#if STM32_ICU_USE_TIM2
|
||||
/**
|
||||
* @brief TIM2 compare interrupt handler.
|
||||
* @brief TIM2 interrupt handler.
|
||||
* @note It is assumed that the various sources are only activated if the
|
||||
* associated callback pointer is not equal to @p NULL in order to not
|
||||
* perform an extra check in a potentially critical interrupt handler.
|
||||
|
@ -164,7 +181,7 @@ CH_IRQ_HANDLER(TIM2_IRQHandler) {
|
|||
|
||||
#if STM32_ICU_USE_TIM3
|
||||
/**
|
||||
* @brief TIM3 compare interrupt handler.
|
||||
* @brief TIM3 interrupt handler.
|
||||
* @note It is assumed that the various sources are only activated if the
|
||||
* associated callback pointer is not equal to @p NULL in order to not
|
||||
* perform an extra check in a potentially critical interrupt handler.
|
||||
|
@ -183,7 +200,7 @@ CH_IRQ_HANDLER(TIM3_IRQHandler) {
|
|||
|
||||
#if STM32_ICU_USE_TIM4
|
||||
/**
|
||||
* @brief TIM4 compare interrupt handler.
|
||||
* @brief TIM4 interrupt handler.
|
||||
* @note It is assumed that the various sources are only activated if the
|
||||
* associated callback pointer is not equal to @p NULL in order to not
|
||||
* perform an extra check in a potentially critical interrupt handler.
|
||||
|
@ -202,7 +219,7 @@ CH_IRQ_HANDLER(TIM4_IRQHandler) {
|
|||
|
||||
#if STM32_ICU_USE_TIM5
|
||||
/**
|
||||
* @brief TIM5 compare interrupt handler.
|
||||
* @brief TIM5 interrupt handler.
|
||||
* @note It is assumed that the various sources are only activated if the
|
||||
* associated callback pointer is not equal to @p NULL in order to not
|
||||
* perform an extra check in a potentially critical interrupt handler.
|
||||
|
@ -236,6 +253,23 @@ CH_IRQ_HANDLER(TIM8_CC_IRQHandler) {
|
|||
|
||||
CH_IRQ_EPILOGUE();
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief TIM8 compare interrupt handler.
|
||||
* @note It is assumed that the various sources are only activated if the
|
||||
* associated callback pointer is not equal to @p NULL in order to not
|
||||
* perform an extra check in a potentially critical interrupt handler.
|
||||
*
|
||||
* @isr
|
||||
*/
|
||||
CH_IRQ_HANDLER(TIM8_UP_IRQHandler) {
|
||||
|
||||
CH_IRQ_PROLOGUE();
|
||||
|
||||
icu_lld_serve_interrupt(&ICUD8);
|
||||
|
||||
CH_IRQ_EPILOGUE();
|
||||
}
|
||||
#endif /* STM32_ICU_USE_TIM8 */
|
||||
|
||||
/*===========================================================================*/
|
||||
|
@ -308,6 +342,8 @@ void icu_lld_start(ICUDriver *icup) {
|
|||
rccResetTIM1();
|
||||
nvicEnableVector(TIM1_CC_IRQn,
|
||||
CORTEX_PRIORITY_MASK(STM32_ICU_TIM1_IRQ_PRIORITY));
|
||||
nvicEnableVector(TIM1_UP_IRQn,
|
||||
CORTEX_PRIORITY_MASK(STM32_ICU_TIM1_IRQ_PRIORITY));
|
||||
icup->clock = STM32_TIMCLK2;
|
||||
}
|
||||
#endif
|
||||
|
@ -354,6 +390,8 @@ void icu_lld_start(ICUDriver *icup) {
|
|||
rccResetTIM8();
|
||||
nvicEnableVector(TIM8_CC_IRQn,
|
||||
CORTEX_PRIORITY_MASK(STM32_ICU_TIM8_IRQ_PRIORITY));
|
||||
nvicEnableVector(TIM8_UP_IRQn,
|
||||
CORTEX_PRIORITY_MASK(STM32_ICU_TIM1_IRQ_PRIORITY));
|
||||
icup->clock = STM32_TIMCLK2;
|
||||
}
|
||||
#endif
|
||||
|
@ -443,6 +481,7 @@ void icu_lld_stop(ICUDriver *icup) {
|
|||
#if STM32_ICU_USE_TIM1
|
||||
if (&ICUD1 == icup) {
|
||||
nvicDisableVector(TIM1_CC_IRQn);
|
||||
nvicDisableVector(TIM1_UP_IRQn);
|
||||
rccDisableTIM1(FALSE);
|
||||
}
|
||||
#endif
|
||||
|
@ -474,6 +513,7 @@ void icu_lld_stop(ICUDriver *icup) {
|
|||
#if STM32_ICU_USE_TIM8
|
||||
if (&ICUD8 == icup) {
|
||||
nvicDisableVector(TIM8_CC_IRQn);
|
||||
nvicDisableVector(TIM8_UP_IRQn);
|
||||
rccDisableTIM8(FALSE);
|
||||
}
|
||||
#endif
|
||||
|
|
|
@ -47,6 +47,9 @@
|
|||
#if defined(STM32F0XX)
|
||||
#include "stm32f0xx.h"
|
||||
|
||||
/* Resolving naming anomalies related to the STM32F0xx sub-family.*/
|
||||
#define TIM1_UP_IRQn TIM1_BRK_UP_TRG_COM_IRQn
|
||||
|
||||
#elif defined(STM32F10X_LD_VL) || defined(STM32F10X_MD_VL) || \
|
||||
defined(STM32F10X_HD_VL) || defined(STM32F10X_LD) || \
|
||||
defined(STM32F10X_MD) || defined(STM32F10X_HD) || \
|
||||
|
@ -57,13 +60,28 @@
|
|||
/* Resolving naming anomalies related to the STM32F1xx sub-family.*/
|
||||
#define CAN1_TX_IRQn USB_HP_CAN1_TX_IRQn
|
||||
#define CAN1_RX0_IRQn USB_LP_CAN1_RX0_IRQn
|
||||
#if defined(STM32F10X_XL)
|
||||
#define TIM1_UP_IRQn TIM1_UP_TIM16_IRQn
|
||||
#define TIM8_UP_IRQn TIM8_UP_TIM13_IRQn
|
||||
#elif defined(STM32F10X_LD_VL) || defined(STM32F10X_MD_VL) || \
|
||||
defined(STM32F10X_HD_VL)
|
||||
#define TIM1_UP_IRQn TIM1_UP_TIM16_IRQn
|
||||
#endif
|
||||
|
||||
#elif defined(STM32F2XX)
|
||||
#include "stm32f2xx.h"
|
||||
|
||||
/* Resolving naming anomalies related to the STM32F2xx sub-family.*/
|
||||
#define TIM1_UP_IRQn TIM1_UP_TIM10_IRQn
|
||||
#define TIM8_UP_IRQn TIM8_UP_TIM13_IRQn
|
||||
|
||||
#elif defined(STM32F4XX)
|
||||
#include "stm32f4xx.h"
|
||||
|
||||
/* Resolving naming anomalies related to the STM32F4xx sub-family.*/
|
||||
#define TIM1_UP_IRQn TIM1_UP_TIM10_IRQn
|
||||
#define TIM8_UP_IRQn TIM8_UP_TIM13_IRQn
|
||||
|
||||
#elif defined(STM32L1XX_MD)
|
||||
#include "stm32l1xx.h"
|
||||
|
||||
|
|
|
@ -52,13 +52,13 @@
|
|||
* queue-level function or macro.
|
||||
*/
|
||||
|
||||
static size_t writes(void *ip, const uint8_t *bp, size_t n) {
|
||||
static size_t write(void *ip, const uint8_t *bp, size_t n) {
|
||||
|
||||
return chOQWriteTimeout(&((SerialDriver *)ip)->oqueue, bp,
|
||||
n, TIME_INFINITE);
|
||||
}
|
||||
|
||||
static size_t reads(void *ip, uint8_t *bp, size_t n) {
|
||||
static size_t read(void *ip, uint8_t *bp, size_t n) {
|
||||
|
||||
return chIQReadTimeout(&((SerialDriver *)ip)->iqueue, bp,
|
||||
n, TIME_INFINITE);
|
||||
|
@ -99,7 +99,7 @@ static chnflags_t getflags(void *ip) {
|
|||
}
|
||||
|
||||
static const struct SerialDriverVMT vmt = {
|
||||
writes, reads, put, get,
|
||||
write, read, put, get,
|
||||
putt, gett, writet, readt,
|
||||
getflags
|
||||
};
|
||||
|
|
|
@ -61,13 +61,13 @@ static cdc_linecoding_t linecoding = {
|
|||
* Interface implementation.
|
||||
*/
|
||||
|
||||
static size_t writes(void *ip, const uint8_t *bp, size_t n) {
|
||||
static size_t write(void *ip, const uint8_t *bp, size_t n) {
|
||||
|
||||
return chOQWriteTimeout(&((SerialUSBDriver *)ip)->oqueue, bp,
|
||||
n, TIME_INFINITE);
|
||||
}
|
||||
|
||||
static size_t reads(void *ip, uint8_t *bp, size_t n) {
|
||||
static size_t read(void *ip, uint8_t *bp, size_t n) {
|
||||
|
||||
return chIQReadTimeout(&((SerialUSBDriver *)ip)->iqueue, bp,
|
||||
n, TIME_INFINITE);
|
||||
|
@ -108,7 +108,7 @@ static chnflags_t getflags(void *ip) {
|
|||
}
|
||||
|
||||
static const struct SerialUSBDriverVMT vmt = {
|
||||
writes, reads, put, get,
|
||||
write, read, put, get,
|
||||
putt, gett, writet, readt,
|
||||
getflags
|
||||
};
|
||||
|
|
|
@ -81,6 +81,10 @@
|
|||
*****************************************************************************
|
||||
|
||||
*** 2.5.0 ***
|
||||
- FIX: Fixed TIM8 not working in STM32 GPT driver (bug 3536523)(backported
|
||||
to 2.4.2).
|
||||
- FIX: Fixed timer overflow not working in STM32 ICU driver for TIM1/TIM8 (bug
|
||||
3536522)(backported to 2.4.2).
|
||||
- FIX: Fixed wrong DMA channels on USART2 in STM32F10X_MD_VL devices (bug
|
||||
3536070)(backported to 2.4.2).
|
||||
- FIX: Fixed issue with DMA channel init in STM32 ADC and SPI drivers (bug
|
||||
|
|
Loading…
Reference in New Issue