Changed LED mapping to RGB

Changed the pin mapping for LED1, LED2, and LED3, to Red, Green, and Blue respectively. This matches the KL25Z, and makes more sense in my opinion.
pull/317/head
Neil Thiessen 2014-05-20 11:03:49 -06:00
parent d0e6815ac8
commit ed0b72233e
1 changed files with 3 additions and 3 deletions

View File

@ -121,10 +121,10 @@ typedef enum {
LED_BLUE = P2_18,
// mbed original LED naming
LED1 = LED_BLUE,
LED1 = LED_RED,
LED2 = LED_GREEN,
LED3 = LED_RED,
LED4 = LED_RED,
LED3 = LED_BLUE,
LED4 = LED_BLUE,
// Serial to USB pins
USBTX = P0_19,