Browse Source

Merge pull request #3609 from jbrazio/feature/config-version

Adds versioning for Configuration.h & Configuration_adv.h
pull/1/head
Scott Lahteine 8 years ago
committed by GitHub
parent
commit
f639044c24
  1. 13
      Marlin/Configuration.h
  2. 13
      Marlin/Configuration_adv.h
  3. 14
      Marlin/SanityCheck.h
  4. 10
      Marlin/Version.h
  5. BIN
      Marlin/example_configurations/Felix/.Configuration.h.swp
  6. 13
      Marlin/example_configurations/Felix/Configuration.h
  7. 13
      Marlin/example_configurations/Felix/Configuration_adv.h
  8. BIN
      Marlin/example_configurations/Felix/DUAL/.Configuration.h.swp
  9. 13
      Marlin/example_configurations/Felix/DUAL/Configuration.h
  10. BIN
      Marlin/example_configurations/Hephestos/.Configuration.h.swp
  11. 13
      Marlin/example_configurations/Hephestos/Configuration.h
  12. 13
      Marlin/example_configurations/Hephestos/Configuration_adv.h
  13. BIN
      Marlin/example_configurations/Hephestos_2/.Configuration.h.swp
  14. 13
      Marlin/example_configurations/Hephestos_2/Configuration.h
  15. 13
      Marlin/example_configurations/Hephestos_2/Configuration_adv.h
  16. BIN
      Marlin/example_configurations/K8200/.Configuration.h.swp
  17. 13
      Marlin/example_configurations/K8200/Configuration.h
  18. 13
      Marlin/example_configurations/K8200/Configuration_adv.h
  19. BIN
      Marlin/example_configurations/RepRapWorld/Megatronics/.Configuration.h.swp
  20. 13
      Marlin/example_configurations/RepRapWorld/Megatronics/Configuration.h
  21. BIN
      Marlin/example_configurations/RigidBot/.Configuration.h.swp
  22. 13
      Marlin/example_configurations/RigidBot/Configuration.h
  23. 13
      Marlin/example_configurations/RigidBot/Configuration_adv.h
  24. BIN
      Marlin/example_configurations/SCARA/.Configuration.h.swp
  25. 13
      Marlin/example_configurations/SCARA/Configuration.h
  26. 13
      Marlin/example_configurations/SCARA/Configuration_adv.h
  27. BIN
      Marlin/example_configurations/TAZ4/.Configuration.h.swp
  28. 13
      Marlin/example_configurations/TAZ4/Configuration.h
  29. 13
      Marlin/example_configurations/TAZ4/Configuration_adv.h
  30. BIN
      Marlin/example_configurations/WITBOX/.Configuration.h.swp
  31. 13
      Marlin/example_configurations/WITBOX/Configuration.h
  32. 13
      Marlin/example_configurations/WITBOX/Configuration_adv.h
  33. BIN
      Marlin/example_configurations/adafruit/ST7565/.Configuration.h.swp
  34. 13
      Marlin/example_configurations/adafruit/ST7565/Configuration.h
  35. BIN
      Marlin/example_configurations/delta/biv2.5/.Configuration.h.swp
  36. 13
      Marlin/example_configurations/delta/biv2.5/Configuration.h
  37. 13
      Marlin/example_configurations/delta/biv2.5/Configuration_adv.h
  38. BIN
      Marlin/example_configurations/delta/generic/.Configuration.h.swp
  39. 13
      Marlin/example_configurations/delta/generic/Configuration.h
  40. 13
      Marlin/example_configurations/delta/generic/Configuration_adv.h
  41. BIN
      Marlin/example_configurations/delta/kossel_mini/.Configuration.h.swp
  42. 13
      Marlin/example_configurations/delta/kossel_mini/Configuration.h
  43. 13
      Marlin/example_configurations/delta/kossel_mini/Configuration_adv.h
  44. BIN
      Marlin/example_configurations/delta/kossel_pro/.Configuration.h.swp
  45. 13
      Marlin/example_configurations/delta/kossel_pro/Configuration.h
  46. 13
      Marlin/example_configurations/delta/kossel_pro/Configuration_adv.h
  47. BIN
      Marlin/example_configurations/delta/kossel_xl/.Configuration.h.swp
  48. 13
      Marlin/example_configurations/delta/kossel_xl/Configuration.h
  49. 13
      Marlin/example_configurations/delta/kossel_xl/Configuration_adv.h
  50. BIN
      Marlin/example_configurations/makibox/.Configuration.h.swp
  51. 13
      Marlin/example_configurations/makibox/Configuration.h
  52. 13
      Marlin/example_configurations/makibox/Configuration_adv.h
  53. BIN
      Marlin/example_configurations/tvrrug/Round2/.Configuration.h.swp
  54. 13
      Marlin/example_configurations/tvrrug/Round2/Configuration.h
  55. 13
      Marlin/example_configurations/tvrrug/Round2/Configuration_adv.h

13
Marlin/Configuration.h

@ -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"

13
Marlin/Configuration_adv.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

