aboutsummaryrefslogtreecommitdiff
path: root/cutter.go
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2015-04-24 02:57:27 +0200
committerDimitri Sokolyuk <demon@dim13.org>2015-04-24 02:57:27 +0200
commitad75650097b121c83423fab4647ca240d5c8c1bf (patch)
tree8b8bcde722839e1799e6b318ffec1d6796f8594a /cutter.go
parentad7161543017bcef6d9b565bbbab790efc45f32f (diff)
Reduce TB
Diffstat (limited to 'cutter.go')
-rw-r--r--cutter.go9
1 files changed, 2 insertions, 7 deletions
diff --git a/cutter.go b/cutter.go
index ce03f6c..955b1fb 100644
--- a/cutter.go
+++ b/cutter.go
@@ -222,8 +222,8 @@ func (c Cutter) UnknownFE(n int) {
c.Emit()
}
-func (c Cutter) UnknownTB71() (string, error) {
- fmt.Fprint(c, "TB71")
+func (c Cutter) UnknownTB(n int) (string, error) {
+ fmt.Fprint(c, "TB", n)
c.Emit()
return c.readResponse()
}
@@ -234,11 +234,6 @@ func (c Cutter) UnknownFA() (string, error) {
return c.readResponse()
}
-func (c Cutter) UnknownTB51() {
- fmt.Fprint(c, "TB51,400")
- c.Emit()
-}
-
// Updater Version ???
func (c Cutter) UpdaterVersion() (string, error) {
c.WriteByte(ESC)