Terminal Emulator.
[Display Devices]

Collaboration diagram for Terminal Emulator.:
Virtual terminal emulator. More...

Data Structures

struct  _WINSIZE
struct  _TERMDCB
 Terminal device control block structure. More...
struct  _TERMDCB
 Terminal device control block structure. More...

Defines

#define LCD_CMDBYTE   0x0401
#define LCD_CMDWORD16   0x0402
#define LCD_CMDWORD32   0x0403
#define LCD_DATABYTE   0x0405
#define LCD_DATAWORD16   0x0406
#define LCD_DATAWORD32   0x0407
#define LCD_SETCOOKEDMODE   0x0413
 Set raw mode.
#define LCD_GETCOOKEDMODE   0x0414
 Query raw mode.
#define TIOCGWINSZ   0x0501
#define TIOCSWINSZ   0x0502
#define LCD_MF_CURSORON   0x00000001UL
 Cursor on flag.
#define LCD_MF_COOKEDMODE   0x00020000UL
 Control character interpretation on flag.
#define ESC_CHAR   "\x1B"
#define ESC_POS   ESC_CHAR "Y"
#define ESC_UP   ESC_CHAR "A"
#define ESC_DOWN   ESC_CHAR "B"
#define ESC_RIGHT   ESC_CHAR "C"
#define ESC_LEFT   ESC_CHAR "D"
#define ESC_CLRHOME   ESC_CHAR "H"
#define ESC_CLR   ESC_CHAR "E"
#define ESC_CLREND   ESC_CHAR "J"
#define ESC_CLREOL   ESC_CHAR "K"
#define ESC_CLRSTART   ESC_CHAR "d"
#define ESC_CLRSOL   ESC_CHAR "o"
#define ESC_INSCHAR   ESC_CHAR "@"
#define ESC_INSLINE   ESC_CHAR "L"
#define ESC_DELCHAR   ESC_CHAR "P"
#define ESC_DELLINE   ESC_CHAR "M"
#define ESC_RLF   ESC_CHAR "I"
#define ESC_CURSORON   ESC_CHAR "e"
#define ESC_CURSOROFF   ESC_CHAR "f"
#define ESC_SPECIALSET   ESC_CHAR "F"
#define ESC_DEFAULTSET   ESC_CHAR "G"
#define ESC_ACTIVE   ESC_CHAR "R"
#define ESC_SLEEP   ESC_CHAR "S"

Typedefs

typedef struct _WINSIZE WINSIZE
typedef struct _TERMDCB TERMDCB

Functions

void TermRefresh (TERMDCB *dcb)
int TermIOCtl (NUTDEVICE *dev, int req, void *conf)
 Perform special LCD control functions.
int TermInit (NUTDEVICE *dev)
 Initialize the terminal device.
int TermWrite (NUTFILE *fp, CONST void *buffer, int len)
 Write data to a terminal device.
int TermWrite_P (NUTFILE *fp, PGM_P buffer, int len)
 Write data from program space to a terminal device.
NUTFILETermOpen (NUTDEVICE *dev, CONST char *name, int mode, int acc)
 Open a terminal device.
int TermClose (NUTFILE *fp)
 Close a device or file.

Detailed Description

Virtual terminal emulator.

The virtual terminal driver allows to use a LC or VF display for standard I/O. It supports VT52 control codes.


Define Documentation

#define LCD_CMDBYTE   0x0401

Definition at line 51 of file term.h.

Referenced by TermIOCtl().

#define LCD_CMDWORD16   0x0402

Definition at line 52 of file term.h.

Referenced by TermIOCtl().

#define LCD_CMDWORD32   0x0403

Definition at line 53 of file term.h.

Referenced by TermIOCtl().

#define LCD_DATABYTE   0x0405

Definition at line 54 of file term.h.

Referenced by TermIOCtl().

#define LCD_DATAWORD16   0x0406

Definition at line 55 of file term.h.

Referenced by TermIOCtl().

#define LCD_DATAWORD32   0x0407

Definition at line 56 of file term.h.

Referenced by TermIOCtl().

#define LCD_SETCOOKEDMODE   0x0413

Set raw mode.

Definition at line 57 of file term.h.

Referenced by TermIOCtl().

#define LCD_GETCOOKEDMODE   0x0414

Query raw mode.

Definition at line 58 of file term.h.

Referenced by TermIOCtl().

#define TIOCGWINSZ   0x0501

