Back to home page

LXR

 
 

    


File indexing completed on 2025-05-11 08:22:44

0001 /* ---------------------------------------------------------------------------- */
0002 /*                  Atmel Microcontroller Software Support                      */
0003 /*                       SAM Software Package License                           */
0004 /* ---------------------------------------------------------------------------- */
0005 /* Copyright (c) 2015, Atmel Corporation                                        */
0006 /*                                                                              */
0007 /* All rights reserved.                                                         */
0008 /*                                                                              */
0009 /* Redistribution and use in source and binary forms, with or without           */
0010 /* modification, are permitted provided that the following condition is met:    */
0011 /*                                                                              */
0012 /* - Redistributions of source code must retain the above copyright notice,     */
0013 /* this list of conditions and the disclaimer below.                            */
0014 /*                                                                              */
0015 /* Atmel's name may not be used to endorse or promote products derived from     */
0016 /* this software without specific prior written permission.                     */
0017 /*                                                                              */
0018 /* DISCLAIMER:  THIS SOFTWARE IS PROVIDED BY ATMEL "AS IS" AND ANY EXPRESS OR   */
0019 /* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF */
0020 /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT ARE   */
0021 /* DISCLAIMED. IN NO EVENT SHALL ATMEL BE LIABLE FOR ANY DIRECT, INDIRECT,      */
0022 /* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT */
0023 /* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,  */
0024 /* OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF    */
0025 /* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING         */
0026 /* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, */
0027 /* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.                           */
0028 /* ---------------------------------------------------------------------------- */
0029 
0030 /**
0031  * \file
0032  *
0033  * Interface of ILI9488 driver.
0034  *
0035  */
0036 
0037 #ifndef _ILI9488_EBI_H_
0038 #define _ILI9488_EBI_H_
0039 
0040 /*----------------------------------------------------------------------------
0041  *        Headers
0042  *----------------------------------------------------------------------------*/
0043 
0044 #include "board.h"
0045 
0046 #include <stdint.h>
0047 
0048 /*----------------------------------------------------------------------------
0049  *        Exported functions
0050  *----------------------------------------------------------------------------*/
0051 extern uint32_t ILI9488_EbiReadChipId (void);
0052 extern uint32_t ILI9488_EbiInitialize(sXdmad *dmad);
0053 extern void ILI9488_EbiSetPixelFormat(uint16_t format);
0054 extern void ILI9488_EbiSetCursor(uint16_t x, uint16_t y);
0055 extern void ILI9488_EbiSetWindow(uint16_t dwX, uint16_t dwY,
0056         uint16_t dwWidth, uint16_t dwHeight);
0057 extern void ILI9488_EbiSetFullWindow(void);
0058 extern void ILI9488_EbiOn(void);
0059 extern void ILI9488_EbiOff(void);
0060 extern void ILI9488_EbiSetDisplayLandscape(uint8_t dwRGB,
0061         uint8_t LandscaprMode);
0062 
0063 #endif /* #ifndef ILI9488_EBI */