Skip to content

Commit

Permalink
Remove unavailable config labels and markers
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicoretti committed Nov 2, 2024
1 parent 85e18b9 commit 8df8ec4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 9 deletions.
2 changes: 1 addition & 1 deletion docs/docs/api/crc16.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@

::: crc.Crc16
options:
members: ["CCITT", "GSM", "PROFIBUS","CCITT_FALSE","IBM","MAXIM","USB","X25","DNP"]
members: ["GSM", "PROFIBUS", "IBM","MAXIM","USB","X25","DNP"]
2 changes: 1 addition & 1 deletion docs/docs/api/crc8.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@

::: crc.Crc8
options:
members: ["CCITT", "AUTOSAR", "BLUETOOTH", "SAEJ1850", "MAXIM_DOW","ITU","MAXIM","ROHC"]
members: ["CCITT", "AUTOSAR", "BLUETOOTH", "SAEJ1850", "MAXIM_DOW","ITU","ROHC"]
8 changes: 1 addition & 7 deletions src/crc/_crc.py
Original file line number Diff line number Diff line change
Expand Up @@ -549,9 +549,6 @@ class Crc16(enum.Enum):
reverse_input=False,
reverse_output=False,
)
"""
:Alias: CCITT_FALSE
"""

KERMIT = Configuration(
width=16,
Expand All @@ -561,15 +558,12 @@ class Crc16(enum.Enum):
reverse_input=True,
reverse_output=True,
)
"""
:Alias: CCITT
"""

IBM = Configuration(
width=16,
polynomial=0x8005,
init_value=0x0000,
final_xor_value=0,
final_xor_value=0x0000,
reverse_input=True,
reverse_output=True,
)
Expand Down

0 comments on commit 8df8ec4

Please sign in to comment.