This file is indexed.

/usr/include/lime/LMS7002M_RegistersMap.h is in liblimesuite-dev 17.12.0+dfsg-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
#ifndef LMS7002M_REGISTERS_MAP_H
#define LMS7002M_REGISTERS_MAP_H

#include <vector>
#include <map>
#include <cstdint>
struct LMS7Parameter;
namespace lime{



class LMS7002M_RegistersMap
{
public:
    struct Register
    {
        uint16_t value;
        uint16_t defaultValue;
        uint16_t mask;
    };

    LMS7002M_RegistersMap();
    ~LMS7002M_RegistersMap();

    uint16_t GetValue(uint8_t channel, uint16_t address) const;
    void SetValue(uint8_t channel, const uint16_t address, const uint16_t value);

    void InitializeDefaultValues(const std::vector<const LMS7Parameter*> parameterList);
    uint16_t GetDefaultValue(uint16_t address) const;
    std::vector<uint16_t> GetUsedAddresses(const uint8_t channel) const;

    LMS7002M_RegistersMap &operator=(const LMS7002M_RegistersMap &other)
    {
        mChannelA.insert(other.mChannelA.begin(), other.mChannelA.end());
        mChannelB.insert(other.mChannelB.begin(), other.mChannelB.end());
        return *this;
    }

protected:
    std::map<const uint16_t, Register> mChannelA;
    std::map<const uint16_t, Register> mChannelB;
};

}
#endif