This repository has been archived on 2022-01-28. You can view files and clone it, but cannot push or open issues or pull requests.
Marlin-Artillery-M600/Marlin/src/module/configuration_store.h

120 lines
3.7 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
2017-09-06 13:28:32 +02:00
#include "../inc/MarlinConfig.h"
#if ENABLED(EEPROM_SETTINGS)
#include "../HAL/shared/persistent_store_api.h"
#endif
2017-11-05 15:49:38 +01:00
#define ADD_PORT_ARG ENABLED(EEPROM_CHITCHAT) && NUM_SERIAL > 1
2018-03-15 04:44:07 +01: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 04:47:49 +02:00
class MarlinSettings {
public:
MarlinSettings() { }
2018-01-05 03:01:25 +01:00
static uint16_t datasize();
2018-03-15 04:44:07 +01:00
static void reset(PORTINIT_SOLO);
static bool save(PORTINIT_SOLO); // Return 'true' if data was saved
2017-04-10 04:47:49 +02:00
2018-01-01 22:18:25 +01:00
FORCE_INLINE static bool init_eeprom() {
reset();
#if ENABLED(EEPROM_SETTINGS)
2018-05-12 01:06:04 +02:00
const bool success = save();
2018-01-05 04:09:56 +01:00
#if ENABLED(EEPROM_CHITCHAT)
if (success) report();
#endif
2018-05-12 01:06:04 +02:00
return success;
#else
return true;
2018-01-01 22:18:25 +01:00
#endif
}
2017-04-10 04:47:49 +02:00
#if ENABLED(EEPROM_SETTINGS)
2018-03-15 04:44:07 +01: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
#if ENABLED(AUTO_BED_LEVELING_UBL) // Eventually make these available if any leveling system
// That can store is enabled
2018-06-15 22:51:45 +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();
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-11-05 15:49:38 +01:00
static void report(const bool forReplay=false
#if NUM_SERIAL > 1
2017-11-05 15:49:38 +01:00
, const int8_t port=-1
#endif
);
2017-04-10 04:47:49 +02:00
#else
FORCE_INLINE
2017-12-07 04:16:00 +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-05 02:51:18 +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
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
#endif
2018-03-15 04:44:07 +01:00
static bool _load(PORTINIT_SOLO);
static bool size_error(const uint16_t size PORTINIT_AFTER);
2017-04-10 04:47:49 +02:00
#endif
};
extern MarlinSettings settings;
2018-03-15 04:44:07 +01:00
#undef PORTINIT_SOLO
#undef PORTINIT_AFTER
2017-04-10 04:47:49 +02:00
#endif // CONFIGURATION_STORE_H