2016-03-25 07:19:46 +01:00
|
|
|
/**
|
2016-03-24 19:01:20 +01:00
|
|
|
* Marlin 3D Printer Firmware
|
|
|
|
* Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
|
|
|
* Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2015-04-26 06:04:54 +02:00
|
|
|
#ifndef CONFIGURATION_STORE_H
|
|
|
|
#define CONFIGURATION_STORE_H
|
2012-12-03 12:52:00 +01:00
|
|
|
|
2016-07-26 08:04:19 +02:00
|
|
|
#include "MarlinConfig.h"
|
2012-12-03 12:52:00 +01:00
|
|
|
|
2017-04-10 04:47:49 +02:00
|
|
|
class MarlinSettings {
|
|
|
|
public:
|
|
|
|
MarlinSettings() { }
|
|
|
|
|
2018-01-04 03:39:08 +01:00
|
|
|
static uint16_t datasize();
|
|
|
|
|
2017-04-10 04:47:49 +02:00
|
|
|
static void reset();
|
2018-01-03 00:22:48 +01:00
|
|
|
static bool save(); // Return 'true' if data was saved
|
2017-04-10 04:47:49 +02:00
|
|
|
|
2018-01-03 11:28:15 +01:00
|
|
|
FORCE_INLINE static bool init_eeprom() {
|
|
|
|
bool success = true;
|
|
|
|
reset();
|
|
|
|
#if ENABLED(EEPROM_SETTINGS)
|
2018-01-05 03:58:09 +01:00
|
|
|
success = save();
|
|
|
|
#if ENABLED(EEPROM_CHITCHAT)
|
|
|
|
if (success) report();
|
|
|
|
#endif
|
2018-01-03 11:28:15 +01:00
|
|
|
#endif
|
|
|
|
return success;
|
|
|
|
}
|
|
|
|
|
2017-04-10 04:47:49 +02:00
|
|
|
#if ENABLED(EEPROM_SETTINGS)
|
2018-01-03 00:22:48 +01:00
|
|
|
static bool load(); // Return 'true' if data was loaded ok
|
|
|
|
static bool validate(); // Return 'true' if EEPROM data is ok
|
2017-05-07 03:00:56 +02:00
|
|
|
|
|
|
|
#if ENABLED(AUTO_BED_LEVELING_UBL) // Eventually make these available if any leveling system
|
|
|
|
// That can store is enabled
|
2018-01-05 03:58:09 +01:00
|
|
|
static int16_t meshes_start_index();
|
|
|
|
FORCE_INLINE static int16_t meshes_end_index() { return meshes_end; }
|
2017-12-25 10:42:51 +01:00
|
|
|
static uint16_t calc_num_meshes();
|
2018-03-10 10:07:50 +01:00
|
|
|
static int mesh_slot_offset(const int8_t slot);
|
2017-12-25 10:42:51 +01:00
|
|
|
static void store_mesh(const int8_t slot);
|
|
|
|
static void load_mesh(const int8_t slot, void * const into=NULL);
|
2017-05-07 03:00:56 +02:00
|
|
|
|
|
|
|
//static void delete_mesh(); // necessary if we have a MAT
|
|
|
|
//static void defrag_meshes(); // "
|
|
|
|
#endif
|
2017-04-10 04:47:49 +02:00
|
|
|
#else
|
|
|
|
FORCE_INLINE
|
|
|
|
static bool load() { reset(); report(); return true; }
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if DISABLED(DISABLE_M503)
|
2017-12-07 03:57:05 +01:00
|
|
|
static void report(const bool forReplay=false);
|
2017-04-10 04:47:49 +02:00
|
|
|
#else
|
|
|
|
FORCE_INLINE
|
2017-12-07 03:57:05 +01:00
|
|
|
static void report(const bool forReplay=false) { UNUSED(forReplay); }
|
2017-04-10 04:47:49 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
private:
|
|
|
|
static void postprocess();
|
|
|
|
|
|
|
|
#if ENABLED(EEPROM_SETTINGS)
|
2018-01-03 00:22:48 +01:00
|
|
|
|
|
|
|
static bool eeprom_error, validating;
|
2017-05-07 03:00:56 +02:00
|
|
|
|
|
|
|
#if ENABLED(AUTO_BED_LEVELING_UBL) // Eventually make these available if any leveling system
|
|
|
|
// That can store is enabled
|
2018-03-10 10:07:50 +01:00
|
|
|
static constexpr int16_t meshes_end = E2END - 128; // 128 is a placeholder for the size of the MAT; the MAT will always
|
|
|
|
// live at the very end of the eeprom
|
2017-05-07 03:00:56 +02:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2018-01-03 00:22:48 +01:00
|
|
|
static bool _load();
|
2017-05-07 03:00:56 +02:00
|
|
|
static void write_data(int &pos, const uint8_t *value, uint16_t size, uint16_t *crc);
|
2018-01-03 00:22:48 +01:00
|
|
|
static void read_data(int &pos, uint8_t *value, uint16_t size, uint16_t *crc, const bool force=false);
|
2018-01-04 03:40:28 +01:00
|
|
|
static bool size_error(const uint16_t size);
|
2017-04-10 04:47:49 +02:00
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
|
|
|
extern MarlinSettings settings;
|
|
|
|
|
|
|
|
#endif // CONFIGURATION_STORE_H
|