Digital Power Starter Kit 3 Firmware
dsPIC33C Buck Converter Voltage Mode Control Example

Public properties of the LC display device driver library. More...

+ Collaboration diagram for Public Properties:

Macros

#define TEMPSTR_LCD_SIZE   40
 Defines the total string length of the LC display. More...
 
#define PrintLcd(LINE, ...)
 Writes a complete line to the LC display. More...
 

Detailed Description

Public properties of the LC display device driver library.

This is the detailed description of public variables, data types, enumerations, defines and macros of the LC display device driver library.

Macro Definition Documentation

◆ PrintLcd

#define PrintLcd (   LINE,
  ... 
)
Value:
do{ \
char __print_utils_string[TEMPSTR_LCD_SIZE]; \
sprintf(__print_utils_string, __VA_ARGS__); \
dev_Lcd_WriteStringXY(0, LINE, __print_utils_string); \
} while(0)

Writes a complete line to the LC display.

This macro can be used to write a complete line to the LC display. If the length of the string exceeds the available number of characters in one line, the position will overflow into the next line.

Definition at line 45 of file dev_lcd.h.

◆ TEMPSTR_LCD_SIZE

#define TEMPSTR_LCD_SIZE   40

Defines the total string length of the LC display.

This defines the total number of characters which can be displayed on the LC display. This number may be subject to change if another LC display type is used.

Definition at line 33 of file dev_lcd.h.

TEMPSTR_LCD_SIZE
#define TEMPSTR_LCD_SIZE
Defines the total string length of the LC display.
Definition: dev_lcd.h:33