MPLABĀ® Harmony Graphics Suite  GFX v3.13.0
Legato API Documentation
drv_gfx_disp_intf.h
Go to the documentation of this file.
1 /*******************************************************************************
2 * Copyright (C) 2020 Microchip Technology Inc. and its subsidiaries.
3 *
4 * Subject to your compliance with these terms, you may use Microchip software
5 * and any derivatives exclusively with Microchip products. It is your
6 * responsibility to comply with third party license terms applicable to your
7 * use of third party software (including open source software) that may
8 * accompany Microchip software.
9 *
10 * THIS SOFTWARE IS SUPPLIED BY MICROCHIP "AS IS". NO WARRANTIES, WHETHER
11 * EXPRESS, IMPLIED OR STATUTORY, APPLY TO THIS SOFTWARE, INCLUDING ANY IMPLIED
12 * WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY, AND FITNESS FOR A
13 * PARTICULAR PURPOSE.
14 *
15 * IN NO EVENT WILL MICROCHIP BE LIABLE FOR ANY INDIRECT, SPECIAL, PUNITIVE,
16 * INCIDENTAL OR CONSEQUENTIAL LOSS, DAMAGE, COST OR EXPENSE OF ANY KIND
17 * WHATSOEVER RELATED TO THE SOFTWARE, HOWEVER CAUSED, EVEN IF MICROCHIP HAS
18 * BEEN ADVISED OF THE POSSIBILITY OR THE DAMAGES ARE FORESEEABLE. TO THE
19 * FULLEST EXTENT ALLOWED BY LAW, MICROCHIP'S TOTAL LIABILITY ON ALL CLAIMS IN
20 * ANY WAY RELATED TO THIS SOFTWARE WILL NOT EXCEED THE AMOUNT OF FEES, IF ANY,
21 * THAT YOU HAVE PAID DIRECTLY TO MICROCHIP FOR THIS SOFTWARE.
22 *******************************************************************************/
23 
24 /*******************************************************************************
25  Module for Microchip Graphics Library - Hardware Abstraction Layer
26 
27  Company:
28  Microchip Technology Inc.
29 
30  File Name:
31  drv_gfx_intf.h
32 
33  Summary:
34  Contains 4-line SPI GFX interface driver definitions and interface prototypes.
35 
36  Description:
37  Contains 4-line SPI GFX interface driver definitions and interface prototypes.
38 *******************************************************************************/
39 
46 #ifndef _DRV_GFX_DISP_INTF_H /* Guard against multiple inclusion */
47 #define _DRV_GFX_DISP_INTF_H
48 
49 /* ************************************************************************** */
50 /* ************************************************************************** */
51 /* Section: Included Files */
52 /* ************************************************************************** */
53 /* ************************************************************************** */
54 
55 #define GFX_Disp_Intf uint32_t
56 
57 #define DRV_GFX_DEPRECATED __attribute__ ((deprecated))
58 
70 typedef enum
71 {
72  GFX_DISP_INTF_TX_DONE, //Transfer Done
73  GFX_DISP_INTF_ERROR, //Error
75 
87 typedef enum
88 {
89  GFX_DISP_INTF_PIN_CS, //Chip Select
90  GFX_DISP_INTF_PIN_WR, //Write Strobe
91  GFX_DISP_INTF_PIN_RD, //Read Strobe
92  GFX_DISP_INTF_PIN_RSDC, //Register Select or Data/Command
94 
106 typedef enum
107 {
108  GFX_DISP_INTF_PIN_CLEAR = 0,
109  GFX_DISP_INTF_PIN_SET = 1,
111 
123 typedef void (*GFX_Disp_Intf_Callback)(GFX_Disp_Intf,
125  void *);
126 
127 /* Provide C++ Compatibility */
128 #ifdef __cplusplus
129 extern "C" {
130 #endif
131 
156 GFX_Disp_Intf GFX_Disp_Intf_Open(void);
157 
184 void GFX_Disp_Intf_Close(GFX_Disp_Intf intf);
185 
214 int GFX_Disp_Intf_PinControl(GFX_Disp_Intf intf, GFX_DISP_INTF_PIN pin, GFX_DISP_INTF_PIN_VALUE value);
215 
242 int GFX_Disp_Intf_WriteCommand(GFX_Disp_Intf intf, uint8_t cmd);
243 
279 int GFX_Disp_Intf_WriteCommandParm(GFX_Disp_Intf intf, uint8_t cmd, uint8_t * parm, int num_parms);
280 
314 int GFX_Disp_Intf_WriteData(GFX_Disp_Intf intf, uint8_t * data, int bytes);
315 
352 int GFX_Disp_Intf_WriteData16(GFX_Disp_Intf intf, uint16_t * data, int num);
353 
388 int GFX_Disp_Intf_ReadData(GFX_Disp_Intf intf, uint8_t * data, int bytes);
389 
433 int GFX_Disp_Intf_ReadCommandData(GFX_Disp_Intf intf, uint8_t cmd, uint8_t * data, int num_data);
434 
472 int GFX_Disp_Intf_ReadData16(GFX_Disp_Intf intf, uint16_t * data, int num);
473 
505 int GFX_Disp_Intf_Write(GFX_Disp_Intf intf, uint8_t * data, int bytes);
506 
538 int GFX_Disp_Intf_Read(GFX_Disp_Intf intf, uint8_t * data, int bytes);
539 
569 int GFX_Disp_Intf_WriteDataByte(GFX_Disp_Intf intf, uint8_t data);
570 
597 int GFX_Disp_Intf_Ready(GFX_Disp_Intf intf);
598 
631 int GFX_Disp_Intf_Set_Callback(GFX_Disp_Intf intf, GFX_Disp_Intf_Callback cb, void * parm);
632 
633 
634  /* Provide C++ Compatibility */
635 #ifdef __cplusplus
636 }
637 #endif
638 
639 #endif /* _DRV_GFX_DISP_INTF_H */
640 
641 /* *****************************************************************************
642  End of File
643  */
int GFX_Disp_Intf_WriteCommandParm(GFX_Disp_Intf intf, uint8_t cmd, uint8_t *parm, int num_parms)
Write command and parameter.
Definition: drv_gfx_disp_intf_parallel_ebi.c.ftl:397
int GFX_Disp_Intf_Set_Callback(GFX_Disp_Intf intf, GFX_Disp_Intf_Callback cb, void *parm)
Set interface callback.
Definition: drv_gfx_disp_intf_parallel_ebi.c.ftl:532
int GFX_Disp_Intf_WriteCommand(GFX_Disp_Intf intf, uint8_t cmd)
Write command.
Definition: drv_gfx_disp_intf_parallel_ebi.c.ftl:191
int GFX_Disp_Intf_ReadCommandData(GFX_Disp_Intf intf, uint8_t cmd, uint8_t *data, int num_data)
Read command data.
Definition: drv_gfx_disp_intf_parallel_ebi.c.ftl:357
int GFX_Disp_Intf_WriteData(GFX_Disp_Intf intf, uint8_t *data, int bytes)
Write data bytes.
Definition: drv_gfx_disp_intf_parallel_ebi.c.ftl:219
int GFX_Disp_Intf_WriteData16(GFX_Disp_Intf intf, uint16_t *data, int num)
Write data words.
Definition: drv_gfx_disp_intf_parallel_ebi.c.ftl:253
int GFX_Disp_Intf_ReadData(GFX_Disp_Intf intf, uint8_t *data, int bytes)
Read data words.
Definition: drv_gfx_disp_intf_parallel_ebi.c.ftl:322
int GFX_Disp_Intf_Write(GFX_Disp_Intf intf, uint8_t *data, int bytes)
Write byte stream.
Definition: drv_gfx_disp_intf_parallel_ebi.c.ftl:432
int GFX_Disp_Intf_WriteDataByte(GFX_Disp_Intf intf, uint8_t data)
Write byte.
Definition: drv_gfx_disp_intf_parallel_ebi.c.ftl:465
GFX_DISP_INTF_PIN
This enum represents display interface pins.
Definition: drv_gfx_disp_intf.h:87
void(* GFX_Disp_Intf_Callback)(GFX_Disp_Intf, GFX_DISP_INTF_STATUS, void *)
This function represents display interface callback function.
Definition: drv_gfx_disp_intf.h:123
void GFX_Disp_Intf_Close(GFX_Disp_Intf intf)
Close an interface to the graphics display.
Definition: drv_gfx_disp_intf_parallel_ebi.c.ftl:127
GFX_DISP_INTF_PIN_VALUE
This enum represents display interface pin values.
Definition: drv_gfx_disp_intf.h:106
int GFX_Disp_Intf_Read(GFX_Disp_Intf intf, uint8_t *data, int bytes)
Read byte stream.
Definition: drv_gfx_disp_intf_parallel_ebi.c.ftl:495
GFX_DISP_INTF_STATUS
This enum represents display interface callback status modes.
Definition: drv_gfx_disp_intf.h:70
GFX_Disp_Intf GFX_Disp_Intf_Open(void)
Open an interface to the graphics display.
Definition: drv_gfx_disp_intf_parallel_ebi.c.ftl:112
int GFX_Disp_Intf_Ready(GFX_Disp_Intf intf)
Check interface ready status.
Definition: drv_gfx_disp_intf_parallel_ebi.c.ftl:527
int GFX_Disp_Intf_PinControl(GFX_Disp_Intf intf, GFX_DISP_INTF_PIN pin, GFX_DISP_INTF_PIN_VALUE value)
Set value of the GFX control pin.
Definition: drv_gfx_disp_intf_parallel_ebi.c.ftl:135
int GFX_Disp_Intf_ReadData16(GFX_Disp_Intf intf, uint16_t *data, int num)
Read command data word.
Definition: drv_gfx_disp_intf_parallel_ebi.c.ftl:287