Refactored class names to start with capital letter

This commit is contained in:
2019-07-28 17:57:49 +02:00
parent 8e0ba5a463
commit 4a9cee922a
4 changed files with 43 additions and 43 deletions

View File

@@ -6,8 +6,8 @@
namespace uart {
template <io::P rxPin, io::P txPin, class cfg = config<>>
class software {
template <io::P rxPin, io::P txPin, class cfg = Config<>>
class Software {
public:
using data_t = typename cfg::data_t;
static constexpr auto DATA_BITS = cfg::DATA_BITS;