Fixed bug 3601460.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@5077 35acf78f-673a-0410-8e92-d51de3d6d3f4
master
gdisirio 2013-01-19 07:44:09 +00:00
parent 54ae934f7d
commit 78116c8564
2 changed files with 34 additions and 24 deletions

View File

@ -18,6 +18,11 @@
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "chconf.h"
#define FALSE 0
#define TRUE 1
.text
.p2align 1, 0
.weak _port_switch
@ -45,6 +50,9 @@ _port_switch:
.p2align 1, 0
.weak _port_thread_start
_port_thread_start:
#if CH_DBG_SYSTEM_STATE_CHECK
call #dbg_check_unlock
#endif
eint
mov r11, r15
call r10

View File

@ -82,6 +82,8 @@
*****************************************************************************
*** 2.5.2 ***
- FIX: Fixed state checker error in MSP430 port (bug 3601460)(backported
to 2.4.4).
- FIX: Fixed small bug in shell argument parsing code in shell_thread (bug
3599328)(backported to 2.4.4).
- FIX: Fixed wrong condition in checksum offload of STM32 MAC driver (bug