uhd/mpm/python/usrp_mpm/dboard_manager/unknown.py

19 lines
465 B
Python
Raw Normal View History

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