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

How to use #device WRITE_EEPROM=ASYNC

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







How to use #device WRITE_EEPROM=ASYNC
PostPosted: Tue Mar 01, 2005 12:53 pm     Reply with quote

I do not want to stop interrupting in the middle of writing.
It uses and it is thought the one at such time.
However, whether goodness when using it very is not understood. Please
teach someone.
PCM programmer



Joined: 06 Sep 2003
Posts: 21708

View user's profile Send private message

PostPosted: Tue Mar 01, 2005 3:38 pm     Reply with quote

To use it, just add the line shown below to your program.
Make sure you put the line immediately below the main "#include" line
as shown in this example.

#include <16F877.H>
#device WRITE_EEPROM=ASYNC
#fuses XT, NOWDT, NOPROTECT, BROWNOUT, PUT, NOLVP
#use delay(clock = 4000000)
//#use rs232(baud=9600, xmit=PIN_C6, rcv=PIN_C7, ERRORS)

#int_ext
void int_ext_isr(void)
{
char c;

c = 0xAA;
}


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

write_eeprom(0, 0x55);

while(1);
}
GUEST
Guest







PostPosted: Tue Mar 01, 2005 9:29 pm     Reply with quote

Thank you very much!
The result like hope it was obtained.
From ahead to instruction wanting it very much

Hereafter, please hold out.
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