mirror of
https://github.com/saymrwulf/uhd.git
synced 2026-05-16 21:10:10 +00:00
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.
18 lines
465 B
Python
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__()
|