diff options
author | Ron Evans <[email protected]> | 2019-10-11 11:34:08 +0200 |
---|---|---|
committer | Ayke <[email protected]> | 2019-10-13 00:43:00 +0200 |
commit | 02facb856854703cd12b78e10cb75ac8c9cbfb55 (patch) | |
tree | d13acc4428098d6297c205bb6298525d6aaad2c6 /go.mod | |
parent | 4164c39a4af7d9df4a7bed3a0a2f5d870ccb9ec1 (diff) | |
download | tinygo-02facb856854703cd12b78e10cb75ac8c9cbfb55.tar.gz tinygo-02facb856854703cd12b78e10cb75ac8c9cbfb55.zip |
flash: add ability to perform 1200baud port reset for MCUs that can detect this in order to go into bootloader mode for flashing without pressing any buttons. Also add support for this to the Arduino Nano33 IoT board target
Signed-off-by: Ron Evans <[email protected]>
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -4,7 +4,10 @@ go 1.11 require ( github.com/blakesmith/ar v0.0.0-20150311145944-8bd4349a67f2 + github.com/creack/goselect v0.1.0 // indirect github.com/marcinbor85/gohex v0.0.0-20180128172054-7a43cd876e46 + go.bug.st/serial.v1 v0.0.0-20180827123349-5f7892a7bb45 + golang.org/x/sys v0.0.0-20191010194322-b09406accb47 // indirect golang.org/x/tools v0.0.0-20190227180812-8dcc6e70cdef tinygo.org/x/go-llvm v0.0.0-20190818154551-95bc4ffe1add ) |