STM32F723E-Discovery BSP User Manual
|
This file contains the common defines and functions prototypes for the stm32f723e_discovery_lcd.c driver. More...
#include "stm32f723e_discovery.h"
#include "../Components/st7789h2/st7789h2.h"
#include "../../../Utilities/Fonts/fonts.h"
Go to the source code of this file.
Data Structures | |
struct | LCD_DrawPropTypeDef |
struct | Point |
Defines | |
#define | LCD_OK ((uint8_t)0x00) |
LCD status structure definition. | |
#define | LCD_ERROR ((uint8_t)0x01) |
#define | LCD_TIMEOUT ((uint8_t)0x02) |
#define | LCD_ORIENTATION_PORTRAIT ((uint8_t)0x00) |
#define | LCD_ORIENTATION_LANDSCAPE ((uint8_t)0x01) |
#define | LCD_ORIENTATION_LANDSCAPE_ROT180 ((uint32_t)0x02) |
#define | LCD_COLOR_BLUE ((uint16_t)0x001F) |
LCD color. | |
#define | LCD_COLOR_GREEN ((uint16_t)0x07E0) |
#define | LCD_COLOR_RED ((uint16_t)0xF800) |
#define | LCD_COLOR_CYAN ((uint16_t)0x07FF) |
#define | LCD_COLOR_MAGENTA ((uint16_t)0xF81F) |
#define | LCD_COLOR_YELLOW ((uint16_t)0xFFE0) |
#define | LCD_COLOR_LIGHTBLUE ((uint16_t)0x841F) |
#define | LCD_COLOR_LIGHTGREEN ((uint16_t)0x87F0) |
#define | LCD_COLOR_LIGHTRED ((uint16_t)0xFC10) |
#define | LCD_COLOR_LIGHTMAGENTA ((uint16_t)0xFC1F) |
#define | LCD_COLOR_LIGHTYELLOW ((uint16_t)0xFFF0) |
#define | LCD_COLOR_DARKBLUE ((uint16_t)0x0010) |
#define | LCD_COLOR_DARKGREEN ((uint16_t)0x0400) |
#define | LCD_COLOR_DARKRED ((uint16_t)0x8000) |
#define | LCD_COLOR_DARKCYAN ((uint16_t)0x0410) |
#define | LCD_COLOR_DARKMAGENTA ((uint16_t)0x8010) |
#define | LCD_COLOR_DARKYELLOW ((uint16_t)0x8400) |
#define | LCD_COLOR_WHITE ((uint16_t)0xFFFF) |
#define | LCD_COLOR_LIGHTGRAY ((uint16_t)0xD69A) |
#define | LCD_COLOR_GRAY ((uint16_t)0x8410) |
#define | LCD_COLOR_DARKGRAY ((uint16_t)0x4208) |
#define | LCD_COLOR_BLACK ((uint16_t)0x0000) |
#define | LCD_COLOR_BROWN ((uint16_t)0xA145) |
#define | LCD_COLOR_ORANGE ((uint16_t)0xFD20) |
#define | LCD_DEFAULT_FONT Font12 |
LCD default font. | |
#define | LCD_RESET_PIN GPIO_PIN_7 |
LCD special pins. | |
#define | LCD_RESET_GPIO_PORT GPIOH |
#define | LCD_RESET_GPIO_CLK_ENABLE() __HAL_RCC_GPIOH_CLK_ENABLE() |
#define | LCD_RESET_GPIO_CLK_DISABLE() __HAL_RCC_GPIOH_CLK_DISABLE() |
#define | LCD_TE_PIN GPIO_PIN_8 |
#define | LCD_TE_GPIO_PORT GPIOC |
#define | LCD_TE_GPIO_CLK_ENABLE() __HAL_RCC_GPIOC_CLK_ENABLE() |
#define | LCD_TE_GPIO_CLK_DISABLE() __HAL_RCC_GPIOC_CLK_DISABLE() |
#define | LCD_BL_CTRL_PIN GPIO_PIN_11 |
#define | LCD_BL_CTRL_GPIO_PORT GPIOH |
#define | LCD_BL_CTRL_GPIO_CLK_ENABLE() __HAL_RCC_GPIOH_CLK_ENABLE() |
#define | LCD_BL_CTRL_GPIO_CLK_DISABLE() __HAL_RCC_GPIOH_CLK_DISABLE() |
Typedefs | |
typedef struct Point * | pPoint |
Enumerations | |
enum | Line_ModeTypdef { CENTER_MODE = 0x01, RIGHT_MODE = 0x02, LEFT_MODE = 0x03 } |
Line mode structures definition. More... | |
Functions | |
uint8_t | BSP_LCD_Init (void) |
Initializes the LCD. | |
uint8_t | BSP_LCD_InitEx (uint32_t orientation) |
Initializes the LCD with a given orientation. | |
uint8_t | BSP_LCD_DeInit (void) |
DeInitializes the LCD. | |
uint32_t | BSP_LCD_GetXSize (void) |
Gets the LCD X size. | |
uint32_t | BSP_LCD_GetYSize (void) |
Gets the LCD Y size. | |
uint16_t | BSP_LCD_GetTextColor (void) |
Gets the LCD text color. | |
uint16_t | BSP_LCD_GetBackColor (void) |
Gets the LCD background color. | |
void | BSP_LCD_SetTextColor (__IO uint16_t Color) |
void | BSP_LCD_SetBackColor (__IO uint16_t Color) |
void | BSP_LCD_SetFont (sFONT *fonts) |
Sets the LCD text font. | |
sFONT * | BSP_LCD_GetFont (void) |
Gets the LCD text font. | |
void | BSP_LCD_Clear (uint16_t Color) |
Clears the hole LCD. | |
void | BSP_LCD_ClearStringLine (uint16_t Line) |
Clears the selected line. | |
void | BSP_LCD_DisplayStringAtLine (uint16_t Line, uint8_t *ptr) |
Displays a character on the LCD. | |
void | BSP_LCD_DisplayStringAt (uint16_t Xpos, uint16_t Ypos, uint8_t *Text, Line_ModeTypdef Mode) |
Displays characters on the LCD. | |
void | BSP_LCD_DisplayChar (uint16_t Xpos, uint16_t Ypos, uint8_t Ascii) |
Displays one character. | |
uint16_t | BSP_LCD_ReadPixel (uint16_t Xpos, uint16_t Ypos) |
Reads an LCD pixel. | |
void | BSP_LCD_DrawPixel (uint16_t Xpos, uint16_t Ypos, uint16_t RGB_Code) |
Draws a pixel on LCD. | |
void | BSP_LCD_DrawHLine (uint16_t Xpos, uint16_t Ypos, uint16_t Length) |
Draws an horizontal line. | |
void | BSP_LCD_DrawVLine (uint16_t Xpos, uint16_t Ypos, uint16_t Length) |
Draws a vertical line. | |
void | BSP_LCD_DrawLine (uint16_t x1, uint16_t y1, uint16_t x2, uint16_t y2) |
Draws an uni-line (between two points). | |
void | BSP_LCD_DrawRect (uint16_t Xpos, uint16_t Ypos, uint16_t Width, uint16_t Height) |
Draws a rectangle. | |
void | BSP_LCD_DrawCircle (uint16_t Xpos, uint16_t Ypos, uint16_t Radius) |
Draws a circle. | |
void | BSP_LCD_DrawPolygon (pPoint Points, uint16_t PointCount) |
Draws an poly-line (between many points). | |
void | BSP_LCD_DrawEllipse (int Xpos, int Ypos, int XRadius, int YRadius) |
Draws an ellipse on LCD. | |
void | BSP_LCD_DrawBitmap (uint16_t Xpos, uint16_t Ypos, uint8_t *pbmp) |
Draws a bitmap picture (16 bpp). | |
void | BSP_LCD_DrawRGBImage (uint16_t Xpos, uint16_t Ypos, uint16_t Xsize, uint16_t Ysize, uint8_t *pbmp) |
Draws RGB Image (16 bpp). | |
void | BSP_LCD_FillRect (uint16_t Xpos, uint16_t Ypos, uint16_t Width, uint16_t Height) |
Draws a full rectangle. | |
void | BSP_LCD_FillCircle (uint16_t Xpos, uint16_t Ypos, uint16_t Radius) |
Draws a full circle. | |
void | BSP_LCD_FillPolygon (pPoint Points, uint16_t PointCount) |
Draws a full poly-line (between many points). | |
void | BSP_LCD_FillEllipse (int Xpos, int Ypos, int XRadius, int YRadius) |
Draws a full ellipse. | |
void | BSP_LCD_DisplayOff (void) |
Disables the display. | |
void | BSP_LCD_DisplayOn (void) |
Enables the display. | |
__weak void | BSP_LCD_MspInit (void) |
Initializes the LCD GPIO special pins MSP. | |
__weak void | BSP_LCD_MspDeInit (void) |
DeInitializes LCD GPIO special pins MSP. |
Detailed Description
This file contains the common defines and functions prototypes for the stm32f723e_discovery_lcd.c driver.
- 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 stm32f723e_discovery_lcd.h.
Generated on Tue May 30 2017 13:59:12 for STM32F723E-Discovery BSP User Manual by 1.7.6.1