mirror of
https://github.com/saymrwulf/uhd.git
synced 2026-05-15 21:01:26 +00:00
- Fix typo in company name (missing 'a') - Updated SPDX license identifier to version 3.0
18 lines
466 B
Python
18 lines
466 B
Python
#
|
|
# Copyright 2017 Ettus Research, a National Instruments Company
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
#
|
|
"""
|
|
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__()
|