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

boards/remote: fix led macro

This commit is contained in:
Peter Kietzmann 2017-03-13 08:16:50 +01:00
parent ee4b2ce331
commit 9eafdc6e71
2 changed files with 6 additions and 6 deletions

View File

@ -33,9 +33,9 @@
* @name LED pin definitions
* @{
*/
#define LED0_PIN GPIO_PD5
#define LED1_PIN GPIO_PD4
#define LED2_PIN GPIO_PD3
#define LED0_PIN GPIO_PIN(3, 5)
#define LED1_PIN GPIO_PIN(3, 4)
#define LED2_PIN GPIO_PIN(3, 3)
#define LED0_MASK (1 << 5)
#define LED1_MASK (1 << 4)

View File

@ -33,9 +33,9 @@
* @name LED pin definitions
* @{
*/
#define LED0_PIN GPIO_PD4
#define LED1_PIN GPIO_PB7
#define LED2_PIN GPIO_PB6
#define LED0_PIN GPIO_PIN(3, 4)
#define LED1_PIN GPIO_PIN(1, 7)
#define LED2_PIN GPIO_PIN(1, 6)
#define LED0_MASK (1 << 4)
#define LED1_MASK (1 << 7)