Chris Pepper
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
Marlin/src/HAL/HAL_LPC1768/inc/SanityCheck.h
|
@ -31,7 +31,7 @@ |
|
|
/**
|
|
|
/**
|
|
|
* Detect an old pins file by checking for old ADC pins values. |
|
|
* Detect an old pins file by checking for old ADC pins values. |
|
|
*/ |
|
|
*/ |
|
|
#define _OLD_TEMP_PIN(P) PIN_EXISTS(TEMP_BED) && _CAT(P,_PIN) <= 7 && _CAT(P,_PIN) != 2 && _CAT(P,_PIN) != 3 |
|
|
#define _OLD_TEMP_PIN(P) PIN_EXISTS(P) && _CAT(P,_PIN) <= 7 && _CAT(P,_PIN) != 2 && _CAT(P,_PIN) != 3 |
|
|
#if _OLD_TEMP_PIN(TEMP_BED) |
|
|
#if _OLD_TEMP_PIN(TEMP_BED) |
|
|
#error "TEMP_BED_PIN must be defined using the Pn_nn or Pn_nn_An format. (See the included pins files)." |
|
|
#error "TEMP_BED_PIN must be defined using the Pn_nn or Pn_nn_An format. (See the included pins files)." |
|
|
#elif _OLD_TEMP_PIN(TEMP_0) |
|
|
#elif _OLD_TEMP_PIN(TEMP_0) |
|
|