\n

SPI

Peripheral Memory Blocks

address_offset : 0x0 Bytes (0x0)
size : 0xC byte (0x0)
mem_usage : registers
protection : not protected

address_offset : 0x10 Bytes (0x0)
size : 0x4 byte (0x0)
mem_usage : registers
protection : not protected

address_offset : 0x20 Bytes (0x0)
size : 0x4 byte (0x0)
mem_usage : registers
protection : not protected

address_offset : 0x3C Bytes (0x0)
size : 0xC byte (0x0)
mem_usage : registers
protection : not protected

Registers

SPI_CNTRL

SPI_RX0

SPI_TX0

SPI_CNTRL2

SPI_DIVIDER

SPI_FIFO_CTL

SPI_STATUS

SPI_SSR


SPI_CNTRL

Control and Status Register
address_offset : 0x0 Bytes (0x0)
size : -1 bit
access : read-write
reset_value : 0x0
reset_Mask : 0x0

SPI_CNTRL SPI_CNTRL read-write 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 Resets to Resets to 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 GO_BUSY RX_NEG TX_NEG TX_BIT_LEN LSB CLKP SP_CYCLE IF IE SLAVE REORDER FIFO RX_EMPTY RX_FULL TX_EMPTY TX_FULL

GO_BUSY : SPI Transfer Control Bit and Busy Status\nIf the FIFO mode is disabled, during the data transfer, this bit keeps the value of 1. As the transfer is finished, this bit will be cleared automatically.\nIn FIFO mode, this bit will be controlled by hardware. Software should not modify this bit.\nNote:\nAll registers should be set before writing 1 to this GO_BUSY bit.
bits : 0 - 0 (1 bit)
access : read-write

Enumeration:

#0 : 0

Writing 0 to this bit to stop data transfer if SPI is transferring

#1 : 1

In master mode, writing 1 to this bit to start the SPI data transfer in slave mode, writing 1 to this bit indicates that the slave is ready to communicate with a master

End of enumeration elements list.

RX_NEG : Receive on Negative Edge
bits : 1 - 1 (1 bit)
access : read-write

Enumeration:

#0 : 0

The received data input signal is latched on the rising edge of SPICLK

#1 : 1

The received data input signal is latched on the falling edge of SPICLK

End of enumeration elements list.

TX_NEG : Transmit on Negative Edge
bits : 2 - 2 (1 bit)
access : read-write

Enumeration:

#0 : 0

The transmitted data output signal is changed on the rising edge of SPICLK

#1 : 1

The transmitted data output signal is changed on the falling edge of SPICLK

End of enumeration elements list.

TX_BIT_LEN : Transmit Bit Length\nThis field specifies how many bits can be transmitted / received in one transaction. The minimum bit length is 8 bits and can up to 32 bits.
bits : 3 - 7 (5 bit)
access : read-write

LSB : LSB First
bits : 10 - 10 (1 bit)
access : read-write

Enumeration:

#0 : 0

The MSB, which bit of SPI_TX0/SPI_RX0 register depends on the setting of TX_BIT_LEN, is transmitted/received first

#1 : 1

The LSB, bit 0 of the SPI_TX0 register, is sent first to the SPI data output pin, and the first bit received from the SPI data input pin will be put in the LSB position of the RX register (bit 0 of SPI_RX0)

End of enumeration elements list.

CLKP : Clock Polarity
bits : 11 - 11 (1 bit)
access : read-write

Enumeration:

#0 : 0

SPICLK idle low

#1 : 1

SPICLK idle high

End of enumeration elements list.

SP_CYCLE : Suspend Interval (Master Only)\nThese four bits provide configurable suspend interval between two successive transmit/receive transaction in a transfer. The definition of the suspend interval is the interval between the last clock edge of the preceding transaction word and the first clock edge of the following transaction word. The default value is 0x3. The period of the suspend interval is obtained according to the following equation:\n(SP_CYCLE[3:0] + 0.5) * period of SPICLK clock cycle\nExample:
bits : 12 - 15 (4 bit)
access : read-write

