boards/yunjia-nrf51822: unified LED defines

This commit is contained in:
Hauke Petersen 2016-03-11 18:03:25 +01:00
parent f5813fe4d3
commit df7115ee3c
2 changed files with 0 additions and 21 deletions

View File

@ -23,9 +23,6 @@
void board_init(void) void board_init(void)
{ {
/* setup led(s) for debugging */
NRF_GPIO->DIRSET = (LED_RED_MASK);
/* initialize the CPU */ /* initialize the CPU */
cpu_init(); cpu_init();
} }

View File

@ -38,24 +38,6 @@ extern "C" {
#define XTIMER_BACKOFF (40) #define XTIMER_BACKOFF (40)
/** @} */ /** @} */
/**
* @name Macros for controlling the on-board LEDs.
* @{
*/
#define LED_RED_PIN (GPIO_PIN(0, 8))
#define LED_RED_MASK (1 << 8)
#define LED_RED_ON (NRF_GPIO->OUTSET = LED_RED_MASK)
#define LED_RED_OFF (NRF_GPIO->OUTCLR = LED_RED_MASK)
#define LED_RED_TOGGLE (NRF_GPIO->OUT ^= LED_RED_MASK)
#define LED_GREEN_ON /* not available */
#define LED_GREEN_OFF /* not available */
#define LED_GREEN_TOGGLE /* not available */
#define LED_BLUE_ON /* not available */
#define LED_BLUE_OFF /* not available */
#define LED_BLUE_TOGGLE /* not available */
/* @} */
/** /**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO * @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/ */