Gets the window size

Definition at line 61 of file term.h.

Referenced by TermIOCtl().

#define TIOCSWINSZ   0x0502

Sets the window size

Definition at line 64 of file term.h.

#define LCD_MF_CURSORON   0x00000001UL

Cursor on flag.

Definition at line 67 of file term.h.

#define LCD_MF_COOKEDMODE   0x00020000UL

Control character interpretation on flag.

Definition at line 68 of file term.h.

Referenced by TermIOCtl(), and TermOpen().

#define ESC_CHAR   "\x1B"

Definition at line 71 of file term.h.

#define ESC_POS   ESC_CHAR "Y"

Definition at line 73 of file term.h.

Referenced by Displayer().

#define ESC_UP   ESC_CHAR "A"

Definition at line 74 of file term.h.

#define ESC_DOWN   ESC_CHAR "B"

Definition at line 75 of file term.h.

#define ESC_RIGHT   ESC_CHAR "C"

Definition at line 76 of file term.h.

#define ESC_LEFT   ESC_CHAR "D"

Definition at line 77 of file term.h.

#define ESC_CLRHOME   ESC_CHAR "H"

Definition at line 78 of file term.h.

#define ESC_CLR   ESC_CHAR "E"

Definition at line 80 of file term.h.

#define ESC_CLREND   ESC_CHAR "J"

Definition at line 81 of file term.h.

#define ESC_CLREOL   ESC_CHAR "K"

Definition at line 82 of file term.h.

Referenced by Displayer().

#define ESC_CLRSTART   ESC_CHAR "d"

Definition at line 83 of file term.h.

#define ESC_CLRSOL   ESC_CHAR "o"

Definition at line 84 of file term.h.

#define ESC_INSCHAR   ESC_CHAR "@"

Definition at line 86 of file term.h.

#define ESC_INSLINE   ESC_CHAR "L"

Definition at line 87 of file term.h.

#define ESC_DELCHAR   ESC_CHAR "P"

Definition at line 88 of file term.h.

#define ESC_DELLINE   ESC_CHAR "M"

Definition at line 89 of file term.h.

#define ESC_RLF   ESC_CHAR "I"

Definition at line 90 of file term.h.

#define ESC_CURSORON   ESC_CHAR "e"

Definition at line 92 of file term.h.

#define ESC_CURSOROFF   ESC_CHAR "f"

Definition at line 93 of file term.h.

Referenced by Displayer().

#define ESC_SPECIALSET   ESC_CHAR "F"

Definition at line 94 of file term.h.

#define ESC_DEFAULTSET   ESC_CHAR "G"

Definition at line 95 of file term.h.

#define ESC_ACTIVE   ESC_CHAR "R"

Definition at line 96 of file term.h.

#define ESC_SLEEP   ESC_CHAR "S"

Definition at line 97 of file term.h.


Typedef Documentation

typedef struct _WINSIZE WINSIZE

Definition at line 102 of file term.h.

typedef struct _TERMDCB TERMDCB

Terminal device control block type.

Definition at line 114 of file term.h.


Function Documentation

void TermRefresh ( TERMDCB dcb  ) 

Definition at line 117 of file term.c.

References _TERMDCB::dcb_col, _TERMDCB::dcb_ncols, _TERMDCB::dcb_nrows, _TERMDCB::dcb_row, and _TERMDCB::dss_set_cursor.

int TermIOCtl ( NUTDEVICE dev,
int  req,
void *  conf 
)

Perform special LCD control functions.

Parameters:
dev Identifies the device that receives the device-control function.
req Requested control function. May be set to one of the following constants:
  • LCD_CMDBYTE Send command byte to display. Parameter conf points to an u_char value containing the command byte.
  • LCD_CMDWORD16 Send 16 bit command word to display. Parameter conf points to an uint16_t value containing the command bytes. The most significant byte is send first.
  • LCD_CMDWORD32 Send 32 bit command byte to display. Parameter conf points to an uint32_t value containing the command bytes. The most significant bytes are send first.
  • LCD_DATABYTE Send raw data byte to display. Parameter conf points to an u_char value containing the data byte.
  • LCD_DATAWORD16 Send 16 bit raw data word to display. Parameter conf points to an uint16_t value containing the data bytes. The most significant byte is send first.
  • LCD_DATAWORD32 Send 32 bit raw data word to display. Parameter conf points to an uint32_t value containing the data bytes. The most significant bytes are send first.
  • LCD_SETCOOKEDMODE Set terminal control character mode. Parameter conf points to an uint32_t value containing 0 (off) or 1 (on).
  • LCD_GETCOOKEDMODE Query terminal control character mode. Parameter conf points to an uint32_t value receiving 0 (off) or 1 (on).
