Move headers to an include folder

This commit is contained in:
Spiros
2025-04-16 01:57:21 +03:00
parent c81c31acc3
commit 291002a53b
8 changed files with 6 additions and 2 deletions

19
include/asciiview.h Normal file
View File

@@ -0,0 +1,19 @@
#pragma once
#include <QString>
#include <QVector>
#define SMART_READ_CMD_LEN 12
#define INQUIRY_CMD_LEN 6
#define SMART_READ_RESP_LEN 512
#define INQUIRY_RESP_LEN 96
#define SENSE_BUFFER_LEN 32
class AsciiView
{
public:
AsciiView() = default;
QVector<unsigned char> readSMARTData(const QString& device_path);
QString hexDump(const QVector<unsigned char> &data);
};