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:
parent
ee4b2ce331
commit
9eafdc6e71
@ -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)
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user