RepRaptor/repraptor.h
NeoTheFox 3dd344f51b Ui tweaks
Ajusted priority
2015-03-08 20:00:27 +03:00

35 lines
467 B
C++

#ifndef REPRAPTOR_H
#define REPRAPTOR_H
#include <QString>
namespace RepRaptor
{
typedef struct
{
double e, b;
QString raw;
} TemperatureReadings;
enum Firmware
{
Marlin,
Repetier,
OtherFirmware
};
typedef struct
{
int T, P;
QString S;
} repetierEEPROMline;
typedef struct
{
unsigned long int progress, total;
} SDProgress;
}
#endif // REPRAPTOR_H