This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

i2c.h(4): error C132: 'I2CInit': not in formal parameter list

#ifndef _I2C_
#define _I2C_

void I2CInit(void);
void I2CStart(void);
void I2CRestart(void);
void I2CStop(void);
void I2CAck(void);
void I2CNak(void);
void I2CSend(unsigned char);
char I2CRead(unsigned char);
void I2CSendAddr(unsigned char, unsigned char);

#endif

Im getting a "not in formal parameter list" error on first line. Any ideas?