Renamed settings to config
This commit is contained in:
15
software.hpp
15
software.hpp
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user