From 2125a438b4dc738a01a472414489d118ec293e03 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20Nohlg=C3=A5rd?= <joakim.nohlgard@eistec.se> Date: Fri, 16 Feb 2018 22:40:03 +0100 Subject: [PATCH] sys/phydat: Align numbers, remove index if dim == 1 --- sys/phydat/phydat_str.c | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/sys/phydat/phydat_str.c b/sys/phydat/phydat_str.c index 2a73661f70..0196e74ee1 100644 --- a/sys/phydat/phydat_str.c +++ b/sys/phydat/phydat_str.c @@ -49,13 +49,18 @@ void phydat_dump(phydat_t *data, uint8_t dim) scale_prefix = phydat_prefix_from_scale(data->scale); } - printf("\t[%i] ", (int)i); - + printf("\t"); + if (dim > 1) { + printf("[%u] ", (unsigned int)i); + } + else { + printf(" "); + } if (scale_prefix) { - printf("%i %c", (int)data->val[i], scale_prefix); + printf("%6d %c", (int)data->val[i], scale_prefix); } else if (data->scale == 0) { - printf("%i", (int)data->val[i]); + printf("%6d", (int)data->val[i]); } else if ((data->scale > -5) && (data->scale < 0)) { char num[8]; -- GitLab