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
7
namespace
redux::sensors::canandcolor
{
8
9
/**
10
* How a digital output slot combines with the next slot in a chain.
11
*/
12
enum class
NextSlotAction
: uint8_t {
13
kTerminateChain = 0,
14
kOrWithNextSlot = 1,
15
kXorWithNextSlot = 2,
16
kAndWithNextSlot = 3,
17
};
18
19
}
// namespace redux::sensors::canandcolor
redux::sensors::canandcolor
Definition
Canandcolor.h:19
redux::sensors::canandcolor::NextSlotAction
NextSlotAction
Definition
NextSlotAction.h:12
src
main
native
include
redux
sensors
canandcolor
NextSlotAction.h
Generated by
1.9.8