GM6000 Digital Heater Controller Branch: main
SDX-1330
Hal.h
Go to the documentation of this file.
1#ifndef Driver_Button_TPipe_Hal_h_
2#define Driver_Button_TPipe_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 the concrete implementation for the Button HAL that gets
16 its raw inputs via a Driver::TPipe. The driver assumes the following
17 RX Command structure:
18
19 \code
20
21 <verb> <b1> DN|up [<b2> DN|up [..<bN> DN|up]]
22
23 Where:
24 <verb> Command verb. Default value is 'buttons'
25 <b1> Name of button 1 (no whitespace allowed)
26 <b2> Name of button 2 (no whitespace allowed)
27 ...
28 <bN> Name of button N (no whitespace allowed)
29
30 NOTE: The state of All buttons must ALWAYS be sent.
31
32 Example:
33 buttons A up B up X DN Y up // Only the X button is pressed
34 buttons A DN B DN X up Y up // Only the A & B buttons are pressed
35
36 \endcode
37
38*/
39
40#include "Driver/Button/Hal.h"
41#include "Cpl/Container/Map.h"
43
44
45/** The maximum number of button/button-names the HAL layer supports
46 */
47#ifndef OPTION_DRIVER_BUTTON_HAL_TPIPE_MAX_BUTTONS
48#define OPTION_DRIVER_BUTTON_HAL_TPIPE_MAX_BUTTONS 32
49#endif
50
51/** The maximum size, in bytes, of button name (not including the
52 null terminator
53 */
54#ifndef OPTION_DRIVER_BUTTON_HAL_TPIPE_SIZE_BUTTON_NAME
55#define OPTION_DRIVER_BUTTON_HAL_TPIPE_SIZE_BUTTON_NAME 16
56#endif
57
58 /** Command verb for the TPipe RX frame handler
59 */
60#ifndef OPTION_DRIVER_BUTTON_HAL_TPIPE_COMMAND_VERB
61#define OPTION_DRIVER_BUTTON_HAL_TPIPE_COMMAND_VERB "buttons"
62#endif
63
64/*-------------- PUBLIC API ------------------------------------------------*/
65/** This method is used to register the button driver with the TPipe to
66 receive button events. This method is called once - NOT per button/button-handle.
67 */
69
70
71/*--------------------------------------------------------------------------*/
72#endif
This file defines a hardware abstraction layer (HAL) for accessing a digital Input that is being used...
void driverButtonHalTPipe_initialize(Cpl::Container::Map< Driver::TPipe::RxFrameHandlerApi > &tpipeRxFrameHandlerList)
This method is used to register the button driver with the TPipe to receive button events.
This template class implements a THREAD SAFE Ring Buffer.
Definition RingBufferMT.h:33