diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2010-12-05 11:29:17 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2010-12-05 11:29:17 +0000 |
commit | 064bb29a4c78b4c5f5aca745103dc4533ce77361 (patch) | |
tree | 694983dafa032028ca89af7eeb04a1b6e220f964 | |
parent | 26b93576d91d7e3758d953697c0f0b7adbadbd20 (diff) | |
download | ChibiOS-064bb29a4c78b4c5f5aca745103dc4533ce77361.tar.gz ChibiOS-064bb29a4c78b4c5f5aca745103dc4533ce77361.tar.bz2 ChibiOS-064bb29a4c78b4c5f5aca745103dc4533ce77361.zip |
Fixed bug 3127921.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2457 35acf78f-673a-0410-8e92-d51de3d6d3f4
-rw-r--r-- | os/hal/include/spi.h | 2 | ||||
-rw-r--r-- | readme.txt | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/os/hal/include/spi.h b/os/hal/include/spi.h index a563b262c..47cf5f379 100644 --- a/os/hal/include/spi.h +++ b/os/hal/include/spi.h @@ -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); \
}
/*===========================================================================*/
diff --git a/readme.txt b/readme.txt index eaacf9fcd..678309e59 100644 --- a/readme.txt +++ b/readme.txt @@ -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).
|