print uint8_t with width 2
| 1283 | |
| 1284 | // print uint8_t with width 2 |
| 1285 | static void print2u(const uint8_t v) { |
| 1286 | if (v < 10) SERIAL_CHAR('0'); |
| 1287 | SERIAL_ECHO(v); |
| 1288 | } |
| 1289 | |
| 1290 | /** |
| 1291 | * %Print a directory date field to Serial. |
no test coverage detected