]> sigrok.org Git - libsigrokdecode.git/blob - decoders/microwire/__init__.py
da2d045e4fc4a8f3993b47c97df5fd7cdce4532f
[libsigrokdecode.git] / decoders / microwire / __init__.py
1 ##
2 ## This file is part of the libsigrokdecode project.
3 ##
4 ## Copyright (C) 2017 Kevin Redon <kingkevin@cuvoodoo.info>
5 ##
6 ## This program is free software; you can redistribute it and/or modify
7 ## it under the terms of the GNU General Public License as published by
8 ## the Free Software Foundation; either version 2 of the License, or
9 ## (at your option) any later version.
10 ##
11 ## This program is distributed in the hope that it will be useful,
12 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
13 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 ## GNU General Public License for more details.
15 ##
16 ## You should have received a copy of the GNU General Public License
17 ## along with this program; if not, see <http://www.gnu.org/licenses/>.
18 ##
19
20 '''
21 Microwire is a 3-wire half-duplex synchronous serial communication protocol.
22 Originally from National Semiconductor, it is often used in EEPROM chips with
23 device specific commands on top of the bit stream.
24
25 Channels:
26
27  - CS: chip select, active high
28  - SK: clock line, for the synchronous communication (idle low)
29  - SI: slave data input, output by the master and parsed by the selected slave
30        on rising edge of clock line (idle low)
31  - SO: slave data output, output by the selected slave and changed on rising
32        edge of clock line, or goes from low to high when ready during status
33        check (idle high impedance)
34
35 The channel names might vary from chip to chip but the underlying function is
36 the same.
37 '''
38
39 from .pd import Decoder