
This makes it possible to assign I2C objects (machine.I2C0, machine.I2C1, etc.) without needing to take a pointer. This is important especially in the future when I2C may be driven using DMA and the machine.I2C type needs to store some state.
47 строки
719 Б
Go
47 строки
719 Б
Go
// +build sam,atsamd21,p1am_100
|
|
|
|
package machine
|
|
|
|
import (
|
|
"device/sam"
|
|
"runtime/interrupt"
|
|
)
|
|
|
|
// UART1 on the P1AM-100 connects to the normal TX/RX pins.
|
|
var (
|
|
UART1 = UART{
|
|
Buffer: NewRingBuffer(),
|
|
Bus: sam.SERCOM3_USART,
|
|
SERCOM: 5,
|
|
}
|
|
)
|
|
|
|
func init() {
|
|
UART1.Interrupt = interrupt.New(sam.IRQ_SERCOM5, UART1.handleInterrupt)
|
|
}
|
|
|
|
// I2C on the P1AM-100.
|
|
var (
|
|
I2C0 = &I2C{
|
|
Bus: sam.SERCOM0_I2CM,
|
|
SERCOM: 0,
|
|
}
|
|
)
|
|
|
|
// SPI on the P1AM-100 is used for Base Controller.
|
|
var (
|
|
SPI0 = SPI{
|
|
Bus: sam.SERCOM1_SPI,
|
|
SERCOM: 1,
|
|
}
|
|
BASE_CONTROLLER_SPI = SPI0
|
|
)
|
|
|
|
// SPI1 is connected to the SD card slot on the P1AM-100
|
|
var (
|
|
SPI1 = SPI{
|
|
Bus: sam.SERCOM2_SPI,
|
|
SERCOM: 2,
|
|
}
|
|
SDCARD_SPI = SPI1
|
|
)
|