uhd/mpm/python/usrp_mpm/dboard_manager/unknown.py
Martin Braun e9288a439c mpm: Update all license headers
- Fix typo in company name (missing 'a')
- Updated SPDX license identifier to version 3.0
2018-02-19 16:55:08 -08:00

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__()