From 4c167f5280a49683ab9559b789805f1c94213c2f Mon Sep 17 00:00:00 2001 From: "joachim.schmidt" <joachim.schmidt@hesge.ch> Date: Thu, 3 Sep 2020 13:29:55 +0200 Subject: [PATCH] Creation of a JSON configuration file for the project and creation of a JSON configuration file for the Phy Aurora component. --- tools/config/phy_aurora.json | 17 +++++++++++++++++ tools/config/scalp_firmware.json | 17 +++++++++++++++++ 2 files changed, 34 insertions(+) create mode 100644 tools/config/phy_aurora.json create mode 100644 tools/config/scalp_firmware.json diff --git a/tools/config/phy_aurora.json b/tools/config/phy_aurora.json new file mode 100644 index 0000000..37d71f4 --- /dev/null +++ b/tools/config/phy_aurora.json @@ -0,0 +1,17 @@ +{ + "author" : { + "name" : "Joachim Schmidt", + "email" : "<joachim.schmidt@hesge.ch>" + }, + "project" : { + "name" : "phy_aurora", + "type" : "COMP_PRJ_TYPE", + "category" : "IPS", + "vivado_version" : "2019.2", + "target_language" : "VHDL" + }, + "hardware": { + "part_name": "xc7k325tffg900-2", + "board_name": "SCALP" + } +} diff --git a/tools/config/scalp_firmware.json b/tools/config/scalp_firmware.json new file mode 100644 index 0000000..747420d --- /dev/null +++ b/tools/config/scalp_firmware.json @@ -0,0 +1,17 @@ +{ + "author" : { + "name" : "Joachim Schmidt", + "email" : "<joachim.schmidt@hesge.ch>" + }, + "project" : { + "name" : "scalp_firmware", + "type" : "DESIGN_PRJ_TYPE", + "category" : "DESIGNS", + "vivado_version" : "2019.2", + "target_language" : "VHDL" + }, + "hardware" : { + "part_name" : "xc7z015clg485-2", + "board_name" : "SCALP" + } +} -- GitLab