Initial commit
This commit is contained in:
17
src/Targets/Microchip/AVR/AVR8/PartDescription/Pinout.hpp
Normal file
17
src/Targets/Microchip/AVR/AVR8/PartDescription/Pinout.hpp
Normal file
@@ -0,0 +1,17 @@
|
||||
#pragma once
|
||||
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
namespace Bloom::Targets::Microchip::Avr::Avr8Bit::PartDescription
|
||||
{
|
||||
struct Pin {
|
||||
std::string pad;
|
||||
int position;
|
||||
};
|
||||
|
||||
struct Pinout {
|
||||
std::string name;
|
||||
std::vector<Pin> pins;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user