Logic

Library for logic level processing.

Available Functions


latchROS(set, reset)

Latch output to true when the set argument is true. Reset the output to false when reset is true. Prioritize reset over set if both inputs are true.

Usage

core.logic.latchROS(set, reset);

Arguments

set
[boolean] latches the output to true
reset
[boolean] resets the output to false regardless of the value of set

latchSOR(set, reset)

Latch output to true when the set argument is true. Reset the output to false when reset is true. Prioritize set over reset if both inputs are true.

Usage

core.logic.latchROS(set, reset);

Arguments

set
[boolean] latches the output to true
reset
[boolean] resets the output to false only if set is false