Home | History | Annotate | Download | only in cmd

Lines Matching refs:record

87 	printf("## Ready for S-Record download ...\n");
104 printf("## S-Record download aborted\n");
130 char record[SREC_MAXRECLEN + 1]; /* buffer for one S-Record */
133 int type; /* return code for record type */
134 ulong addr; /* load address from S-Record */
141 while (read_record(record, SREC_MAXRECLEN + 1) >= 0) {
142 type = srec_decode(record, &binlen, &addr, binbuf);
145 return (~0); /* Invalid S-Record */
281 printf("## Ready for S-Record upload, press ENTER to proceed ...\n");
287 printf("## S-Record upload aborted\n");
289 printf("## S-Record upload complete\n");
317 char record[2*SREC_BYTES_PER_RECORD+16]; /* buffer for one S-Record */
336 /* enough data collected for one record: dump it */
337 if(reclen) { /* build & write a data record: */
352 /* output one record: */
353 sprintf(record, SREC3_FORMAT, length, address, data, checksum);
354 if(write_record(record))
363 if(write_record(SREC3_END)) /* write the final record */
1016 "load S-Record file over serial line",
1018 " - load S-Record file over serial line"
1025 "load S-Record file over serial line",
1027 " - load S-Record file over serial line with offset 'off'"
1040 "save S-Record file over serial line",
1042 " - save S-Record file over serial line"
1048 "save S-Record file over serial line",
1050 " - save S-Record file over serial line with offset 'off' and size 'size'"