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

Merge pull request #7669 from haukepetersen/fix_z1_ledbtnpins

boards/z1: fixed LEDx_PIN definitions
This commit is contained in:
Sebastian Meiling 2017-10-16 15:26:17 +02:00 committed by GitHub
commit 79b34a722a

View File

@ -70,14 +70,14 @@ extern "C" {
* @name LED pin definitions and handlers
* @{
*/
#define LED0_PIN GPIO_PIN(4, 0)
#define LED1_PIN GPIO_PIN(4, 1)
#define LED2_PIN GPIO_PIN(4, 2)
#define LED0_PIN GPIO_PIN(5, 4)
#define LED1_PIN GPIO_PIN(5, 6)
#define LED2_PIN GPIO_PIN(5, 5)
#define LED_OUT_REG P5OUT
#define LED0_MASK (0x10)
#define LED1_MASK (0x20)
#define LED2_MASK (0x40)
#define LED1_MASK (0x40)
#define LED2_MASK (0x20)
#define LED0_ON (LED_OUT_REG &=~LED0_MASK)
#define LED0_OFF (LED_OUT_REG |= LED0_MASK)