aboutsummaryrefslogtreecommitdiff
path: root/dev_openbsd.go
blob: 1fe065a289c1d7b7122b71590e9d16589c82182f (plain)
1
2
3
4
5
6
7
8
package robo

const LPDevice = "/dev/ulpt0"

func Open() (Device, error) {
	// note: ulpt* doesn't support read(), thus this dev is broken atm.
	return NewLP(LPDevice)
}