
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.
43 строки
656 Б
Go
43 строки
656 Б
Go
// +build nrf52840_mdk
|
|
|
|
package machine
|
|
|
|
const HasLowFrequencyCrystal = true
|
|
|
|
// LEDs on the nrf52840-mdk (nRF52840 dev board)
|
|
const (
|
|
LED Pin = LED_GREEN
|
|
LED_GREEN Pin = 22
|
|
LED_RED Pin = 23
|
|
LED_BLUE Pin = 24
|
|
)
|
|
|
|
// UART pins
|
|
const (
|
|
UART_TX_PIN Pin = 20
|
|
UART_RX_PIN Pin = 19
|
|
)
|
|
|
|
// 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 = "Makerdiary nRF52840 MDK"
|
|
usb_STRING_MANUFACTURER = "Nordic Semiconductor ASA"
|
|
)
|
|
|
|
var (
|
|
usb_VID uint16 = 0x1915
|
|
usb_PID uint16 = 0xCAFE
|
|
)
|