GM6000 Digital Heater Controller Branch: main
SDX-1330
singleinput_mappings_.h
1#ifdef Driver_Aio_HalSingleInput_h_
2
3#ifndef Driver_AIO_Simulated_halsingleinput_mappings_x_h_
4#define Driver_AIO_Simulated_halsingleinput_mappings_x_h_
5/*-----------------------------------------------------------------------------
6* This file is part of the Colony.Core Project. The Colony.Core Project is an
7* open source project with a BSD type of licensing agreement. See the license
8* agreement (license.txt) in the top/ directory or on the Internet at
9* http://integerfox.com/colony.core/license.txt
10*
11* Copyright (c) 2014-2022 John T. Taylor
12*
13* Redistributions of the source code must retain the above copyright notice.
14*----------------------------------------------------------------------------*/
15/** @file
16 */
17
18#include "Cpl/Dm/Mp/Uint32.h"
19
20
21/// Simulated Mapping
22#define DriverAIOHalSingleInput_T_MAP Cpl::Dm::Mp::Uint32&
23
24/// Simulated Mapping
25#define Driver_AIO_HalSingleInput_sample_MAP driverAIOHalSingleInputSimulated_sample
26
27/// Simulated Mapping
28#define Driver_AIO_HalSingleInput_setADCSize_MAP driverAIOHalSingleInputSimulated_setADCSize
29
30/// Simulated specific implementation
31inline bool driverAIOHalSingleInputSimulated_sample( Cpl::Dm::Mp::Uint32& mpSrcADCBits, uint32_t& dstADCBits )
32{
33 return mpSrcADCBits.read( dstADCBits );
34}
35
36/// Simulated specific implementation
37inline uint8_t driverAIOHalSingleInputSimulated_setADCSize( Cpl::Dm::Mp::Uint32& mpSrcADCBits, uint8_t numADCBits )
38{
39 return numADCBits;
40}
41
42#endif // end header latch
43#endif // end Interface latch
bool read(ELEMTYPE &dstData, uint16_t *seqNumPtr=0) const noexcept
Type safe read. See Cpl::Dm::ModelPoint.
Definition Numeric.h:85
This class provides a concrete implementation for a Point who's data is a uint32_t.
Definition Uint32.h:43