Skip to content

Commit

Permalink
v1.88 fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
chilipeppr committed Feb 2, 2016
1 parent d704ebe commit 89dce58
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
serial-port-json-server
=======================
Version 1.87
Version 1.88

A serial port JSON websocket & web server that runs from the command line on Windows, Mac, Linux, Raspberry Pi, or Beagle Bone that lets you communicate with your serial port from a web application. This enables web apps to be written that can communicate with your local serial device such as an Arduino, CNC controller, or any device that communicates over the serial port. Since version 1.82 you can now also program your Arduino by uploading a hex file.

Expand Down
4 changes: 2 additions & 2 deletions feedrateoverride.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,6 @@ func spFeedRateOverride(arg string) {
return
}

myport.isFeedRateOverrideOn = true

// see if they are just querying status
if len(args) == 2 {
sendStatusOnFeedrateOverride(myport)
Expand All @@ -76,6 +74,8 @@ func spFeedRateOverride(arg string) {
return
}

myport.isFeedRateOverrideOn = true

myport.feedRateOverride = float32(fro)

var frj froRequestJson
Expand Down

0 comments on commit 89dce58

Please sign in to comment.