Renamed settings to config

This commit is contained in:
2019-07-28 12:15:19 +02:00
parent ae90fdae3f
commit 29b4d85ce3
4 changed files with 44 additions and 30 deletions

View File

@@ -1 +1,16 @@
#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