fix rebase module05

This commit is contained in:
hugogogo
2025-03-15 16:31:30 +01:00
parent 8fef07135a
commit 1d5e8d4ee7
9 changed files with 46 additions and 22 deletions

View File

@@ -21,9 +21,9 @@ uint16_t calibrate_temperature(uint16_t value, uint8_t speed) { // 24.8 : Tempe
}
void adc_print_dec(uint16_t value) {
if (adc_channel == ADC_THERMISTOR) {
value = calibrate_temperature(value, 5);
}
// if (adc_channel == ADC_THERMISTOR) {
// value = calibrate_temperature(value, 5);
// }
char buffer[17] = {0};
uint16_to_string(value, buffer);
uart_printstr(buffer);