Stima V4 Slave RAIN  4.2
debug_config.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_CONFIG_H
25 #define _DEBUG_CONFIG_H
26 
27 #if USE_DEBUG
28 
29 #define STIMA_TRACE_LEVEL TRACE_LEVEL_INFO
30 #define SUPERVISOR_TASK_TRACE_LEVEL TRACE_LEVEL_INFO
31 #define CAN_TASK_TRACE_LEVEL TRACE_LEVEL_INFO
32 #define ACCELEROMETER_TASK_TRACE_LEVEL TRACE_LEVEL_INFO
33 #define WDT_TASK_TRACE_LEVEL TRACE_LEVEL_INFO
34 #define RAIN_SENSOR_TASK_TRACE_LEVEL TRACE_LEVEL_VERBOSE
35 #define ELABORATE_DATA_TASK_TRACE_LEVEL TRACE_LEVEL_VERBOSE
36 
37 #else
38 
39 #define STIMA_TRACE_LEVEL TRACE_LEVEL_OFF
40 #define SUPERVISOR_TASK_TRACE_LEVEL TRACE_LEVEL_OFF
41 #define CAN_TASK_TRACE_LEVEL TRACE_LEVEL_OFF
42 #define ACCELEROMETER_TASK_TRACE_LEVEL TRACE_LEVEL_OFF
43 #define WDT_TASK_TRACE_LEVEL TRACE_LEVEL_OFF
44 #define RAIN_SENSOR_TASK_TRACE_LEVEL TRACE_LEVEL_OFF
45 #define ELABORATE_DATA_TASK_TRACE_LEVEL TRACE_LEVEL_OFF
46 
47 #endif
48 
49 #endif