Apple2-IO-RPi/RaspberryPi/apple2driver/a2io/communication.go

24 lines
637 B
Go
Raw Normal View History

// Copyright Terence J. Boldt (c)2021
// Use of this source code is governed by an MIT
// license that can be found in the LICENSE file.
// This file defines the interface for communicating with the Apple II via
// the Raspberry Pi GPIO ports but can also be mocked out for tests or
// passed input to the user for interactive testing
2021-05-30 11:18:39 +00:00
package a2io
2021-10-30 11:03:18 +00:00
type A2Io interface {
Init()
WriteByte(data byte) error
WriteString(outString string) error
WriteBlock(buffer []byte) error
WriteBuffer(buffer []byte) error
ReadByte() (byte, error)
ReadString() (string, error)
ReadBlock(buffer []byte) error
}
type A2Comm struct {
A2Io A2Io
2021-05-30 11:18:39 +00:00
}