2019-07-27 18:55:17 +02:00
|
|
|
#pragma once
|
2019-07-28 12:15:19 +02:00
|
|
|
|
|
|
|
#include "../io/io.hpp"
|
|
|
|
|
|
|
|
namespace uart {
|
|
|
|
|
|
|
|
template <const io::P rxPin, const io::P txPin, class config>
|
|
|
|
class software {
|
|
|
|
public:
|
|
|
|
using data_t = typename config::data_t;
|
|
|
|
static constexpr auto DATA_BITS = config::DATA_BITS;
|
|
|
|
|
|
|
|
static void init() {}
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace uart
|