blob: 54452645a034c29b0c000b30172f22c7b3e10f5a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#include "stmdsp.hpp"
#include <serial/serial.h>
namespace stmdsp
{
std::list<std::string>& scanner::scan()
{
auto serialDevices = serial::list_ports();
for (auto& device : serialDevices) {
if (device.hardware_id.find(STMDSP_USB_ID) != std::string::npos)
m_devices.emplace_front(device.port);
}
return m_devices;
}
}
|