X-Git-Url: https://sigrok.org/gitweb/?p=sigrok-cli.git;a=blobdiff_plain;f=show.c;h=dbbc63288d7bf11cabea25f721c9032a93001633;hp=73240eed255ac5aaf2638dc73742e522b0f13b02;hb=682fac3d1f9078329b7481aab4a2800d6a8bcee4;hpb=c4af23212178e01e5b5016d0d50fbd2d825615ae diff --git a/show.c b/show.c index 73240ee..dbbc632 100644 --- a/show.c +++ b/show.c @@ -770,6 +770,15 @@ static void show_pd_detail_single(const char *pd) } else { printf("None.\n"); } + printf("Decoder tags:\n"); + if (dec->tags) { + for (l = dec->tags; l; l = l->next) { + str = l->data; + printf("- %s\n", str); + } + } else { + printf("None.\n"); + } printf("Annotation classes:\n"); if (dec->annotations) { for (l = dec->annotations; l; l = l->next) {