uart/software.hpp

17 lines
289 B
C++

#pragma once
#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