aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/machine/board_pca10031.go
blob: 3d8f34fba170b209ba51b9cf7d89527ba5fd2601 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
//go:build pca10031

// pca10031 is a nrf51 based dongle, intended for use in wireless applications.
//
// https://infocenter.nordicsemi.com/pdf/nRF51_Dongle_UG_v1.0.pdf
package machine

// The pca10031 has a 32kHz crystal on board.
const HasLowFrequencyCrystal = true

// LED on the pca10031
const (
	LED1      = LED_RED
	LED2      = LED_GREEN
	LED3      = LED_BLUE
	LED_RED   = P0_21
	LED_GREEN = P0_22
	LED_BLUE  = P0_23
	LED       = LED_RED
)

var DefaultUART = UART0

// UART pins
const (
	UART_TX_PIN = P0_09
	UART_RX_PIN = P0_11
)

// I2C pins (disabled)
const (
	SDA_PIN = NoPin
	SCL_PIN = NoPin
)

// SPI pins (unused)
const (
	SPI0_SCK_PIN = NoPin
	SPI0_SDO_PIN = NoPin
	SPI0_SDI_PIN = NoPin
)