1

I looked at the schematics of the Raspberry Pi 3 here but couldn't figure out which Pins are what, to use the I²S Interface.

Which Pin-Numbers are for:

  • Bit clock line?
  • Word clock line?
  • Multiplexed data line?
Glorfindel
  • 620
  • 1
  • 8
  • 15
Spenhouet
  • 147
  • 7

1 Answers1

1

GPIO 18-21 are simplest.

18 PCM_CLK  (pin 12)
19 PCM_FS   (pin 35)
20 PCM_DIN  (pin 38)
21 PCM_DOUT (pin 40)

BCM2835 ARM Peripherals page 102.

joan
  • 71,024
  • 5
  • 73
  • 106
  • Nice! I didn't saw that table. Thanks, you did help alot. – Spenhouet May 23 '16 at 19:55
  • I just realized you did link the datasheet of the BCM2835 but the RPi3 runs with the BCM2837. There for this information is probably incorrect? But i can't find the datasheet for the BCM2837. – Spenhouet May 24 '16 at 17:07
  • 1
    @besnep The GPIO on all the Pis are identical. They all have 54 GPIO with the same capabilities. The only difference is which are routed to the expansion header. The routing is the same for all Pis with the 40 pin expansion header (Pi Zero/A+/B+/2/3). – joan May 24 '16 at 17:11