diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2019-03-16 18:46:01 +0100 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2019-03-16 18:46:01 +0100 |
commit | 2787cf2abc0187679e87d3735ca3e64c2a1a91c8 (patch) | |
tree | 8baddf2048d8383a257284eabd238f7f4397568f /decoders/ac97 | |
parent | 2b46b01c72c06683b3130647affe92c425d573b5 (diff) | |
download | libsigrokdecode-2787cf2abc0187679e87d3735ca3e64c2a1a91c8.tar.gz libsigrokdecode-2787cf2abc0187679e87d3735ca3e64c2a1a91c8.zip |
decoders: Various cosmetic/consistency/typo fixes.
Diffstat (limited to 'decoders/ac97')
-rw-r--r-- | decoders/ac97/__init__.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/decoders/ac97/__init__.py b/decoders/ac97/__init__.py index 8b96e8a..c57c8eb 100644 --- a/decoders/ac97/__init__.py +++ b/decoders/ac97/__init__.py @@ -18,9 +18,8 @@ ## ''' -AC'97 (Audio Codec '97) was specifically designed by Intel for audio and -modem I/O functionality in mainstream PC systems. See the specification in -http://download.intel.com/support/motherboards/desktop/sb/ac97_r23.pdf +AC'97 (Audio Codec '97) is a protocol for audio and modem I/O functionality +in mainstream PC systems. AC'97 communicates full duplex data (SDATA_IN, SDATA_OUT), where bits are clocked by the BIT_CLK and frames are signalled by the SYNC signals. @@ -31,6 +30,9 @@ each. One 16bit slot contains management information, twelve 20bit slots follow which carry data for three management and nine audio/modem channels. Optionally two slots of one frame can get combined for higher resolution on fewer channels, or double data rate. + +Details: +http://download.intel.com/support/motherboards/desktop/sb/ac97_r23.pdf ''' from .pd import Decoder |