Introduced a generic target description file class with an AVR8 derivation. Moved AVR8 target description files
16 lines
252 B
C++
16 lines
252 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <optional>
|
|
|
|
namespace Bloom::Targets::TargetDescription
|
|
{
|
|
struct Signal
|
|
{
|
|
std::string padName;
|
|
std::string function;
|
|
std::optional<int> index;
|
|
std::string group;
|
|
};
|
|
}
|