blob: 08a1b9d261e4a46f6d754e696de9b9d6c3793418 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
//
// Copyright 2014 Ettus Research LLC
// Copyright 2018 Ettus Research, a National Instruments Company
//
// SPDX-License-Identifier: GPL-3.0-or-later
//
#ifndef INCLUDED_E300_COMMON_HPP
#define INCLUDED_E300_COMMON_HPP
#include <string>
namespace uhd { namespace usrp { namespace e300 {
namespace common {
void load_fpga_image(const std::string &path);
};
}}}
#endif // INCLUDED_E300_COMMON_HPP
|