GM6000 Digital Heater Controller Branch: main
SDX-1330
HalSingleInput.h
Go to the documentation of this file.
1#ifndef Driver_Aio_HalSingleInput_h_
2#define Driver_Aio_HalSingleInput_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 This file defines a hardware abstraction layer (HAL) for sampling a single
16 Analog input source.
17
18 NOTE: NO 'Initialization' method is provided/defined in this interface -
19 this is intentional! The initialization left to the target's platform
20 specific code and/or BSP. The application is RESPONSIBLE for making
21 sure that the platform specific initialization happens BEFORE any of
22 the drivers are started/used.
23*/
24
25
26/*-------------- PUBLIC API ------------------------------------------------*/
27
28#include "colony_map.h"
29
30
31/** This data type defines the platform specific 'handle' to a analog input.
32 */
33#define DriverAIOHalSingleInput_T DriverAIOHalSingleInput_T_MAP
34
35
36
37/*-------------- PUBLIC API ------------------------------------------------*/
38/** This method samples the ADC channel/signal/pin. The number of ADC bits
39 is returned via the 'dstADCBits' argument. The method returns true when a
40 successful reading was taken; else false is returned.
41
42 The number of bits in 'dstADCBits' is platform specific and/or is set
43 by the Driver_AIO_HalSingle_setADCSize() method.
44
45 Prototype:
46 bool Driver_AIO_HalSingleInput_sample( DriverAIOHalSingleInput_T inputToSampleHdl, uint32_t& dstADCBits );
47 */
48#define Driver_AIO_HalSingleInput_sample Driver_AIO_HalSingleInput_sample_MAP
49
50
51/** Sets the number of bits/resolution of the ADC when sampling when using
52 Driver_HalSingle_sample(). The method returns the new/current ADC
53 resolution. NOTE: The actual number of ADC Bits/resolution is platform
54 dependent, i.e may not be able to support the requested resolution. The
55 application is ENCOURRAGED to verify that the method returns the same value
56 that was request.
57
58 Prototype:
59 uint8_t Driver_AIO_HalSingleInput_setADCSize( DriverAIOHalSingleInput_T inputToSampleHdl, uint8_t numADCBits );
60*/
61#define Driver_AIO_HalSingle_setADCSize Driver_AIO_HalSingleInput_setADCSize_MAP
62
63
64/*--------------------------------------------------------------------------*/
65#endif