Re: Logic Analyzer software for the HP-IB/RS-232 bus pre-processor HP 10342B

2018-06-02 Thread Marc Howard via cctalk
Oh I know that. At work we have several different types.  USBee, Total
Phase, etc.  They all seem to have various flaws, the most common of which
is lack of ground isolation in USB based models.

Just seems like a curious omission from their repertoire of post analyzers.

Marc

On Fri, Jun 1, 2018 at 8:09 AM, Al Kossow via cctalk 
wrote:

>
>
> On 5/30/18 7:09 PM, Marc Howard via cctalk wrote:
> > Was there ever an I2C decoder created for the 16500/16700?
>
> Today it may be easier just to get one of the inexpensive 16 channel USB
> analyzers with built-in i2c decoding
> like a DSLogic
>
> http://www.dreamsourcelab.com/order.html
>
>
>
>
>


Re: Logic Analyzer software for the HP-IB/RS-232 bus pre-processor HP 10342B

2018-06-01 Thread W2HX via cctalk
Wow. That is cheap. Anyone ever use it? What are its limitations in real world 
situations? 

From: cctalk  on behalf of Al Kossow via cctalk 

Sent: Friday, June 1, 2018 11:09 AM
To: cctalk@classiccmp.org
Subject: Re: Logic Analyzer software for the HP-IB/RS-232 bus pre-processor HP 
10342B

On 5/30/18 7:09 PM, Marc Howard via cctalk wrote:
> Was there ever an I2C decoder created for the 16500/16700?

Today it may be easier just to get one of the inexpensive 16 channel USB 
analyzers with built-in i2c decoding
like a DSLogic

http://www.dreamsourcelab.com/order.html






Re: Logic Analyzer software for the HP-IB/RS-232 bus pre-processor HP 10342B

2018-06-01 Thread Al Kossow via cctalk



On 5/30/18 7:09 PM, Marc Howard via cctalk wrote:
> Was there ever an I2C decoder created for the 16500/16700?

Today it may be easier just to get one of the inexpensive 16 channel USB 
analyzers with built-in i2c decoding
like a DSLogic

http://www.dreamsourcelab.com/order.html






Re: Logic Analyzer software for the HP-IB/RS-232 bus pre-processor HP 10342B

2018-05-30 Thread Glen Slick via cctalk
On Wed, May 30, 2018 at 7:09 PM, Marc Howard via cctalk
 wrote:
> Was there ever an I2C decoder created for the 16500/16700?
>
> Marc

The older analyzers were never that great for serial protocol
decoding. The solution used with the HP 10342B RS-232 preprocessor
interface was to throw hardware at the problem with a Zilog SIO/1 to
turn the serial bits into parallel bytes, along with a Z80 CPU to
configure the SIO/1.

http://www.bitsavers.org/test_equipment/hp/logic_analyzer_preprocessors/photos/10342B/10432B_T.jpg


The 16700 series software has the B4601B Serial Analysis Tool Set. You
need to install a license to use that, which has been made available.
I have never really tried to do anything with the B4601B Serial
Analysis Tool Set and have no idea if it would be of any help for I2C
analysis.


Re: Logic Analyzer software for the HP-IB/RS-232 bus pre-processor HP 10342B

2018-05-30 Thread Marc Howard via cctalk
Was there ever an I2C decoder created for the 16500/16700?

Marc


On Wed, May 30, 2018 at 7:07 PM, Curious Marc via cctalk <
cctalk@classiccmp.org> wrote:

> Wow. Impressive reverse engineering work. Congrats!
> Marc
>
> > On May 26, 2018, at 5:09 PM, Glen Slick via cctalk <
> cctalk@classiccmp.org> wrote:
> >
> >> On Fri, May 22, 2015 at 7:43 PM, Marc Verdiell 
> wrote:
> >> This has probably been asked before, but does anyone have the software
> >> package that came with the HP-IB/RS232 HP10342 bus pre-processor for the
> >> HP1650 series Logic Analyzer (actually I have a 1670G)? It should have a
> >> config file and an inverse assembler file. I'm interested in the HP-IB
> >> files. Can't find it anywhere.
> >> - Marc
> >>
> >
> > Reviving a 3 year old thread...
> >
> > For anyone that does any work with old HP logic analyzer inverse
> > assembler files, it turns out that it is possible to decode the 68000
> > based logic analyzer IAL style IA binary files back into equivalent
> > source code that can be assembled again with the 10391B ASM.EXE
> > assembler. (No idea yet about the 6809 based 1630 series logic
> > analyzers. Those use a different binary format).
> >
> > Decoded Inverse Assembler .S source code files for the 10342B HPIB,
> > RS-232, RS-449 interface posted here:
> > http://www.eevblog.com/forum/testgear/hp-logic-analyzer-
> inverse-assemblers/msg1568359/#msg1568359
>


Re: Logic Analyzer software for the HP-IB/RS-232 bus pre-processor HP 10342B

2018-05-30 Thread Glen Slick via cctalk
On Wed, May 30, 2018 at 7:07 PM, Curious Marc  wrote:
> Wow. Impressive reverse engineering work. Congrats!
> Marc
>

