Files
BloomPatched/src/Targets/TargetDescription/Variant.hpp
Nav a65cc0b5c0 More TDF refactoring
Moved address space, module, property group, variant, pinout and peripheral module extraction to TDF initialisation.
Also some other bits of tidying.
2021-06-06 20:06:43 +01:00

15 lines
231 B
C++

#pragma once
#include <string>
namespace Bloom::Targets::TargetDescription
{
struct Variant
{
std::string name;
std::string pinoutName;
std::string package;
bool disabled = false;
};
}