- Timestamp:
- 11/12/2017 08:54:54 PM (7 years ago)
- Branches:
- master
- Children:
- 28c0933
- Parents:
- 10c7b46
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
ram/sqdisp.c
r10c7b46 ra250437 232 232 void dsqlin(int8_t *buf, int16_t slin) 233 233 { 234 register struct seqent *sp; 235 register int16_t i, t1, t2; 234 struct seqent *sp; 235 int16_t i; 236 uint16_t t1, t2; 236 237 237 238 sp = &seqtab[slin]; … … 240 241 t2 = sp->seqtime - (t1 * 100); 241 242 242 sprintf(buf, " %03 u%02u.%02u", slin, t1, t2);243 sprintf(buf, " %03d %02u.%02u", slin, t1, t2); 243 244 244 245 dsact(&buf[12], sp->seqact1, sp->seqdat1); … … 317 318 /* row 0 */ 318 319 319 memset(linbuf, '\261', 63);320 memset(linbuf, (uint8_t)'\261', 63); 320 321 linbuf[0] = '\272'; 321 322 linbuf[48] = '\267'; … … 351 352 /* row 18 */ 352 353 353 memset(linbuf, '\261', 63);354 memset(linbuf, (uint8_t)'\261', 63); 354 355 linbuf[ 0] = '\266'; 355 356 linbuf[48] = '\265'; … … 364 365 /* row 24 */ 365 366 366 memset(linbuf, '\261', 63);367 memset(linbuf, (uint8_t)'\261', 63); 367 368 linbuf[ 0] = '\271'; 368 369 linbuf[62] = '\270';
Note:
See TracChangeset
for help on using the changeset viewer.