It wouldn't have been possible for me to do this without source code
provided in the 16900-series logic analyzer Analysis AddIn Tool. The
agIalEngine.cpp source file provided there contains a complete IAL
style inverse assembler .R file parser into the variable and constant
segment, the instruction opcode segment, and the string segment, plus
an interpreter to execute the instruction opcodes.

So it was mostly trying to figure out exactly what the agIalEngine.cpp
source code does and writing something a similar tool that could
execute in a standalone environment, and output text representations
of everything in the .R file instead of interpreting and executing it.

I hope I can do something similar to figure out the IA file format
used by the 1630 series, just for completeness, and maybe be able to
write an equivalent to the IALDOWN tools for the 1630 series. It
appears that the 1630 series IA files start with the same .R files,
then flatten them down to the three segments, then add some header
information. But they also break the resulting file in a block
structure with a 16-bit checksum on each block using an unknown
algorithm. My current plan is to try hooking another logic analyzer up
to a 1630 to observe what the 6809 CPU is doing when it computes
checksums. I tried using CRC RevEng without any luck. Could be user
error and I don't know how to use that tool.


Re: Logic Analyzer software for the HP-IB/RS-232 bus pre-processor HP 10342B

2018-05-30 Thread Curious Marc via cctalk
Wow. Impressive reverse engineering work. Congrats!
Marc

> On May 26, 2018, at 5:09 PM, Glen Slick via cctalk  
> wrote:
> 
>> On Fri, May 22, 2015 at 7:43 PM, Marc Verdiell  
>> wrote:
>> This has probably been asked before, but does anyone have the software
>> package that came with the HP-IB/RS232 HP10342 bus pre-processor for the
>> HP1650 series Logic Analyzer (actually I have a 1670G)? It should have a
>> config file and an inverse assembler file. I'm interested in the HP-IB
>> files. Can't find it anywhere.
>> - Marc
>> 
> 
> Reviving a 3 year old thread...
> 
> For anyone that does any work with old HP logic analyzer inverse
> assembler files, it turns out that it is possible to decode the 68000
> based logic analyzer IAL style IA binary files back into equivalent
> source code that can be assembled again with the 10391B ASM.EXE
> assembler. (No idea yet about the 6809 based 1630 series logic
> analyzers. Those use a different binary format).
> 
> Decoded Inverse Assembler .S source code files for the 10342B HPIB,
> RS-232, RS-449 interface posted here:
> http://www.eevblog.com/forum/testgear/hp-logic-analyzer-inverse-assemblers/msg1568359/#msg1568359


Re: Logic Analyzer software for the HP-IB/RS-232 bus pre-processor HP 10342B

2018-05-26 Thread Glen Slick via cctalk
On Fri, May 22, 2015 at 7:43 PM, Marc Verdiell  wrote:
> This has probably been asked before, but does anyone have the software
> package that came with the HP-IB/RS232 HP10342 bus pre-processor for the
> HP1650 series Logic Analyzer (actually I have a 1670G)? It should have a
> config file and an inverse assembler file. I'm interested in the HP-IB
> files. Can't find it anywhere.
> - Marc
>

Reviving a 3 year old thread...

For anyone that does any work with old HP logic analyzer inverse
assembler files, it turns out that it is possible to decode the 68000
based logic analyzer IAL style IA binary files back into equivalent
source code that can be assembled again with the 10391B ASM.EXE
assembler. (No idea yet about the 6809 based 1630 series logic
analyzers. Those use a different binary format).

Decoded Inverse Assembler .S source code files for the 10342B HPIB,
RS-232, RS-449 interface posted here:
http://www.eevblog.com/forum/testgear/hp-logic-analyzer-inverse-assemblers/msg1568359/#msg1568359


Re: Logic Analyzer software for the HP-IB/RS-232 bus pre-processor HP 10342B

2015-05-23 Thread Mike Loewen

On Fri, 22 May 2015, Marc Verdiell wrote:


This has probably been asked before, but does anyone have the software
package that came with the HP-IB/RS232 HP10342 bus pre-processor for the
HP1650 series Logic Analyzer (actually I have a 1670G)? It should have a
config file and an inverse assembler file. I'm interested in the HP-IB
files. Can't find it anywhere.


   Is it on this disk?

http://www.keysight.com/main/software.jspx?ckey=sw574&lc=eng&cc=US&nid=-536902556.536879990&id=sw574


Mike Loewen mloe...@cpumagic.scol.pa.us
Old Technology  http://q7.neurotica.com/Oldtech/


Logic Analyzer software for the HP-IB/RS-232 bus pre-processor HP 10342B

2015-05-22 Thread Marc Verdiell
This has probably been asked before, but does anyone have the software
package that came with the HP-IB/RS232 HP10342 bus pre-processor for the
HP1650 series Logic Analyzer (actually I have a 1670G)? It should have a
config file and an inverse assembler file. I'm interested in the HP-IB
files. Can't find it anywhere.
- Marc