diff --git a/Inc/DS_I2CScanner.h b/Inc/DS_I2CScanner.h index e69de29..5b5908a 100644 --- a/Inc/DS_I2CScanner.h +++ b/Inc/DS_I2CScanner.h @@ -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 \ No newline at end of file diff --git a/Src/DS_I2CScanner.c b/Src/DS_I2CScanner.c index e69de29..fb5d0d0 100644 --- a/Src/DS_I2CScanner.c +++ b/Src/DS_I2CScanner.c @@ -0,0 +1,6 @@ +#include "DS_I2CScanner.h" + +void DS_I2CScan(I2C_HandleTypeDef *I2C) +{ + +} \ No newline at end of file