Difference between revisions of "Protocol decoder:Ieee488"
Jump to navigation
Jump to search
Uwe Hermann (talk | contribs) |
(add Resources section, wikipedia and pagetable links) |
||
Line 38: | Line 38: | ||
ieee488-1: KEITHLEY INSTRUMENTS INC.,MODEL 2015,0993190,B15 /A02 [LF] | ieee488-1: KEITHLEY INSTRUMENTS INC.,MODEL 2015,0993190,B15 /A02 [LF] | ||
</small> | </small> | ||
== Resources == | |||
* [https://en.wikipedia.org/wiki/IEEE-488 Wikipedia IEEE-488] HP-IB / GPIB parallel bus | |||
* [https://en.wikipedia.org/wiki/Commodore_bus Wikipedia Commodore Bus] (IEC aka Standard Serial) | |||
* [https://www.pagetable.com/?p=1018 pagetable.com Commodore Peripheral Bus] article series by Michael Steil, [https://github.com/mist64/cbmbus_doc github Markdown sources repo] | |||
[[Category:Protocol decoder]] | [[Category:Protocol decoder]] |
Revision as of 21:07, 5 September 2022
Name | IEEE-488 |
---|---|
Description | IEEE-488 General Purpose Interface Bus (GPIB/HPIB or IEC). |
Status | supported |
License | GPLv2+ |
Source code | decoders/ieee488 |
Input | logic |
Output | ieee488 |
Probes | DIO1/DATA |
Optional probes | DIO2-DIO8, EOI, DAV, NRFD, NDAC, IFC, SRQ, ATN, REN, CLK |
Options | iec_periph |
The ieee488 protocol decoder can decode either the parallel GPIB/HPIB bus (8 data and up to 8 control lines) or the serial IEC variant (clock and data, one line each).
While the internal implementation of the decoder marks most input signals as optional (to cover both serial and parallel variants), in practice some of the optional lines are essential for proper operation and just don't apply to the other main variant. For serial communication, DATA and CLK as well as ATN are required. For parallel communication DIO1 to DIO8 as well as DAV and ATN are required, and EOI is rather useful and shall get provided.
Parameters
- iec_periph, boolean yes/no: Whether to decode Commodore IEC bus peripherals details (disk drives).
Example interactive use
$ pulseview -i keithley2015/keithley2015-idn.sr
Example command line use
$ PD_PINS="dio1=DIO1:dio2=DIO2:dio3=DIO3:dio4=DIO4:dio5=DIO5:dio6=DIO6:dio7=DIO7:dio8=DIO8:eoi=EOI:dav=DAV:nrfd=NRFD:ndac=NDAC:ifc=IFC:srq=SRQ:atn=ATN:ren=REN" $ sigrok-cli -i keithley2015/keithley2015-idn.sr -P ieee488:$PD_PINS -A ieee488=texts ieee488-1: *idn?[CR][LF] ieee488-1: KEITHLEY INSTRUMENTS INC.,MODEL 2015,0993190,B15 /A02 [LF]
Resources
- Wikipedia IEEE-488 HP-IB / GPIB parallel bus
- Wikipedia Commodore Bus (IEC aka Standard Serial)
- pagetable.com Commodore Peripheral Bus article series by Michael Steil, github Markdown sources repo