Browse Source

Updated all example configuration files

pull/1/head
João Brázio 9 years ago
parent
commit
8ccd97e7cc
No known key found for this signature in database GPG Key ID: F62CFD37DFFDB540
  1. 4
      Marlin/Configuration.h
  2. 4
      Marlin/Configuration_adv.h
  3. 4
      Marlin/SanityCheck.h
  4. 4
      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

4
Marlin/Configuration.h

@ -47,9 +47,9 @@
* 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 Default_Version.h !
* Note: Update also Version.h !
*/
#define CONFIGURATION_H_VERSION 1
#define CONFIGURATION_H_VERSION 010100
#include "boards.h"
#include "macros.h"

4
Marlin/Configuration_adv.h

@ -42,9 +42,9 @@
* 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 Default_Version.h !
* Note: Update also Version.h !
*/
#define CONFIGURATION_ADV_H_VERSION 1
#define CONFIGURATION_ADV_H_VERSION 010100
#include "Conditionals.h"

4
Marlin/SanityCheck.h

@ -45,11 +45,11 @@
* 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, updated it before building Marlin.
#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, updated it before building Marlin.
#error You are using an old Configuration_adv.h file, update it before building Marlin.
#endif
/**

4
Marlin/Version.h

@ -51,8 +51,8 @@
* but not limited to: ADD, DELETE RENAME OR REPURPOSE any directive/option on
* the configuration files.
*/
#define REQUIRED_CONFIGURATION_H_VERSION 1
#define REQUIRED_CONFIGURATION_ADV_H_VERSION 1
#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