nes-proj/cpu/msp430
Atis Elsts 705587cdb7 Fix time accounting on msp430 Series 1 and Series 2 MCU based platforms.
The problem with the current version of the code was that the condition at the end of the do...while loop at Timer A1 interrupt:
 while((TACCR1 - TAR) > INTERVAL);
evaluates to false whenever TACCR1 == TAR.
Not incrementing TACCR1 in this case leads to Timer A1 interrupt not being called for 2 seconds, until TAR counter reaches TACCR1 again after an overflow.

The patch avoids this problem by changing the condition of the loop, and using CLOCK_LT macro to compare between time values.

The patch also attempts to fix another problem: a read of TAR register while it is being updated may return a lower value than the actual contents. To avoid that, the "read twice and compare results" idiom should be used. As the TAR register is updated by the actual hardware, it is of no importance whether it is read with interrupts disabled or enabled; the problem can occur in both contexts.
2014-07-02 11:07:02 +02:00
..
dev
f1xxx
f2xxx
f5xxx
button.c
cc2420-arch-sfd.c
cc2420-arch-sfd.h
cc2420-arch.c
cc2520-arch-sfd.c
cc2520-arch-sfd.h
cc2520-arch.c
flash.c
isr_compat.h
leds-arch.c
loader-arch.c
lpm.c
Makefile.msp430
minileds.c
msp430def.h
mtarch.c
mtarch.h
rom.c
rtimer-arch.h
slip_uart0.c
slip_uart1.c
uip-ipchksum.c
watchdog.c