diff --git a/CHANGELOG.md b/CHANGELOG.md index 5c0b2ac..4b8267c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Release History +## Version 1.0.2 + +- Added pause after requesting reset button press for firmware update + ## Version 1.0.1 - Switched from WinAVR to MHV AVR Tools to add support for ATmega32U2 controllers in AVRDude diff --git a/commands/gamepadblock.go b/commands/gamepadblock.go index a253ac2..16be142 100644 --- a/commands/gamepadblock.go +++ b/commands/gamepadblock.go @@ -11,6 +11,7 @@ import ( "os/exec" "runtime" "strings" + "time" "github.com/codegangsta/cli" "github.com/jacobsa/go-serial/serial" diff --git a/version.go b/version.go index 64db728..1e9d0f7 100644 --- a/version.go +++ b/version.go @@ -1,4 +1,4 @@ package main // VERSION of the software -const VERSION = "1.0.1" +const VERSION = "1.0.2"