tinyusb  0.4
Click here to lend your support to tinyusb donation and make a donation at pledgie.com
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Groups Pages
Cursor Movement

Macros

#define ANSI_CURSOR_UP(n)   CSI_CODE(#n "A")
 Move cursor up.
 
#define ANSI_CURSOR_DOWN(n)   CSI_CODE(#n "B")
 Move cursor down.
 
#define ANSI_CURSOR_FORWARD(n)   CSI_CODE(#n "C")
 Move cursor forward.
 
#define ANSI_CURSOR_BACKWARD(n)   CSI_CODE(#n "D")
 Move cursor backward.
 
#define ANSI_CURSOR_LINE_DOWN(n)   CSI_CODE(#n "E")
 Move cursor to the beginning of the line (n) down.
 
#define ANSI_CURSOR_LINE_UP(n)   CSI_CODE(#n "F")
 Move cursor to the beginning of the line (n) up.
 
#define ANSI_CURSOR_POSITION(n, m)   CSI_CODE(#n ";" #m "H")
 Move cursor to position (n, m)
 

Detailed Description