1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-17 18:52:44 +01:00

* missing parts of last commit

This commit is contained in:
Oliver Hahm 2010-10-29 17:34:13 +02:00
parent f38f32f6cc
commit 13b651ee86
2 changed files with 6 additions and 4 deletions

View File

@ -60,8 +60,9 @@ and the mailinglist (subscription via web site)
#define LEDS_CONF_GREEN 0x00 #define LEDS_CONF_GREEN 0x00
#define LEDS_CONF_YELLOW 0x00 #define LEDS_CONF_YELLOW 0x00
#define RED_ON LEDS_PxOUT &=~LEDS_CONF_RED #define LED_RED_ON LEDS_PxOUT &=~LEDS_CONF_RED
#define RED_OFF LEDS_PxOUT |= LEDS_CONF_RED #define LED_RED_OFF LEDS_PxOUT |= LEDS_CONF_RED
#define LED_RED_TOGGLE LEDS_PxOUT ^= LEDS_CONF_RED
#include <msp430x16x.h> #include <msp430x16x.h>

View File

@ -60,8 +60,9 @@ and the mailinglist (subscription via web site)
#define LEDS_CONF_GREEN 0x00 #define LEDS_CONF_GREEN 0x00
#define LEDS_CONF_YELLOW 0x00 #define LEDS_CONF_YELLOW 0x00
#define RED_ON LEDS_PxOUT &=~LEDS_CONF_RED #define LED_RED_ON LEDS_PxOUT &=~LEDS_CONF_RED
#define RED_OFF LEDS_PxOUT |= LEDS_CONF_RED #define LED_RED_OFF LEDS_PxOUT |= LEDS_CONF_RED
#define LED_RED_TOGGLE LEDS_PxOUT ^= LEDS_CONF_RED
#include <msp430x16x.h> #include <msp430x16x.h>