conf Points to a buffer that contains any data required for the given control function or receives data from that function.
Returns:
0 on success, -1 otherwise.

Definition at line 318 of file term.c.

References _TERMDCB::dcb_modeflags, _TERMDCB::dcb_nrows, _TERMDCB::dcb_vcols, _NUTDEVICE::dev_dcb, _TERMDCB::dss_command, _TERMDCB::dss_write, LCD_CMDBYTE, LCD_CMDWORD16, LCD_CMDWORD32, LCD_DATABYTE, LCD_DATAWORD16, LCD_DATAWORD32, LCD_GETCOOKEDMODE, LCD_MF_COOKEDMODE, LCD_SETCOOKEDMODE, TIOCGWINSZ, _WINSIZE::ws_col, _WINSIZE::ws_row, _WINSIZE::ws_xpixel, and _WINSIZE::ws_ypixel.

int TermInit ( NUTDEVICE dev  ) 

Initialize the terminal device.

Prepares the device for subsequent writing.

Application should not call this function directly, but use the stdio interface.

Parameters:
dev Identifies the device to initialize.
Returns:
0 on success, -1 otherwise.

Definition at line 392 of file term.c.

References _TERMDCB::dcb_nrows, _TERMDCB::dcb_smem, _TERMDCB::dcb_vcols, _NUTDEVICE::dev_dcb, _TERMDCB::dss_init, and malloc.

int TermWrite ( NUTFILE fp,
CONST void *  buffer,
int  len 
)

Write data to a terminal device.

Application should not call this function directly, but use the stdio interface.

The data may contain special character sequences, which are interpreted by the terminal device to control specific display functions:

In addition a superset of VT52 control sequences are interpreted. Each sequence starts with an ESC character (ASCII 27):

(*) Not a VT52 command.

Parameters:
fp File pointer to a previously opened device.
buffer Pointer to the data bytes to be written.
len Number of bytes to write.
Returns:
The number of bytes written.
Todo:
TAB should be interpreted.
Bug:
Switching from graphic mode back to text mode will not work, because all escape sequences are ignored as soon as the graphic mode has been enabled. Applications should use _ioctl() functions to switch modes.

Definition at line 685 of file term.c.

References _NUTFILE::nf_dev.

int TermWrite_P ( NUTFILE fp,
PGM_P  buffer,
int  len 
)

Write data from program space to a terminal device.

Similar to TermWrite() except that the data is located in program memory.

Application should not call this function directly, but use the stdio interface.

Parameters:
fp File pointer to a previously opened device.
buffer Pointer to the data bytes in program space to be written.
len Number of bytes to write.
Returns:
The number of bytes written.

Definition at line 705 of file term.c.

References CONST, and _NUTFILE::nf_dev.

NUTFILE* TermOpen ( NUTDEVICE dev,
CONST char *  name,
int  mode,
int  acc 
)

Open a terminal device.

Application should not call this function directly, but use the stdio interface.

Parameters:
dev Pointer to device information structure.
name Filename. Not used with terminal devices.
mode Operation mode. May be any of the following:
  • _O_BINARY Raw mode, no control character interpretation.
  • _O_TEXT Text mode. Control characters are interpreted and tranlated to LCD commands.
acc Access mode. Not used with terminal devices.
Returns:
Pointer to a NUTFILE structure or –1 to indicate an error.

Definition at line 728 of file term.c.

References _O_BINARY, _TERMDCB::dcb_modeflags, _NUTDEVICE::dev_dcb, LCD_MF_COOKEDMODE, malloc, _NUTFILE::nf_dev, _NUTFILE::nf_fcb, _NUTFILE::nf_next, and NUTFILE_EOF.

int TermClose ( NUTFILE fp  ) 

Close a device or file.

Application should not call this function directly, but use the stdio interface.

Parameters:
fp Pointer to a previously opened NUTFILE structure.
Returns:
0 if the device was successfully closed or –1 to indicate an error.

Definition at line 757 of file term.c.

References free, and NUTFILE_EOF.


© 2000-2007 by egnite Software GmbH - visit http://www.ethernut.de/