]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - include/ansi.h
am33xx: Update DT files, add am335x_gp_evm_config target
[karo-tx-uboot.git] / include / ansi.h
1 /*
2  * (C) Copyright 2012
3  * Pali Rohár <pali.rohar@gmail.com>
4  *
5  * SPDX-License-Identifier:     GPL-2.0+
6  */
7
8 /*
9  * ANSI terminal
10  */
11
12 #define ANSI_CURSOR_UP                  "\e[%dA"
13 #define ANSI_CURSOR_DOWN                "\e[%dB"
14 #define ANSI_CURSOR_FORWARD             "\e[%dC"
15 #define ANSI_CURSOR_BACK                "\e[%dD"
16 #define ANSI_CURSOR_NEXTLINE            "\e[%dE"
17 #define ANSI_CURSOR_PREVIOUSLINE        "\e[%dF"
18 #define ANSI_CURSOR_COLUMN              "\e[%dG"
19 #define ANSI_CURSOR_POSITION            "\e[%d;%dH"
20 #define ANSI_CURSOR_SHOW                "\e[?25h"
21 #define ANSI_CURSOR_HIDE                "\e[?25l"
22 #define ANSI_CLEAR_CONSOLE              "\e[2J"
23 #define ANSI_CLEAR_LINE_TO_END          "\e[0K"
24 #define ANSI_CLEAR_LINE                 "\e[2K"
25 #define ANSI_COLOR_RESET                "\e[0m"
26 #define ANSI_COLOR_REVERSE              "\e[7m"