ReduxLib C++ 2026.1.2
Loading...
Searching...
No Matches
NextSlotAction.h
1// Copyright (c) Bagholders of Redux Robotics and other contributors.
2// This is open source and can be modified and shared under the Mozilla Public License v2.0.
3
4#pragma once
5#include <cstdint>
6
8
9/**
10 * How a digital output slot combines with the next slot in a chain.
11 */
12enum class NextSlotAction : uint8_t {
13 kTerminateChain = 0,
14 kOrWithNextSlot = 1,
15 kXorWithNextSlot = 2,
16 kAndWithNextSlot = 3,
17};
18
19} // namespace redux::sensors::canandcolor
Definition Canandcolor.h:19
NextSlotAction
Definition NextSlotAction.h:12