blob: d833b3715342abfebaf9f3c58bb6973c3753cc69 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
//
// Copyright 2013-2014 Ettus Research LLC
// Copyright 2018 Ettus Research, a National Instruments Company
//
// SPDX-License-Identifier: GPL-3.0-or-later
//
#include "x300_regs.hpp"
#include "x300_impl.hpp"
using namespace uhd;
using namespace uhd::usrp;
/***********************************************************************
* Hooks for get_tx_stream() and get_rx_stream()
**********************************************************************/
device_addr_t x300_impl::get_rx_hints(size_t mb_index)
{
device_addr_t rx_hints = _mb[mb_index].recv_args;
return rx_hints;
}
device_addr_t x300_impl::get_tx_hints(size_t mb_index)
{
device_addr_t tx_hints = _mb[mb_index].send_args;
return tx_hints;
}
void x300_impl::post_streamer_hooks(direction_t dir)
{
if (dir != TX_DIRECTION) {
return;
}
// Loop through all tx streamers. Find all radios connected to one
// streamer. Sync those.
for(const boost::weak_ptr<uhd::tx_streamer> &streamer_w: _tx_streamers.vals()) {
const boost::shared_ptr<device3_send_packet_streamer> streamer =
boost::dynamic_pointer_cast<device3_send_packet_streamer>(streamer_w.lock());
if (not streamer) {
continue;
}
std::vector<rfnoc::x300_radio_ctrl_impl::sptr> radio_ctrl_blks =
streamer->get_terminator()->find_downstream_node<rfnoc::x300_radio_ctrl_impl>();
try {
//UHD_LOGGER_INFO("X300") << "[X300] syncing " << radio_ctrl_blks.size() << " radios " ;
rfnoc::x300_radio_ctrl_impl::synchronize_dacs(radio_ctrl_blks);
}
catch(const uhd::io_error &ex) {
throw uhd::io_error(str(boost::format("Failed to sync DACs! %s ") % ex.what()));
}
}
}
// vim: sw=4 expandtab:
|