13 lines
200 B
C++
13 lines
200 B
C++
|
|
#ifndef BOARD_HPP
|
||
|
|
#define BOARD_HPP
|
||
|
|
|
||
|
|
#include <map>
|
||
|
|
|
||
|
|
static std::map <std::string, std::string > board_list = {
|
||
|
|
{"arty", "digilent"},
|
||
|
|
{"cyc1000", "ft2232"},
|
||
|
|
{"de0nano", "usbblaster"}
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|