2016-07-22 13:28:01 +00:00
|
|
|
#ifndef CONFIG_STORE_H
|
|
|
|
#define CONFIG_STORE_H
|
2017-03-24 18:47:50 +00:00
|
|
|
#define EEPROM_SETTINGS
|
2016-07-22 13:28:01 +00:00
|
|
|
|
|
|
|
#include "Configuration.h"
|
|
|
|
|
2018-09-24 12:34:43 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
char version[4];
|
|
|
|
float axis_steps_per_unit[4];
|
|
|
|
float max_feedrate_normal[4];
|
|
|
|
unsigned long max_acceleration_units_per_sq_second_normal[4];
|
|
|
|
float acceleration;
|
|
|
|
float retract_acceleration;
|
|
|
|
float minimumfeedrate;
|
|
|
|
float mintravelfeedrate;
|
|
|
|
unsigned long minsegmenttime;
|
|
|
|
float max_jerk[4];
|
|
|
|
float add_homing[3];
|
|
|
|
float zprobe_zoffset;
|
|
|
|
float Kp;
|
|
|
|
float Ki;
|
|
|
|
float Kd;
|
|
|
|
float bedKp;
|
|
|
|
float bedKi;
|
|
|
|
float bedKd;
|
|
|
|
int lcd_contrast; //!< unused
|
|
|
|
bool autoretract_enabled;
|
|
|
|
float retract_length;
|
|
|
|
float retract_feedrate;
|
|
|
|
float retract_zlift;
|
|
|
|
float retract_recover_length;
|
|
|
|
float retract_recover_feedrate;
|
|
|
|
bool volumetric_enabled;
|
|
|
|
float filament_size[1];
|
|
|
|
float max_feedrate_silent[4];
|
|
|
|
unsigned long max_acceleration_units_per_sq_second_silent[4];
|
|
|
|
} __attribute__ ((packed)) M500_conf;
|
|
|
|
|
2018-09-24 12:54:41 +00:00
|
|
|
extern M500_conf cs;
|
2018-09-24 12:34:43 +00:00
|
|
|
|
2016-07-22 13:28:01 +00:00
|
|
|
void Config_ResetDefault();
|
|
|
|
|
|
|
|
#ifndef DISABLE_M503
|
2017-09-21 13:20:02 +00:00
|
|
|
void Config_PrintSettings(uint8_t level = 0);
|
2016-07-22 13:28:01 +00:00
|
|
|
#else
|
|
|
|
FORCE_INLINE void Config_PrintSettings() {}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef EEPROM_SETTINGS
|
2018-07-26 17:09:52 +00:00
|
|
|
void Config_StoreSettings(uint16_t offset);
|
|
|
|
bool Config_RetrieveSettings(uint16_t offset);
|
2016-07-22 13:28:01 +00:00
|
|
|
#else
|
|
|
|
FORCE_INLINE void Config_StoreSettings() {}
|
|
|
|
FORCE_INLINE void Config_RetrieveSettings() { Config_ResetDefault(); Config_PrintSettings(); }
|
|
|
|
#endif
|
|
|
|
|
2017-03-24 18:47:50 +00:00
|
|
|
inline uint8_t calibration_status() { return eeprom_read_byte((uint8_t*)EEPROM_CALIBRATION_STATUS); }
|
2018-07-23 11:35:38 +00:00
|
|
|
inline void calibration_status_store(uint8_t status) { eeprom_update_byte((uint8_t*)EEPROM_CALIBRATION_STATUS, status); }
|
2017-06-29 16:35:43 +00:00
|
|
|
inline bool calibration_status_pinda() { return eeprom_read_byte((uint8_t*)EEPROM_CALIBRATION_STATUS_PINDA); }
|
2017-03-24 18:47:50 +00:00
|
|
|
|
2016-07-22 13:28:01 +00:00
|
|
|
#endif//CONFIG_STORE_H
|