Updated TDF pinout and pin extraction to align with new TDF format

This commit is contained in:
Nav
2024-03-09 01:49:04 +00:00
parent 024058db53
commit e5cac7e39c
5 changed files with 117 additions and 110 deletions

View File

@@ -0,0 +1,20 @@
#pragma once
#include <string>
namespace Targets::TargetDescription
{
struct Pin
{
std::string position;
std::string pad;
Pin(
const std::string& position,
const std::string& pad
)
: position(position)
, pad(pad)
{}
};
}