component Rugludallur-comp "Two input comparator with hysteresis";
pin in float in0 "Inverting input to the comparator";
pin in float in1 "Non-inverting input to the comparator";
pin out bit out "Output of the comparator.";
pin out bit equ "Equal within hysteresis band.";
param rw float halfHyst=0.0 """Hysteresis of the comparator (default 0.0)
With zero hysteresis, the output is true when in1 > in0. With nonzero
hysteresis, the output switches on and off at two different values,
separated by distance hyst around the point where in1 = in0.""";
function _ fp "Update the comparator";
;;
MODULE_LICENSE("GPL");
FUNCTION(_) {
float tmp = in1 - in0;
equ = 0;
if((tmp >= -halHyst) && (tmp <= halfHyst )) equ = 1;
if(tmp < -halfHyst) out = 0;
if(tmp > halHyst) out = 1;
}