Code style fixes: cc253x

This commit is contained in:
George Oikonomou 2012-12-16 13:10:28 +00:00
parent 874bec26a5
commit 380ee3bae9
12 changed files with 74 additions and 76 deletions

View file

@ -87,8 +87,8 @@ rtimer_arch_schedule(rtimer_clock_t t)
/* Switch to capture mode before writing T1CC1x and
* set the compare mode values so we can get an interrupt after t */
RT_MODE_CAPTURE();
T1CC1L = (unsigned char) t;
T1CC1H = (unsigned char) (t >> 8);
T1CC1L = (unsigned char)t;
T1CC1H = (unsigned char)(t >> 8);
RT_MODE_COMPARE();
/* Turn on compare mode interrupt */