2019-09-26 18:29:20 +02:00
|
|
|
#ifndef BOARD_HPP
|
|
|
|
|
#define BOARD_HPP
|
|
|
|
|
|
|
|
|
|
#include <map>
|
|
|
|
|
|
|
|
|
|
static std::map <std::string, std::string > board_list = {
|
|
|
|
|
{"arty", "digilent"},
|
|
|
|
|
{"cyc1000", "ft2232"},
|
2019-11-18 16:05:22 +01:00
|
|
|
{"de0nano", "usbblaster"},
|
2019-12-06 12:09:21 +01:00
|
|
|
{"machXO3SK", "ft2232"},
|
2019-12-06 07:29:06 +01:00
|
|
|
{"littleBee", "ft2232"}
|
2019-09-26 18:29:20 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|