Trying dev2 with rumba32. M105 reports C: 59.4 even though its unplugged. I was able to make the fault occur for the bed but I cant seem to fix it.
Isn't this right?
// Rumba32.h Temperature Sensors
#define TEMP_0_PIN static_cast<int>(PC_4) // T0
#define TEMP_2_PIN static_cast<int>(PC_3) // T1
#define TEMP_3_PIN static_cast<int>(PC_2) // T2
#define TEMP_4_PIN static_cast<int>(PC_1) // T3
#define TEMP_1_PIN static_cast<int>(PC_0) // TB bed
// configuration.io
IO_ANALOG_INPUT(IOAnalogChambers, TEMP_4_PIN, 5)
IO_ANALOG_INPUT(IOAnalogBed1, TEMP_1_PIN, 5)
IO_ANALOG_INPUT(IOAnalogExt1, TEMP_0_PIN, 5)
IO_ANALOG_INPUT(IOAnalogExt2, TEMP_3_PIN, 5)
// Need a conversion table for epcos NTC
IO_TEMP_TABLE_NTC(TempTableatc, ATC_104GT)
IO_TEMP_TABLE_NTC(TempTablePT100, PT100_5V)
// Now create the temperature inputs
IO_TEMPERATURE_TABLE(TempChambers, IOAnalogChambers, TempTableatc)
IO_TEMPERATURE_TABLE(TempBed1, IOAnalogBed1, TempTableatc)
IO_TEMPERATURE_TABLE(TempExt1, IOAnalogExt1, TempTablePT100)
IO_TEMPERATURE_TABLE(TempExt2, IOAnalogExt2, TempTableatc)