GM6000 Digital Heater Controller Branch: main
SDX-1330
Pwm.h
Go to the documentation of this file.
1#ifndef Eros_TShell_Pwm_h
2#define Eros_TShell_Pwm_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#include "colony_config.h"
17#include "Driver/DIO/Pwm.h"
18
19///
20namespace Eros {
21///
22namespace TShell {
23
24/** This class implements a TShell command to verify the PWM signals on the board
25 */
27{
28public:
29 /// The command verb/identifier
30 static constexpr const char* verb = "pwm";
31
32 /// The command usage string
33 static constexpr const char* usage = "pwm (heater|fan) <dutycycle%>\n"
34 "pwm backlight <brightnes>";
35
36 /** The command detailed help string (recommended that lines do not exceed 80 chars)
37 1 2 3 4 5 6 7 8
38 12345678901234567890123456789012345678901234567890123456789012345678901234567890
39 */
40 static constexpr const char* detailedHelp = " Sets the PWM duty cycle for the heater and fan signals AND the LCD back-light\n"
41 " brightness (0-255).";
42
43public:
44 /// See Cpl::TShell::Command `
45 const char* getUsage() const noexcept { return usage; }
46
47 /// See Cpl::TShell::Command
48 const char* getHelp() const noexcept { return detailedHelp; }
49
50
51public:
52 /// Constructor
54 Driver::DIO::Pwm& heaterPWMDriver,
55 Driver::DIO::Pwm& fanPWMDriver,
57
58
59public:
60 /// See Cpl::TShell::Command
61 Cpl::TShell::Command::Result_T execute( Cpl::TShell::Context_& context, char* cmdString, Cpl::Io::Output& outfd ) noexcept;
62
63protected:
64 /// Driver
66
67 /// Driver
69};
70
71} // end namespaces
72}
73#endif // end header latch
#define OPTION_TSHELL_CMD_COMMAND_DEFAULT_PERMISSION_LEVEL
Default Permission level for all commands.
Definition Command.h:24
This template class implements a THREAD SAFE Ring Buffer.
Definition RingBufferMT.h:33
This partially abstract class defines a interface for operating on an output stream (example of a str...
Definition Output.h:34
This partially concrete class implements infrastructure and/or common functionality for a Shell comma...
Definition Command.h:39
Result_T
Possible result codes when executing a command.
Definition Command.h:35
This Private Namespace class defines a "Context" for a TShell command.
Definition Context_.h:32
Permission_T
Permissions levels.
Definition Security.h:34
This class defines a generic interface for controlling a simple PWM output signal.
Definition Pwm.h:35
This class implements a TShell command to verify the PWM signals on the board.
Definition Pwm.h:27
const char * getUsage() const noexcept
See Cpl::TShell::Command `.
Definition Pwm.h:45
Cpl::TShell::Command::Result_T execute(Cpl::TShell::Context_ &context, char *cmdString, Cpl::Io::Output &outfd) noexcept
See Cpl::TShell::Command.
static constexpr const char * usage
The command usage string.
Definition Pwm.h:33
Pwm(Cpl::Container::Map< Cpl::TShell::Command > &commandList, Driver::DIO::Pwm &heaterPWMDriver, Driver::DIO::Pwm &fanPWMDriver, Cpl::TShell::Security::Permission_T minPermLevel=OPTION_TSHELL_CMD_COMMAND_DEFAULT_PERMISSION_LEVEL) noexcept
Constructor.
Driver::DIO::Pwm & m_fanDriver
Driver.
Definition Pwm.h:68
static constexpr const char * detailedHelp
The command detailed help string (recommended that lines do not exceed 80 chars) 1 2 3 4 5 6 7 8 1234...
Definition Pwm.h:40
Driver::DIO::Pwm & m_heaterDriver
Driver.
Definition Pwm.h:65
static constexpr const char * verb
The command verb/identifier.
Definition Pwm.h:30
const char * getHelp() const noexcept
See Cpl::TShell::Command.
Definition Pwm.h:48
The 'Eros' namespace is the root name space all of the GM6000 Engineering Test Application specific s...
Definition screens.h:22