2021-04-04 21:04:12 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
2021-05-31 01:01:14 +01:00
|
|
|
namespace Bloom::Targets::TargetDescription
|
2021-04-04 21:04:12 +01:00
|
|
|
{
|
2021-05-31 01:01:14 +01:00
|
|
|
struct Pin
|
|
|
|
|
{
|
2021-04-04 21:04:12 +01:00
|
|
|
std::string pad;
|
|
|
|
|
int position;
|
|
|
|
|
};
|
|
|
|
|
|
2021-05-31 01:01:14 +01:00
|
|
|
struct Pinout
|
|
|
|
|
{
|
2021-04-04 21:04:12 +01:00
|
|
|
std::string name;
|
|
|
|
|
std::vector<Pin> pins;
|
|
|
|
|
};
|
|
|
|
|
}
|