Skip to content

Commit 485a81d

Browse files
committed
status query moved to grbl buffer
- 100ms query loop moved to jsps grbl buffer - other bug fixes in grbl buffer - testing has been relatively stable, should be ready to merge in jsps 1.6 Former-commit-id: 958f26a [formerly bae1a02f6a9552061295b1f9b36a54e0fac66af8] [formerly 685ed9818cbd4dec8fdc1f83a14fcfc8e7f84b72 [formerly b848d319dc5e695a4e7d657beab03bb2995df6ce]] Former-commit-id: c1a81eef3e81f02a49e2322a5fe0468b082e85d1 [formerly e2202c5d35b082bbcd834cb2075e59aa8f329d48] Former-commit-id: 4da2d5cdfeb100fe5eda4d8aca94e870e6b5d1c0
1 parent 79fad57 commit 485a81d

6 files changed

+10
-3
lines changed

bufferflow.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,5 @@ type Bufferflow interface {
2727
SeeIfSpecificCommandsShouldWipeBuffer(cmd string) bool // implement this method
2828
ReleaseLock() // implement this method
2929
IsBufferGloballySendingBackIncomingData() bool // implement this method
30+
Close() // implement this method
3031
}

bufferflow_default.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,3 +61,6 @@ func (b *BufferflowDefault) ReleaseLock() {
6161
func (b *BufferflowDefault) IsBufferGloballySendingBackIncomingData() bool {
6262
return false
6363
}
64+
65+
func (b *BufferflowDefault) Close() {
66+
}

bufferflow_dummypause.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,3 +67,6 @@ func (b *BufferflowDummypause) ReleaseLock() {
6767
func (b *BufferflowDummypause) IsBufferGloballySendingBackIncomingData() bool {
6868
return false
6969
}
70+
71+
func (b *BufferflowDummypause) Close() {
72+
}

bufferflow_grbl.go.REMOVED.git-id

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
6ef140268e21622acfe94ca424e59984c0d6f987
1+
d090257a0ef221c8460c043cda82aa9b3e55cd09

bufferflow_tinyg.go.REMOVED.git-id

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
34227206cb9e35a158a3441c03966e8e5b21ad1e
1+
27430bacaafa7cba388b57ddf04965bcdf23b460

serialport.go.REMOVED.git-id

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
75488391a26a85d6b7d40a00e28f35653e7023ff
1+
3dc28f96f7a4999b5e94634e4ef25e6be95c0ccc

0 commit comments

Comments
 (0)