Fixed bug 3585979.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@4804 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
gdisirio 2012-11-10 08:06:03 +00:00
parent 7390fbb842
commit c0664e0d08
2 changed files with 2 additions and 1 deletions

View File

@ -82,6 +82,7 @@
*****************************************************************************
*** 2.5.1 ***
- FIX: Fixed missing ; in testmbox.c (bug 3585979)(backported to 2.4.3).
- FIX: Fixed STM32F4xx: Wrong CAN1 SCE interrupt number definition (bug
3581571).
- FIX: Fixed STM32_P407: implement mmc_lld_is_card_inserted (bug 3581929)

View File

@ -169,7 +169,7 @@ static void mbox1_execute(void) {
msg1 = chMBPostI(&mb1, 'D');
test_assert(25, msg1 == RDY_OK, "wrong wake-up message");
msg1 = chMBPostI(&mb1, 'E');
chSysUnlock()
chSysUnlock();
test_assert(26, msg1 == RDY_OK, "wrong wake-up message");
test_assert(27, mb1.mb_rdptr == mb1.mb_wrptr, "pointers not aligned");
for (i = 0; i < MB_SIZE; i++) {