GM6000 Digital Heater Controller Branch: main
SDX-1330
platform.h
Go to the documentation of this file.
1#ifndef Ajax_Main_platform_h
2#define Ajax_Main_platform_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-2023 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file
14
15 This file contains the interface(s) that are platform VARIANT specific
16 */
18
19///
20namespace Ajax {
21///
22namespace Main {
23
24/** This method is used to initialize 'stuff' immediately before an application
25 initialization
26 */
28
29/** This method is used to execute platform specific POST test. On error, the
30 method returns false; else true is returned.
31 */
33
34/** This method is used to initialize the model points to known state
35 */
37
38/** This method is used to 'open' any platform specific objects. It is called
39 prior to the application 'open' calls
40 */
42
43/** This method is used to 'close' any platform specific objects. It is called
44 after to the application 'close' calls
45 */
47
48/** This method is used to 'exit' the application'
49 */
50int platform_exit( int exitCode );
51
52} // end namespaces
53}
54#endif // end header latch
bool platform_runPOST()
This method is used to execute platform specific POST test.
int platform_exit(int exitCode)
This method is used to 'exit' the application'.
void platform_initializeModelPoints0()
This method is used to initialize the model points to known state.
void platform_open0()
This method is used to 'open' any platform specific objects.
void platform_initialize0()
This method is used to initialize 'stuff' immediately before an application initialization.
void platform_close0()
This method is used to 'close' any platform specific objects.
The 'Ajax' namespace is the root name space all GM6000 application specific source code.