mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-04 19:17:47 +00:00
908fa84d49
We really shouldn't have copies around like that, instead the code should be factored out. In this case, it's a single import that's needed.
8 lines
177 B
Go
8 lines
177 B
Go
//go:build nrf && nrf52840
|
|
|
|
package runtime
|
|
|
|
// This package needs to be present so that the machine package can go:linkname
|
|
// EnableUSBCDC from it.
|
|
import _ "machine/usb/cdc"
|