Add OV() macro for use in thermistor tables

This commit is contained in:
Scott Lahteine
2017-11-15 03:14:55 -06:00
parent 24057270a3
commit 0918dae66e
25 changed files with 931 additions and 930 deletions

View File

@@ -27,6 +27,6 @@
#endif
const short temptable_998[][2] PROGMEM = {
{ 1 * OVERSAMPLENR, DUMMY_THERMISTOR_998_VALUE },
{ 1023 * OVERSAMPLENR, DUMMY_THERMISTOR_998_VALUE }
{ OV( 1), DUMMY_THERMISTOR_998_VALUE },
{ OV(1023), DUMMY_THERMISTOR_998_VALUE }
};