Dev #1

Merged
Mikhail merged 3 commits from Dev into main 2025-06-10 17:31:53 -04:00
2 changed files with 25 additions and 0 deletions
Showing only changes of commit 5a62faaa35 - Show all commits

View File

@@ -0,0 +1,19 @@
#ifndef DS_I2CSCANNER_H
#define DS_I2CSCANNER_H
#include "main.h"
#ifdef STM32G0
#include "stm32g0xx_hal.h"
#endif
#ifdef STM32F0
#include "stm32f0xx_hal.h"
#endif
void DS_I2CScan(I2C_HandleTypeDef* I2C);
#endif

View File

@@ -0,0 +1,6 @@
#include "DS_I2CScanner.h"
void DS_I2CScan(I2C_HandleTypeDef *I2C)
{
}