aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/usrp_clock/octoclock/octoclock_impl.hpp
blob: d334da3efe3994e2a52c9b60de5fa70d896b42c8 (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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
//
// Copyright 2014,2016 Ettus Research LLC
// Copyright 2018 Ettus Research, a National Instruments Company
//
// SPDX-License-Identifier: GPL-3.0-or-later
//

#ifndef INCLUDED_OCTOCLOCK_IMPL_HPP
#define INCLUDED_OCTOCLOCK_IMPL_HPP

#include <boost/shared_ptr.hpp>
#include <boost/thread.hpp>

#include <uhd/device.hpp>
#include <uhd/stream.hpp>
#include <uhd/usrp/gps_ctrl.hpp>
#include <uhd/usrp_clock/octoclock_eeprom.hpp>
#include <uhd/types/device_addr.hpp>
#include <uhd/types/dict.hpp>
#include <uhd/types/sensors.hpp>

#include "common.h"

uhd::device_addrs_t octoclock_find(const uhd::device_addr_t &hint);

/*!
 * OctoClock implementation guts
 */
class octoclock_impl : public uhd::device{
public:
    octoclock_impl(const uhd::device_addr_t &);
    ~octoclock_impl(void) {};

    uhd::rx_streamer::sptr get_rx_stream(const uhd::stream_args_t &args);

    uhd::tx_streamer::sptr get_tx_stream(const uhd::stream_args_t &args);

    bool recv_async_msg(uhd::async_metadata_t&, double);

private:
    struct oc_container_type{
        uhd::usrp_clock::octoclock_eeprom_t eeprom;
        octoclock_state_t state;
        uhd::transport::udp_simple::sptr ctrl_xport;
        uhd::transport::udp_simple::sptr gpsdo_xport;
        uhd::gps_ctrl::sptr gps;
    };
    uhd::dict<std::string, oc_container_type> _oc_dict;
    uint32_t _sequence;
	uint32_t _proto_ver;

    void _set_eeprom(const std::string &oc, const uhd::usrp_clock::octoclock_eeprom_t &oc_eeprom);

    uint32_t _get_fw_version(const std::string &oc);

    void _get_state(const std::string &oc);

    uhd::sensor_value_t _ext_ref_detected(const std::string &oc);

    uhd::sensor_value_t _gps_detected(const std::string &oc);

    uhd::sensor_value_t _which_ref(const std::string &oc);

    uhd::sensor_value_t _switch_pos(const std::string &oc);

    uint32_t _get_time(const std::string &oc);

    std::string _get_images_help_message(const std::string &addr);

    boost::mutex _device_mutex;
};

#endif /* INCLUDED_OCTOCLOCK_IMPL_HPP */