From 1e4eb5ec391a26b1da8e3e7609ffc92768df1976 Mon Sep 17 00:00:00 2001 From: David Shah Date: Tue, 20 Oct 2020 09:49:40 +0100 Subject: [PATCH] nexus: Ignore some PDC commands Signed-off-by: David Shah --- nexus/pdc.cc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nexus/pdc.cc b/nexus/pdc.cc index 2622bfe1..189977e9 100644 --- a/nexus/pdc.cc +++ b/nexus/pdc.cc @@ -203,6 +203,10 @@ struct PDCParser return cmd_ldc_set_location(arguments); else if (cmd == "ldc_set_port") return cmd_ldc_set_port(arguments); + else if (cmd == "ldc_set_sysconfig" || cmd == "get_nets" || cmd == "create_clock") { + log_warning("%s is not yet supported!\n", cmd.c_str()); + return TCLValue(""); + } else log_error("Unsupported PDC command '%s'\n", cmd.c_str()); }