![]() |
Graphic Display v1.0.0
Control any mochrome display, with any microcontroller, in any amount.
|
Parameters to initialize the Graphic Display Handler. More...
#include <GraphicDisplay.h>
Data Fields | |
| void * | DisplayHandle |
| Handle of the display, provide the pointer of this handler. Example fort ssd1306 display: | |
| gd_driver_t * | DisplayDriver |
| Driver for the display. External Drivers Already Implemented. | |
| uint32_t | u32Height |
| The Heigth of the display, in lines. | |
| uint32_t | u32Width |
| The Width of the display, in columns. | |
| fxnGd_mtxLock | mtxLock |
| mutex lock function pointer. | |
| fxnGd_mtxUnlock | mtxUnlock |
| mutex unlock function pointer. | |
Parameters to initialize the Graphic Display Handler.
| gd_driver_t* gd_params_t::DisplayDriver |
Driver for the display. External Drivers Already Implemented.
| void* gd_params_t::DisplayHandle |
Handle of the display, provide the pointer of this handler. Example fort ssd1306 display:
gt_t Gd; ssd1306_t Ssd1306;
... initialize ssd1306 ...
Gd.DisplayHandle = (void*)&Ssd1306;
... provide other parameters ... ... initialize display Gd ...
| fxnGd_mtxLock gd_params_t::mtxLock |
mutex lock function pointer.
| fxnGd_mtxUnlock gd_params_t::mtxUnlock |
mutex unlock function pointer.
| uint32_t gd_params_t::u32Height |
The Heigth of the display, in lines.
| uint32_t gd_params_t::u32Width |
The Width of the display, in columns.