uart/software.hpp

19 lines
308 B
C++
Raw Normal View History

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