Flush input buffers on printer initialization

Seems to be necessary, not sure why.
This commit is contained in:
Přemysl Eric Janouch 2019-04-14 21:34:56 +02:00
parent 39e2c5b76d
commit 412efcb1ae
Signed by: p
GPG Key ID: A0420B94F92B9493
2 changed files with 13 additions and 13 deletions

View File

@ -108,16 +108,14 @@ func (p *Printer) Initialize() error {
// Flush any former responses in the printer's queue.
//
// I'm not sure if this is necessary, or rather whether the kernel driver
// does any buffering that could cause data to be returned at this point.
/*
var dummy [32]byte
for {
if _, err := f.Read(dummy[:]); err == io.EOF {
break
}
// I haven't checked if this is the kernel driver or the printer doing
// the buffering that causes data to be returned at this point.
var dummy [32]byte
for {
if _, err := p.File.Read(dummy[:]); err == io.EOF {
break
}
*/
}
return nil
}

View File

@ -185,10 +185,12 @@ func printLabel(id string) error {
}
defer printer.Close()
printer.StatusNotify = func(status *ql.Status) {
log.Printf("\x1b[1mreceived status\x1b[m\n%+v\n%s",
status[:], status)
}
/*
printer.StatusNotify = func(status *ql.Status) {
log.Printf("\x1b[1mreceived status\x1b[m\n%+v\n%s",
status[:], status)
}
*/
if err := printer.Initialize(); err != nil {
return err