Skip to content

Commit

Permalink
Version 1.84
Browse files Browse the repository at this point in the history
  • Loading branch information
johnlauer committed Aug 17, 2015
1 parent b37d5fb commit 9a36451
Show file tree
Hide file tree
Showing 6 changed files with 1,007 additions and 8 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
serial-port-json-server
=======================
Version 1.83
Version 1.84

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 Expand Up @@ -316,6 +316,9 @@ sudo service serial-port-json-server start

Revisions
-------
Changes in 1.84
- Added TinyG Line Mode (also referred to as Packet Mode). This sends data to TinyG in a different way to try to make sure no buffers overflow in either direction but there also is no pausing either like some users have reported on longer jobs.

Changes in 1.83
- Rebased with BFG to remove old binaries that were bloating the Github repo. Repo was 230MB and is now 10MB. Please clone new repos from scratch as of 7/19/15 so you get the new rebased repo if you are going to do any pull requests in the future.
- Added Marlin buffer courtesy of Peter van der Walt
Expand Down
2 changes: 1 addition & 1 deletion bufferflow.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
//"time"
)

var availableBufferAlgorithms = []string{"default", "tinyg", "tinygg2", "grbl", "marlin"}
var availableBufferAlgorithms = []string{"default", "tinyg", "tinyg_linemode", "tinygg2", "grbl", "marlin"}

//var availableBufferAlgorithms = []string{"default", "tinyg", "tinygg2", "dummypause", "grbl"}

Expand Down
Loading

0 comments on commit 9a36451

Please sign in to comment.