Attention is currently required from: Thomas Heijligen, Edward O'Callaghan, Nicholas Chin.
4 comments:
File vl805.c:
Patch Set #19, Line 72: unsigned int curreadcnt;
Delete, similar to what you did for curwritecnt before
Done
Patch Set #19, Line 91: curreadcnt = min(4, readcnt - j);
Change to `uint32_t unsigned int curreadcnt;`, similar to what you did for `curwritecnt` above
I did this so it would compile, and its just what I did before, just a different name of course:
uint32_t curreadcnt = min(4, readcnt - j);
Patch Set #19, Line 120: 64 * 1024, /* Maximum data read size in one go (excluding opcode+address). */
This can be `MAX_DATA_READ_UNLIMITED`
Done
Patch Set #19, Line 121: 256, /* Maximum data write size in one go (excluding opcode+address). */
This can be `MAX_DATA_WRITE_UNLIMITED`
Done
To view, visit change 72057. To unsubscribe, or for help writing mail filters, visit settings.