FreeCalypso > hg > freecalypso-tools
view target-utils/loadagent/binload.c @ 995:74024eb17e04
fc-loadtool help: improve language regarding 16 MiB flash chips
In FC project history, 16 MiB flash originally meant Pirelli DP-L10.
Then we got FCDEV3B with the same flash (our own design), but now we are
discovering more Calypso devices that used such large flash, both late
Calypso era (Sony Ericsson K2x0) as well as much earlier ones (FIC FLUID
devices.txt file with 2004 dates, Leonardo+ rev 5). Hence we need to
migrate to more generic or neutral language in associated documentation,
without giving elevated status to specific examples that drove our
early project history.
| author | Mychaela Falconia <falcon@freecalypso.org> |
|---|---|
| date | Sun, 03 Dec 2023 21:11:12 +0000 |
| parents | 3229940734e5 |
| children |
line wrap: on
line source
/* * Here we are going to implement our new binary protocol for RAM loading * for a faster version of fc-xram. */ #include "types.h" void cmd_binary_memload() { int state, recptr, extlen, datalen; u8 record[256], cksum; u32 addr; u16 rec_count; int c, i; rec_count = 0; for (state = 0; ; ) { switch (state) { case 0: c = serial_in_timeout(3000000); /* 1.8 s */ if (c < 0 || c == 0x04) return; if (c == 0x05) { serial_out(0x06); /* ACK */ serial_out(rec_count >> 8); serial_out(rec_count); continue; } if (c >= 6) { record[0] = c; extlen = c + 1; datalen = c - 5; recptr = 1; state = 1; continue; } serial_out(0x15); /* NAK */ state = 2; continue; case 1: c = serial_in_timeout(1000000); /* 0.6 s */ if (c < 0) { serial_out(0x15); /* NAK */ state = 2; continue; } record[recptr++] = c; if (recptr < extlen) continue; /* verify checksum */ cksum = 0; for (i = 0; i < extlen; i++) cksum += record[i]; if (cksum != 0xFF) { serial_out(0x15); /* NAK */ state = 2; continue; } addr = ((u32)record[1] << 24) | ((u32)record[2] << 16) | ((u32)record[3] << 8) | (u32)record[4]; memcpy(addr, record + 5, datalen); rec_count++; state = 0; continue; default: c = serial_in_timeout(10000000); /* 6.15 s */ if (c < 0) return; serial_out_if_empty(0x15); /* NAK */ continue; } } }
