mirror of
https://github.com/saymrwulf/uhd.git
synced 2026-05-16 21:10:10 +00:00
This commit moves various magic numbers and hardware specific settings into the configuration file. It also provides default presets for said configuration files which can be inherited from. Signed-off-by: Samuel O'Brien <sam.obrien@ni.com>
10 lines
241 B
Python
10 lines
241 B
Python
presets = {}
|
|
|
|
presets['E320'] = {
|
|
'product': "e320",
|
|
'uhd_device_type': "e3xx",
|
|
'description': "E320-Series Device - SIMULATED",
|
|
'pid': 0xE320,
|
|
'dboard_class': "SimulatedCatalinaDboard",
|
|
'rfnoc_device_type': 0xE320
|
|
}
|