IF : SPI Unit Transfer Interrupt Flag\nNote: This bit will be cleared by writing 1 to itself.
bits : 16 - 16 (1 bit)
access : read-write

Enumeration:

#0 : 0

It indicates that the transfer does not finish yet

#1 : 1

It indicates that the SPI controller has finished one unit transfer

End of enumeration elements list.

IE : SPI Unit Transfer Interrupt Enable Bit
bits : 17 - 17 (1 bit)
access : read-write

Enumeration:

#0 : 0

Disable SPI unit transfer interrupt

#1 : 1

Enable SPI unit transfer interrupt

End of enumeration elements list.

SLAVE : Slave Mode Enable Bit
bits : 18 - 18 (1 bit)
access : read-write

Enumeration:

#0 : 0

Master mode

#1 : 1

Slave mode

End of enumeration elements list.

REORDER : Byte Reorder Function\nNote:\nByte reorder function is only available if TX_BIT_LEN is defined as 16, 24, and 32 bits.
bits : 19 - 19 (1 bit)
access : read-write

Enumeration:

#0 : 0

Disable the byte reorder function

#1 : 1

Enable byte reorder function

End of enumeration elements list.

FIFO : FIFO Mode Note: Before enabling FIFO mode, the other related settings should be set in advance. In master mode, if the FIFO mode is enabled, the GO_BUSY bit will be set to 1 automatically after writing data into the 8-depth FIFO. It means all data stored at transmit FIFO buffer are transferred when the transmit FIFO buffer is empty and the GO_BUSY bit back to 0.
bits : 21 - 21 (1 bit)
access : read-write

Enumeration:

#0 : 0

Disable FIFO Mode

#1 : 1

Enable FIFO Mode

End of enumeration elements list.

RX_EMPTY : Receive FIFO Buffer Empty Indicator (read only)\nIt's a mutual mirror bit of SPI_CNTRL[24].
bits : 24 - 24 (1 bit)
access : read-only

Enumeration:

#0 : 0

Indicates that the receive FIFO buffer is not empty

#1 : 1

Indicates that the receive FIFO buffer is empty

End of enumeration elements list.

RX_FULL : Receive FIFO Buffer Full Indicator (read only)\nIt's a mutual mirror bit of SPI_STATUS[25].
bits : 25 - 25 (1 bit)
access : read-only

Enumeration:

#0 : 0

Indicates that the receive FIOF buffer is not full

#1 : 1

Indicates that the receive FIFO buffer is full

End of enumeration elements list.

TX_EMPTY : Transmit FIFO Buffer Empty Indicator (read only)\nIt's a mutual mirror bit of SPI_STAUTS[26].
bits : 26 - 26 (1 bit)
access : read-only

Enumeration:

#0 : 0

Indicates that the transmit FIFO buffer is not empty

#1 : 1

Indicates that the transmit FIFO buffer is empty

End of enumeration elements list.

TX_FULL : Transmit FIFO Buffer Full Indicator (read only)\nIt's a mutual mirror bit of SPI_STATUS[27].
bits : 27 - 27 (1 bit)
access : read-only

Enumeration:

#0 : 0

Indicates that the transmit FIFO buffer is not full

#1 : 1

Indicates that the transmit FIFO buffer is full

End of enumeration elements list.


SPI_RX0

Data Receive Register 0
address_offset : 0x10 Bytes (0x0)
access : read-only
reset_value : 0x0
reset_Mask : 0x0

SPI_RX0 SPI_RX0 read-only 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 Resets to Resets to 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 RX

RX : Data Receive Register\nThe data receive register holds the datum received from SPI data input pin. If the FIFO mode is disabled, the software can access the last received data by reading this register. If the FIFO bit is set as 1 and the RX_EMPTY bit, SPI_CNTRL[24] or SPI_STATUS[24], is not set to 1, the software can access the receive FIFO buffer by reading this register. This is a read-only register.
bits : 0 - 31 (32 bit)
access : read-only


