Stima V4 Slave RAIN  4.2
debug.h
Go to the documentation of this file.
1 
3 /*********************************************************************
4 <h2><center>&copy; Stimav4 is Copyright (C) 2023 ARPAE-SIMC urpsim@arpae.it</center></h2>
5 authors:
6 Marco Baldinetti <marco.baldinetti@digiteco.it>
7 
8 This program is free software; you can redistribute it and/or
9 modify it under the terms of the GNU General Public License
10 as published by the Free Software Foundation; either version 2
11 of the License, or (at your option) any later version.
12 
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17 
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21 <http://www.gnu.org/licenses/>.
22 **********************************************************************/
23 
24 #ifndef _DEBUG_H
25 #define _DEBUG_H
26 
27 //Dependencies
28 #include <stdio.h>
29 #include <stdint.h>
30 #include <Arduino.h>
31 #include "os_port.h"
32 
33 #define OK_STRING "OK"
34 #define NO_STRING "NO"
35 #define YES_STRING "YES"
36 #define FAIL_STRING "FAIL"
37 #define ERROR_STRING "ERROR"
38 #define REDUNDANT_STRING "REDUNDANT"
39 #define MAIN_STRING "MAIN"
40 #define ON_STRING "ON"
41 #define OFF_STRING "OFF"
42 #define SUSPEND_STRING "x"
43 #define FLAG_STRING "*"
44 #define SPACE_STRING " "
45 
46 //Trace level definitions
47 #define TRACE_LEVEL_OFF 0
48 #define TRACE_LEVEL_FATAL 1
49 #define TRACE_LEVEL_ERROR 2
50 #define TRACE_LEVEL_WARNING 3
51 #define TRACE_LEVEL_INFO 4
52 #define TRACE_LEVEL_DEBUG 5
53 #define TRACE_LEVEL_VERBOSE 6
54 
55 //Default trace level
56 #ifndef TRACE_LEVEL
57  #define TRACE_LEVEL TRACE_LEVEL_DEBUG
58 #endif
59 
60 void print_debug(const char *fmt, ...);
61 
62 //Trace output redirection
63 #ifndef TRACE_PRINTF
64 #define TRACE_PRINTF(...) osSuspendAllTasks(), print_debug(__VA_ARGS__), osResumeAllTasks()
65 #endif
66 
67 #ifndef TRACE_ARRAY
68 #define TRACE_ARRAY(p, a, n) osSuspendAllTasks(), print_debug_array(p, a, n), osResumeAllTasks()
69 #endif
70 
71 #ifndef TRACE_MPI
72  #define TRACE_MPI(p, a) osSuspendAllTasks(), mpiDump(stdout, p, a), osResumeAllTasks()
73 #endif
74 
75 //Debugging macros
76 #if (TRACE_LEVEL >= TRACE_LEVEL_FATAL)
77  #define TRACE_FATAL(...) TRACE_PRINTF(__VA_ARGS__)
78  #define TRACE_FATAL_ARRAY(p, a, n) TRACE_ARRAY(p, a, n)
79  #define TRACE_FATAL_MPI(p, a) TRACE_MPI(p, a)
80 #else
81  #define TRACE_FATAL(...)
82  #define TRACE_FATAL_ARRAY(p, a, n)
83  #define TRACE_FATAL_MPI(p, a)
84 #endif
85 
86 #if (TRACE_LEVEL >= TRACE_LEVEL_ERROR)
87  #define TRACE_ERROR(...) TRACE_PRINTF(__VA_ARGS__)
88  #define TRACE_ERROR_ARRAY(p, a, n) TRACE_ARRAY(p, a, n)
89  #define TRACE_ERROR_MPI(p, a) TRACE_MPI(p, a)
90 #else
91  #define TRACE_ERROR(...)
92  #define TRACE_ERROR_ARRAY(p, a, n)
93  #define TRACE_ERROR_MPI(p, a)
94 #endif
95 
96 #if (TRACE_LEVEL >= TRACE_LEVEL_WARNING)
97  #define TRACE_WARNING(...) TRACE_PRINTF(__VA_ARGS__)
98  #define TRACE_WARNING_ARRAY(p, a, n) TRACE_ARRAY(p, a, n)
99  #define TRACE_WARNING_MPI(p, a) TRACE_MPI(p, a)
100 #else
101  #define TRACE_WARNING(...)
102  #define TRACE_WARNING_ARRAY(p, a, n)
103  #define TRACE_WARNING_MPI(p, a)
104 #endif
105 
106 #if (TRACE_LEVEL >= TRACE_LEVEL_INFO)
107  #define TRACE_INFO(...) TRACE_PRINTF(__VA_ARGS__)
108  #define TRACE_INFO_ARRAY(p, a, n) TRACE_ARRAY(p, a, n)
109  #define TRACE_INFO_NET_BUFFER(p, b, o, n)
110  #define TRACE_INFO_MPI(p, a) TRACE_MPI(p, a)
111 #else
112  #define TRACE_INFO(...)
113  #define TRACE_INFO_ARRAY(p, a, n)
114  #define TRACE_INFO_NET_BUFFER(p, b, o, n)
115  #define TRACE_INFO_MPI(p, a)
116 #endif
117 
118 #if (TRACE_LEVEL >= TRACE_LEVEL_DEBUG)
119  #define TRACE_DEBUG(...) TRACE_PRINTF(__VA_ARGS__)
120  #define TRACE_DEBUG_ARRAY(p, a, n) TRACE_ARRAY(p, a, n)
121  #define TRACE_DEBUG_NET_BUFFER(p, b, o, n)
122  #define TRACE_DEBUG_MPI(p, a) TRACE_MPI(p, a)
123 #else
124  #define TRACE_DEBUG(...)
125  #define TRACE_DEBUG_ARRAY(p, a, n)
126  #define TRACE_DEBUG_NET_BUFFER(p, b, o, n)
127  #define TRACE_DEBUG_MPI(p, a)
128 #endif
129 
130 #if (TRACE_LEVEL >= TRACE_LEVEL_VERBOSE)
131  #define TRACE_VERBOSE(...) TRACE_PRINTF(__VA_ARGS__)
132  #define TRACE_VERBOSE_ARRAY(p, a, n) TRACE_ARRAY(p, a, n)
133  #define TRACE_VERBOSE_NET_BUFFER(p, b, o, n)
134  #define TRACE_VERBOSE_MPI(p, a) TRACE_MPI(p, a)
135 #else
136  #define TRACE_VERBOSE(...)
137  #define TRACE_VERBOSE_ARRAY(p, a, n)
138  #define TRACE_VERBOSE_NET_BUFFER(p, b, o, n)
139  #define TRACE_VERBOSE_MPI(p, a)
140 #endif
141 
142 #define printError(error, ok_str, error_str) (error == NO_ERROR ? ok_str : error_str)
143 
144 //C++ guard
145 #ifdef __cplusplus
146  extern "C" {
147 #endif
148 
149 //Debug related functions
150 void init_debug(uint32_t baudrate);
151 
152 void print_debug_array(const char *prepend, const void *data, size_t length);
153 
154 //Deprecated definitions
155 #define TRACE_LEVEL_NO_TRACE TRACE_LEVEL_OFF
156 
157 // C++ guard
158 #ifdef __cplusplus
159 }
160 #endif
161 
162 #endif
void print_debug_array(const char *prepend, const void *data, size_t length)
Display the contents of an array.
Definition: debug.cpp:81
void init_debug(uint32_t baudrate)
init serial monitor
Definition: debug.cpp:57
void print_debug(const char *fmt,...)
Print debug from ram.
Definition: debug.cpp:66