mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-04 11:07:46 +00:00
b67351babe
Previously, the machine.UART0 object had two meanings:
- it was the first UART on the chip
- it was the default output for println
These two meanings conflict, and resulted in workarounds like:
- Defining UART0 to refer to the USB-CDC interface (atsamd21,
atsamd51, nrf52840), even though that clearly isn't an UART.
- Defining NRF_UART0 to avoid a conflict with UART0 (which was
redefined as a USB-CDC interface).
- Defining aliases like UART0 = UART1, which refer to the same
hardware peripheral (stm32).
This commit changes this to use a new machine.Serial object for the
default serial port. It might refer to the first or second UART
depending on the board, or even to the USB-CDC interface. Also, UART0
now really refers to the first UART on the chip, no longer to a USB-CDC
interface.
The changes in the runtime package are all just search+replace. The
changes in the machine package are a mixture of search+replace and
manual modifications.
This commit does not affect binary size, in fact it doesn't affect the
resulting binary at all.
65 lines
953 B
Go
65 lines
953 B
Go
// +build pca10059
|
|
|
|
package machine
|
|
|
|
// The PCA10040 has a low-frequency (32kHz) crystal oscillator on board.
|
|
const HasLowFrequencyCrystal = true
|
|
|
|
// LEDs on the PCA10059 (nRF52840 dongle)
|
|
const (
|
|
LED Pin = LED1
|
|
LED1 Pin = 6
|
|
LED2 Pin = 8
|
|
LED3 Pin = (1 << 5) | 9
|
|
LED4 Pin = 12
|
|
)
|
|
|
|
// Buttons on the PCA10059 (nRF52840 dongle)
|
|
const (
|
|
BUTTON Pin = BUTTON1
|
|
BUTTON1 Pin = (1 << 5) | 6
|
|
)
|
|
|
|
// ADC pins
|
|
const (
|
|
ADC1 Pin = 2
|
|
ADC2 Pin = 4
|
|
ADC3 Pin = 29
|
|
ADC4 Pin = 31
|
|
)
|
|
|
|
// UART pins
|
|
const (
|
|
UART_TX_PIN Pin = NoPin
|
|
UART_RX_PIN Pin = NoPin
|
|
)
|
|
|
|
// Serial is the USB device
|
|
var (
|
|
Serial = USB
|
|
)
|
|
|
|
// I2C pins (unused)
|
|
const (
|
|
SDA_PIN = NoPin
|
|
SCL_PIN = NoPin
|
|
)
|
|
|
|
// SPI pins (unused)
|
|
const (
|
|
SPI0_SCK_PIN = NoPin
|
|
SPI0_SDO_PIN = NoPin
|
|
SPI0_SDI_PIN = NoPin
|
|
)
|
|
|
|
// USB CDC identifiers
|
|
const (
|
|
usb_STRING_PRODUCT = "nRF52840 Dongle"
|
|
usb_STRING_MANUFACTURER = "Nordic Semiconductor ASA"
|
|
)
|
|
|
|
var (
|
|
usb_VID uint16 = 0x1915
|
|
usb_PID uint16 = 0xCAFE
|
|
)
|