Bluenet
5.7.0
Bluenet, firmware for nRF52 smart home devices
Toggle main menu visibility
Main Page
Related Pages
Namespaces
Namespace List
Namespace Members
All
a
c
d
e
f
g
i
l
m
n
o
p
r
s
t
u
w
x
Functions
a
c
d
e
f
g
i
l
m
n
o
p
r
s
t
u
Variables
Typedefs
Enumerations
Enumerator
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
~
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
~
Variables
_
a
b
c
d
e
f
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
Typedefs
a
c
e
f
i
r
s
t
Enumerations
Enumerator
Related Functions
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
y
Functions
_
a
b
c
d
e
f
g
h
i
m
o
p
r
s
t
v
w
y
Variables
_
a
c
d
f
g
i
m
s
v
Typedefs
a
b
c
d
f
i
p
r
s
t
u
Enumerations
a
b
c
d
e
f
g
l
m
o
p
r
s
t
u
Enumerator
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
Macros
_
a
b
c
d
e
f
g
h
i
l
m
n
p
q
r
s
t
u
v
w
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
Loading...
Searching...
No Matches
cs_LogPlainText.h
Go to the documentation of this file.
1
/*
2
* Author: Crownstone Team
3
* Copyright: Crownstone (https://crownstone.rocks)
4
* Date: Sep 1, 2022
5
* License: LGPLv3+, Apache License 2.0, and/or MIT (triple-licensed)
6
*/
7
8
#pragma once
9
10
#include <
logging/impl/cs_LogUtils.h
>
11
12
void
cs_log_printf
(
const
char
* str, ...);
13
__attribute__((unused))
static
bool
_logPrefixPlainText
=
true
;
14
15
// Adding the file name and line number, adds a lot to the binary size.
16
#define _FILE (sizeof(__FILE__) > 30 ? __FILE__ + (sizeof(__FILE__) - 30 - 1) : __FILE__)
17
18
#define _log(level, addNewLine, fmt, ...) \
19
if (level <= SERIAL_VERBOSITY) { \
20
if (_logPrefixPlainText) { \
21
cs_log_printf("[%-30.30s : %-4d] "
, _FILE, __LINE__); \
22
} \
23
cs_log_printf(fmt, ##__VA_ARGS__); \
24
if (addNewLine) { \
25
cs_log_printf("\r\n"); \
26
} \
27
_logPrefixPlainText = addNewLine; \
28
}
29
30
#define _logArray(level, addNewLine, pointer, size, ...)
cs_log_printf
void cs_log_printf(const char *str,...)
_logPrefixPlainText
static bool _logPrefixPlainText
Definition:
cs_LogPlainText.h:13
cs_LogUtils.h
source
include
logging
impl
cs_LogPlainText.h
Generated by
1.9.5