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 the write_program_memory() ??

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



Joined: 08 Sep 2003
Posts: 492
Location: India

View user's profile Send private message Send e-mail

How to use the write_program_memory() ??
PostPosted: Thu May 22, 2008 12:10 am     Reply with quote

Hi,

I am unable to understand how the write_program_memory() works.
Kindly explain what the parameters for the function do....

thanks
arunb
Blob



Joined: 02 Jan 2006
Posts: 75
Location: Neeroeteren, Limburg, Belgium

View user's profile Send private message

PostPosted: Thu May 22, 2008 6:27 am     Reply with quote

hello, look at thread

http://www.ccsinfo.com/forum/viewtopic.php?t=34633&highlight=

best regards
arunb



Joined: 08 Sep 2003
Posts: 492
Location: India

View user's profile Send private message Send e-mail

RE:
PostPosted: Thu May 22, 2008 6:59 am     Reply with quote

Is a pointer necessary for the function to work ?? or can I just use a variable such as

Code:

int16 i,value;
for(i=0x1000;i<=0x1fff;i++) {
write_program_memory(i, value, 2);
}


Please help..

thanks
arunb
Blob



Joined: 02 Jan 2006
Posts: 75
Location: Neeroeteren, Limburg, Belgium

View user's profile Send private message

PostPosted: Thu May 22, 2008 7:18 am     Reply with quote

nope, you need the pointer to this value.


it is not that hard.

just add a &.

Code:
int16 value;
value = 100;
write_program_memory(i, &value, 2)



best regards,

Blob
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