🐛 Fix thermistor 14 & 60 constexprness (#26499)

This commit is contained in:
ellensp 2023-12-05 18:27:58 +13:00 committed by GitHub
parent 065440891b
commit 2b1375c8ea
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -22,7 +22,7 @@
#pragma once
// R25 = 100 kOhm, beta25 = 4092 K, 4.7 kOhm pull-up, bed thermistor
const temp_entry_t temptable_14[] PROGMEM = {
constexpr temp_entry_t temptable_14[] PROGMEM = {
{ OV( 23), 275 },
{ OV( 25), 270 },
{ OV( 27), 265 },

View file

@ -24,7 +24,7 @@
#define REVERSE_TEMP_SENSOR_RANGE_68 1
// PT100 amplifier board from Dyze Design
const temp_entry_t temptable_68[] PROGMEM = {
constexpr temp_entry_t temptable_68[] PROGMEM = {
{ OV(273), 0 },
{ OV(294), 20 },
{ OV(315), 40 },