Skip to content

Commit 958f26a

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: 685ed9818cbd4dec8fdc1f83a14fcfc8e7f84b72 [formerly b848d319dc5e695a4e7d657beab03bb2995df6ce] Former-commit-id: bae1a02f6a9552061295b1f9b36a54e0fac66af8
1 parent ece6a18 commit 958f26a

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)