From: Sebastien Bourdeauducq Date: Mon, 18 Nov 2013 19:37:27 +0000 (+0100) Subject: videomixer: add PLL dump command X-Git-Tag: 24jan2021_ls180~2791 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=72001addcb2e471fdfd965f66941b2fa308ab121;p=litex.git videomixer: add PLL dump command --- diff --git a/software/videomixer/ci.c b/software/videomixer/ci.c index 57ea2fac..06fdf98b 100644 --- a/software/videomixer/ci.c +++ b/software/videomixer/ci.c @@ -6,6 +6,7 @@ #include "dvisampler0.h" #include "dvisampler1.h" #include "processor.h" +#include "pll.h" #include "ci.h" static void print_mem_bandwidth(void) @@ -71,6 +72,9 @@ void ci_service(void) case 'm': print_mem_bandwidth(); break; - } + case 'p': + pll_dump(); + break; + } } }