This repository has been archived by the owner on Oct 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 91
/
Copy pathadvi3pp_log.cpp
116 lines (94 loc) · 2.56 KB
/
advi3pp_log.cpp
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
/**
* Marlin 3D Printer Firmware For Wanhao Duplicator i3 Plus (ADVi3++)
*
* Copyright (C) 2017-2019 Sebastien Andrivet [https://github.com/andrivet/]
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
#include "advi3pp_defines.h"
#include "advi3pp_log.h"
#include <HardwareSerial.h>
#include "serial.h"
namespace advi3pp {
// --------------------------------------------------------------------
// Logging
// --------------------------------------------------------------------
#ifdef ADVi3PP_LOG
Log Log::logging_;
Log& Log::log()
{
logging_ << F("// LOG: ");
return logging_;
}
Log& Log::error()
{
logging_ << F("// ERROR: ");
return logging_;
}
Log& Log::operator<<(const char* data)
{
SERIAL_ECHO(data);
return *this;
}
Log& Log::operator<<(const FlashChar* data)
{
serialprintPGM(reinterpret_cast<const char*>(data));
return *this;
}
Log& Log::operator<<(uint8_t data)
{
SERIAL_ECHO_F(data, HEX);
return *this;
}
Log& Log::operator<<(uint16_t data)
{
SERIAL_ECHO_F(data, HEX);
return *this;
}
Log& Log::operator<<(uint32_t data)
{
SERIAL_ECHO_F(data, HEX);
return *this;
}
Log& Log::operator<<(double data)
{
SERIAL_ECHO(data);
return *this;
}
Log& Log::operator<<(EndOfLine)
{
SERIAL_EOL();
return *this;
}
//! Dump the bytes in hexadecimal and print them (serial)
void Log::dump(const uint8_t* bytes, size_t size)
{
static const char digits[] = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'};
for(size_t index = 0; index < size; ++index)
{
SERIAL_CHAR(digits[bytes[index] / 16]);
SERIAL_CHAR(digits[bytes[index] % 16]);
SERIAL_CHAR(' ');
}
SERIAL_EOL();
}
void assert_(const char *msg, const char *file, uint16_t line)
{
Log::error() << F("ASSERTION FAILED: ") << msg << " in file " << file << ", line " << line << Log::endl();
asm("break \n");
}
#endif
// --------------------------------------------------------------------
}