GM6000 Digital Heater Controller Branch: main
SDX-1330
InOut.h
Go to the documentation of this file.
1#ifndef Driver_DIO_Simulated_InOut_h_
2#define Driver_DIO_Simulated_InOut_h_
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Core Project. The Colony.Core Project is an
5* open source project with a BSD type of licensing agreement. See the license
6* agreement (license.txt) in the top/ directory or on the Internet at
7* http://integerfox.com/colony.core/license.txt
8*
9* Copyright (c) 2014-2022 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file
14
15 Configuration Parameters (Config_T):
16 pin - Not used. The maximum number of Signals is defined in InOutModelPoints.h
17 blob - Bits 0-1 - Specifies Pull Up/Pull Down options.
18 00 = None
19 01 = Pull-up enabled
20 10 = Pull-down enabled
21
22 Bits 1-31 - Reserved
23*/
24
25#include <stdint.h>
26
27///
28namespace Driver {
29///
30namespace DIO {
31///
32namespace Simulated {
33
34/// Magic value for no pull ups. OR'd with other config options
35constexpr size_t INOUT_CFG_NO_PULL_UPDOWN = 0x00;
36
37/// Magic value for enabling Pull Up resistor. OR'd with other config options
38constexpr size_t INOUT_CFG_PULL_UP = 0x01;
39
40/// Magic value for enabling Pull Down resistor. OR'd with other config options
41constexpr size_t INOUT_CFG_PULL_DOWN = 0x02;
42
43/// Mask for the Pull Up/Down configuration option
44constexpr size_t INOUT_CFG_PULL_UPDOWN_MASK = 0x03;
45
46
47
48} // End namespace(s)
49}
50}
51
52/*--------------------------------------------------------------------------*/
53#endif // end header latch
constexpr size_t INOUT_CFG_PULL_UPDOWN_MASK
Mask for the Pull Up/Down configuration option.
Definition InOut.h:44
constexpr size_t INOUT_CFG_NO_PULL_UPDOWN
Magic value for no pull ups. OR'd with other config options.
Definition InOut.h:35
constexpr size_t INOUT_CFG_PULL_DOWN
Magic value for enabling Pull Down resistor. OR'd with other config options.
Definition InOut.h:41
constexpr size_t INOUT_CFG_PULL_UP
Magic value for enabling Pull Up resistor. OR'd with other config options.
Definition InOut.h:38
namespace