Firmware/Marlin/configuration_store.h

102 lines
3.4 KiB
C
Raw Normal View History

/**
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
#include "MarlinConfig.h"
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() {
reset();
#if ENABLED(EEPROM_SETTINGS)
2018-05-12 01:06:36 +02:00
const bool success = save();
2018-01-05 03:58:09 +01:00
#if ENABLED(EEPROM_CHITCHAT)
if (success) report();
#endif
2018-05-12 01:06:36 +02:00
return success;
#else
return true;
2018-01-03 11:28:15 +01:00
#endif
}
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
#if ENABLED(AUTO_BED_LEVELING_UBL) // Eventually make these available if any leveling system
// That can store is enabled
2018-06-15 22:54:38 +02:00
static uint16_t meshes_start_index();
FORCE_INLINE static uint16_t meshes_end_index() { return meshes_end; }
static uint16_t calc_num_meshes();
2018-03-10 10:07:50 +01:00
static int mesh_slot_offset(const int8_t slot);
static void store_mesh(const int8_t slot);
static void load_mesh(const int8_t slot, void * const into=NULL);
//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;
#if ENABLED(AUTO_BED_LEVELING_UBL) // Eventually make these available if any leveling system
// That can store is enabled
2018-06-15 22:54:38 +02:00
static constexpr uint16_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
#endif
2018-01-03 00:22:48 +01:00
static bool _load();
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