blob: 8aae352b16f1abeb9acf009ba18b10e903375ea9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
//
// Copyright 2014 Ettus Research LLC
//
// SPDX-License-Identifier: GPL-3.0
//
#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
|