Files
tinygo/src/machine/board_macropad-rp2040.go
T
Ayke van Laethem c55ac9f28e rp2040: move UART0 and UART1 to common file
This is makes it easier to use these in simulation, plus it avoids
duplication. The only downside I see is that more UARTs get defined than
a board supports, but no existing code should break (no UARTs get
renamed for example).
2024-04-04 19:34:01 +02:00

88 lines
1.4 KiB
Go

//go:build macropad_rp2040
package machine
const (
NeopixelCount = 12
// Onboard crystal oscillator frequency, in MHz.
xoscFreq = 12 // MHz
)
const (
SWITCH = GPIO0
BUTTON = GPIO0
KEY1 = GPIO1
KEY2 = GPIO2
KEY3 = GPIO3
KEY4 = GPIO4
KEY5 = GPIO5
KEY6 = GPIO6
KEY7 = GPIO7
KEY8 = GPIO8
KEY9 = GPIO9
KEY10 = GPIO10
KEY11 = GPIO11
KEY12 = GPIO12
LED = GPIO13
SPEAKER_ENABLE = GPIO14
SPEAKER = GPIO16
ROT_A = GPIO18
ROT_B = GPIO17
OLED_CS = GPIO22
OLED_RST = GPIO23
OLED_DC = GPIO24
NEOPIXEL = GPIO19
WS2812 = NEOPIXEL
)
// I2C Default pins on Raspberry Pico.
const (
I2C0_SDA_PIN = GPIO20
I2C0_SCL_PIN = GPIO21
I2C1_SDA_PIN = NoPin // not pinned out
I2C1_SCL_PIN = NoPin // not pinned out
)
// SPI default pins
const (
// Default Serial Clock Bus 1 for SPI communications
SPI1_SCK_PIN = GPIO26
// Default Serial Out Bus 1 for SPI communications
SPI1_SDO_PIN = GPIO27 // Tx
// Default Serial In Bus 1 for SPI communications
SPI1_SDI_PIN = GPIO28 // Rx
SPI0_SCK_PIN = NoPin // not pinned out
SPI0_SDO_PIN = NoPin // not pinned out
SPI0_SDI_PIN = NoPin // not pinned out
)
// UART pins
const (
UART0_TX_PIN = GPIO0
UART0_RX_PIN = GPIO1
UART_TX_PIN = UART0_TX_PIN
UART_RX_PIN = UART0_RX_PIN
)
var DefaultUART = UART0
// USB identifiers
const (
usb_STRING_PRODUCT = "MacroPad RP2040"
usb_STRING_MANUFACTURER = "Adafruit"
)
var (
usb_VID uint16 = 0x239A
usb_PID uint16 = 0x8107
)