From 9e82533eb938211c8c1ec46ae23d8e75851ae2e1 Mon Sep 17 00:00:00 2001 From: Scott Lahteine Date: Mon, 16 Oct 2017 00:16:25 -0500 Subject: [PATCH] Fix spelling in temperature table script --- buildroot/share/scripts/createTemperatureLookupMarlin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildroot/share/scripts/createTemperatureLookupMarlin.py b/buildroot/share/scripts/createTemperatureLookupMarlin.py index 8309e62c7..c3352618e 100755 --- a/buildroot/share/scripts/createTemperatureLookupMarlin.py +++ b/buildroot/share/scripts/createTemperatureLookupMarlin.py @@ -134,7 +134,7 @@ def main(argv): print "// Thermistor lookup table for Marlin" print "// ./createTemperatureLookupMarlin.py --rp=%s --t1=%s:%s --t2=%s:%s --t3=%s:%s --num-temps=%s" % (rp, t1, r1, t2, r2, t3, r3, num_temps) print "// Steinhart-Hart Coefficients: a=%.15g, b=%.15g, c=%.15g " % (t.c1, t.c2, t.c3) - print "// Theoretical limits of termistor: %.2f to %.2f degC" % (low_bound, up_bound) + print "// Theoretical limits of thermistor: %.2f to %.2f degC" % (low_bound, up_bound) print print "const short temptable[][2] PROGMEM = {"