ttl/dio: update sysdesc default names

This commit is contained in:
2025-10-13 10:21:15 +02:00
parent fab509a7f3
commit 058474502d
4 changed files with 9 additions and 9 deletions

View File

@@ -23,7 +23,7 @@
- [Sinara 9805 RF Power Amplifier Booster](./hw/booster.md)
- [Sinara 8451 Thermostat](./hw/thermostat.md)
- [Sinara 8453 Thermostat EEM](./hw/thermostat_eem.md)
- [Sinara 2245 LVDS-TTL](./hw/rj45_lvds.md)
- [Sinara 2245 RJ45-LVDS](./hw/rj45_lvds.md)
- [Sinara 6303 CoaXPress-SFP](./hw/coaxpress_sfp.md)
- [Software/Support](./sw_sup/software_support.md)
- [Starting with ARTIQ](./sw_sup/artiq_start.md)

View File

@@ -9,7 +9,7 @@
```json
{
"type": "dio",
"board": "DIO_BNC", // or "DIO_SMA"
"board": "BNC_TTL", // or "SMA_TTL"
"hw_rev": "vX.Y", // optional
"ports": [<port num>],
"edge_counter": <bool>,

View File

@@ -9,7 +9,7 @@
[
{
"type": "dio",
"board": "DIO_MCX",
"board": "MCX_TTL",
"ports": [0],
"edge_counter": true, // optional
"bank_direction_low": "input",
@@ -17,7 +17,7 @@
},
{
"type": "dio",
"board": "DIO_MCX",
"board": "MCX_TTL",
"ports": [1],
"bank_direction_low": "output",
"bank_direction_high": "output"

View File

@@ -1,9 +1,9 @@
# Sinara 2245 "LVDS TTL" card
# Sinara 2245 RJ45-LVDS card
* [Wiki](https://github.com/sinara-hw/DIO_LVDS_RJ45/wiki)
* [Datasheet](https://m-labs.hk/docs/sinara-datasheets/2245.pdf)
LVDS is the signaling standard, RJ45 is the physical connector type.
Previously sometimes known as LVDS-TTL. LVDS is the signaling standard, RJ45 is the physical connector type.
## JSON
@@ -13,15 +13,15 @@ Be aware of the reversed EEM order on the card:
[
{
"type": "dio",
"board": "DIO_RJ45",
"board": "RJ45_LVDS",
"ports": [1],
"bank_direction_low": "input",
"bank_direction_high": "input",
"edge_counter": false // or true
},
},
{
"type": "dio",
"board": "DIO_RJ45",
"board": "RJ45_LVDS",
"ports": [0],
"bank_direction_low": "output",
"bank_direction_high": "output"