Bug when referencing to externals in EEPROM. Now it should work.

This commit is contained in:
Knutwurst
2021-04-14 09:37:08 +02:00
parent a6fc1cb0c5
commit a56aaa5bf7
3 changed files with 5 additions and 6 deletions

View File

@@ -41,10 +41,10 @@
* here we define this default string as the date where the latest release * here we define this default string as the date where the latest release
* version was tagged. * version was tagged.
*/ */
#define CUSTOM_BUILD_VERSION "1.2.0-beta.1" #define CUSTOM_BUILD_VERSION "1.2.0-alpha.4"
#ifndef STRING_DISTRIBUTION_DATE #ifndef STRING_DISTRIBUTION_DATE
#define STRING_DISTRIBUTION_DATE "2021-04-13" #define STRING_DISTRIBUTION_DATE "2021-04-14"
#endif #endif
/** /**

View File

@@ -34,9 +34,8 @@
#include "../module/temperature.h" #include "../module/temperature.h"
#include "../module/motion.h" #include "../module/motion.h"
#include "../module/configuration_store.h" #include "../module/configuration_store.h"
#include "../sd/cardreader.h"
#include "../module/probe.h" #include "../module/probe.h"
#include "../sd/cardreader.h"
#ifdef ANYCUBIC_TOUCHSCREEN #ifdef ANYCUBIC_TOUCHSCREEN
#include "anycubic_touchscreen.h" #include "anycubic_touchscreen.h"

View File

@@ -720,8 +720,8 @@ void MarlinSettings::postprocess() {
EEPROM_WRITE(bilinear_start); EEPROM_WRITE(bilinear_start);
#if ENABLED(KNUTWURST_TFT_LEVELING) #if ENABLED(KNUTWURST_TFT_LEVELING)
int z_values_index = eeprom_index; z_values_index = eeprom_index;
int z_values_size = sizeof(z_values); z_values_size = sizeof(z_values);
#endif #endif
#if ENABLED(AUTO_BED_LEVELING_BILINEAR) #if ENABLED(AUTO_BED_LEVELING_BILINEAR)