Skip to content
Snippets Groups Projects
Commit 15905186 authored by Oleg Hahm's avatar Oleg Hahm
Browse files

Merge pull request #3785 from kaspar030/misc_timer_fixes

misc timer fixes
parents 7701aed5 efbd5518
No related branches found
No related tags found
No related merge requests found
......@@ -220,16 +220,33 @@ int timer_clear(tim_t dev, int channel)
unsigned int timer_read(tim_t dev)
{
unsigned a, b;
switch (dev) {
#if TIMER_0_EN
case TIMER_0:
return (((unsigned int)(0xffff & TIMER_0_DEV_0->CNT)) | (TIMER_0_DEV_1->CNT<<16));
break;
/* do OR'ing two times and only use value if results are equal.
* otherwise, the lower 16bit counter could overflow while the
* upper counter is read, leading to an incorrect result. */
do {
a = (((unsigned int)(0xffff & TIMER_0_DEV_0->CNT)) |
(TIMER_0_DEV_1->CNT<<16));
b = (((unsigned int)(0xffff & TIMER_0_DEV_0->CNT)) |
(TIMER_0_DEV_1->CNT<<16));
} while (a!=b);
return a;
#endif
#if TIMER_1_EN
case TIMER_1:
return (((unsigned int)(0xffff & TIMER_1_DEV_0->CNT)) | (TIMER_1_DEV_1->CNT<<16));
break;
/* see above about why loop is needed */
do {
a = (((unsigned int)(0xffff & TIMER_1_DEV_0->CNT)) |
(TIMER_1_DEV_1->CNT<<16));
b = (((unsigned int)(0xffff & TIMER_1_DEV_0->CNT)) |
(TIMER_1_DEV_1->CNT<<16));
} while (a!=b);
return a;
#endif
case TIMER_UNDEFINED:
default:
......
......@@ -170,19 +170,17 @@ int _xtimer_set_absolute(xtimer_t *timer, uint32_t target)
}
timer->target = target;
timer->long_target = _long_cnt;
if (target < now) {
timer->long_target++;
}
unsigned state = disableIRQ();
if ( !_this_high_period(target) ) {
DEBUG("xtimer_set_absolute(): the timer doesn't fit into the low-level timer's mask.\n");
timer->long_target = _long_cnt;
_add_timer_to_long_list(&long_list_head, timer);
}
else {
if (!target) {
/* set long_target != 0 so _is_set() can work */
timer->long_target = 1;
}
if (_mask(now) >= target) {
DEBUG("xtimer_set_absolute(): the timer will expire in the next timer period\n");
_add_timer_to_list(&overflow_list_head, timer);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment