Fixed bug 3127921.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2457 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
gdisirio 2010-12-05 11:29:17 +00:00
parent 26b93576d9
commit 064bb29a4c
2 changed files with 2 additions and 1 deletions

View File

@ -262,8 +262,8 @@ typedef enum {
(spip)->spd_config->spc_endcb(spip); \
if ((spip)->spd_state == SPI_COMPLETE) \
(spip)->spd_state = SPI_READY; \
_spi_wakeup_isr(spip); \
} \
_spi_wakeup_isr(spip); \
}
/*===========================================================================*/

View File

@ -65,6 +65,7 @@
*****************************************************************************
*** 2.1.5 ***
- FIX: Fixed broken SPI synchronous API (bug 3127921).
- FIX: Fixed missing vector.c files in LPC11xx and LPC13xx ports (bug 3124849).
- FIX: Fixed pwmDisableChannel() now working in STM32 PWM driver (bug 3121246).
- FIX: Fixed problem with PWM channel callbacks (bug 3120785).