STM32F769IDiscovery  1.00
uDANTE Audio Networking with STM32F7 DISCO board
Macros | Functions | Variables
stm32f769i_discovery_lcd.c File Reference

This file includes the driver for Liquid Crystal Display (LCD) module mounted on STM32F769I-DISCOVERY board. More...

#include "stm32f769i_discovery_lcd.h"
#include "../Fonts/fonts.h"
#include "../Fonts/font24.c"
#include "../Fonts/font20.c"
#include "../Fonts/font16.c"
#include "../Fonts/font12.c"
#include "../Fonts/font8.c"

Go to the source code of this file.

Macros

#define ABS(X)    ((X) > 0 ? (X) : -(X))
 
#define POLY_X(Z)    ((int32_t)((Points + (Z))->X))
 
#define POLY_Y(Z)    ((int32_t)((Points + (Z))->Y))
 

Functions

uint8_t BSP_LCD_Init (void)
 Initializes the DSI LCD. More...
 
uint8_t BSP_LCD_InitEx (LCD_OrientationTypeDef orientation)
 Initializes the DSI LCD. The initialization is done as below: More...
 
void BSP_LCD_Reset (void)
 BSP LCD Reset Hw reset the LCD DSI activating its XRES signal (active low for some time) and desactivating it later. More...
 
uint32_t BSP_LCD_GetXSize (void)
 Gets the LCD X size. More...
 
uint32_t BSP_LCD_GetYSize (void)
 Gets the LCD Y size. More...
 
void BSP_LCD_SetXSize (uint32_t imageWidthPixels)
 Set the LCD X size. More...
 
void BSP_LCD_SetYSize (uint32_t imageHeightPixels)
 Set the LCD Y size. More...
 
void BSP_LCD_LayerDefaultInit (uint16_t LayerIndex, uint32_t FB_Address)
 Initializes the LCD layers. More...
 
void BSP_LCD_SelectLayer (uint32_t LayerIndex)
 Selects the LCD Layer. More...
 
void BSP_LCD_SetLayerVisible (uint32_t LayerIndex, FunctionalState State)
 Sets an LCD Layer visible. More...
 
void BSP_LCD_SetTransparency (uint32_t LayerIndex, uint8_t Transparency)
 Configures the transparency. More...
 
void BSP_LCD_SetLayerAddress (uint32_t LayerIndex, uint32_t Address)
 Sets an LCD layer frame buffer address. More...
 
void BSP_LCD_SetLayerWindow (uint16_t LayerIndex, uint16_t Xpos, uint16_t Ypos, uint16_t Width, uint16_t Height)
 Sets display window. More...
 
void BSP_LCD_SetColorKeying (uint32_t LayerIndex, uint32_t RGBValue)
 Configures and sets the color keying. More...
 
void BSP_LCD_ResetColorKeying (uint32_t LayerIndex)
 Disables the color keying. More...
 
void BSP_LCD_SetTextColor (uint32_t Color)
 Sets the LCD text color. More...
 
uint32_t BSP_LCD_GetTextColor (void)
 Gets the LCD text color. More...
 
void BSP_LCD_SetBackColor (uint32_t Color)
 Sets the LCD background color. More...
 
uint32_t BSP_LCD_GetBackColor (void)
 Gets the LCD background color. More...
 
void BSP_LCD_SetFont (sFONT *fonts)
 Sets the LCD text font. More...
 
sFONTBSP_LCD_GetFont (void)
 Gets the LCD text font. More...
 
uint32_t BSP_LCD_ReadPixel (uint16_t Xpos, uint16_t Ypos)
 Reads an LCD pixel. More...
 
void BSP_LCD_Clear (uint32_t Color)
 Clears the whole currently active layer of LTDC. More...
 
void BSP_LCD_ClearStringLine (uint32_t Line)
 Clears the selected line in currently active layer. More...
 
void BSP_LCD_DisplayChar (uint16_t Xpos, uint16_t Ypos, uint8_t Ascii)
 Displays one character in currently active layer. More...
 
void BSP_LCD_DisplayStringAt (uint16_t Xpos, uint16_t Ypos, uint8_t *Text, Text_AlignModeTypdef Mode)
 Displays characters in currently active layer. More...
 
