Browse Source
Updated all example configuration files
pull/1/head
João Brázio
9 years ago
No known key found for this signature in database
GPG Key ID: F62CFD37DFFDB540
55 changed files with
437 additions and
8 deletions
-
Marlin/Configuration.h
-
Marlin/Configuration_adv.h
-
Marlin/SanityCheck.h
-
Marlin/Version.h
-
BIN
Marlin/example_configurations/Felix/.Configuration.h.swp
-
Marlin/example_configurations/Felix/Configuration.h
-
Marlin/example_configurations/Felix/Configuration_adv.h
-
BIN
Marlin/example_configurations/Felix/DUAL/.Configuration.h.swp
-
Marlin/example_configurations/Felix/DUAL/Configuration.h
-
BIN
Marlin/example_configurations/Hephestos/.Configuration.h.swp
-
Marlin/example_configurations/Hephestos/Configuration.h
-
Marlin/example_configurations/Hephestos/Configuration_adv.h
-
BIN
Marlin/example_configurations/Hephestos_2/.Configuration.h.swp
-
Marlin/example_configurations/Hephestos_2/Configuration.h
-
Marlin/example_configurations/Hephestos_2/Configuration_adv.h
-
BIN
Marlin/example_configurations/K8200/.Configuration.h.swp
-
Marlin/example_configurations/K8200/Configuration.h
-
Marlin/example_configurations/K8200/Configuration_adv.h
-
BIN
Marlin/example_configurations/RepRapWorld/Megatronics/.Configuration.h.swp
-
Marlin/example_configurations/RepRapWorld/Megatronics/Configuration.h
-
BIN
Marlin/example_configurations/RigidBot/.Configuration.h.swp
-
Marlin/example_configurations/RigidBot/Configuration.h
-
Marlin/example_configurations/RigidBot/Configuration_adv.h
-
BIN
Marlin/example_configurations/SCARA/.Configuration.h.swp
-
Marlin/example_configurations/SCARA/Configuration.h
-
Marlin/example_configurations/SCARA/Configuration_adv.h
-
BIN
Marlin/example_configurations/TAZ4/.Configuration.h.swp
-
Marlin/example_configurations/TAZ4/Configuration.h
-
Marlin/example_configurations/TAZ4/Configuration_adv.h
-
BIN
Marlin/example_configurations/WITBOX/.Configuration.h.swp
-
Marlin/example_configurations/WITBOX/Configuration.h
-
Marlin/example_configurations/WITBOX/Configuration_adv.h
-
BIN
Marlin/example_configurations/adafruit/ST7565/.Configuration.h.swp
-
Marlin/example_configurations/adafruit/ST7565/Configuration.h
-
BIN
Marlin/example_configurations/delta/biv2.5/.Configuration.h.swp
-
Marlin/example_configurations/delta/biv2.5/Configuration.h
-
Marlin/example_configurations/delta/biv2.5/Configuration_adv.h
-
BIN
Marlin/example_configurations/delta/generic/.Configuration.h.swp
-
Marlin/example_configurations/delta/generic/Configuration.h
-
Marlin/example_configurations/delta/generic/Configuration_adv.h
-
BIN
Marlin/example_configurations/delta/kossel_mini/.Configuration.h.swp
-
Marlin/example_configurations/delta/kossel_mini/Configuration.h
-
Marlin/example_configurations/delta/kossel_mini/Configuration_adv.h
-
BIN
Marlin/example_configurations/delta/kossel_pro/.Configuration.h.swp
-
Marlin/example_configurations/delta/kossel_pro/Configuration.h
-
Marlin/example_configurations/delta/kossel_pro/Configuration_adv.h
-
BIN
Marlin/example_configurations/delta/kossel_xl/.Configuration.h.swp
-
Marlin/example_configurations/delta/kossel_xl/Configuration.h
-
Marlin/example_configurations/delta/kossel_xl/Configuration_adv.h
-
BIN
Marlin/example_configurations/makibox/.Configuration.h.swp
-
Marlin/example_configurations/makibox/Configuration.h
-
Marlin/example_configurations/makibox/Configuration_adv.h
-
BIN
Marlin/example_configurations/tvrrug/Round2/.Configuration.h.swp
-
Marlin/example_configurations/tvrrug/Round2/Configuration.h
-
Marlin/example_configurations/tvrrug/Round2/Configuration_adv.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" |
|
|
|
|
|
@ -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" |
|
|
|
|
|
|
|
|
|
@ -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 |
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
@ -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 |
|
|
|
|
|
@ -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
|
|
|
|
|
|
@ -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" |
|
|
|
|
|
|
|
|
|
@ -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
|
|
|
|
|
|
@ -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
|
|
|
|
|
|
@ -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" |
|
|
|
|
|
|
|
|
|
@ -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
|
|
|
|
|
|
@ -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" |
|
|
|
|
|
|
|
|
|
@ -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
|
|
|
|
|
|
@ -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
|
|
|
|
|
|
@ -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
|
|
|
|
|
|
@ -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
|
|
|
|
|
|
@ -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" |
|
|
|
|
|
|
|
|
|
@ -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
|
|
|
|
|
|
@ -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
|
|
|
|
|
|
@ -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
|
|
|
|
|
|
@ -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" |
|
|
|
|
|
|
|
|
|
@ -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
|
|
|
|
|
|
@ -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
|
|
|
|
|
|
@ -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
|
|
|
|
|
|
@ -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
|
|
|
|