git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@13647 27425a3e-05d8-49a3-a47f-9c15f0e5edd8
This commit is contained in:
Giovanni Di Sirio 2020-05-18 12:14:53 +00:00
parent b54890211c
commit 32738e737c
2 changed files with 34 additions and 0 deletions

View File

@ -401,6 +401,22 @@ OSAL_IRQ_HANDLER(STM32_DMA1_CH7_HANDLER) {
} }
#endif #endif
#if defined(STM32_DMA1_CH8_HANDLER) || defined(__DOXYGEN__)
/**
* @brief DMA1 stream 8 shared ISR.
*
* @isr
*/
OSAL_IRQ_HANDLER(STM32_DMA1_CH8_HANDLER) {
OSAL_IRQ_PROLOGUE();
dmaServeInterrupt(STM32_DMA1_STREAM8);
OSAL_IRQ_EPILOGUE();
}
#endif
#if defined(STM32_DMA2_CH1_HANDLER) || defined(__DOXYGEN__) #if defined(STM32_DMA2_CH1_HANDLER) || defined(__DOXYGEN__)
/** /**
* @brief DMA2 stream 1 shared ISR. * @brief DMA2 stream 1 shared ISR.
@ -513,6 +529,22 @@ OSAL_IRQ_HANDLER(STM32_DMA2_CH7_HANDLER) {
} }
#endif #endif
#if defined(STM32_DMA2_CH8_HANDLER) || defined(__DOXYGEN__)
/**
* @brief DMA2 stream 8 shared ISR.
*
* @isr
*/
OSAL_IRQ_HANDLER(STM32_DMA2_CH8_HANDLER) {
OSAL_IRQ_PROLOGUE();
dmaServeInterrupt(STM32_DMA2_STREAM8);
OSAL_IRQ_EPILOGUE();
}
#endif
/*===========================================================================*/ /*===========================================================================*/
/* Driver exported functions. */ /* Driver exported functions. */
/*===========================================================================*/ /*===========================================================================*/

View File

@ -89,6 +89,8 @@
MEMS Accelerometers. MEMS Accelerometers.
- NEW: Safer messages mechanism for sandboxes (to be backported to 20.3.1). - NEW: Safer messages mechanism for sandboxes (to be backported to 20.3.1).
- NEW: Added latency measurement test application. - NEW: Added latency measurement test application.
- FIX: Fixed STM32_DMAx_CH8_HANDLER not defined for DMAv1 (bug #1096)
(backported to 20.3.2).
- FIX: Fixed STM32G4 demos compile fails if smart mode is disabled (bug #1094) - FIX: Fixed STM32G4 demos compile fails if smart mode is disabled (bug #1094)
(backported to 20.3.2). (backported to 20.3.2).
- FIX: Fixed failure in chSemReset() function when counter is equal to MAXINT - FIX: Fixed failure in chSemReset() function when counter is equal to MAXINT