2017-03-22 02:46:50 +00:00
|
|
|
#
|
2018-02-20 00:53:15 +00:00
|
|
|
# Copyright 2017 Ettus Research, a National Instruments Company
|
2017-03-22 02:46:50 +00:00
|
|
|
#
|
2018-02-20 00:53:15 +00:00
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
2017-03-22 02:46:50 +00:00
|
|
|
#
|
|
|
|
|
"""
|
2022-02-21 10:17:25 +00:00
|
|
|
Dummy rx board implementation module
|
2017-03-22 02:46:50 +00:00
|
|
|
"""
|
2017-12-12 17:59:50 +00:00
|
|
|
from usrp_mpm.dboard_manager import DboardManagerBase
|
2017-03-22 02:46:50 +00:00
|
|
|
|
2017-03-28 01:03:52 +00:00
|
|
|
class unknown(DboardManagerBase):
|
2017-03-22 02:46:50 +00:00
|
|
|
hw_pid = 0
|
|
|
|
|
special_eeprom_addrs = {}
|
|
|
|
|
|
|
|
|
|
def __init__(self, spi_devices, eeprom_data):
|
|
|
|
|
self._eeprom = eeprom_data[0] # save eeprom header
|
|
|
|
|
# Do own init
|
|
|
|
|
super(unknown, self).__init__()
|