SPI_TX0

Data Transmit Register 0
address_offset : 0x20 Bytes (0x0)
access : write-only
reset_value : 0x0
reset_Mask : 0x0

SPI_TX0 SPI_TX0 write-only 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 Resets to Resets to 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 TX

TX : Data Transmit Register\nThe Data Transmit Registers hold the data to be transmitted in the next transfer. The number of valid bits depends on the setting of transmit bit length field of the SPI_CNTRL register.\nFor example, if TX_BIT_LEN is set to 0x08, the bit TX[7:0] will be transmitted in next transfer. If TX_BIT_LEN is set to 0x00, the SPI controller will perform a 32-bit transfer.\nNote: when the SPI controller is configured as a slave device and the FIFO mode is disabled, if the SPI controller attempts to transmit data to a master, the software must update the transmit data register before setting the GO_BUSY bit to 1.
bits : 0 - 31 (32 bit)
access : write-only


SPI_CNTRL2

Control and Status Register 2
address_offset : 0x3C Bytes (0x0)
access : read-write
reset_value : 0x0
reset_Mask : 0x0

SPI_CNTRL2 SPI_CNTRL2 read-write 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 Resets to Resets to 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 NOSLVSEL SLV_ABORT SSTA_INTEN SLV_START_INTSTS SS_INT_OPT BCn

NOSLVSEL : Slave 3-Wire Mode Enable Bit\nThis is used to ignore the slave select signal in slave mode. The SPI controller can work with 3-wire interface including SPICLK, SPI_MISO, and SPI_MOSI.\nNote: In 3-wire mode, the SS_LTRIG, SPI_SSR[4], shall be set as 1.
bits : 8 - 8 (1 bit)
access : read-write

Enumeration:

#0 : 0

4-wire bi-direction interface

#1 : 1

3-wire bi-direction interface

End of enumeration elements list.

SLV_ABORT : Slave 3-Wire Mode Abort Control Bit\nIn normal operation, there is an interrupt event when the received data meet the required bits which defined in TX_BIT_LEN.\nIf the received bits are less than the requirement and there is no more serial clock input over the one transfer time in slave 3-wire mode, the user can set this bit to force the current transfer done and then the user can get a transfer done interrupt event. \nNote: It will be cleared to 0 automatically by hardware after the software sets this bit to 1.
bits : 9 - 9 (1 bit)
access : read-write

SSTA_INTEN : Slave 3-Wire Mode Start Interrupt Enable\nIt is used to enable interrupt when the transfer has started in slave 3-wire mode. If there is no transfer done interrupt over the time period which is defined by user after the transfer start, the user can set the SLV_ABORT bit to force the transfer done.
bits : 10 - 10 (1 bit)
access : read-write

Enumeration:

#0 : 0

Disable the transfer start interrupt

#1 : 1

Enable the transaction start interrupt. It will be cleared to 0 as the current transfer is done or the SLV_START_INTSTS bit is cleared

End of enumeration elements list.

SLV_START_INTSTS : Slave 3-Wire Mode Start Interrupt Status\nIt is used to dedicate that the transfer has started in slave 3-wire mode.
bits : 11 - 11 (1 bit)
access : read-write

Enumeration:

#0 : 0

It indicates that the SPI transfer is not active

#1 : 1

It indicates that the transfer has started in slave 3-wire mode. It will be cleared to 0 as transfer done or by writing one to this bit

End of enumeration elements list.

SS_INT_OPT : Slave Select Inactive Interrupt Option \nThis setting is only available if the SPI controller is configured as level trigger slave device.
bits : 16 - 16 (1 bit)
access : read-write

Enumeration:

#0 : 0

As the slave select signal goes to inactive level, the IF bit will NOT be set to 1

#1 : 1

As the slave select signal goes to inactive level, the IF bit will be set to 1

End of enumeration elements list.

