Merge pull request #3609 from jbrazio/feature/config-version
Adds versioning for Configuration.h & Configuration_adv.h
This commit is contained in:
BIN
Marlin/example_configurations/tvrrug/Round2/.Configuration.h.swp
Normal file
BIN
Marlin/example_configurations/tvrrug/Round2/.Configuration.h.swp
Normal file
Binary file not shown.
@ -38,6 +38,19 @@
|
||||
#ifndef CONFIGURATION_H
|
||||
#define CONFIGURATION_H
|
||||
|
||||
/**
|
||||
*
|
||||
* ***********************************
|
||||
* ** ATTENTION TO ALL DEVELOPERS **
|
||||
* ***********************************
|
||||
*
|
||||
* You must increment this version number for every significant change such as,
|
||||
* but not limited to: ADD, DELETE RENAME OR REPURPOSE any directive/option.
|
||||
*
|
||||
* Note: Update also Version.h !
|
||||
*/
|
||||
#define CONFIGURATION_H_VERSION 010100
|
||||
|
||||
#include "boards.h"
|
||||
#include "macros.h"
|
||||
|
||||
|
@ -33,6 +33,19 @@
|
||||
#ifndef CONFIGURATION_ADV_H
|
||||
#define CONFIGURATION_ADV_H
|
||||
|
||||
/**
|
||||
*
|
||||
* ***********************************
|
||||
* ** ATTENTION TO ALL DEVELOPERS **
|
||||
* ***********************************
|
||||
*
|
||||
* You must increment this version number for every significant change such as,
|
||||
* but not limited to: ADD, DELETE RENAME OR REPURPOSE any directive/option.
|
||||
*
|
||||
* Note: Update also Version.h !
|
||||
*/
|
||||
#define CONFIGURATION_ADV_H_VERSION 010100
|
||||
|
||||
#include "Conditionals.h"
|
||||
|
||||
// @section temperature
|
||||
|
Reference in New Issue
Block a user