Skip to content
Snippets Groups Projects
Commit e0f19f33 authored by Sebastian Meiling's avatar Sebastian Meiling
Browse files

cc2538: fix timer_set for channel B

parent 1af17277
No related branches found
No related tags found
No related merge requests found
...@@ -174,7 +174,7 @@ int timer_set(tim_t dev, int channel, unsigned int timeout) ...@@ -174,7 +174,7 @@ int timer_set(tim_t dev, int channel, unsigned int timeout)
gptimer->ICR = TBMIM; gptimer->ICR = TBMIM;
/* set timeout value */ /* set timeout value */
gptimer->TAMATCHR = (gptimer->CFG == GPTMCFG_32_BIT_TIMER)? (gptimer->TBV + timeout) : (gptimer->TBV - timeout); gptimer->TBMATCHR = (gptimer->CFG == GPTMCFG_32_BIT_TIMER)? (gptimer->TBV + timeout) : (gptimer->TBV - timeout);
gptimer->cc2538_gptimer_imr.IMR |= TBMIM; /**< Enable the Timer B Match Interrupt */ gptimer->cc2538_gptimer_imr.IMR |= TBMIM; /**< Enable the Timer B Match Interrupt */
break; break;
} }
......
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