CCS C Software and Maintenance Offers
FAQFAQ   FAQForum Help   FAQOfficial CCS Support   SearchSearch  RegisterRegister 

ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

CCS does not monitor this forum on a regular basis.

Please do not post bug reports on this forum. Send them to support@ccsinfo.com

Spi communication between two PIC's

 
Post new topic   Reply to topic    CCS Forum Index -> General CCS C Discussion
View previous topic :: View next topic  
Author Message
MeRKeZ



Joined: 04 Sep 2012
Posts: 11

View user's profile Send private message

Spi communication between two PIC's
PostPosted: Tue Dec 16, 2014 5:46 am     Reply with quote

Hi friends,

I'm developing a project two pic communicates via SPI in, but I have a problem. I send 8 bytes from master to slave and I get eight bytes from slave. I can't get first byte from slave properly. The others are fine. I must get 0 as a first byte but I get 49 which is the ascii value of '1'. How can I solve this problem?

Thanks in advance

Master
Code:

            output_low(Slave1);
            spi_write('1');
            output_high(Slave1);
           
            for(i=0;i<8;i++)
            {
               if(control==1)
               {
                  control = 0;
                  receivedData = 0;
                  output_low(Slave1);
                  spi_write(data[i]);                 
                  while(!spi_data_is_in());
                  receivedData = spi_read();
                  output_high(Slave1);
                  control= 1;
                  printf(lcd_putc,"\fdata: %d",receivedData);
                  delay_ms(500);
               }
            }



Slave
Code:

         if(spi_data_is_in())
         {
         
            data = spi_read();
            delay_ms(5);
           
            if(data == '1')
            {
               for(i=0;i<8;i++)
                {   
                  while(!spi_data_is_in());
                  data = spi_read();
                  delay_ms(5);
                  spi_write(i);
                }
             }
          }
Ttelmah



Joined: 11 Mar 2010
Posts: 19338

View user's profile Send private message

PostPosted: Tue Dec 16, 2014 9:37 am     Reply with quote

Key problem is understanding how SPI works.

With SPI, the master clocks a byte out, and receives back, what was _already loaded_ in the slave register.
In your case, you send '1', so this is in the slave's register. You need to load the slave's register with the first byte, as soon as the '1' is received, not _after_ the next transaction. So:
Code:

         if(spi_data_is_in())
         {
         
            data = spi_read();
            //Don't delay. The slave is synchronised by the master
           
            if(data == '1')
            {
               for(i=0;i<8;i++)
                {
                  spi_write(i); //Write the byte _ahead_ of the transaction 
                  while(!spi_data_is_in());
                  data = spi_read();
                  //again don't delay
                }
             }
          }


You have to 'think ahead' each time, loading the next byte _before_ the master clocks a transaction.
MeRKeZ



Joined: 04 Sep 2012
Posts: 11

View user's profile Send private message

PostPosted: Tue Dec 16, 2014 11:50 am     Reply with quote

@Ttelmah

Thank you so much for helping. I both solved the problem and understand how it works clearly thanks to you. Thank you
Display posts from previous:   
Post new topic   Reply to topic    CCS Forum Index -> General CCS C Discussion All times are GMT - 6 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group