GM6000 Digital Heater Controller Branch: main
SDX-1330
Hal_.h
Go to the documentation of this file.
1#ifndef Cpl_System_Baremtal_Hal_x_h__
2#define Cpl_System_Baremtal_Hal_x_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 the BareMetal
16 implementation of Cpl::System component
17*/
18
19
20///
21namespace Cpl {
22///
23namespace System {
24///
25namespace BareMetal {
26
27
28/** This method is used to initialize the HAL/Target layer. What needs to be
29 an/or is initialized is platform specific.
30 */
31void initialize( void ) noexcept;
32
33/** This method performs a busy-wait for the specified number of milliseconds
34 */
35void busyWait( unsigned long waitTimeMs ) noexcept;
36
37/** This method returns the current elapsed time since power-up in milliseconds
38 */
39unsigned long getElapsedTime( void ) noexcept;
40
41}; // end namespaces
42};
43};
44#endif // end header latch
45
unsigned long getElapsedTime(void) noexcept
This method returns the current elapsed time since power-up in milliseconds.
void initialize(void) noexcept
This method is used to initialize the HAL/Target layer.
void busyWait(unsigned long waitTimeMs) noexcept
This method performs a busy-wait for the specified number of milliseconds.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20