remove %x/%c/%p since we're not using it yet
This commit is contained in:
parent
54cb815b12
commit
82446ab787
|
|
@ -96,7 +96,8 @@ void sersendf_P(PGM_P format, ...) {
|
||||||
serwrite_int16(va_arg(args, int16_t));
|
serwrite_int16(va_arg(args, int16_t));
|
||||||
j = 0;
|
j = 0;
|
||||||
break;
|
break;
|
||||||
case 'x':
|
/* case 'x':
|
||||||
|
serial_writestr_P(str_ox);
|
||||||
if (j == 4)
|
if (j == 4)
|
||||||
serwrite_hex32(va_arg(args, uint32_t));
|
serwrite_hex32(va_arg(args, uint32_t));
|
||||||
else if (j == 1)
|
else if (j == 1)
|
||||||
|
|
@ -111,7 +112,7 @@ void sersendf_P(PGM_P format, ...) {
|
||||||
serwrite_hex16(va_arg(args, uint16_t));
|
serwrite_hex16(va_arg(args, uint16_t));
|
||||||
default:
|
default:
|
||||||
j = 0;
|
j = 0;
|
||||||
break;
|
break;*/
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue