1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

* missing parts of last commit

This commit is contained in:
Oliver Hahm 2010-10-29 17:34:13 +02:00
parent 70cbff9255
commit 098e0ff8e8
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_YELLOW 0x00
#define RED_ON LEDS_PxOUT &=~LEDS_CONF_RED
#define RED_OFF LEDS_PxOUT |= LEDS_CONF_RED
#define LED_RED_ON 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>

View File

@ -60,8 +60,9 @@ and the mailinglist (subscription via web site)
#define LEDS_CONF_GREEN 0x00
#define LEDS_CONF_YELLOW 0x00
#define RED_ON LEDS_PxOUT &=~LEDS_CONF_RED
#define RED_OFF LEDS_PxOUT |= LEDS_CONF_RED
#define LED_RED_ON 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>