mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-12 06:53:40 +00:00
11 lines
273 B
Go
11 lines
273 B
Go
//go:build nrf52840 && nrf52840_reset_bossa
|
|
// +build nrf52840,nrf52840_reset_bossa
|
|
|
|
package machine
|
|
|
|
// EnterBootloader resets the chip into the serial bootloader. After
|
|
// reset, it can be flashed using serial/nrfutil.
|
|
func EnterBootloader() {
|
|
EnterSerialBootloader()
|
|
}
|