diff options
| author | Martin Braun <martin.braun@ettus.com> | 2021-06-28 17:47:21 +0200 | 
|---|---|---|
| committer | Aaron Rossetto <aaron.rossetto@ni.com> | 2021-06-28 13:46:08 -0500 | 
| commit | 6ce7ec8d5cecfba5db60b442392d2a83bd8dcec4 (patch) | |
| tree | 124ec9448f7c75c7e29759c2950d41ed60602268 /host/examples | |
| parent | 78e24a4b3b39f03437dca9e818494ef2eba90a39 (diff) | |
| download | uhd-6ce7ec8d5cecfba5db60b442392d2a83bd8dcec4.tar.gz uhd-6ce7ec8d5cecfba5db60b442392d2a83bd8dcec4.tar.bz2 uhd-6ce7ec8d5cecfba5db60b442392d2a83bd8dcec4.zip  | |
examples: Fix icores example to match current RFNoC specs
The YAML file was using float-versions, not string versions.
Diffstat (limited to 'host/examples')
| -rw-r--r-- | host/examples/rfnoc-example/icores/x310_rfnoc_image_core.yml | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/host/examples/rfnoc-example/icores/x310_rfnoc_image_core.yml b/host/examples/rfnoc-example/icores/x310_rfnoc_image_core.yml index c9f982c62..e5e4c375f 100644 --- a/host/examples/rfnoc-example/icores/x310_rfnoc_image_core.yml +++ b/host/examples/rfnoc-example/icores/x310_rfnoc_image_core.yml @@ -3,8 +3,8 @@  schema: rfnoc_imagebuilder_args         # Identifier for the schema used to validate this file  copyright: 'Ettus Research, A National Instruments Brand' # Copyright information used in file headers  license: 'SPDX-License-Identifier: LGPL-3.0-or-later' # License information used in file headers -version: 1.0                            # File version -rfnoc_version: 1.0                      # RFNoC protocol version +version: '1.0'                          # File version (must be string so we can distinguish 1.1 and 1.10) +rfnoc_version: '1.0'                    # RFNoC protocol version  chdr_width: 64                          # Bit width of the CHDR bus for this image  device: 'x310'  default_target: 'X310_HG'  | 
