mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-18 03:24:00 +00:00
machine: reorder pin definitions to improve pin list on tinygo.org
This commit is contained in:
committed by
Ron Evans
parent
411333327e
commit
0a93347e1c
@@ -9,9 +9,6 @@ func CPUFrequency() uint32 { return 180000000 }
|
||||
// ClockFrequency returns the frequency of the external oscillator (16MHz)
|
||||
func ClockFrequency() uint32 { return 16000000 }
|
||||
|
||||
// LED on the Teensy
|
||||
const LED = PC05
|
||||
|
||||
// digital IO
|
||||
const (
|
||||
D00 = PB16
|
||||
@@ -80,6 +77,9 @@ const (
|
||||
D63 = PE05
|
||||
)
|
||||
|
||||
// LED on the Teensy
|
||||
const LED = PC05
|
||||
|
||||
var (
|
||||
TeensyUART1 = UART0
|
||||
TeensyUART2 = UART1
|
||||
|
||||
Reference in New Issue
Block a user