summaryrefslogtreecommitdiff
path: root/util/uut/main.h
blob: 2885e7368a21865a30ccbd198199260055f4bd08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/*
 * Copyright 2018 The Chromium OS Authors. All rights reserved.
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#ifndef __UTIL_UUT_MAIN_H
#define __UTIL_UUT_MAIN_H

#include <stdbool.h>

/*---------------------------------------------------------------------------
 * Constant definitions
 *---------------------------------------------------------------------------
 */
/* Maximum Read/Write data size per packet */
#define MAX_RW_DATA_SIZE 256

/* Base for string conversion */
#define BASE_DECIMAL 10
#define BASE_HEXADECIMAL 16

/* Verbose control messages display */
#define DISPLAY_MSG(msg) \
{                        \
	if (verbose)         \
		printf msg;      \
}

#define SUCCESS true
#define FAIL false

#ifdef __cplusplus
extern "C" {
#endif

/*--------------------------------------------------------------------------
 * Global variables
 *--------------------------------------------------------------------------
 */

extern bool verbose;
extern bool console;

/*--------------------------------------------------------------------------
 * Global functions
 *--------------------------------------------------------------------------
 */

/*---------------------------------------------------------------------------
 * Function:	display_color_msg
 *
 * Parameters:
 *		success - SUCCESS for successful message, FAIL for erroneous
 *			  massage.
 *		fmt     - Massage to dispaly (format and arguments).
 *
 * Returns:	none
 * Side effects:	Using DISPLAY_MSG macro.
 * Description:
 *	This routine displays a message using color attributes:
 *		In case of a successful message, use green foreground text on
 *		black background.
 *		In case of an erroneous message, use red foreground text on
 *		black background.
 *--------------------------------------------------------------------------
 */
void display_color_msg(bool success, const char *fmt, ...);

#ifdef __cplusplus
}
#endif

#endif /* __UTIL_UUT_MAIN_H */