Updated TDF pinout and pin extraction to align with new TDF format
This commit is contained in:
20
src/Targets/TargetDescription/Pin.hpp
Normal file
20
src/Targets/TargetDescription/Pin.hpp
Normal 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)
|
||||
{}
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user