Code style fixes: cc2530dk
This commit is contained in:
parent
380ee3bae9
commit
351a4d39b9
8 changed files with 36 additions and 37 deletions
|
@ -59,9 +59,9 @@ unsigned char
|
|||
leds_arch_get(void)
|
||||
{
|
||||
#if MODEL_CC2531
|
||||
return (unsigned char) (LED1_PIN | ((LED2_PIN ^ 0x01) << 1));
|
||||
return (unsigned char)(LED1_PIN | ((LED2_PIN ^ 0x01) << 1));
|
||||
#else
|
||||
return (unsigned char) (LED1_PIN | (LED2_PIN << 1) | (LED3_PIN << 2));
|
||||
return (unsigned char)(LED1_PIN | (LED2_PIN << 1) | (LED3_PIN << 2));
|
||||
#endif
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue