git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1691 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
ce0845ef81
commit
1aad9e4509
|
@ -236,13 +236,13 @@ Platform : MSP430
|
||||||
OS Setup : Full kernel
|
OS Setup : Full kernel
|
||||||
Compiler : msp430-gcc (GCC) 3.2.3
|
Compiler : msp430-gcc (GCC) 3.2.3
|
||||||
Options : -O2 -DCH_OPTIMIZE_SPEED=TRUE
|
Options : -O2 -DCH_OPTIMIZE_SPEED=TRUE
|
||||||
Kernel Size = 5636
|
Kernel Size = 5632
|
||||||
|
|
||||||
Platform : MSP430
|
Platform : MSP430
|
||||||
OS Setup : Full kernel
|
OS Setup : Full kernel
|
||||||
Compiler : msp430-gcc (GCC) 3.2.3
|
Compiler : msp430-gcc (GCC) 3.2.3
|
||||||
Options : -O2 -DCH_OPTIMIZE_SPEED=FALSE
|
Options : -O2 -DCH_OPTIMIZE_SPEED=FALSE
|
||||||
Kernel Size = 5120
|
Kernel Size = 5116
|
||||||
|
|
||||||
Platform : MSP430
|
Platform : MSP430
|
||||||
OS Setup : Minimal kernel
|
OS Setup : Minimal kernel
|
||||||
|
@ -254,13 +254,13 @@ Platform : MSP430
|
||||||
OS Setup : Full kernel
|
OS Setup : Full kernel
|
||||||
Compiler : msp430-gcc (GCC) 3.2.3
|
Compiler : msp430-gcc (GCC) 3.2.3
|
||||||
Options : -Os -DCH_OPTIMIZE_SPEED=TRUE
|
Options : -Os -DCH_OPTIMIZE_SPEED=TRUE
|
||||||
Kernel Size = 5572
|
Kernel Size = 5568
|
||||||
|
|
||||||
Platform : MSP430
|
Platform : MSP430
|
||||||
OS Setup : Full kernel
|
OS Setup : Full kernel
|
||||||
Compiler : msp430-gcc (GCC) 3.2.3
|
Compiler : msp430-gcc (GCC) 3.2.3
|
||||||
Options : -Os -DCH_OPTIMIZE_SPEED=FALSE
|
Options : -Os -DCH_OPTIMIZE_SPEED=FALSE
|
||||||
Kernel Size = 5076
|
Kernel Size = 5072
|
||||||
|
|
||||||
Platform : MSP430
|
Platform : MSP430
|
||||||
OS Setup : Minimal kernel
|
OS Setup : Minimal kernel
|
||||||
|
|
|
@ -218,8 +218,8 @@ msg_t chCondWaitTimeoutS(CondVar *cp, systime_t time) {
|
||||||
mp = chMtxUnlockS();
|
mp = chMtxUnlockS();
|
||||||
ctp->p_u.wtobjp = cp;
|
ctp->p_u.wtobjp = cp;
|
||||||
prio_insert(ctp, &cp->c_queue);
|
prio_insert(ctp, &cp->c_queue);
|
||||||
chSchGoSleepTimeoutS(THD_STATE_WTCOND, time);
|
msg = chSchGoSleepTimeoutS(THD_STATE_WTCOND, time);
|
||||||
msg = ctp->p_u.rdymsg;
|
// msg = ctp->p_u.rdymsg;
|
||||||
chMtxLockS(mp);
|
chMtxLockS(mp);
|
||||||
return msg;
|
return msg;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue