Fix UART variables

This commit is contained in:
Wojtek Siudzinski
2020-02-18 11:45:55 +01:00
committed by Daniel Esteban
parent 9e79b41bb4
commit 19c6ac01df
3 changed files with 15 additions and 6 deletions
+5 -2
View File
@@ -40,9 +40,12 @@ const (
)
// UART
var (
Serial = USB
UART0 = NRF_UART0
)
const (
Serial = USB
UART0 = NRF_UART0
UART_TX_PIN Pin = 6
UART_RX_PIN Pin = 8
)
+5 -2
View File
@@ -40,9 +40,12 @@ const (
)
// UART
var (
Serial = USB
UART0 = NRF_UART0
)
const (
Serial = USB
UART0 = NRF_UART0
UART_TX_PIN Pin = 6
UART_RX_PIN Pin = 8
)
+5 -2
View File
@@ -40,9 +40,12 @@ const (
)
// UART
var (
Serial = USB
UART0 = NRF_UART0
)
const (
Serial = USB
UART0 = NRF_UART0
UART_TX_PIN Pin = 6
UART_RX_PIN Pin = 8
)