我想模仿AT24C256(32K)EEPROM,于是我开了一个32K的数组,就出现了下面的错误
1 float EEPROM_StoreBuf[512][64];
错误:
Error: L6406E: No space in execution regions with .ANY selector matching myi2c.o(.bss).
如果真想模拟EEPROM的话,只能用多少开多少
1 float EEPROM_StoreBuf[2][64];