Some preparations to support EEPROM editor Only enable checksums and EEPROM editor for debug right now
21 lines
250 B
C++
21 lines
250 B
C++
#ifndef REPRAPTOR_H
|
|
#define REPRAPTOR_H
|
|
|
|
namespace RepRaptor
|
|
{
|
|
typedef struct
|
|
{
|
|
double e, b;
|
|
} TemperatureReadings;
|
|
|
|
enum Firmware
|
|
{
|
|
Marlin,
|
|
Repetier,
|
|
OtherFirmware
|
|
};
|
|
}
|
|
|
|
#endif // REPRAPTOR_H
|
|
|