diff options
author | Joerg Hofrichter <joerg.hofrichter@ni.com> | 2020-01-07 09:59:37 +0100 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2020-01-22 12:01:22 -0800 |
commit | bc975586cf6aa5d1c181f26ea71ccecaefcfda42 (patch) | |
tree | 52b4e58ec19f7b29e69d947c65a4ade8af546c4d | |
parent | 898529dc409137ce29deac5c90dccbb343cb1bb1 (diff) | |
download | uhd-bc975586cf6aa5d1c181f26ea71ccecaefcfda42.tar.gz uhd-bc975586cf6aa5d1c181f26ea71ccecaefcfda42.tar.bz2 uhd-bc975586cf6aa5d1c181f26ea71ccecaefcfda42.zip |
docs: n3xx: document eeprom flags
Add a subsection to both N310- and N320 specific features to
document the EEPROM flags simliar to as it is done in the E320
documentation.
Signed-off-by: Joerg Hofrichter <joerg.hofrichter@ni.com>
-rw-r--r-- | host/docs/usrp_n3xx.dox | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/host/docs/usrp_n3xx.dox b/host/docs/usrp_n3xx.dox index 7c3471efe..62089561f 100644 --- a/host/docs/usrp_n3xx.dox +++ b/host/docs/usrp_n3xx.dox @@ -1266,6 +1266,23 @@ Slave 6 | 4001_8000 - 4001_bfff | dboard-regs1 | Daughterboard control, sl <tr><td rowspan="1">Slave 6 <td>4001_8000 - 4001_bfff <td>see above <td>-<td>same as Slave 5<td> </table> +\subsection n3xx_mg_eeprom_flags EEPROM flags + +EEPROM flags can be set with + + $ eeprom-set-flags 0xFLAGS + +where FLAGS is the hex number that you can construct with the following table of bits: + +| Bit | Description | +|-----|-----------------------| +| 0 | Auto-boot (1=on) | +| 2 | TPM (0=present) | + +For example, to set your device to auto-boot, with TPM, the flag value is 0x1, so + + $ eeprom-set-flags 0x1 + \section n3xx_rh N32x-specific Features \subsection n3xx_rh_panels Front and Rear Panel @@ -1408,5 +1425,22 @@ QSFP+ lane 1 | Unused | Unused | 10 GbE | Aurora QSFP+ lane 2 | Unused | Unused | Unused | Aurora QSFP+ lane 3 | Unused | Unused | Unused | Aurora +\subsection n3xx_rh_eeprom_flags EEPROM flags + +EEPROM flags can be set with + + $ eeprom-set-flags 0xFLAGS + +where FLAGS is the hex number that you can construct with the following table of bits: + +| Bit | Description | +|-----|-----------------------| +| 0 | Auto-boot (1=on) | +| 2 | TPM (0=present) | + +For example, to set your device to auto-boot, with TPM, the flag value is 0x1, so + + $ eeprom-set-flags 0x1 + */ // vim:ft=doxygen: |