Merge pull request #6805 from PeterKietzmann/pr_remote_fix_leds
boards/remote: fix led macro
This commit is contained in:
commit
3c53c58643
@ -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)
|
||||
|
||||
@ -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)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user