this is picking up from this post https://forum.repetier.com/discussion/7749/v2-firmware-endstop-configuration#latest
I run M303 S200 C3 but the firmware errors out at 120
configuration.h:
#define NUM_HEATERS 2
#define HEATERS </div>
{ &HeaterExtruder1, &HeatedBed1 }
configurationio.h:
IO_PWM_HARDWARE(PWMExtruder1_12V, HEATER_0_PIN, 1000)
IO_PWM_HARDWARE(PWMBed1, HEATER_1_PIN, 1000)
HEAT_MANAGER_PID(HeatedBed1, 'B', 0, TempBed1, PWMBed1, 120, 255, 1000, 10, 300000, 190.05, 37.12, 648.72, 80, 255, false)
HEAT_MANAGER_PID(HeaterExtruder1, 'E', 0, TempExt1, PWMExtruder1, 270, 255, 1000, 20, 20000, 20.25, 1.13, 90.44, 40, 255, false)
TOOL_EXTRUDER(ToolExtruder1, 0, -13, 0, HeaterExtruder1, E1Motor, 1.75, 500, 5, 30, 5000, 177, "M117 Extruder 1", "", &Fan1PWM)
TOOL_EXTRUDER(ToolExtruder2, 0, 13, 0, HeaterExtruder1, E2Motor, 1.75, 500, 5, 30, 5000, 177, "M117 Extruder 2", "", &Fan1PWM)
rumba32.h
#define HEATER_0_PIN PC6 // E0 Timer 3 Channel 1 (hotend heater physically connected to HE0)
#define HEATER_1_PIN PA1 // bed Timer 5 Channel 2 (bed heater physically connected to HB-OUT)
It's acting as if I have the bed and the hotend heater outputs mixed up but everything looks
OK, is it?