Formula Student Electronics & Software
The code for the embedded software
Toggle main menu visibility
Main Page
Related Pages
Classes
Class List
Class Index
Class Members
All
_
a
b
c
d
e
f
g
h
i
k
l
m
o
p
r
s
t
u
v
w
Functions
a
b
c
d
e
g
h
i
m
o
p
r
s
t
u
Variables
_
a
c
d
e
f
i
k
l
m
p
r
s
t
v
w
Enumerations
Files
File List
File Members
All
a
b
c
d
e
f
g
h
i
l
m
n
p
r
s
t
u
v
w
y
Functions
c
l
m
r
s
t
w
Variables
a
b
c
d
e
f
h
l
m
n
p
r
s
v
w
Enumerations
Enumerator
Macros
a
b
c
d
e
g
h
i
l
m
p
r
s
u
w
y
•
All
Classes
Files
Functions
Variables
Enumerations
Enumerator
Macros
Pages
Loading...
Searching...
No Matches
debugUtils.hpp
Go to the documentation of this file.
1
#pragma once
2
3
#ifdef DEBUG
4
#include <Arduino.h>
5
#define DEBUG_PRINT(str) \
6
Serial.print(millis()); \
7
Serial.print(": "); \
8
Serial.print(__PRETTY_FUNCTION__); \
9
Serial.print(' '); \
10
Serial.print(__FILE__); \
11
Serial.print(':'); \
12
Serial.print(__LINE__); \
13
Serial.print(' '); \
14
Serial.println(str);
15
16
#define DEBUG_PRINT_VAR(var) \
17
Serial.print(millis()); \
18
Serial.print(": "); \
19
Serial.print(__PRETTY_FUNCTION__); \
20
Serial.print(' '); \
21
Serial.print(__FILE__); \
22
Serial.print(':'); \
23
Serial.print(__LINE__); \
24
Serial.print(' '); \
25
Serial.print(#var); \
26
Serial.print(" = "); \
27
Serial.println(var);
28
#else
29
#define DEBUG_PRINT_VAR(var)
30
#define DEBUG_PRINT(str)
31
#endif
master
include
debugUtils.hpp
Generated by
1.9.8