void BSP_LCD_DisplayStringAtLine (uint16_t Line, uint8_t *ptr)
 Displays a maximum of 60 characters on the LCD. More...
 
void BSP_LCD_DrawHLine (uint16_t Xpos, uint16_t Ypos, uint16_t Length)
 Draws an horizontal line in currently active layer. More...
 
void BSP_LCD_DrawVLine (uint16_t Xpos, uint16_t Ypos, uint16_t Length)
 Draws a vertical line in currently active layer. More...
 
void BSP_LCD_DrawLine (uint16_t x1, uint16_t y1, uint16_t x2, uint16_t y2)
 Draws an uni-line (between two points) in currently active layer. More...
 
void BSP_LCD_DrawRect (uint16_t Xpos, uint16_t Ypos, uint16_t Width, uint16_t Height)
 Draws a rectangle in currently active layer. More...
 
void BSP_LCD_DrawCircle (uint16_t Xpos, uint16_t Ypos, uint16_t Radius)
 Draws a circle in currently active layer. More...
 
void BSP_LCD_DrawPolygon (pPoint Points, uint16_t PointCount)
 Draws an poly-line (between many points) in currently active layer. More...
 
void BSP_LCD_DrawEllipse (int Xpos, int Ypos, int XRadius, int YRadius)
 Draws an ellipse on LCD in currently active layer. More...
 
void BSP_LCD_DrawBitmap (uint32_t Xpos, uint32_t Ypos, uint8_t *pbmp)
 Draws a bitmap picture loaded in the internal Flash (32 bpp) in currently active layer. More...
 
void BSP_LCD_FillRect (uint16_t Xpos, uint16_t Ypos, uint16_t Width, uint16_t Height)
 Draws a full rectangle in currently active layer. More...
 
void BSP_LCD_FillCircle (uint16_t Xpos, uint16_t Ypos, uint16_t Radius)
 Draws a full circle in currently active layer. More...
 
void BSP_LCD_FillPolygon (pPoint Points, uint16_t PointCount)
 Draws a full poly-line (between many points) in currently active layer. More...
 
void BSP_LCD_FillEllipse (int Xpos, int Ypos, int XRadius, int YRadius)
 Draws a full ellipse in currently active layer. More...
 
void BSP_LCD_DisplayOn (void)
 Switch back on the display if was switched off by previous call of BSP_LCD_DisplayOff(). Exit DSI ULPM mode if was allowed and configured in Dsi Configuration. More...
 
void BSP_LCD_DisplayOff (void)
 Switch Off the display. Enter DSI ULPM mode if was allowed and configured in Dsi Configuration. More...
 
void BSP_LCD_SetBrightness (uint8_t BrightnessValue)
 Set the brightness value. More...
 
void DSI_IO_WriteCmd (uint32_t NbrParams, uint8_t *pParams)
 DCS or Generic short/long write command. More...
 
__weak void BSP_LCD_MspDeInit (void)
 De-Initializes the BSP LCD Msp Application can surcharge if needed this function implementation. More...
 
__weak void BSP_LCD_MspInit (void)
 Initialize the BSP LCD Msp. Application can surcharge if needed this function implementation. More...
 
void BSP_LCD_DrawPixel (uint16_t Xpos, uint16_t Ypos, uint32_t RGB_Code)
 Draws a pixel on LCD. More...
 

Variables

DMA2D_HandleTypeDef hdma2d_discovery
 
LTDC_HandleTypeDef hltdc_discovery
 
DSI_HandleTypeDef hdsi_discovery
 
uint32_t lcd_x_size = OTM8009A_800X480_WIDTH
 
uint32_t lcd_y_size = OTM8009A_800X480_HEIGHT
 

Detailed Description

This file includes the driver for Liquid Crystal Display (LCD) module mounted on STM32F769I-DISCOVERY board.

Author
MCD Application Team
Version
V1.0.0
Date
22-April-2016
Attention

© COPYRIGHT(c) 2016 STMicroelectronics

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

  1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
  2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
  3. Neither the name of STMicroelectronics nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Definition in file stm32f769i_discovery_lcd.c.