summaryrefslogtreecommitdiff
path: root/src/serial.cpp
blob: d03f8e8306e446365582ed2271fa87a30af5b99c (plain)
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
#include "serial.hpp"

#include "std/conversion.hpp"

SerialStream::SerialStream(Serial_ serial, uint64_t baud_rate) : _serial(serial)
{
	this->_serial.begin(baud_rate);

	while (!this->_serial) {}
}

SerialStream &SerialStream::operator<<(const char *str)
{
	this->write(str);
	return *this;
}

SerialStream &SerialStream::operator<<(const SmartString &str)
{
	this->write(str.c_str);
	return *this;
}

SerialStream &SerialStream::operator<<(const double &num)
{
	this->write(doubleToStr(num)->c_str);
	return *this;
}

SerialStream &SerialStream::operator<<(const int &num)
{
	this->write(intToStr(num)->c_str);
	return *this;
}

SerialStream &SerialStream::operator<<(const unsigned int &num)
{
	this->write(uintToStr(num)->c_str);
	return *this;
}

SerialStream &SerialStream::operator<<(const unsigned long &num)
{
	this->write(uintToStr(num)->c_str);
	return *this;
}

SerialStream &SerialStream::operator<<(void (*manipulator)(SerialStream *))
{
	manipulator(this);
	return *this;
}

void SerialStream::write(const char *str)
{
	this->_serial.write(str);
}

void SerialStream::flush()
{
	this->_serial.flush();
}

void endl(SerialStream *serial_stream)
{
	serial_stream->write("\n");
	serial_stream->flush();
}