aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/machine/board_feather_rp2040.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/machine/board_feather_rp2040.go')
-rw-r--r--src/machine/board_feather_rp2040.go10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/machine/board_feather_rp2040.go b/src/machine/board_feather_rp2040.go
index 04991d2e2..088815c67 100644
--- a/src/machine/board_feather_rp2040.go
+++ b/src/machine/board_feather_rp2040.go
@@ -8,12 +8,8 @@ import (
"runtime/interrupt"
)
-const (
- LED = GPIO13
-
- // Onboard crystal oscillator frequency, in MHz.
- xoscFreq = 12 // MHz
-)
+// Onboard crystal oscillator frequency, in MHz.
+const xoscFreq = 12 // MHz
// GPIO Pins
const (
@@ -37,6 +33,8 @@ const (
A3 = GPIO29
)
+const LED = GPIO13
+
// I2C Pins.
const (
I2C0_SDA_PIN = GPIO24