SPI

爱德华·斯诺登

Serial Peripheral Interface Bus (or SPI) interface:

The SPI bus specifies four logic signals:

  • SCLK : Serial Clock (output from master).
  • MOSI : Master Output, Slave Input (output from master).
  • MISO : Master Input, Slave Output (output from slave).
  • SS : Slave Select (active low, output from master).

Alternative naming conventions are also widely used, and SPI port pin names for particular IC products may differ from those depicted in these illustrations:

Serial Clock:

  • SCLK : SCK, CLK.

Master Output --> Slave Input:

  • MOSI : SIMO, SDI(for slave devices), DI, DIN, SI, MTST.

Master Input <-- Slave Output: -->

  • MISO : SOMI, SDO (for slave devices ), DO, DOUT, SO, MRSR.

Slave Select:

  • SS : nCS, CS, CSB, CSN, EN, nSS, STE, SYNC.

The MOSI/MISO convention requires that, on devices using the alternate names, SDI on the master be connected to SDO on the slave, and vice versa. Chip select polarity is rarely active high, although some notations (such as SS or CS instead of nSS or nCS) suggest otherwise. Slave select is used instead of an addressing concept.


参考链接:

  • A Brief Introduction to the Serial Peripheral Interface (SPI)——From: ardu

你可能感兴趣的:(SPI)