Skip to content

Commit 235fb07

Browse files
committed
Version 1.4
Former-commit-id: 3bd6efaa59c06db8036edd2d9fc2a4678007d439 [formerly c3c5dffb44e9f3149a975aec85dd1b1c3f734547] Former-commit-id: 23a62601bdfc74a25859726324ee73fbff632718
1 parent 3f9e222 commit 235fb07

10 files changed

+16
-157
lines changed

README.md.REMOVED.git-id

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
386d96d37ecabf921c2b2007e2d8399cf944f7de
1+
ba381a9c7829aea62686cfaef6a0c02da71f508f

bufferflow.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ type BufferMsg struct {
1818
type Bufferflow interface {
1919
BlockUntilReady() bool // implement this method
2020
OnIncomingData(data string) // implement this method
21+
BreakApartCommands(cmd string) []string // implement this method
2122
Pause() // implement this method
2223
Unpause() // implement this method
2324
SeeIfSpecificCommandsShouldSkipBuffer(cmd string) bool // implement this method

bufferflow_default.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@ func (b *BufferflowDefault) OnIncomingData(data string) {
2727
//log.Printf("OnIncomingData() start. data:%v\n", data)
2828
}
2929

30+
func (b *BufferflowDefault) BreakApartCommands(cmd string) []string {
31+
return []string{cmd}
32+
}
33+
3034
func (b *BufferflowDefault) Pause() {
3135
return
3236
}

bufferflow_dummypause.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,10 @@ func (b *BufferflowDummypause) OnIncomingData(data string) {
3333
log.Printf("OnIncomingData() end. numLines:%v\n", b.NumLines)
3434
}
3535

36+
func (b *BufferflowDummypause) BreakApartCommands(cmd string) []string {
37+
return []string{cmd}
38+
}
39+
3640
func (b *BufferflowDummypause) Pause() {
3741
return
3842
}

bufferflow_tinyg.go.REMOVED.git-id

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
fd1392787230fd2dc2b0177d0d6da43ab0b5eb38
1+
b883886a7b1a663a8f80bbdedccdb8f40de3e2b2

hub.go

Lines changed: 0 additions & 151 deletions
This file was deleted.

hub.go.REMOVED.git-id

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
eb73b03bd2eeb82911409cbc82bf6fad2d901361

main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Version 1.3.2
1+
// Version 1.4
22
// Supports Windows, Linux, Mac, and Raspberry Pi, Beagle Bone Black
33

44
package main
@@ -13,7 +13,7 @@ import (
1313
)
1414

1515
var (
16-
version = "1.3.2"
16+
version = "1.4"
1717
addr = flag.String("addr", ":8989", "http service address")
1818
assets = flag.String("assets", defaultAssetPath(), "path to assets")
1919
//homeTempl *template.Template

serial.go.REMOVED.git-id

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
23bdb53cd40fea7ab51022ff001cbaa3752ca45b
1+
3d860ef885908745e1386c3c6c1f169a356030e1

serialport.go.REMOVED.git-id

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
ad7c6e32238f823153af09d5dce4f200e9b5eac2
1+
2de759deffc7caf529b082776d4e6bac5f746e58

0 commit comments

Comments
 (0)