Added STM32 platform for debugging and development

This commit is contained in:
Emanuele Trabattoni
2025-06-27 18:55:20 +02:00
parent 01db0e543f
commit 3d2d44c0bb
9 changed files with 171 additions and 94 deletions

View File

@@ -1,4 +1,7 @@
#pragma once
#include <DebugLog.h>
#include <Arduino.h>
#include <Wire.h>
#include <vector>
#include <mutex>
@@ -13,7 +16,7 @@ namespace drivers
{
private:
bool isInitialized = false;
std::mutex busy;
//std::mutex busy;
public:
I2C(void);