GM6000 Digital Heater Controller Branch: main
SDX-1330
Hal.h
Go to the documentation of this file.
1#ifndef Driver_Button_Hal_h_
2#define Driver_Button_Hal_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 accessing a
16 digital Input that is being used for a button.
17
18 NOTE: The HAL layer is defined 'just-in-time', i.e. when adding a new
19 driver/functionality and new HAL supported is needed - then this
20 interface is updated.
21
22 NOTE: NO 'Initialization' method is provided/defined in this interface -
23 this is intentional! The initialization left to the target's platform
24 specific code and/or BSP. The application is RESPONSIBLE for making
25 sure that the platform specific initialization happens BEFORE any of
26 the drivers are started/used.
27*/
28
29#include "colony_map.h"
30
31
32/*-------------- PUBLIC API ------------------------------------------------*/
33/** This data type defines the platform specific 'handle' to a pin.
34 */
35#define Driver_Button_Hal_T Driver_Button_Pin_Hal_T_MAP
36
37
38
39/*-------------- PUBLIC API ------------------------------------------------*/
40/** This method returns the current/raw state of pin. A true value indicates
41 the button is in its 'Pressed' state; else it is in the 'Un-Pressed' state.
42
43 Prototype:
44 bool Driver_Button_Hal_getRawPressedState( Driver_Button_Hal_T hdl );
45 */
46#define Driver_Button_Hal_getRawPressedState Driver_Button_Hal_getRawPressedState_MAP
47
48
49
50
51
52/*--------------------------------------------------------------------------*/
53#endif