Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

[SOLVED] SSI interface ? hardware vs software

Status
Not open for further replies.

Electro nS

Full Member level 6
Joined
Mar 9, 2013
Messages
324
Helped
49
Reputation
98
Reaction score
48
Trophy points
1,308
Activity points
3,818
hey guys

just wondering if anyone is familiar with the SSI interface (serial syncronous interface)

it is unidirectional communication technique on rs422 drivers for long distance

the problem i am having is inconsistent readings on a very short 10 feet cable !!

the inconsistacy is usually one bit and is never in the same place so data is received but distorted and off course this protocol doesnot require checksum or correction bits .

note : i am using a PIC microcontroller at 40mips , 2 simple GPIO for the communication at 100khz to 1Mhz clock, with serial com at 9600 port to view the data on PC . and very simple software which i am sure is 100% working

so any advise on solving the problem , could using dedicated SPI module with manual manipulation of the configuration bits be done to improve the results ?? could i use schmitt triggers and filter ?? or a specific ICs latches for hardware decoding
 

Hi Electro ns,

since SSI is a synchronous type of serial transfer and you generate the master clock it can be generated in software if you meet the timing of the device connected. The general SSI description can be found here: https://en.wikipedia.org/wiki/Synchronous_Serial_Interface . There are some differences from MFG to MFG and you need to have the timing requirement of the device you use. There is a setup and hold time, maximum clock speed and time out at the end you need to considered. Also no clock spikes are tolerable. At the beginning of the cycle you could check in software if the data line is high.

Enjoy your design work!
 
Hi Electro ns,

since SSI is a synchronous type of serial transfer and you generate the master clock it can be generated in software if you meet the timing of the device connected. The general SSI description can be found here: https://en.wikipedia.org/wiki/Synchronous_Serial_Interface . There are some differences from MFG to MFG and you need to have the timing requirement of the device you use. There is a setup and hold time, maximum clock speed and time out at the end you need to considered. Also no clock spikes are tolerable. At the beginning of the cycle you could check in software if the data line is high.

Enjoy your design work!

THANKS for your reply
i followed all these things , except for clock SPIKES , i have connected an oscilloscope and i can clearly see the spikes generated , any proposed solution ?
 

That is part of your emulation software sequence. Is it written in assembler or HLL?

Enjoy your design work!
 

That is part of your emulation software sequence. Is it written in assembler or HLL?

Enjoy your design work!

c code mplab , syntex looks like this very simple:
Code:
clk low  // inialize a request 
delay 1us 
clk high  
x=messageSize
while (x>=0)
{
delay 1us 
clk low
if Data==1 array[x] =1
else array[x]=0
delay 1us
clk high
x--;
}

please comment
 
Last edited by a moderator:

The SSI cycle is fixed with a clock edge from high to low and the number of clock cycles. Any clock edge in between will cause a false read. To test that the compiler generate a clean clock signal I would do a loop with the required number of bits(defined by the device you readout) and restart it again after the defined end delay(clock high time usually 13us) to see on the oscilloscope if the clock is clean.
It is of course essential that you know the specification of the device connected.

Enjoy your design work!
 
Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top