Basic I2C functionality

This commit is contained in:
2024-12-29 16:24:54 +01:00
parent 17099b0047
commit 1e648be211
9 changed files with 416 additions and 208 deletions

View File

@@ -1,7 +1,5 @@
#pragma once
#include <ranges>
#include <sstream>
#include <string_view>
#include "stm32f401xe.h"
@@ -10,7 +8,6 @@
namespace driver::usart {
constexpr const uint8_t TX_BUFSIZE{20};
constexpr const uint8_t TX_TIMEOUT_MS{200};
class Usart {