Skip to content

Commit

Permalink
docs/psoc6/quickref.rst: Adding spaces for readability.
Browse files Browse the repository at this point in the history
Signed-off-by: NikhitaR-IFX <Nikhita.Rajasekhar@infineon.com>
  • Loading branch information
NikhitaR-IFX authored and jaenrig-ifx committed Jun 21, 2024
1 parent b00e746 commit 61a6ad2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/psoc6/quickref.rst
Original file line number Diff line number Diff line change
Expand Up @@ -558,7 +558,7 @@ SPI object is created with default settings or settings of previous initializati
::
from machine import SPI
spi = SPI(baudrate=1000000, polarity=0,phase=0,bits=8,firstbit=SPI.MSB,sck='P6_2', mosi='P6_0', miso='P6_1')
spi = SPI(baudrate=1000000, polarity=0, phase=0, bits=8, firstbit=SPI.MSB, sck='P6_2', mosi='P6_0', miso='P6_1')

Methods
^^^^^^^
Expand All @@ -575,7 +575,7 @@ The PSoC6™ port offers an additional class to implement an SPI slave device. T
The constructor
^^^^^^^^^^^^^^^

.. class:: SPISlave(baudrate,polarity,phase,bits,firstbit,ssel,sck, mosi, miso)
.. class:: SPISlave(baudrate, polarity, phase, bits, firstbit, ssel, sck, mosi, miso)

Constructs and returns a new SPI slave object using the following parameters.

Expand All @@ -597,7 +597,7 @@ The constructor
from machine import SPISlave
spi_slave = spi = SPI(baudrate=1000000, polarity=0,phase=0,bits=8,firstbit=SPI.MSB,ssel="P6_3",sck='P6_2', mosi='P6_0', miso='P6_1')
spi_slave = spi = SPI(baudrate=1000000, polarity=0, phase=0, bits=8, firstbit=SPI.MSB, ssel="P6_3", sck='P6_2', mosi='P6_0', miso='P6_1')

Methods
^^^^^^^
Expand Down

0 comments on commit 61a6ad2

Please sign in to comment.