Solved Multiple MCU Temperatures - Some are Not Displayed?
-
I have a Duet 3 Mini 5+, an expansion board 3HC, and 2 toolboard 1LC's. for some reason i cannot get the first toolboard to properly display the MCU and stepper temperatures in DWC. the mainboard, expansion board, and 2nd toolboard all display temperatures, but for some reason the 1st toolboard is missing. any idea what i am doing wrong?
config.g
M308 S4 P"20.temp1" Y"thermistor" A"Cooling Block" T100000 B3950 C7.060000e-8 ; Define Sensor as Chamber temperature M308 S5 Y"drivers" A"4028 Power" ; 4028 power using spare heater M308 S6 Y"mcu-temp" A"Mini 5+ MCU" ; Define Sensor3 as the integrated MCU temperature sensor M308 S7 Y"drivers" A"Mini 5+ TMC Drivers" ; Define Sensor4 as the TMC overheat sensor M308 S8 Y"mcu-temp" P"20.dummy" A"Toolboard0 MCU" M308 S9 Y"drivers" P"20.dummy" A"1LC0 Stepper" M308 S8 Y"mcu-temp" P"21.dummy" A"Toolboard1 MCU" M308 S9 Y"drivers" P"21.dummy" A"1LC1 Stepper" M308 S10 Y"mcu-temp" P"1.dummy" A"3HC MCU" M308 S11 Y"drivers" P"1.dummy" A"3HC TMC Drivers" M308 S12 P"temp2" Y"thermistor" T100000 B3950 C7.060000e-8 A"Orbiter Motor" ; configure sensor 9 as thermistor on pin temp2 M308 S13 P"spi.cs1" Y"thermocouple-max31856" K"K" A"TC0 Chamber Heater"; define temperature sensor number 10 as a K Type thermocouple on the first port of a temperature daughter board plugged into the expansion board with CAN bus address 3. M308 S14 P"spi.cs2" Y"thermocouple-max31856" K"K" A"TC1 Chamber Fins"; define temperature sensor number11 as a T Type thermocouple on the first port of a temperature daughter board plugged into the expansion board with CAN bus address 3.
-
@RogerPodacter what firmware and DWC versions are you running?
-
And do the firmware versions match on all the boards?
-
@RogerPodacter said in Multiple MCU Temperatures - Some are Not Displayed?:
M308 S8 Y"mcu-temp" P"20.dummy" A"Toolboard0 MCU"
M308 S9 Y"drivers" P"20.dummy" A"1LC0 Stepper"
M308 S8 Y"mcu-temp" P"21.dummy" A"Toolboard1 MCU"
M308 S9 Y"drivers" P"21.dummy" A"1LC1 Stepper"You have used sensor numbers S8 and S9 for both tool boards.
-
all boards are on v3.4.2.
@dc42 that fixed it. i had duplicate numbering and i apparently i didnt check that myself! thanks for the great support!
-
-