Fixed bug 3304718.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/stable_2.2.x@2977 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
gdisirio 2011-05-19 18:18:40 +00:00
parent 12703220b8
commit 429f9fec2b
3 changed files with 7 additions and 10 deletions

View File

@ -68,7 +68,6 @@
<Unit filename="..\..\..\os\hal\include\adc.h" /> <Unit filename="..\..\..\os\hal\include\adc.h" />
<Unit filename="..\..\..\os\hal\include\can.h" /> <Unit filename="..\..\..\os\hal\include\can.h" />
<Unit filename="..\..\..\os\hal\include\hal.h" /> <Unit filename="..\..\..\os\hal\include\hal.h" />
<Unit filename="..\..\..\os\hal\include\i2c.h" />
<Unit filename="..\..\..\os\hal\include\mac.h" /> <Unit filename="..\..\..\os\hal\include\mac.h" />
<Unit filename="..\..\..\os\hal\include\mii.h" /> <Unit filename="..\..\..\os\hal\include\mii.h" />
<Unit filename="..\..\..\os\hal\include\mmc_spi.h" /> <Unit filename="..\..\..\os\hal\include\mmc_spi.h" />
@ -125,9 +124,6 @@
<Unit filename="..\..\..\os\hal\src\hal.c"> <Unit filename="..\..\..\os\hal\src\hal.c">
<Option compilerVar="CC" /> <Option compilerVar="CC" />
</Unit> </Unit>
<Unit filename="..\..\..\os\hal\src\i2c.c">
<Option compilerVar="CC" />
</Unit>
<Unit filename="..\..\..\os\hal\src\mac.c"> <Unit filename="..\..\..\os\hal\src\mac.c">
<Option compilerVar="CC" /> <Option compilerVar="CC" />
</Unit> </Unit>
@ -298,10 +294,10 @@
<Extensions> <Extensions>
<code_completion /> <code_completion />
<debugger> <debugger>
<remote_debugging target="Debug"> <remote_debugging target="Release">
<options conn_type="0" serial_baud="115200" ip_address="127.0.0.1" ip_port="3333" /> <options conn_type="0" serial_baud="115200" ip_address="127.0.0.1" ip_port="3333" />
</remote_debugging> </remote_debugging>
<remote_debugging target="Release"> <remote_debugging target="Debug">
<options conn_type="0" serial_baud="115200" ip_address="127.0.0.1" ip_port="3333" /> <options conn_type="0" serial_baud="115200" ip_address="127.0.0.1" ip_port="3333" />
</remote_debugging> </remote_debugging>
</debugger> </debugger>

View File

@ -5,7 +5,7 @@ Settings: SYSCLK=72, ACR=0x12 (2 wait states)
*** ChibiOS/RT test suite *** ChibiOS/RT test suite
*** ***
*** Kernel: 2.2.3 *** Kernel: 2.2.4
*** GCC Version: 4.5.2 *** GCC Version: 4.5.2
*** Architecture: ARMv7-M *** Architecture: ARMv7-M
*** Core Variant: Cortex-M3 *** Core Variant: Cortex-M3
@ -98,7 +98,7 @@ Settings: SYSCLK=72, ACR=0x12 (2 wait states)
--- Result: SUCCESS --- Result: SUCCESS
---------------------------------------------------------------------------- ----------------------------------------------------------------------------
--- Test Case 11.1 (Benchmark, messages #1) --- Test Case 11.1 (Benchmark, messages #1)
--- Score : 248574 msgs/S, 497148 ctxswc/S --- Score : 248573 msgs/S, 497146 ctxswc/S
--- Result: SUCCESS --- Result: SUCCESS
---------------------------------------------------------------------------- ----------------------------------------------------------------------------
--- Test Case 11.2 (Benchmark, messages #2) --- Test Case 11.2 (Benchmark, messages #2)
@ -130,7 +130,7 @@ Settings: SYSCLK=72, ACR=0x12 (2 wait states)
--- Result: SUCCESS --- Result: SUCCESS
---------------------------------------------------------------------------- ----------------------------------------------------------------------------
--- Test Case 11.9 (Benchmark, I/O Queues throughput) --- Test Case 11.9 (Benchmark, I/O Queues throughput)
--- Score : 479776 bytes/S --- Score : 581768 bytes/S
--- Result: SUCCESS --- Result: SUCCESS
---------------------------------------------------------------------------- ----------------------------------------------------------------------------
--- Test Case 11.10 (Benchmark, virtual timers set/reset) --- Test Case 11.10 (Benchmark, virtual timers set/reset)

View File

@ -69,7 +69,8 @@
***************************************************************************** *****************************************************************************
*** 2.2.4 *** *** 2.2.4 ***
- FIX: Race condition in output queues (bug 3303908). - FIX: Fixed CodeBlocks demo broken (bug 3304718).
- FIX: Fixed race condition in output queues (bug 3303908).
- FIX: Fixed CH_USE_HEAP and CH_USE_MALLOC_HEAP conflict (bug 3303841). - FIX: Fixed CH_USE_HEAP and CH_USE_MALLOC_HEAP conflict (bug 3303841).
- FIX: Fixed timeout problem in the lwIP interface layer (bug 3302420). - FIX: Fixed timeout problem in the lwIP interface layer (bug 3302420).
- FIX: Fixed invalid BRR() macro in AVR serial driver (bug 3299306). - FIX: Fixed invalid BRR() macro in AVR serial driver (bug 3299306).