2019-09-26 18:29:20 +02:00
|
|
|
#ifndef PART_HPP
|
|
|
|
|
#define PART_HPP
|
|
|
|
|
|
|
|
|
|
#include <map>
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
|
std::string funder;
|
|
|
|
|
std::string model;
|
|
|
|
|
std::string family;
|
|
|
|
|
} fpga_model;
|
|
|
|
|
|
|
|
|
|
static std::map <int, fpga_model> fpga_list = {
|
2019-10-05 18:10:04 +02:00
|
|
|
{0x0362D093, {"xilinx", "artix a7 35t", "xc7a35"}},
|
2019-09-26 18:29:20 +02:00
|
|
|
{0x020f30dd, {"altera", "cyclone 10 LP", "10CL025"}}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|