BCn : SPI Engine Clock Backward Compatible Option\nRefer to the description of SPI_DIVIDER register for details.
bits : 31 - 31 (1 bit)
access : read-write

Enumeration:

#0 : 0

Backward compatible clock configuration

#1 : 1

The clock configuration is not backward compatible

End of enumeration elements list.


SPI_DIVIDER

Clock Divider Register
address_offset : 0x4 Bytes (0x0)
access : read-write
reset_value : 0x0
reset_Mask : 0x0

SPI_DIVIDER SPI_DIVIDER read-write 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 Resets to Resets to 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 DIVIDER

DIVIDER : Clock Divider Register (master only)\nThe value in this field is the frequency divider for generating the SPI engine clock and its SPI clock. The frequency is obtained according to the following equation:\nIf the bit of BCn, SPI_CNTRL2[31], is set to'0'.\n\nelse if BCn is set to '1',\n\nwhere \n is the SPI engine clock source. It is defined in the CLKSEL1 register.
bits : 0 - 7 (8 bit)
access : read-write


SPI_FIFO_CTL

SPI FIFO Control Register
address_offset : 0x40 Bytes (0x0)
size : -1 bit
access : read-write
reset_value : 0x0
reset_Mask : 0x0

SPI_FIFO_CTL SPI_FIFO_CTL read-write 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 Resets to Resets to 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 RX_CLR TX_CLR RX_INTEN TX_INTEN RXOV_INTEN TIMEOUT_INTEN RX_THRESHOLD TX_THRESHOLD

RX_CLR : Clear Receive FIFO Buffer
bits : 0 - 0 (1 bit)
access : read-write

Enumeration:

#0 : 0

No effect

#1 : 1

Clear receive FIFO buffer. The RX_FULL flag will be cleared to 0 and the RX_EMPTY flag will be set to 1. This bit will be cleared to 0 by hardware after software sets it to 1

End of enumeration elements list.

TX_CLR : Clear Transmit FIFO Buffer
bits : 1 - 1 (1 bit)
access : read-write

Enumeration:

#0 : 0

No effect

#1 : 1

Clear transmit FIFO buffer. The TX_FULL flag will be cleared to 0 and the TX_EMPTY flag will be set to 1. This bit will be cleared to 0 by hardware after software sets it to 1

End of enumeration elements list.

RX_INTEN : Receive Threshold Interrupt Enable
bits : 2 - 2 (1 bit)
access : read-write

Enumeration:

#0 : 0

Disable receive threshold interrupt

#1 : 1

Enable receive threshold interrupt

End of enumeration elements list.

TX_INTEN : Transmit Threshold Interrupt Enable
bits : 3 - 3 (1 bit)
access : read-write

Enumeration:

#0 : 0

Disable transmit threshold interrupt

#1 : 1

Enable transmit threshold interrupt

End of enumeration elements list.

RXOV_INTEN : Receive FIFO Overrun Interrupt Enable
bits : 6 - 6 (1 bit)
access : read-write

Enumeration:

#0 : 0

Disable Receive FIFO overrun interrupt

#1 : 1

Enable Receive FIFO overrun interrupt

End of enumeration elements list.

TIMEOUT_INTEN : Receive FIFO Time-out Interrupt Enable
bits : 21 - 21 (1 bit)
access : read-write

Enumeration:

#0 : 0

Disable time-out interrupt

#1 : 1

Enable time-out interrupt

End of enumeration elements list.

RX_THRESHOLD : Received FIFO Threshold\nIf the valid data count of the receive FIFO buffer is larger than the RX_THRESHOLD setting, the RX_INTSTS bit will be set to 1, else the RX_INTSTS bit will be cleared to 0.
bits : 24 - 25 (2 bit)
access : read-write

TX_THRESHOLD : Transmit FIFO Threshold\nIf the valid data count of the transmit FIFO buffer is less than or equal to the TX_THRESHOLD setting, the TX_INTSTS bit will be set to 1, else the TX_INTSTS bit will be cleared to 0.
bits : 28 - 29 (2 bit)
access : read-write


