Stima V4 Slave RAIN  4.2
debug_F.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_F_H
25 #define _DEBUG_F_H
26 
27 //Dependencies
28 #include "debug.h"
29 
30 void print_debug_F(const __FlashStringHelper *fmt, ...);
31 
32 //Trace output redirection
33 #ifndef TRACE_PRINTF_F
34 #define TRACE_PRINTF_F(...) print_debug_F(__VA_ARGS__)
35 #endif
36 
37 //Debugging macros
38 #if (TRACE_LEVEL >= TRACE_LEVEL_FATAL)
39  #define TRACE_FATAL_F(...) TRACE_PRINTF_F(__VA_ARGS__)
40 #else
41  #define TRACE_FATAL_F(...)
42 #endif
43 
44 #if (TRACE_LEVEL >= TRACE_LEVEL_ERROR)
45  #define TRACE_ERROR_F(...) TRACE_PRINTF_F(__VA_ARGS__)
46 #else
47  #define TRACE_ERROR_F(...)
48 #endif
49 
50 #if (TRACE_LEVEL >= TRACE_LEVEL_WARNING)
51  #define TRACE_WARNING_F(...) TRACE_PRINTF_F(__VA_ARGS__)
52 #else
53  #define TRACE_WARNING_F(...)
54 #endif
55 
56 #if (TRACE_LEVEL >= TRACE_LEVEL_INFO)
57  #define TRACE_INFO_F(...) TRACE_PRINTF_F(__VA_ARGS__)
58 #else
59  #define TRACE_INFO_F(...)
60 #endif
61 
62 #if (TRACE_LEVEL >= TRACE_LEVEL_DEBUG)
63  #define TRACE_DEBUG_F(...) TRACE_PRINTF_F(__VA_ARGS__)
64 #else
65  #define TRACE_DEBUG_F(...)
66 #endif
67 
68 #if (TRACE_LEVEL >= TRACE_LEVEL_VERBOSE)
69  #define TRACE_VERBOSE_F(...) TRACE_PRINTF_F(__VA_ARGS__)
70 #else
71  #define TRACE_VERBOSE_F(...)
72 #endif
73 
74 //C++ guard
75 #ifdef __cplusplus
76 extern "C" {
77 #endif
78 
79 // C++ guard
80 #ifdef __cplusplus
81 }
82 #endif
83 
84 #endif
void print_debug_F(const __FlashStringHelper *fmt,...)
Print debug from rom Flash.
Definition: debug.cpp:102