Files
fluxengine/arch/agat/agat.h
2022-09-12 23:52:24 +02:00

12 lines
199 B
C++

#ifndef AGAT_H
#define AGAT_H
#define AGAT_SECTOR_SIZE 256
extern std::unique_ptr<Decoder> createAgatDecoder(const DecoderProto& config);
extern uint8_t agatChecksum(const Bytes& bytes);
#endif