From e68ca65e9e0a1675a13e607a99f318ce5958c7e9 Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Fri, 3 Aug 2018 18:23:40 +0200 Subject: Unify interfaces for gui --- ecp5/arch.h | 2 +- ecp5/main.cc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'ecp5') diff --git a/ecp5/arch.h b/ecp5/arch.h index cd103b12..38ca7f6b 100644 --- a/ecp5/arch.h +++ b/ecp5/arch.h @@ -384,7 +384,7 @@ struct PipRange struct ArchArgs { - enum + enum ArchArgsType { NONE, LFE5U_25F, diff --git a/ecp5/main.cc b/ecp5/main.cc index f40a5e61..805c0d26 100644 --- a/ecp5/main.cc +++ b/ecp5/main.cc @@ -148,7 +148,7 @@ int main(int argc, char *argv[]) #ifndef NO_GUI if (vm.count("gui")) { Application a(argc, argv); - MainWindow w(std::move(ctx)); + MainWindow w(std::move(ctx),args); w.show(); return a.exec(); -- cgit v1.2.3 From a31c00ed96aee4e43bfafc7165d640a1d1a14a9f Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Sat, 4 Aug 2018 11:48:29 +0200 Subject: Chip selection ui for ECP5 --- ecp5/arch.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ecp5') diff --git a/ecp5/arch.h b/ecp5/arch.h index 38ca7f6b..6daf543d 100644 --- a/ecp5/arch.h +++ b/ecp5/arch.h @@ -384,7 +384,7 @@ struct PipRange struct ArchArgs { - enum ArchArgsType + enum ArchArgsTypes { NONE, LFE5U_25F, -- cgit v1.2.3