2016-03-25 06:19:46 +00:00
|
|
|
/**
|
2016-03-24 18:01:20 +00: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 04:04:54 +00:00
|
|
|
#ifndef CONFIGURATION_STORE_H
|
|
|
|
#define CONFIGURATION_STORE_H
|
2012-12-03 11:52:00 +00:00
|
|
|
|
2017-09-06 11:28:32 +00:00
|
|
|
#include "../inc/MarlinConfig.h"
|
2018-08-14 08:28:52 +00:00
|
|
|
|
2018-08-13 22:30:26 +00:00
|
|
|
#if ENABLED(EEPROM_SETTINGS)
|
2018-08-14 08:28:52 +00:00
|
|
|
#include "../HAL/shared/persistent_store_api.h"
|
2018-08-13 22:30:26 +00:00
|
|
|
#endif
|
2012-12-03 11:52:00 +00:00
|
|
|
|
2017-11-05 14:49:38 +00:00
|
|
|
#define ADD_PORT_ARG ENABLED(EEPROM_CHITCHAT) && NUM_SERIAL > 1
|
|
|
|
|
2018-03-15 03:44:07 +00:00
|
|
|
#if ADD_PORT_ARG
|
|
|
|
#define PORTINIT_SOLO const int8_t port=-1
|
|
|
|
#define PORTINIT_AFTER ,const int8_t port=-1
|
|
|
|
#else
|
|
|
|
#define PORTINIT_SOLO
|
|
|
|
#define PORTINIT_AFTER
|
|
|
|
#endif
|
|
|
|
|
2017-04-10 02:47:49 +00:00
|
|
|
class MarlinSettings {
|
|
|
|
public:
|
|
|
|
MarlinSettings() { }
|
|
|
|
|
2018-01-05 02:01:25 +00:00
|
|
|
static uint16_t datasize();
|
|
|
|
|
2018-03-15 03:44:07 +00:00
|
|
|
static void reset(PORTINIT_SOLO);
|
|
|
|
static bool save(PORTINIT_SOLO); // Return 'true' if data was saved
|
2017-04-10 02:47:49 +00:00
|
|
|
|
2018-01-01 21:18:25 +00:00
|
|
|
FORCE_INLINE static bool init_eeprom() {
|
|
|
|
reset();
|
|
|
|
#if ENABLED(EEPROM_SETTINGS)
|
2018-05-11 23:06:04 +00:00
|
|
|
const bool success = save();
|
2018-01-05 03:09:56 +00:00
|
|
|
#if ENABLED(EEPROM_CHITCHAT)
|
|
|
|
if (success) report();
|
|
|
|
#endif
|
2018-05-11 23:06:04 +00:00
|
|
|
return success;
|
|
|
|
#else
|
|
|
|
return true;
|
2018-01-01 21:18:25 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2018-10-10 01:00:47 +00:00
|
|
|
#if ENABLED(SD_FIRMWARE_UPDATE)
|
|
|
|
static bool sd_update_status(); // True if the SD-Firmware-Update EEPROM flag is set
|
|
|
|
static bool set_sd_update_status(const bool enable); // Return 'true' after EEPROM is set (-> always true)
|
|
|
|
#endif
|
|
|
|
|
2017-04-10 02:47:49 +00:00
|
|
|
#if ENABLED(EEPROM_SETTINGS)
|
2018-03-15 03:44:07 +00:00
|
|
|
static bool load(PORTINIT_SOLO); // Return 'true' if data was loaded ok
|
|
|
|
static bool validate(PORTINIT_SOLO); // Return 'true' if EEPROM data is ok
|
2017-05-07 01:00:56 +00:00
|
|
|
|
|
|
|
#if ENABLED(AUTO_BED_LEVELING_UBL) // Eventually make these available if any leveling system
|
|
|
|
// That can store is enabled
|
2018-06-15 20:51:45 +00:00
|
|
|
static uint16_t meshes_start_index();
|
|
|
|
FORCE_INLINE static uint16_t meshes_end_index() { return meshes_end; }
|
2017-12-25 09:32:31 +00:00
|
|
|
static uint16_t calc_num_meshes();
|
2018-03-10 09:02:53 +00:00
|
|
|
static int mesh_slot_offset(const int8_t slot);
|
2017-12-25 09:32:31 +00:00
|
|
|
static void store_mesh(const int8_t slot);
|
|
|
|
static void load_mesh(const int8_t slot, void * const into=NULL);
|
2017-05-07 01:00:56 +00:00
|
|
|
|
|
|
|
//static void delete_mesh(); // necessary if we have a MAT
|
|
|
|
//static void defrag_meshes(); // "
|
|
|
|
#endif
|
2017-04-10 02:47:49 +00:00
|
|
|
#else
|
|
|
|
FORCE_INLINE
|
|
|
|
static bool load() { reset(); report(); return true; }
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if DISABLED(DISABLE_M503)
|
2017-11-05 14:49:38 +00:00
|
|
|
static void report(const bool forReplay=false
|
2018-03-09 13:42:27 +00:00
|
|
|
#if NUM_SERIAL > 1
|
2017-11-05 14:49:38 +00:00
|
|
|
, const int8_t port=-1
|
|
|
|
#endif
|
|
|
|
);
|
2017-04-10 02:47:49 +00:00
|
|
|
#else
|
|
|
|
FORCE_INLINE
|
2017-12-07 03:16:00 +00:00
|
|
|
static void report(const bool forReplay=false) { UNUSED(forReplay); }
|
2017-04-10 02:47:49 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
private:
|
|
|
|
static void postprocess();
|
|
|
|
|
|
|
|
#if ENABLED(EEPROM_SETTINGS)
|
2018-01-05 01:51:18 +00:00
|
|
|
|
|
|
|
static bool eeprom_error, validating;
|
2017-05-07 01:00:56 +00:00
|
|
|
|
2018-08-13 22:30:26 +00:00
|
|
|
#if ENABLED(AUTO_BED_LEVELING_UBL) // Eventually make these available if any leveling system
|
|
|
|
// That can store is enabled
|
|
|
|
static const uint16_t meshes_end; // 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 01:00:56 +00:00
|
|
|
#endif
|
|
|
|
|
2018-03-15 03:44:07 +00:00
|
|
|
static bool _load(PORTINIT_SOLO);
|
|
|
|
static bool size_error(const uint16_t size PORTINIT_AFTER);
|
2017-04-10 02:47:49 +00:00
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
|
|
|
extern MarlinSettings settings;
|
|
|
|
|
2018-03-15 03:44:07 +00:00
|
|
|
#undef PORTINIT_SOLO
|
|
|
|
#undef PORTINIT_AFTER
|
|
|
|
|
2017-04-10 02:47:49 +00:00
|
|
|
#endif // CONFIGURATION_STORE_H
|