tinyusb
|
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) | |