c语言是弱项,对于结构体和指针也一直很头疼。
typedef struct
{
unsigned int Tep; //
unsigned char Sec;
unsigned int Hol;
}PPP;
extern PPP P11,P12,P13,P14,P21,P22,P23,P24;
void EEPROM_WriteBuf(unsigned char *buf, int count, unsigned int addr)
{
while(count--)
{
EEPROM_ByteWrite(addr++,*buf++);
}
}
想把如上结构体的内容写入到24C02,请不吝赐教。
|