![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This file defines the interface for initializing the concrete implementation of the PicoDisplay driver using a 'TPipe' to communicate with an external executable that provides the actual Display/IO.
Note: The implementation creates a thread to execute the TPipe driver in.
#include "colony_config.h"
#include "Cpl/Io/Input.h"
#include "Cpl/Io/Output.h"
#include "Driver/TPipe/Pipe.h"
Go to the source code of this file.
Namespaces | |
namespace | Driver |
namespace | |
namespace | Driver::PicoDisplay |
The 'PicoDisplay' namespace provides a top-level/composite driver that provides an abstraction that represents the physical hardware of the Pimoroni Pico Display board. | |
namespace | Driver::PicoDisplay::TPipe |
The 'TPipe' namespace implements the composite PicoDisplay driver using a 'TPipe' to communicate with an external executable that provides the actual Display/IO. | |
Macros | |
#define | OPTION_DRIVER_PICO_DISPLAY_TPIPE_RX_FRAME_HANDLER_SIZE 256 |
The size, in bytes, of the receive frame buffer used for the TPipe connection. | |
#define | OPTION_DRIVER_PICO_DISPLAY_TPIPE_BUTTON_A_NAME "A" |
Symbolic name for button: A. | |
#define | OPTION_DRIVER_PICO_DISPLAY_TPIPE_BUTTON_B_NAME "B" |
Symbolic name for button: B. | |
#define | OPTION_DRIVER_PICO_DISPLAY_TPIPE_BUTTON_X_NAME "X" |
Symbolic name for button: X. | |
#define | OPTION_DRIVER_PICO_DISPLAY_TPIPE_BUTTON_Y_NAME "Y" |
Symbolic name for button: Y. | |
#define | OPTION_DRIVER_PICO_DISPLAY_TPIPE_RGB_LED_NAME "theOne" |
Symbolic name for the RGB LED. | |
#define | OPTION_DRIVER_PICO_DISPLAY_LCD_WIDTH 240 |
The width, in pixels, of the Display. | |
#define | OPTION_DRIVER_PICO_DISPLAY_LCD_HEIGHT 135 |
The height, in pixels, of the Display. | |
#define | OPTION_DRIVER_PICO_DISPLAY_TPIP_FRAME_SOF '^' |
The TPipe SOF character. | |
#define | OPTION_DRIVER_PICO_DISPLAY_TPIP_FRAME_EOF ';' |
The TPipe EOF character. | |
Functions | |
void | Driver::PicoDisplay::TPipe::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 the external executable. | |
Driver::TPipe::Pipe & | Driver::PicoDisplay::TPipe::tpipe () noexcept |
This method returns a handle to the underly TPipe instance. | |
#define OPTION_DRIVER_PICO_DISPLAY_LCD_HEIGHT 135 |
The height, in pixels, of the Display.
#define OPTION_DRIVER_PICO_DISPLAY_LCD_WIDTH 240 |
The width, in pixels, of the Display.
#define OPTION_DRIVER_PICO_DISPLAY_TPIP_FRAME_EOF ';' |
The TPipe EOF character.
#define OPTION_DRIVER_PICO_DISPLAY_TPIP_FRAME_SOF '^' |
The TPipe SOF character.
#define OPTION_DRIVER_PICO_DISPLAY_TPIPE_BUTTON_A_NAME "A" |
Symbolic name for button: A.
#define OPTION_DRIVER_PICO_DISPLAY_TPIPE_BUTTON_B_NAME "B" |
Symbolic name for button: B.
#define OPTION_DRIVER_PICO_DISPLAY_TPIPE_BUTTON_X_NAME "X" |
Symbolic name for button: X.
#define OPTION_DRIVER_PICO_DISPLAY_TPIPE_BUTTON_Y_NAME "Y" |
Symbolic name for button: Y.
#define OPTION_DRIVER_PICO_DISPLAY_TPIPE_RGB_LED_NAME "theOne" |
Symbolic name for the RGB LED.
#define OPTION_DRIVER_PICO_DISPLAY_TPIPE_RX_FRAME_HANDLER_SIZE 256 |
The size, in bytes, of the receive frame buffer used for the TPipe connection.