PSYQO SDK
psyqo::MemoryCard::Error
Enum
Enum
The error codes returned by every memory card operation.
Basic usage
This minimal snippet shows the normal syntax for reaching the type. Open a member below for an operation-specific example.
C++ example
#include "psyqo/memory-card.hh"
auto value = psyqo::MemoryCard::Error::BadChecksum;Values
BadChecksumA frame checksum did not match.Enum valueBadDataThe payload header / structure is corrupt.Enum valueBadPortThe port argument is invalid.Enum valueBadSectorThe card reported a bad / out of range sector.Enum valueDirectoryFullNo free directory entry for a new file.Enum valueFileExistsA file with that name already exists.Enum valueFileNotFoundThe requested file does not exist.Enum valueFileTooLargeThe payload would not fit in 15 blocks.Enum valueNameTooLongThe filename exceeds 20 characters.Enum valueNoCardNo card present / no acknowledge on the bus.Enum valueNotFormattedCard is present but is not a valid Sony card.Enum valueOKNo error.Enum valueOutOfSpaceNot enough free blocks for a file.Enum valueProtocolErrorUnexpected response byte from the card.Enum valueSerializeOverflowThe serialized payload exceeded the buffer.Enum valueTimeoutThe card stopped acknowledging mid-transfer.Enum valueUnconnectedThe port could not be selected.Enum value