mirror of
https://github.com/BertoldVdb/ms-tools.git
synced 2025-12-10 07:44:46 +01:00
14 lines
560 B
Go
14 lines
560 B
Go
package mshal
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrorUnknownDevice = errors.New("Unsupported device found")
|
|
ErrorInvalidResponse = errors.New("Received invalid response")
|
|
ErrorReadNotAllowed = errors.New("Memory can't be read")
|
|
ErrorWriteNotAllowed = errors.New("Memory can't be written")
|
|
ErrorTimeout = errors.New("The operation did not complete in time")
|
|
ErrorPatchFailed = errors.New("Could not patch code")
|
|
ErrorMissingFunction = errors.New("This function is not supported in this mode")
|
|
ErrorNoAck = errors.New("No ACK received")
|
|
)
|