summaryrefslogtreecommitdiff
path: root/hw/bsp
diff options
context:
space:
mode:
authorHa Thach <[email protected]>2021-02-19 11:22:21 +0700
committerGitHub <[email protected]>2021-02-19 11:22:21 +0700
commitbe9f86ca9e538c7fff9a2347e3f8acbcf61642df (patch)
tree994b64a613be2f6724d9975e1dab5ded4a6ac24a /hw/bsp
parent044d29c927f3220a85349f45ff759298c7f11c7d (diff)
parent8f3f21045b8a5b533971c4e4c721b484056ac0db (diff)
Merge pull request #660 from hathach/fix-typo-midi-write24
Fix typo midi write24
Diffstat (limited to 'hw/bsp')
-rw-r--r--hw/bsp/rp2040/boards/adafruit_feather_rp2040/board.h6
-rw-r--r--hw/bsp/rp2040/boards/adafruit_itsybitsy_rp2040/board.h4
-rw-r--r--hw/bsp/rp2040/boards/adafruit_qt_rp2040/board.h4
3 files changed, 13 insertions, 1 deletions
diff --git a/hw/bsp/rp2040/boards/adafruit_feather_rp2040/board.h b/hw/bsp/rp2040/boards/adafruit_feather_rp2040/board.h
index 417db3d5d..281b215d3 100644
--- a/hw/bsp/rp2040/boards/adafruit_feather_rp2040/board.h
+++ b/hw/bsp/rp2040/boards/adafruit_feather_rp2040/board.h
@@ -31,9 +31,13 @@
extern "C" {
#endif
-#define LED_PIN 14
+#define LED_PIN 13
#define LED_STATE_ON 1
+#define NEOPIXEL_PIN 16
+#define NEOPIXEL_POWER_PIN 17
+#define NEOPIXEL_POWER_STATE 1
+
// Button pin is BOOTSEL which is flash CS pin
#define BUTTON_BOOTSEL
#define BUTTON_STATE_ACTIVE 0
diff --git a/hw/bsp/rp2040/boards/adafruit_itsybitsy_rp2040/board.h b/hw/bsp/rp2040/boards/adafruit_itsybitsy_rp2040/board.h
index b45008fcc..72265176c 100644
--- a/hw/bsp/rp2040/boards/adafruit_itsybitsy_rp2040/board.h
+++ b/hw/bsp/rp2040/boards/adafruit_itsybitsy_rp2040/board.h
@@ -34,6 +34,10 @@
#define LED_PIN 11
#define LED_STATE_ON 1
+#define NEOPIXEL_PIN 17
+#define NEOPIXEL_POWER_PIN 16
+#define NEOPIXEL_POWER_STATE 1
+
// Button pin is BOOTSEL which is flash CS pin
#define BUTTON_BOOTSEL
#define BUTTON_STATE_ACTIVE 0
diff --git a/hw/bsp/rp2040/boards/adafruit_qt_rp2040/board.h b/hw/bsp/rp2040/boards/adafruit_qt_rp2040/board.h
index d3850a19e..c0915f704 100644
--- a/hw/bsp/rp2040/boards/adafruit_qt_rp2040/board.h
+++ b/hw/bsp/rp2040/boards/adafruit_qt_rp2040/board.h
@@ -35,6 +35,10 @@
#define LED_PIN 11
#define LED_STATE_ON 1
+#define NEOPIXEL_PIN 12
+#define NEOPIXEL_POWER_PIN 11
+#define NEOPIXEL_POWER_STATE 1
+
// Button pin is BOOTSEL which is flash CS pin
#define BUTTON_BOOTSEL
#define BUTTON_STATE_ACTIVE 0