We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
Hey, Thinking that the SSP and SPI interfaces are the same, I wrote the code for SSP slavemode interrupt. But then found out that there is a difference. The CS(SSEL) line in SPI remains low for whole frame transfer, in SSP but it toggles after each frame (a frame = 4-16bits _configurable_) in SSP. (SPI frame can be of 'n' no of bytes) So at the master, i modified the CS to act as GPIO and toggle the line after every byte transfer.
Now the problem is that if i process interrupt after receiving of each data byte the code generates an os_error. Hence (referring an example code) i had to implement the data transfer in a while loop as in the code below:
while( (SSPx->SR & SSP_SR_RNE) || (SSPx->SR & SSP_SR_TFE) || (dataCfg->tx_cnt != dataCfg->length)) { tmp = SSP_ReceiveData(SSPx); if(tmp == SPI_SOF) { dataCfg->rx_cnt = 0; dataCfg->tx_cnt = 0; dataCfg->status = SPI_STATUS_SOF; } if(dataCfg->tx_data == NULL) { SSP_SendData(SSPx, 0xFF); dataCfg->tx_cnt++; } else { SSP_SendData(SSPx, (*(uint8_t *)((uint32_t)dataCfg->tx_data + dataCfg->tx_cnt))); dataCfg->tx_cnt++; } // Store data to destination //if (dataCfg->rx_data != NULL) { *(uint8_t *)((uint32_t)dataCfg->rx_data + dataCfg->rx_cnt) = (uint8_t) tmp; dataCfg->rx_cnt++; } // Check error if ((stat = SSPx->RIS) & SSP_RIS_ROR) { // save status and return dataCfg->status = stat | SSP_STAT_ERROR; return; } }
os_error = 2, which indicates that the interrupt occurance is too fast. CPOL = 0, CPHA = 1. performing the data transfer in while loop, causes loss of synchronization. Cant figure out how to solve this. The master clock frequency = 250KHz. Master is a microchip IC (whose code worked well with SPI protocol of LPC1768).
Hi Dhaval Solanki,
I am not so sure, but maybe you should re-read the user manual, and re-consider you options.
For LPC1788, UM10470 Chapter 21: LPC178x/7x SSP interfaces Page 623: 21.6.1 SSPn Control Register 0
Bit Symbol Value Description Value 5:4 FRF Frame Format. 00 SPI 01 TI 10 Microwire 11 This combination is not supported and should not be used. 6 CPOL Clock Out Polarity. This bit is only used in SPI mode. 0 0 SSP controller maintains the bus clock low between frames. 1 SSP controller maintains the bus clock high between frames. 7 CPHA Clock Out Phase. This bit is only used in SPI mode. 0 0 SSP controller captures serial data on the first clock transition of the frame, that is, the transition away fromthe inter-frame state of the clock line. 1 SSP controller captures serial data on the second clock transition of the frame, that is, the transition back tothe inter-frame state of the clock line.
That certainly does not say that "SSP" is the same thing as "SPI"! Agreed Andrew. My mistake.
may be some confusion here between "SPI" as in the external interface - with MISO, MOSI, CLK & SS lines - and the peripheral block within the microcontroller which manages the external SPI. Ya there was confusion.
different register sets, different interrupts, different options, etc, etc. I had assumed this before starting with SSP. But had thought that the interrupts may be generated almost like in the SPI peripheral block - i mean to say an "SPI transfer complete flag" and atleast a related SPI interrupt.
@John Thanks for pointing that out, mate. But i have already configured SSPn control register0 in SPI, CPOL = 0, CPHA = 1. It is with the interrupts and the interrupt handling function that i am facing problems with.
As i was facing an os_error (number 2 - which indicates that "The interrupt rate for isr_xxx function calls is too fast. or Too many isr_xxx function calls from the same interrupt handler.) So to solve this, i have also tried using a dedicated DMA channel. But the data transfer synchronization is lost. Either the sync is lost or the os_error. sync is lost, either in the transmission frame or in the reception frame but not in both. Unfortunately i can not put break-points and debugg both the controllers simultaneously. (Disappointing)
sync is lost, either in the transmission frame or in the reception frame but not in both. If this is a full-duplex protocol, then shouldmt sync loss be in both the frames?
by sycn loss, i mean, if i transmit tx_buff[0], then i must receive a byte in rx_buff[0].
I still do not see what chip Well, in that case, John Linq - Hats Off to you mate (how did you figured out).
@Erik, Sorry. its LPC1788.
Thank you Erik for all the concern and efforts that you are putting to help me. But i have figured out the solution. Appreciate your efforts.
PS: Ain't we trolling?
Why not use the FIFO functionality? Then you don't get one receive and one write interrupt for every word transfer.
By the way - I wouldn't bother to inform the OS about every byte transmitted in case I know I am transmitting a package. I would do the full transfer until the slave select signal gets deactivated and then inform whatever thread that one message is ready.
Note that you can use FIFO to reduce the number of interrupts. The SSP is way more capable than the very stupid SPI device.
And if you are sending messages, then there is no reason to inform the OS about each individual word transfer - it's enough to send an event when the transfer ends, to let the relevant task pick up the result and consider what new message to send.
If you are the receiver, then you can consider waiting with informing the thread until the slave select gets deactivated - unless you have a protocol that is doing the bad thing of keeping slave select active and sending both a question and expecting the slave to think and prepare a response on-the-fly within the same slave-select cycle.
It's harder to be the slave, but the chip is able to run several MBit/s as slave.
Thank you for clearing the air about FIFO. I have implemented the ISR for SSP. The protocol is a bit complicated. The slave sends the answer for the previous question (asked in previous SSEL cycle) that the master had asked, in the current SSEL cycle. If there was any communication failure, it is indicated by the NACK bytes transmission instead of the answer.
Then you could have the pin you connected slave select to generate a pin-change interrupt - or an external interrupt if the relevant pin happens to have EINTx support.
So SSP interrupt could just send out data and retrieve data (multiple words handled in each interrupt thanks to FIFO), interfacing with suitably large ring buffers. And the pin-change interrupt creates an event to report "transer done: process input and prepare new output".