blob: 8624f0e3ced536e8482f5ed01818fcff86cf2507 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
//
// 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
namespace uhd { namespace usrp { namespace e300 {
namespace common {
void load_fpga_image(const std::string &path);
};
}}}
#endif // INCLUDED_E300_COMMON_HPP
|