mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-08 13:03:39 +00:00
10 lines
233 B
Go
10 lines
233 B
Go
//go: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()
|
|
}
|