repo.or.cz
/
ExpressLRS.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Add tlmConfirm to tlm_dl ota packet-structure (#2991)
[ExpressLRS.git]
/
src
/
test
/
test_embedded
/
output_export.cpp
blob
13c1d19312df9c1d5b730d36c76361ea8ac4cc82
1
#include <Arduino.h>
2
#include <output_export.h>
3
4
5
6
#ifdef __GNUC__
7
void
output_start
(
unsigned int
baudrate
__attribute__
((
unused
)))
8
#else
9
void
output_start
(
unsigned int
baudrate
)
10
#endif
11
{
12
Serial
.
begin
(
115200
);
13
}
14
15
void
output_char
(
int
c
)
16
{
17
Serial
.
write
(
c
);
18
}
19
20
void
output_flush
(
void
)
21
{
22
Serial
.
flush
();
23
}
24
25
void
output_complete
(
void
)
26
{
27
Serial
.
end
();
28
}