GM6000 Digital Heater Controller Branch: main
SDX-1330
appmain.h
Go to the documentation of this file.
1#ifndef Ajax_Main_appmain_h_
2#define Ajax_Main_appmain_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 defines the hardware/platform independent start-up interface(s)
16 for the Ajax application
17 */
18
19#include "Ajax/Ui/PicoDisplay.h" // FIXME: This header file (because it include pimoroni header files) MUST be first :(
20#include "colony_config.h"
21#include "Cpl/Io/Input.h"
22#include "Cpl/Io/Output.h"
23#include "Cpl/Container/Map.h"
24#include "Cpl/TShell/Command.h"
26#include "Driver/NV/Api.h"
27#include "Driver/Crypto/Hash.h"
28#include "Driver/DIO/Pwm.h"
29#include "Driver/DIO/In.h"
31
32
33///
34namespace Ajax {
35///
36namespace Main {
37
38 /** This method launches the start-up sequence, then runs the application, followed
39 by the shutdown sequence. The 'infd' and 'outfd' are the file descriptors
40 to be used for the TShell/Command-Line-Interface.
41
42 NOTES:
43 o The caller is responsible for calling Cpl::System::Api::initialize()
44 o The caller of method MUST be executing in Cpl::System::Thread
45 o This method ONLY returns once the shutdown sequence has
46 been completed.
47 o This method assumes that its thread is DEDICATED for performing the
48 start-up/shutdown sequences. Once the start-up sequence has been
49 completed, this thread stays blocked/in-the-waiting state until the
50 Cpl::System::Shutdown interface is called to exit the application.
51 All "shutdown handlers" will execute in this thread.
52 */
54
55
56/** Expose the TShell command list to facilitate creating platform specific
57 TShell commands.
58 */
60
61/// Expose the Graphic library (to faciliate static screen creation)
62extern pimoroni::PicoGraphics_PenRGB332 g_graphics;
63
64/// Expose a handle to the global Screen Navigation instance
66
67/// Expose the handle to the NV driver
69
70/// Expose the Console hash function
72
73/// Expose the mailbox for the "application" thread (for Ajax this is the Algorithm thread)
75
76/// Expose the mailbox for the "UI" thread
78
79/// Expose the driver for the Heater PWM driver
81
82/// Expose the driver for the Fan PWM driver
84
85/// Expose the driver for the HW Safety Limit input driver
87
88/*
89** Thread Priorities
90*/
91
92/// Thread priority
93#ifndef OPTION_AJAX_MAIN_THREAD_PRIORITY_UI
94#define OPTION_AJAX_MAIN_THREAD_PRIORITY_UI (CPL_SYSTEM_THREAD_PRIORITY_NORMAL + (CPL_SYSTEM_THREAD_PRIORITY_RAISE) )
95#endif
96
97/// Thread priority
98#ifndef OPTION_AJAX_MAIN_THREAD_PRIORITY_APPLICATION
99#define OPTION_AJAX_MAIN_THREAD_PRIORITY_APPLICATION (CPL_SYSTEM_THREAD_PRIORITY_NORMAL)
100#endif
101
102/// Thread priority
103#ifndef OPTION_AJAX_MAIN_THREAD_PRIORITY_STORAGE
104#define OPTION_AJAX_MAIN_THREAD_PRIORITY_STORAGE (CPL_SYSTEM_THREAD_PRIORITY_NORMAL + ( 2* CPL_SYSTEM_THREAD_PRIORITY_LOWER) )
105#endif
106
107/// Thread priority
108#ifndef OPTION_AJAX_MAIN_THREAD_PRIORITY_CONSOLE
109#define OPTION_AJAX_MAIN_THREAD_PRIORITY_CONSOLE (CPL_SYSTEM_THREAD_PRIORITY_NORMAL + ( 3* CPL_SYSTEM_THREAD_PRIORITY_LOWER) )
110#endif
111
112
113/*
114** Magic values
115*/
116/// Minimum amount of time (in milliseconds) the splash screen is displayed
117#ifndef OPTION_AJAX_MAIN_MIN_SPLASH_TIME_MS
118#define OPTION_AJAX_MAIN_MIN_SPLASH_TIME_MS (2*1000)
119#endif
120
121/// Number of entries for the in-RAM logging buffer
122#ifndef OPTION_AJAX_MAIN_MAX_LOGGING_BUFFER_ENTRIES
123#define OPTION_AJAX_MAIN_MAX_LOGGING_BUFFER_ENTRIES 20 // (20+1) * 159 = 3339 = 3.3K
124#endif
125}; // end namespaces
126};
127#endif // end header latch
This class defines the interface - used by ScreenApi instances - to navigate to other screen instance...
Definition Navigation.h:27
This template class implements an Map using an AVL Binary tree (i.e.
Definition Map.h:34
This class extends the Cpl::Dm::EventLoop and Cpl::Itc:Mailbox classes to support the asynchronous ch...
Definition MailboxServer.h:43
This partially abstract class defines a interface for operating on an input stream (example of a stre...
Definition Input.h:37
This partially abstract class defines a interface for operating on an output stream (example of a str...
Definition Output.h:34
This class defines an abstract interface for a Hashing Algorithms.
Definition Hash.h:34
This class defines a generic interface for sampling a single Digital Input signal.
Definition In.h:32
This class defines a generic interface for controlling a simple PWM output signal.
Definition Pwm.h:35
This class defines the interface for a platform independent Non-volatile storage driver.
Definition Api.h:35
Driver::DIO::Pwm g_heaterPWMDriver
Expose the driver for the Heater PWM driver.
Cpl::Dm::MailboxServer g_uiMbox
Expose the mailbox for the "UI" thread.
pimoroni::PicoGraphics_PenRGB332 g_graphics
Expose the Graphic library (to faciliate static screen creation)
Cpl::Container::Map< Cpl::TShell::Command > g_cmdlist
Expose the TShell command list to facilitate creating platform specific TShell commands.
Ajax::ScreenMgr::Navigation & g_screenNav
Expose a handle to the global Screen Navigation instance.
int runTheApplication(Cpl::Io::Input &infd, Cpl::Io::Output &outfd)
This method launches the start-up sequence, then runs the application, followed by the shutdown seque...
Driver::DIO::In g_hwSafetyDriver
Expose the driver for the HW Safety Limit input driver.
Driver::Crypto::Hash * g_sha512Ptr
Expose the Console hash function.
Driver::DIO::Pwm g_fanPWMDriver
Expose the driver for the Fan PWM driver.
Driver::NV::Api & g_nvramDriver
Expose the handle to the NV driver.
Cpl::Dm::MailboxServer g_appMbox
Expose the mailbox for the "application" thread (for Ajax this is the Algorithm thread)
The 'Ajax' namespace is the root name space all GM6000 application specific source code.