
This can be very useful for some purposes: * It makes it possible to disable the UART in cases where it is not needed or needs to be disabled to conserve power. * It makes it possible to disable the serial output to reduce code size, which may be important for some chips. Sometimes, a few kB can be saved this way. * It makes it possible to override the default, for example you might want to use an actual UART to debug the USB-CDC implementation. It also lowers the dependency on having machine.Serial defined, which is often not defined when targeting a chip. Eventually, we might want to make it possible to write `-target=nrf52` or `-target=atmega328p` for example to target the chip itself with no board specific assumptions. The defaults don't change. I checked this by running `make smoketest` before and after and comparing the results.
55 строки
847 Б
Go
55 строки
847 Б
Go
// +build nucleof103rb
|
|
|
|
package machine
|
|
|
|
import (
|
|
"device/stm32"
|
|
"runtime/interrupt"
|
|
)
|
|
|
|
const (
|
|
LED = LED_BUILTIN
|
|
LED_BUILTIN = LED_GREEN
|
|
LED_GREEN = PA5
|
|
)
|
|
|
|
const (
|
|
BUTTON = BUTTON_USER
|
|
BUTTON_USER = PC13
|
|
)
|
|
|
|
// UART pins
|
|
const (
|
|
UART_TX_PIN = PA2
|
|
UART_RX_PIN = PA3
|
|
UART_ALT_TX_PIN = PD5
|
|
UART_ALT_RX_PIN = PD6
|
|
)
|
|
|
|
var (
|
|
// USART2 is the hardware serial port connected to the onboard ST-LINK
|
|
// debugger to be exposed as virtual COM port over USB on Nucleo boards.
|
|
UART2 = &_UART2
|
|
_UART2 = UART{
|
|
Buffer: NewRingBuffer(),
|
|
Bus: stm32.USART2,
|
|
}
|
|
DefaultUART = UART2
|
|
)
|
|
|
|
func init() {
|
|
UART2.Interrupt = interrupt.New(stm32.IRQ_USART2, _UART2.handleInterrupt)
|
|
}
|
|
|
|
// SPI pins
|
|
const (
|
|
SPI0_SCK_PIN = PA5
|
|
SPI0_SDI_PIN = PA6
|
|
SPI0_SDO_PIN = PA7
|
|
)
|
|
|
|
// I2C pins
|
|
const (
|
|
I2C0_SCL_PIN = PB6
|
|
I2C0_SDA_PIN = PB7
|
|
)
|