We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
#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?
@Westonsupermare Pier thanks, replaced the header files and it worked