6
0
1
27
168
81
235
EEPROM读、擦、写。 unsigned int eeprom_read(unsigned int address) { // GIE =0; unsigned int data = 0; PMCON1bits.CFGS = 0;//访问闪存程序存储器 PMADRH = address / 256; PMADRL = address % 2...