LEDs now indicate bit position (instead of (1 << pos)) which is more
consistent with how everything else works
This commit is contained in:
parent
c218d1bffa
commit
4b17c144d0
13 changed files with 50 additions and 46 deletions
|
@ -1,9 +1,9 @@
|
|||
#ifndef BOARD_REDBEE_DEV_H
|
||||
#define BOARD_REDBEE_DEV_H
|
||||
|
||||
#define LED_RED (1 << 23)
|
||||
#define LED_GREEN (1 << 24)
|
||||
#define LED_BLUE (1 << 25)
|
||||
#define LED_RED 23
|
||||
#define LED_GREEN 24
|
||||
#define LED_BLUE 25
|
||||
|
||||
/* XTAL TUNE parameters */
|
||||
/* see http://devl.org/pipermail/mc1322x/2009-December/000162.html */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue