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 16F877A

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



Joined: 06 Sep 2003
Posts: 21708

View user's profile Send private message

PostPosted: Thu Oct 20, 2005 2:32 pm     Reply with quote

Try a very simple test program like the code below.
If your crystal or oscillator is running at a different frequency
than 4 MHz, then change the #use delay() statement.
Also, if your crystal is at a higher frequency than 4 MHz,
change the fuse from "XT" to "HS".

Then look at pins 18 and 24 (on the 40-pin DIP package)
and you should see SCLK and SDO pulses. It worked for
me with the PicDem2-Plus board, and PCM compiler vs. 3.236.
Code:

#include <16F877A.H>
#fuses XT, NOWDT, NOPROTECT, BROWNOUT, PUT, NOLVP
#use delay(clock=4000000)

//===============================
main(void)
{

setup_spi(SPI_MASTER | SPI_L_TO_H | SPI_CLK_DIV_4);

while(1)
  {
   spi_write(0x55);
   delay_us(100);
  }

}
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