pratik wrote:
Hello,
I will forward the issue to engineers.
Meanwhile, let me know which flash chip you are using (part number).
Code:
> esptool.py flash_id
Connecting...
Manufacturer: e0
Device: 4016
pratik wrote:
What is your test address? Is it properly boundary-aligned?
Statistics: Posted by shein — Tue Jul 19, 2016 4:31 pm
Statistics: Posted by Guest — Mon Jul 18, 2016 7:22 pm
Statistics: Posted by shein — Mon Jul 18, 2016 3:19 pm
Statistics: Posted by shein — Sun Jul 17, 2016 4:27 pm
Statistics: Posted by Guest — Sat Jul 16, 2016 11:20 pm
Code:
int i;
uint32_t buf[16];
SPI(0).ADDR = TEST_ADDR | (64 << 24);
SPI(0).CMD = SPI_CMD_READ;
while (SPI(0).CMD) {}; // operation never ends, loop forever
for (i = 0; i < 16; i++) {
buf[i] = SPI(0).W[i];
}
Statistics: Posted by shein — Sat Jul 16, 2016 10:06 pm