SPI_STATUS

SPI Status Register
address_offset : 0x44 Bytes (0x0)
size : -1 bit
access : read-write
reset_value : 0x0
reset_Mask : 0x0

SPI_STATUS SPI_STATUS read-write 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 Resets to Resets to 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 RX_INTSTS RX_OVERRUN TX_INTSTS SLV_START_INTSTS RX_FIFO_COUNT IF TIMEOUT RX_EMPTY RX_FULL TX_EMPTY TX_FULL TX_FIFO_COUNT

RX_INTSTS : Receive FIFO Threshold Interrupt Status (read only)
bits : 0 - 0 (1 bit)
access : read-only

Enumeration:

#0 : 0

It indicates that the valid data count within the Rx FIFO buffer is smaller than or equal to the setting value of RX_THRESHOLD

#1 : 1

It indicates that the valid data count within the receive FIFO buffer is larger than the setting value of RX_THRESHOLD

End of enumeration elements list.

RX_OVERRUN : Receive FIFO Overrun Status\nWhen the receive FIFO buffer is full, the follow-up data will be dropped and this bit will be set to 1.\nNote: This bit will be cleared by writing 1 to itself.
bits : 2 - 2 (1 bit)
access : read-write

TX_INTSTS : Transmit FIFO Threshold Interrupt Status (read only)
bits : 4 - 4 (1 bit)
access : read-only

Enumeration:

#0 : 0

It indicates that the valid data count within the transmit FIFO buffer is larger than the setting value of TX_THRESHOLD

#1 : 1

It indicates that the valid data count within the transmit FIFO buffer is less than or equal to the setting value of TX_THRESHOLD

End of enumeration elements list.

SLV_START_INTSTS : Slave Start Interrupt Status\nIt is used to dedicate that the transfer has started in slave 3-wire mode. It's a mutual mirror bit of SPI_CNTRL2[11].
bits : 11 - 11 (1 bit)
access : read-write

Enumeration:

#0 : 0

It indicates that the transfer is not started

#1 : 1

It indicates that the transfer has started in slave 3-wire mode. It will be cleared as transfer done or by writing one to this bit

End of enumeration elements list.

RX_FIFO_COUNT : Receive FIFO Data Count (read only)\nIndicates the valid data count of receive FIFO buffer.
bits : 12 - 15 (4 bit)
access : read-only

IF : SPI Unit Transfer Interrupt Flag\nIt's a mutual mirror bit of SPI_CNTRL[16].\nNote: This bit will be cleared by writing 1 to itself.
bits : 16 - 16 (1 bit)
access : read-write

Enumeration:

#0 : 0

It indicates that the transfer does not finish yet

#1 : 1

It indicates that the SPI controller has finished one unit transfer

End of enumeration elements list.

TIMEOUT : Time-out Interrupt Flag\nNote: This bit will be cleared by writing 1 to itself.
bits : 20 - 20 (1 bit)
access : read-write

Enumeration:

#0 : 0

No receive FIFO time-out event

#1 : 1

It indicates that the receive FIFO buffer is not empty and there is not be read over 64 SPI clock period in master mode and over 576 SPI engine clock period in slave mode. When the received FIFO buffer is read by software, the time-out status will be cleared automatically

End of enumeration elements list.

RX_EMPTY : Receive FIFO Buffer Empty Indicator (read only)\nIt's a mutual mirror bit of SPI_CNTRL[24].
bits : 24 - 24 (1 bit)
access : read-only

Enumeration:

#0 : 0

Indicates that the receive FIFO buffer is not empty

#1 : 1

Indicates that the receive FIFO buffer is empty

End of enumeration elements list.

RX_FULL : Receive FIFO Buffer Full Indicator (read only) \nIt's a mutual mirror bit of SPI_CNTRL[25].
bits : 25 - 25 (1 bit)
access : read-only

