#pragma once #include "config.hpp" #include "../io/io.hpp" namespace uart { template > class software { public: using data_t = typename config::data_t; static constexpr auto DATA_BITS = config::DATA_BITS; static void init() {} }; } // namespace uart