14
Marlin/SanityCheck.h

@ -38,6 +38,20 @@
#error "Versions of Arduino IDE prior to 1.6.0 are no longer supported, please update your toolkit."
#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
*/

10
Marlin/Version.h

@ -44,6 +44,16 @@
*/
#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
*/

BIN
Marlin/example_configurations/Felix/.Configuration.h.swp

Binary file not shown.

13
Marlin/example_configurations/Felix/Configuration.h

@ -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"

13
Marlin/example_configurations/Felix/Configuration_adv.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

BIN
Marlin/example_configurations/Felix/DUAL/.Configuration.h.swp

Binary file not shown.

13
Marlin/example_configurations/Felix/DUAL/Configuration.h

@ -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"

BIN
Marlin/example_configurations/Hephestos/.Configuration.h.swp

Binary file not shown.

13
Marlin/example_configurations/Hephestos/Configuration.h

@ -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"

13
Marlin/example_configurations/Hephestos/Configuration_adv.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

BIN
Marlin/example_configurations/Hephestos_2/.Configuration.h.swp

Binary file not shown.

13
Marlin/example_configurations/Hephestos_2/Configuration.h

@ -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"

13
Marlin/example_configurations/Hephestos_2/Configuration_adv.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

BIN
Marlin/example_configurations/K8200/.Configuration.h.swp

Binary file not shown.

13
Marlin/example_configurations/K8200/Configuration.h

@ -45,6 +45,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"

13
Marlin/example_configurations/K8200/Configuration_adv.h

@ -39,6 +39,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

BIN
Marlin/example_configurations/RepRapWorld/Megatronics/.Configuration.h.swp

Binary file not shown.

13
Marlin/example_configurations/RepRapWorld/Megatronics/Configuration.h

@ -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"

BIN
Marlin/example_configurations/RigidBot/.Configuration.h.swp

Binary file not shown.

13
Marlin/example_configurations/RigidBot/Configuration.h

@ -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"

13
Marlin/example_configurations/RigidBot/Configuration_adv.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

BIN
Marlin/example_configurations/SCARA/.Configuration.h.swp

Binary file not shown.

13
Marlin/example_configurations/SCARA/Configuration.h

@ -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"

13
Marlin/example_configurations/SCARA/Configuration_adv.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

BIN
Marlin/example_configurations/TAZ4/.Configuration.h.swp

Binary file not shown.

13
Marlin/example_configurations/TAZ4/Configuration.h

@ -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"

13
Marlin/example_configurations/TAZ4/Configuration_adv.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

BIN
Marlin/example_configurations/WITBOX/.Configuration.h.swp

Binary file not shown.

13
Marlin/example_configurations/WITBOX/Configuration.h

@ -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"

13
Marlin/example_configurations/WITBOX/Configuration_adv.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

BIN
Marlin/example_configurations/adafruit/ST7565/.Configuration.h.swp

Binary file not shown.

13
Marlin/example_configurations/adafruit/ST7565/Configuration.h

@ -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"

BIN
Marlin/example_configurations/delta/biv2.5/.Configuration.h.swp

Binary file not shown.

13
Marlin/example_configurations/delta/biv2.5/Configuration.h

@ -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"

13
Marlin/example_configurations/delta/biv2.5/Configuration_adv.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

BIN
Marlin/example_configurations/delta/generic/.Configuration.h.swp

Binary file not shown.

13
Marlin/example_configurations/delta/generic/Configuration.h

@ -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"

13
Marlin/example_configurations/delta/generic/Configuration_adv.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

BIN
Marlin/example_configurations/delta/kossel_mini/.Configuration.h.swp

Binary file not shown.

13
Marlin/example_configurations/delta/kossel_mini/Configuration.h

@ -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"

13
Marlin/example_configurations/delta/kossel_mini/Configuration_adv.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

BIN
Marlin/example_configurations/delta/kossel_pro/.Configuration.h.swp

Binary file not shown.

13
Marlin/example_configurations/delta/kossel_pro/Configuration.h

@ -44,6 +44,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"

13
Marlin/example_configurations/delta/kossel_pro/Configuration_adv.h

@ -38,6 +38,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

BIN
Marlin/example_configurations/delta/kossel_xl/.Configuration.h.swp

Binary file not shown.

13
Marlin/example_configurations/delta/kossel_xl/Configuration.h

@ -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"

13
Marlin/example_configurations/delta/kossel_xl/Configuration_adv.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

BIN
Marlin/example_configurations/makibox/.Configuration.h.swp

Binary file not shown.

13
Marlin/example_configurations/makibox/Configuration.h

@ -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"

13
Marlin/example_configurations/makibox/Configuration_adv.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

BIN
Marlin/example_configurations/tvrrug/Round2/.Configuration.h.swp

Binary file not shown.

13
Marlin/example_configurations/tvrrug/Round2/Configuration.h

@ -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"

13
Marlin/example_configurations/tvrrug/Round2/Configuration_adv.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

Loading…
Cancel
Save