Made physical interface enum more generic (moved out of AVR8-specific context)

This commit is contained in:
Nav
2024-02-15 21:24:41 +00:00
parent f33b4d8c70
commit 7e9e28286f
20 changed files with 156 additions and 160 deletions

View File

@@ -6,6 +6,8 @@
#include <optional>
#include <yaml-cpp/yaml.h>
#include "src/Targets/TargetPhysicalInterface.hpp"
/*
* Currently, all user configuration is stored in a YAML file (bloom.yaml), in the user's project directory.
*
@@ -44,6 +46,12 @@ struct TargetConfig
*/
std::string name;
/**
* The physical interface is the interface used for communication between the debug tool and the connected
* target.
*/
Targets::TargetPhysicalInterface physicalInterface;
/**
* The name of the selected target variant.
*