STM32F429ZI Discovery board drivers

Dependents:   2a 2b 2c 2d1 ... more

Embed: (wiki syntax)

« Back to documentation index

ILI9341_Private_Functions

ILI9341_Private_Functions
[ILI9341]

Functions

void ili9341_Init (void)
 Power on the LCD.
uint16_t ili9341_ReadID (void)
 Disables the Display.
void ili9341_DisplayOn (void)
 Enables the Display.
void ili9341_DisplayOff (void)
 Disables the Display.
void ili9341_WriteReg (uint8_t LCD_Reg)
 Writes to the selected LCD register.
void ili9341_WriteData (uint16_t RegValue)
 Writes data to the selected LCD register.
uint32_t ili9341_ReadData (uint16_t RegValue, uint8_t ReadSize)
 Reads the selected LCD Register.
uint16_t ili9341_GetLcdPixelWidth (void)
 Get LCD PIXEL WIDTH.
uint16_t ili9341_GetLcdPixelHeight (void)
 Get LCD PIXEL HEIGHT.

Function Documentation

void ili9341_DisplayOff ( void   )

Disables the Display.

Parameters:
None
Return values:
None

Definition at line 270 of file ili9341.c.

void ili9341_DisplayOn ( void   )

Enables the Display.

Parameters:
None
Return values:
None

Definition at line 259 of file ili9341.c.

uint16_t ili9341_GetLcdPixelHeight ( void   )

Get LCD PIXEL HEIGHT.

Parameters:
None
Return values:
LCDPIXEL HEIGHT.

Definition at line 324 of file ili9341.c.

uint16_t ili9341_GetLcdPixelWidth ( void   )

Get LCD PIXEL WIDTH.

Parameters:
None
Return values:
LCDPIXEL WIDTH.

Definition at line 313 of file ili9341.c.

void ili9341_Init ( void   )

Power on the LCD.

Parameters:
None
Return values:
None

Definition at line 119 of file ili9341.c.

uint32_t ili9341_ReadData ( uint16_t  RegValue,
uint8_t  ReadSize 
)

Reads the selected LCD Register.

Parameters:
RegValue,:Address of the register to read
ReadSize,:Number of bytes to read
Return values:
LCDRegister Value.

Definition at line 302 of file ili9341.c.

uint16_t ili9341_ReadID ( void   )

Disables the Display.

Parameters:
None
Return values:
LCDRegister Value.

Definition at line 248 of file ili9341.c.

void ili9341_WriteData ( uint16_t  RegValue )

Writes data to the selected LCD register.

Parameters:
LCD_Reg,:address of the selected register.
Return values:
None

Definition at line 291 of file ili9341.c.

void ili9341_WriteReg ( uint8_t  LCD_Reg )

Writes to the selected LCD register.

Parameters:
LCD_Reg,:address of the selected register.
Return values:
None

Definition at line 281 of file ili9341.c.