blob: 9762f486d9bb302f0f801583d16d7feb89499488 (
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
|
//
// Copyright 2019 Ettus Research, a National Instruments Brand
//
// SPDX-License-Identifier: GPL-3.0-or-later
//
#include "x300_mb_controller.hpp"
using namespace uhd::rfnoc;
uint64_t x300_mb_controller::x300_timekeeper::get_ticks_now()
{
// tbw
return 0;
}
uint64_t x300_mb_controller::x300_timekeeper::get_ticks_last_pps()
{
// tbw
return 0;
}
void x300_mb_controller::x300_timekeeper::set_ticks_now(const uint64_t ticks)
{
// tbw
}
void x300_mb_controller::x300_timekeeper::set_ticks_next_pps(const uint64_t ticks)
{
// tbw
}
void x300_mb_controller::x300_timekeeper::set_period(const uint64_t period_ns)
{
// tbw
}
|