uhd/mpm/python/usrp_mpm/dboard_manager/unknown.py
Martin Braun ba00ff0cf5 Remove FSRU-related files
The FSRU (aka EISCAT) was never supported in UHD 4.0. The FPGA
repository never had the relevant files, and the block controller also
never existed. This removes all the corresponding files from MPM, as
well as some references from makefiles.
2022-02-22 14:41:19 -06:00

18 lines
465 B
Python

#
# Copyright 2017 Ettus Research, a National Instruments Company
#
# SPDX-License-Identifier: GPL-3.0-or-later
#
"""
Dummy rx board implementation module
"""
from usrp_mpm.dboard_manager import DboardManagerBase
class unknown(DboardManagerBase):
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__()