16 lines
256 B
C
16 lines
256 B
C
#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, uint8_t *Result, uint8_t maxNumResults);
|
|
|
|
#endif |