Browse Source
Fix TEMP_ADC_PROBE support for STM32F1 (#19582)
Co-authored-by: ellensp <ellensp@ellensp-HP-ProBook-6470b.fritz.box>
vanilla_fb_2.0.x
ellensp
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
9 additions and
0 deletions
-
Marlin/src/HAL/STM32F1/HAL.cpp
|
|
@ -97,6 +97,9 @@ const uint8_t adc_pins[] = { |
|
|
|
#if HAS_TEMP_ADC_0 |
|
|
|
TEMP_0_PIN, |
|
|
|
#endif |
|
|
|
#if HAS_TEMP_ADC_PROBE |
|
|
|
TEMP_PROBE_PIN, |
|
|
|
#endif |
|
|
|
#if HAS_HEATED_BED |
|
|
|
TEMP_BED_PIN, |
|
|
|
#endif |
|
|
@ -151,6 +154,9 @@ enum TempPinIndex : char { |
|
|
|
#if HAS_TEMP_ADC_0 |
|
|
|
TEMP_0, |
|
|
|
#endif |
|
|
|
#if HAS_TEMP_ADC_PROBE |
|
|
|
TEMP_PROBE, |
|
|
|
#endif |
|
|
|
#if HAS_HEATED_BED |
|
|
|
TEMP_BED, |
|
|
|
#endif |
|
|
@ -341,6 +347,9 @@ void HAL_adc_start_conversion(const uint8_t adc_pin) { |
|
|
|
#if HAS_TEMP_ADC_0 |
|
|
|
case TEMP_0_PIN: pin_index = TEMP_0; break; |
|
|
|
#endif |
|
|
|
#if HAS_TEMP_ADC_PROBE |
|
|
|
case TEMP_PROBE_PIN: pin_index = TEMP_PROBE; break; |
|
|
|
#endif |
|
|
|
#if HAS_HEATED_BED |
|
|
|
case TEMP_BED_PIN: pin_index = TEMP_BED; break; |
|
|
|
#endif |
|
|
|