blob: 4cbdb06c7317e9f54f9f9d428c4900802a1752cb [file] [log] [blame] [edit]
edition = "2023";
package milotic_tlbmc;
// This proto contains algorithm specifications of thermal controllers.
// How the PID controller should pre-process the input before feeding it
// to the PID loop.
enum PidThermalType {
MARGIN = 0;
ABSOLUTE = 1;
SUMMATION = 2;
}