mirror of
https://github.com/saymrwulf/uhd.git
synced 2026-05-16 21:10:10 +00:00
18 lines
455 B
Python
18 lines
455 B
Python
#
|
|
# Copyright 2017 Ettus Research, National Instruments Company
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0
|
|
#
|
|
"""
|
|
EISCAT 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__()
|