SPI

Brief

SPI, short for Serial Peripheral Interface, is a widely-used communication protocol in the realm of electronics. Binho Mission Control optimizes the user's interaction with the SPI protocol, presenting an intuitive approach to its functionalities. When the SPI communication protocol is selected and activated, the Command Panel gets segmented into three distinct sections, each dedicated to a specific facet of the SPI communication: operational settings, chip selection, and transaction execution.

Operational Settings

The Settings segment allows users to adjust the following parameters:

ParameterAdmited valuesComment

Clock Freq

0.8 to 12 MHz

9 possible values.

Bit Order

MSB, LSB.

Most/Less Significant Bit first.

Bits / Transfer

8, 16.

Bits per transfer.

Mode

0, 1, 2, 4

(CPOL, CPHA) ∈ {(0,0); (0,1); (1,0); (1,1)}

CPOL and CPHA refer to the clock's polarity and phase. In tandem, they designate the precise timing and edge (be it rising or falling) at which data is sampled.

Chip Selection

ParameterAdmited valuesComment

Pin Select

CS0, CS1.

CS = Chip Select

Polarity

Low, High.

Active Low/High polarity for CS.

Pre-Delay

Numeric

Only positive integer numbers. Unit: μs.

Post-Delay

Numeric

Only positive integer numbers. Unit: μs.

Pre/Post Delays pertain to the time gap between the inactive-to-active transition of the CS (Chip Select) signal and the sampling of the initial payload bit.

Transactions

This segment comprises two text fields and a dedicated TRANSFER button, simplifying SPI transaction processes.

  1. Write Buffer: Here, users input the data payload designated for the target device. It's important to note that entries should be in hexadecimal form, grouped in byte packets. For instance, inputs like '00' or 'FF' (contingent on the chosen polarity) symbolize a read-only operation.

  2. Read Size: This field allows users to determine the quantity of bytes they wish to retrieve from the target device. Initiating an SPI transaction is as simple as hitting the TRANSFER button.

Real-world Examples

Outlined below are hands-on tests with tangible devices, offering a glimpse into the SPI protocol in action.

Flash Memory Test with W25Q128fV: Utilizing a Winbond flash memory model W25Q128fV, we explored the Binho Mission Control app's SPI capabilities. The device's datasheet elucidates an instruction to fetch the JEDEC designated manufacturer ID, Memory Type, and its Capacity concurrently. This is executed by transmitting the byte '0x9F' to the flash memory input. Winbond's ID, as per the datasheet, is '0xEF'. With a permissible clock frequency of up to 50 MHz and compatibility with SPI modes 0 and 2, our test was conducted at a 12 MHz clock frequency in mode 0. The subsequent results, especially concerning the JEDEC ID, aligned with our expectations.

Pressure Sensor Test with BMP280: This example delves deeper, showcasing the capabilities of the SPI protocol using the BMP280 pressure sensor.

Last updated