Update some comments

This commit is contained in:
Scott Lahteine 2020-08-20 00:08:06 -05:00
parent 28a0650cf3
commit 7807b613d5
3 changed files with 6 additions and 2 deletions

View File

@ -21,7 +21,7 @@
*/ */
/** /**
* configuration_store.cpp * settings.cpp
* *
* Settings and EEPROM storage * Settings and EEPROM storage
* *

View File

@ -21,6 +21,10 @@
*/ */
#pragma once #pragma once
//
// settings.cpp - Settings and EEPROM storage
//
#include "../inc/MarlinConfig.h" #include "../inc/MarlinConfig.h"
#if ENABLED(EEPROM_SETTINGS) #if ENABLED(EEPROM_SETTINGS)

View File

@ -361,7 +361,7 @@ volatile bool Temperature::raw_temps_ready = false;
#endif #endif
#if ENABLED(PID_EXTRUSION_SCALING) #if ENABLED(PID_EXTRUSION_SCALING)
int16_t Temperature::lpq_len; // Initialized in configuration_store int16_t Temperature::lpq_len; // Initialized in settings.cpp
#endif #endif
#if HAS_PID_HEATING #if HAS_PID_HEATING