initial commit

This commit is contained in:
Gwenhael Goavec-Merou
2019-09-26 18:29:20 +02:00
parent 62af4cd266
commit 4530942e17
22 changed files with 2836 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
#ifndef CABLE_HPP
#define CABLE_HPP
#include <map>
#include "ftdipp_mpsse.hpp"
static std::map <std::string, FTDIpp_MPSSE::mpsse_bit_config > cable_list = {
{"digilent", {0x0403, 0x6010, 0xe8, 0xeb, 0x00, 0x60}},
{"ft2232", {0x0403, 0x6010, 0x08, 0x0B, 0x08, 0x0B}},
{"altera", {0xcafe, 0xbebe, 0x08, 0x0B, 0x08, 0x0B}}
};
#endif