1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-17 05:12:57 +01:00

Merge pull request #6805 from PeterKietzmann/pr_remote_fix_leds

boards/remote: fix led macro
This commit is contained in:
Kaspar Schleiser 2017-04-25 08:51:54 +02:00 committed by GitHub
commit 3c53c58643
2 changed files with 6 additions and 6 deletions

View File

@ -34,9 +34,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

@ -34,9 +34,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)