]> sigrok.org Git - sigrok-dumps.git/blame - spi/ade7758/README
spi/ade7758: examples without CS pin
[sigrok-dumps.git] / spi / ade7758 / README
CommitLineData
047542b9
KP
150MHz capture of an ADE7758 SPI communications.
2Note that Chip Select is _optional_ on this device, provided that you are
3careful to only use valid, full length spi read/write requests.
4
5In this case, the chip is configured to provide interrupts on voltage zero
6crossings, and the host MCU is reading the status register, and then the
7appropriate (phase B) voltage/current registers.
8
9It is largely an example of SPI without CS, in spi mode 0,1.
10
11Two captures are provided.
12ade7758-phaseB-zx-irq-context.sr: trigger with precapture on the IRQ pin falling edge.
13ade7758-phaseB-zx-irq-nocontext.sr: trigger on spi CLK rising edge.
14
15Correct decodings with the ADE7758 decoder should show
16RSTATUS: 0x400
17FREQ: 0x0 (frequency is from phase A, not connected on this device)
18BVRMS: 0x10cd0c (context) or 0x10ccfa (nocontext)
19BIRMS: 0x2ac (context) or 0x2a8 (nocontext)
20
21Anything else has gotten the SPI decoding wrong due to the lack of chip select.