|
@@ -122,20 +122,23 @@ void lpc_write_ram(struct lpc_device *dev, const struct sprog_data *d, unsigned
|
|
|
checksum = 0;
|
|
|
|
|
|
for(i=0; uuencode_line(d, buf, &offset, &checksum); i++) {
|
|
|
- if((i % 20)==19)
|
|
|
+ lpc_printf("%s\r\n", buf);
|
|
|
+ if((i % 20)==19) {
|
|
|
lpc_printf("%u\r\n", checksum);
|
|
|
+
|
|
|
+ if(lpc_getline(reply_buf)) {
|
|
|
+ if(strcmp(reply_buf, "OK\r\n")==0) {
|
|
|
+ last_offset = offset;
|
|
|
+ last_i = i;
|
|
|
+ } else {
|
|
|
+ offset = last_offset;
|
|
|
+ i = last_i;
|
|
|
+ }
|
|
|
+ } else
|
|
|
+ break;
|
|
|
+ }
|
|
|
+
|
|
|
sprog_progress((offset*100)/d->size);
|
|
|
-
|
|
|
- if(lpc_getline(reply_buf)) {
|
|
|
- if(strcmp(reply_buf, "OK\r\n")==0) {
|
|
|
- last_offset = offset;
|
|
|
- last_i = i;
|
|
|
- } else {
|
|
|
- offset = last_offset;
|
|
|
- i = last_i;
|
|
|
- }
|
|
|
- } else
|
|
|
- break;
|
|
|
}
|
|
|
|
|
|
if(offset!=d->size)
|