GM6000 Digital Heater Controller Branch: main
SDX-1330
Api.h
Go to the documentation of this file.
1#ifndef Driver_PicoDisplay_TPipe_h
2#define Driver_PicoDisplay_TPipe_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 interface for initializing the concrete implementation
16 of the PicoDisplay driver using a 'TPipe' to communicate with an external
17 executable that provides the actual Display/IO.
18
19 Note: The implementation creates a thread to execute the TPipe driver in.
20
21 \code
22 TPipe Command format for the LCD Data
23 -------------------------------------
24
25 <DD> <HH:MM:SS.sss> writeLCDData <x0> <w> <y0> <h> <hexdata>
26 Where:
27 <DD> is CPU time since power-up/reset: Format is: DD HH:MM:SS.sss
28 <HH:MM:SS.sss> is CPU time since power-up/reset: Format is: DD HH:MM:SS.sss
29 <x0> Top/left X coordinate (in pixel coordinates) of the rectangle
30 <w> Width (in display coordinates) of the rectangle. Note: <w> should always be greater than 0
31 <y0> Top/left Y coordinate (in pixel coordinates) of the rectangle
32 <h> height (in display coordinates) of the rectangle. Note: <h> should always be greater than 0
33 <hexdata> Pixel data as 'ASCII HEX' String (upper case and with no spaces). Each PIXEL is one byte
34 Pixel layout is row, then column:
35 First Pixel is: x0, y0
36 Pixel w is: x0+w, y0
37 Pixel w+1 is: x0, y0+1
38 Pixel (h*w) is: x1, y1
39
40 NOTE: Color/Pixel size RGB322 color resolution
41
42
43 <DD> <HH:MM:SS.sss> updateLCD
44 Where:
45 <DD> is CPU time since power-up/reset: Format is: DD HH:MM:SS.sss
46 <HH:MM:SS.sss> is CPU time since power-up/reset: Format is: DD HH:MM:SS.sss
47
48 NOTE: The simulator makes a copy of the 'screen buffer' and ONLY sends 'deltas' to the simulated
49 display. This has significant positive impact on the performance of 'display' on the simulator
50
51 \endcode
52 */
53
54#include "colony_config.h"
55#include "Cpl/Io/Input.h"
56#include "Cpl/Io/Output.h"
57#include "Driver/TPipe/Pipe.h"
58
59/** The size, in bytes, of the receive frame buffer used for the TPipe
60 connection
61 */
62#ifndef OPTION_DRIVER_PICO_DISPLAY_TPIPE_RX_FRAME_HANDLER_SIZE
63#define OPTION_DRIVER_PICO_DISPLAY_TPIPE_RX_FRAME_HANDLER_SIZE 256
64#endif
65
66/// Symbolic name for button: A
67#ifndef OPTION_DRIVER_PICO_DISPLAY_TPIPE_BUTTON_A_NAME
68#define OPTION_DRIVER_PICO_DISPLAY_TPIPE_BUTTON_A_NAME "A"
69#endif
70
71/// Symbolic name for button: B
72#ifndef OPTION_DRIVER_PICO_DISPLAY_TPIPE_BUTTON_B_NAME
73#define OPTION_DRIVER_PICO_DISPLAY_TPIPE_BUTTON_B_NAME "B"
74#endif
75
76/// Symbolic name for button: X
77#ifndef OPTION_DRIVER_PICO_DISPLAY_TPIPE_BUTTON_X_NAME
78#define OPTION_DRIVER_PICO_DISPLAY_TPIPE_BUTTON_X_NAME "X"
79#endif
80
81/// Symbolic name for button: Y
82#ifndef OPTION_DRIVER_PICO_DISPLAY_TPIPE_BUTTON_Y_NAME
83#define OPTION_DRIVER_PICO_DISPLAY_TPIPE_BUTTON_Y_NAME "Y"
84#endif
85
86/// Symbolic name for the RGB LED
87#ifndef OPTION_DRIVER_PICO_DISPLAY_TPIPE_RGB_LED_NAME
88#define OPTION_DRIVER_PICO_DISPLAY_TPIPE_RGB_LED_NAME "theOne"
89#endif
90
91/// The width, in pixels, of the Display
92#ifndef OPTION_DRIVER_PICO_DISPLAY_LCD_WIDTH
93#define OPTION_DRIVER_PICO_DISPLAY_LCD_WIDTH 240
94#endif
95
96/// The height, in pixels, of the Display
97#ifndef OPTION_DRIVER_PICO_DISPLAY_LCD_HEIGHT
98#define OPTION_DRIVER_PICO_DISPLAY_LCD_HEIGHT 135
99#endif
100
101/// The TPipe SOF character
102#ifndef OPTION_DRIVER_PICO_DISPLAY_TPIP_FRAME_SOF
103#define OPTION_DRIVER_PICO_DISPLAY_TPIP_FRAME_SOF '^'
104#endif
105
106/// The TPipe EOF character
107#ifndef OPTION_DRIVER_PICO_DISPLAY_TPIP_FRAME_EOF
108#define OPTION_DRIVER_PICO_DISPLAY_TPIP_FRAME_EOF ';'
109#endif
110
111///
112namespace Driver {
113///
114namespace PicoDisplay {
115///
116namespace TPipe {
117
118/** This method initializes the composite driver and provides the IO streams
119 it uses to communicate with the external executable
120 */
121void initialize( Cpl::Io::Input & tpipeInStream, Cpl::Io::Output & tpipeOutStream ) noexcept;
122
123/** This method returns a handle to the underly TPipe instance
124 */
126
127} // End namespace(s)
128}
129}
130
131
132#endif // end header latch
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 concrete class provides the implementation of TPipe.
Definition Pipe.h:60
Driver::TPipe::Pipe & tpipe() noexcept
This method returns a handle to the underly TPipe instance.
void initialize(Cpl::Io::Input &tpipeInStream, Cpl::Io::Output &tpipeOutStream) noexcept
This method initializes the composite driver and provides the IO streams it uses to communicate with ...
namespace