Merge pull request #3609 from jbrazio/feature/config-version
Adds versioning for Configuration.h & Configuration_adv.h
This commit is contained in:
commit
f639044c24
@ -38,6 +38,19 @@
|
|||||||
#ifndef CONFIGURATION_H
|
#ifndef CONFIGURATION_H
|
||||||
#define 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 "boards.h"
|
||||||
#include "macros.h"
|
#include "macros.h"
|
||||||
|
|
||||||
|
@ -33,6 +33,19 @@
|
|||||||
#ifndef CONFIGURATION_ADV_H
|
#ifndef CONFIGURATION_ADV_H
|
||||||
#define 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"
|
#include "Conditionals.h"
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
@ -38,6 +38,20 @@
|
|||||||
#error "Versions of Arduino IDE prior to 1.6.0 are no longer supported, please update your toolkit."
|
#error "Versions of Arduino IDE prior to 1.6.0 are no longer supported, please update your toolkit."
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* We try our best to include sanity checks for all the changes configuration
|
||||||
|
* directives because people have a tendency to use outdated config files with
|
||||||
|
* the bleding edge source code, but sometimes this is not enough. This check
|
||||||
|
* will force a minimum config file revision, otherwise Marlin will not build.
|
||||||
|
*/
|
||||||
|
#if ! defined(CONFIGURATION_H_VERSION) || CONFIGURATION_H_VERSION < REQUIRED_CONFIGURATION_H_VERSION
|
||||||
|
#error You are using an old Configuration.h file, update it before building Marlin.
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if ! defined(CONFIGURATION_ADV_H_VERSION) || CONFIGURATION_ADV_H_VERSION < REQUIRED_CONFIGURATION_ADV_H_VERSION
|
||||||
|
#error You are using an old Configuration_adv.h file, update it before building Marlin.
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Marlin release, version and default string
|
* Marlin release, version and default string
|
||||||
*/
|
*/
|
||||||
|
@ -44,6 +44,16 @@
|
|||||||
*/
|
*/
|
||||||
#define STRING_DISTRIBUTION_DATE "2016-04-27 12:00"
|
#define STRING_DISTRIBUTION_DATE "2016-04-27 12:00"
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Required minimum Configuration.h and Configuration_adv.h file versions.
|
||||||
|
*
|
||||||
|
* You must increment this version number for every significant change such as,
|
||||||
|
* but not limited to: ADD, DELETE RENAME OR REPURPOSE any directive/option on
|
||||||
|
* the configuration files.
|
||||||
|
*/
|
||||||
|
#define REQUIRED_CONFIGURATION_H_VERSION 010100
|
||||||
|
#define REQUIRED_CONFIGURATION_ADV_H_VERSION 010100
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @todo: Missing documentation block
|
* @todo: Missing documentation block
|
||||||
*/
|
*/
|
||||||
|
BIN
Marlin/example_configurations/Felix/.Configuration.h.swp
Normal file
BIN
Marlin/example_configurations/Felix/.Configuration.h.swp
Normal file
Binary file not shown.
@ -38,6 +38,19 @@
|
|||||||
#ifndef CONFIGURATION_H
|
#ifndef CONFIGURATION_H
|
||||||
#define 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 "boards.h"
|
||||||
#include "macros.h"
|
#include "macros.h"
|
||||||
|
|
||||||
|
@ -33,6 +33,19 @@
|
|||||||
#ifndef CONFIGURATION_ADV_H
|
#ifndef CONFIGURATION_ADV_H
|
||||||
#define 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"
|
#include "Conditionals.h"
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
BIN
Marlin/example_configurations/Felix/DUAL/.Configuration.h.swp
Normal file
BIN
Marlin/example_configurations/Felix/DUAL/.Configuration.h.swp
Normal file
Binary file not shown.
@ -38,6 +38,19 @@
|
|||||||
#ifndef CONFIGURATION_H
|
#ifndef CONFIGURATION_H
|
||||||
#define 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 "boards.h"
|
||||||
#include "macros.h"
|
#include "macros.h"
|
||||||
|
|
||||||
|
BIN
Marlin/example_configurations/Hephestos/.Configuration.h.swp
Normal file
BIN
Marlin/example_configurations/Hephestos/.Configuration.h.swp
Normal file
Binary file not shown.
@ -38,6 +38,19 @@
|
|||||||
#ifndef CONFIGURATION_H
|
#ifndef CONFIGURATION_H
|
||||||
#define 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 "boards.h"
|
||||||
#include "macros.h"
|
#include "macros.h"
|
||||||
|
|
||||||
|
@ -33,6 +33,19 @@
|
|||||||
#ifndef CONFIGURATION_ADV_H
|
#ifndef CONFIGURATION_ADV_H
|
||||||
#define 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"
|
#include "Conditionals.h"
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
BIN
Marlin/example_configurations/Hephestos_2/.Configuration.h.swp
Normal file
BIN
Marlin/example_configurations/Hephestos_2/.Configuration.h.swp
Normal file
Binary file not shown.
@ -38,6 +38,19 @@
|
|||||||
#ifndef CONFIGURATION_H
|
#ifndef CONFIGURATION_H
|
||||||
#define 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 "boards.h"
|
||||||
#include "macros.h"
|
#include "macros.h"
|
||||||
|
|
||||||
|
@ -33,6 +33,19 @@
|
|||||||
#ifndef CONFIGURATION_ADV_H
|
#ifndef CONFIGURATION_ADV_H
|
||||||
#define 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"
|
#include "Conditionals.h"
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
BIN
Marlin/example_configurations/K8200/.Configuration.h.swp
Normal file
BIN
Marlin/example_configurations/K8200/.Configuration.h.swp
Normal file
Binary file not shown.
@ -45,6 +45,19 @@
|
|||||||
#ifndef CONFIGURATION_H
|
#ifndef CONFIGURATION_H
|
||||||
#define 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 "boards.h"
|
||||||
#include "macros.h"
|
#include "macros.h"
|
||||||
|
|
||||||
|
@ -39,6 +39,19 @@
|
|||||||
#ifndef CONFIGURATION_ADV_H
|
#ifndef CONFIGURATION_ADV_H
|
||||||
#define 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"
|
#include "Conditionals.h"
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
Binary file not shown.
@ -38,6 +38,19 @@
|
|||||||
#ifndef CONFIGURATION_H
|
#ifndef CONFIGURATION_H
|
||||||
#define 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 "boards.h"
|
||||||
#include "macros.h"
|
#include "macros.h"
|
||||||
|
|
||||||
|
BIN
Marlin/example_configurations/RigidBot/.Configuration.h.swp
Normal file
BIN
Marlin/example_configurations/RigidBot/.Configuration.h.swp
Normal file
Binary file not shown.
@ -38,6 +38,19 @@
|
|||||||
#ifndef CONFIGURATION_H
|
#ifndef CONFIGURATION_H
|
||||||
#define 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 "boards.h"
|
||||||
#include "macros.h"
|
#include "macros.h"
|
||||||
|
|
||||||
|
@ -33,6 +33,19 @@
|
|||||||
#ifndef CONFIGURATION_ADV_H
|
#ifndef CONFIGURATION_ADV_H
|
||||||
#define 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"
|
#include "Conditionals.h"
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
BIN
Marlin/example_configurations/SCARA/.Configuration.h.swp
Normal file
BIN
Marlin/example_configurations/SCARA/.Configuration.h.swp
Normal file
Binary file not shown.
@ -38,6 +38,19 @@
|
|||||||
#ifndef CONFIGURATION_H
|
#ifndef CONFIGURATION_H
|
||||||
#define 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 "boards.h"
|
||||||
#include "macros.h"
|
#include "macros.h"
|
||||||
|
|
||||||
|
@ -33,6 +33,19 @@
|
|||||||
#ifndef CONFIGURATION_ADV_H
|
#ifndef CONFIGURATION_ADV_H
|
||||||
#define 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"
|
#include "Conditionals.h"
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
BIN
Marlin/example_configurations/TAZ4/.Configuration.h.swp
Normal file
BIN
Marlin/example_configurations/TAZ4/.Configuration.h.swp
Normal file
Binary file not shown.
@ -38,6 +38,19 @@
|
|||||||
#ifndef CONFIGURATION_H
|
#ifndef CONFIGURATION_H
|
||||||
#define 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 "boards.h"
|
||||||
#include "macros.h"
|
#include "macros.h"
|
||||||
|
|
||||||
|
@ -33,6 +33,19 @@
|
|||||||
#ifndef CONFIGURATION_ADV_H
|
#ifndef CONFIGURATION_ADV_H
|
||||||
#define 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"
|
#include "Conditionals.h"
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
BIN
Marlin/example_configurations/WITBOX/.Configuration.h.swp
Normal file
BIN
Marlin/example_configurations/WITBOX/.Configuration.h.swp
Normal file
Binary file not shown.
@ -38,6 +38,19 @@
|
|||||||
#ifndef CONFIGURATION_H
|
#ifndef CONFIGURATION_H
|
||||||
#define 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 "boards.h"
|
||||||
#include "macros.h"
|
#include "macros.h"
|
||||||
|
|
||||||
|
@ -33,6 +33,19 @@
|
|||||||
#ifndef CONFIGURATION_ADV_H
|
#ifndef CONFIGURATION_ADV_H
|
||||||
#define 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"
|
#include "Conditionals.h"
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
Binary file not shown.
@ -38,6 +38,19 @@
|
|||||||
#ifndef CONFIGURATION_H
|
#ifndef CONFIGURATION_H
|
||||||
#define 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 "boards.h"
|
||||||
#include "macros.h"
|
#include "macros.h"
|
||||||
|
|
||||||
|
BIN
Marlin/example_configurations/delta/biv2.5/.Configuration.h.swp
Normal file
BIN
Marlin/example_configurations/delta/biv2.5/.Configuration.h.swp
Normal file
Binary file not shown.
@ -38,6 +38,19 @@
|
|||||||
#ifndef CONFIGURATION_H
|
#ifndef CONFIGURATION_H
|
||||||
#define 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 "boards.h"
|
||||||
#include "macros.h"
|
#include "macros.h"
|
||||||
|
|
||||||
|
@ -33,6 +33,19 @@
|
|||||||
#ifndef CONFIGURATION_ADV_H
|
#ifndef CONFIGURATION_ADV_H
|
||||||
#define 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"
|
#include "Conditionals.h"
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
BIN
Marlin/example_configurations/delta/generic/.Configuration.h.swp
Normal file
BIN
Marlin/example_configurations/delta/generic/.Configuration.h.swp
Normal file
Binary file not shown.
@ -38,6 +38,19 @@
|
|||||||
#ifndef CONFIGURATION_H
|
#ifndef CONFIGURATION_H
|
||||||
#define 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 "boards.h"
|
||||||
#include "macros.h"
|
#include "macros.h"
|
||||||
|
|
||||||
|
@ -33,6 +33,19 @@
|
|||||||
#ifndef CONFIGURATION_ADV_H
|
#ifndef CONFIGURATION_ADV_H
|
||||||
#define 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"
|
#include "Conditionals.h"
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
Binary file not shown.
@ -38,6 +38,19 @@
|
|||||||
#ifndef CONFIGURATION_H
|
#ifndef CONFIGURATION_H
|
||||||
#define 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 "boards.h"
|
||||||
#include "macros.h"
|
#include "macros.h"
|
||||||
|
|
||||||
|
@ -33,6 +33,19 @@
|
|||||||
#ifndef CONFIGURATION_ADV_H
|
#ifndef CONFIGURATION_ADV_H
|
||||||
#define 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"
|
#include "Conditionals.h"
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
Binary file not shown.
@ -44,6 +44,19 @@
|
|||||||
#ifndef CONFIGURATION_H
|
#ifndef CONFIGURATION_H
|
||||||
#define 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 "boards.h"
|
||||||
#include "macros.h"
|
#include "macros.h"
|
||||||
|
|
||||||
|
@ -38,6 +38,19 @@
|
|||||||
#ifndef CONFIGURATION_ADV_H
|
#ifndef CONFIGURATION_ADV_H
|
||||||
#define 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"
|
#include "Conditionals.h"
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
Binary file not shown.
@ -38,6 +38,19 @@
|
|||||||
#ifndef CONFIGURATION_H
|
#ifndef CONFIGURATION_H
|
||||||
#define 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 "boards.h"
|
||||||
#include "macros.h"
|
#include "macros.h"
|
||||||
|
|
||||||
|
@ -33,6 +33,19 @@
|
|||||||
#ifndef CONFIGURATION_ADV_H
|
#ifndef CONFIGURATION_ADV_H
|
||||||
#define 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"
|
#include "Conditionals.h"
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
BIN
Marlin/example_configurations/makibox/.Configuration.h.swp
Normal file
BIN
Marlin/example_configurations/makibox/.Configuration.h.swp
Normal file
Binary file not shown.
@ -38,6 +38,19 @@
|
|||||||
#ifndef CONFIGURATION_H
|
#ifndef CONFIGURATION_H
|
||||||
#define 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 "boards.h"
|
||||||
#include "macros.h"
|
#include "macros.h"
|
||||||
|
|
||||||
|
@ -33,6 +33,19 @@
|
|||||||
#ifndef CONFIGURATION_ADV_H
|
#ifndef CONFIGURATION_ADV_H
|
||||||
#define 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"
|
#include "Conditionals.h"
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
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
|
#ifndef CONFIGURATION_H
|
||||||
#define 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 "boards.h"
|
||||||
#include "macros.h"
|
#include "macros.h"
|
||||||
|
|
||||||
|
@ -33,6 +33,19 @@
|
|||||||
#ifndef CONFIGURATION_ADV_H
|
#ifndef CONFIGURATION_ADV_H
|
||||||
#define 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"
|
#include "Conditionals.h"
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
Loading…
Reference in New Issue
Block a user