0
mirror of https://github.com/OneOfEleven/uv-k5-firmware-custom.git synced 2025-06-19 14:48:03 +03:00

fix compile warning

This commit is contained in:
OneOfEleven
2023-11-03 19:51:27 +00:00
parent e2e030aed4
commit fca972a2f2
10 changed files with 105 additions and 28 deletions

View File

@ -29,9 +29,10 @@ void I2C_Start(void);
void I2C_Stop(void);
uint8_t I2C_Read(bool bFinal);
uint8_t I2C_Read_fast(bool bFinal);
int I2C_Write(uint8_t Data);
int I2C_ReadBuffer(void *pBuffer, unsigned int Size);
int I2C_ReadBuffer(void *pBuffer, unsigned int Size, const bool fast);
int I2C_WriteBuffer(const void *pBuffer, unsigned int Size);
#endif