Skip to content

Commit

Permalink
Merge pull request #100 from efabless/pins-documentation
Browse files Browse the repository at this point in the history
added Imin and Imax to the pin entries
  • Loading branch information
mole99 authored Oct 17, 2024
2 parents b1d1ed9 + f0a1664 commit 11e403d
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
2 changes: 2 additions & 0 deletions cace/common/cace_write.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,8 @@ def generate_documentation(datasheet):
'direction': 'Direction',
'Vmin': 'Vmin',
'Vmax': 'Vmax',
'imin': 'Imin',
'imax': 'Imax',
'note': 'Note',
}

Expand Down
11 changes: 11 additions & 0 deletions docs/source/reference_manual/datasheet_format.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,8 @@ pins:
type: power
Vmin: 1.7
Vmax: 1.9
Imin: 0
Imax: 0.01
...
```

Expand Down Expand Up @@ -148,6 +150,15 @@ pins:
another pin; and may be referenced to another pin with an offset
(e.g., "vdd + 0.3").

- `Imin: <number>|<expression>`
> The pin maximum sink current -a minimum value if specified as
a negative current- may be a value or may be referenced to another
pin; and may be referenced to another pin with an offset.

- `Imax: <number>|<expression>`
> The pin maximum source current may be a value or may be referenced to
another pin; and may be referenced to another pin with an offset.

## Default Conditions

The default conditions under which to evaluate the parameters.
Expand Down

0 comments on commit 11e403d

Please sign in to comment.