Enumeration:

#0 : 0

Indicates that the receive FIFO buffer is not full

#1 : 1

Indicates that the receive FIFO buffer is full

End of enumeration elements list.

TX_EMPTY : Transmit FIFO Buffer Empty Indicator (read only) \nIt's a mutual mirror bit of SPI_CNTRL[26].
bits : 26 - 26 (1 bit)
access : read-only

Enumeration:

#0 : 0

Indicates that the transmit FIFO buffer is not empty

#1 : 1

Indicates that the transmit FIFO buffer is empty

End of enumeration elements list.

TX_FULL : Transmit FIFO Buffer Full Indicator (read only)\nIt's a mutual mirror bit of SPI_CNTRL[27].
bits : 27 - 27 (1 bit)
access : read-only

Enumeration:

#0 : 0

Indicates that the transmit FIFO buffer is not full

#1 : 1

Indicates that the transmit FIFO buffer is full

End of enumeration elements list.

TX_FIFO_COUNT : Transmit FIFO Data Count (read only)\nIndicates the valid data count of transmit FIFO buffer.
bits : 28 - 31 (4 bit)
access : read-only


SPI_SSR

Slave Select Register
address_offset : 0x8 Bytes (0x0)
access : read-write
reset_value : 0x0
reset_Mask : 0x0

SPI_SSR SPI_SSR read-write 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 Resets to Resets to 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 SSR SS_LVL AUTOSS SS_LTRIG LTRIG_FLAG

SSR : Slave Select Control Bits (Master only) If AUTOSS bit is cleared, writing 1 to this field sets the SPISSx line to active state and writing 0 sets the line back to inactive state. If AUTOSS bit is set, writing 0 to this field will keep the SPISSx line at inactive state writing 1 to this field will select the SPISSx line to be automatically driven to active state for the duration of the transmit/receive, and will be driven to inactive state for the rest of the time. The active state of SPISSx is specified in SS_LVL.
bits : 0 - 0 (1 bit)
access : read-write

SS_LVL : Slave Select Active Level\nIt defines the active status of slave select signal (SPISSx).
bits : 2 - 2 (1 bit)
access : read-write

Enumeration:

#0 : 0

The slave select signal SPISSx is active on low-level/falling-edge

#1 : 1

The slave select signal SPISSx is active on high-level/rising-edge

End of enumeration elements list.

AUTOSS : Automatic Slave Select Function Enable Bit (Master only)
bits : 3 - 3 (1 bit)
access : read-write

Enumeration:

#0 : 0

If this bit is cleared, slave select signal will be asserted/de-asserted by setting /clearing SSR[0]

#1 : 1

If this bit is set, SPISSx signal will be generated automatically. It means that device/slave select signal will be asserted by the SPI controller when transmit/receive is started, and will be de-asserted after each transmit/receive is finished

End of enumeration elements list.

SS_LTRIG : Slave Select Level Trigger Enable Bit (Slave only)
bits : 4 - 4 (1 bit)
access : read-write

Enumeration:

#0 : 0

The slave select signal is edge-trigger. This is the default value. The SS_LVL bit decides the signal is active after a falling-edge or rising-edge

#1 : 1

The slave select signal will be level-trigger. The SS_LVL bit decides the signal is active low or active high

End of enumeration elements list.

LTRIG_FLAG : Level Trigger Accomplish Flag\nIn slave mode, this bit indicates whether the received bit number meets the requirement or not after the current transaction done.\nNote: This bit is READ only
bits : 5 - 5 (1 bit)
access : read-write

Enumeration:

#0 : 0

The transferred bit length of one transaction does not meet the specified requirement

#1 : 1

The transferred bit length meets the specified requirement which defined in TX_BIT_LEN

End of enumeration elements list.



Is something missing? Is something wrong? can you help correct it ? Please contact us at info@chipselect.org !

This website is sponsored by EmbeetleEmbeetle, an IDE designed from scratch for embedded software developers.