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