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

"printf" and "int32"

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



Joined: 19 Nov 2003
Posts: 22

View user's profile Send private message

"printf" and "int32"
PostPosted: Fri Feb 27, 2004 11:18 am     Reply with quote

Hej,

I'm using a int32 variable and I'm wondering which the format for the printf instruction. I've tried with %lu but it's not working :(

Cheers,

ibg

The code is the following...

Code:
void initiate_freq_array(int32 a_freq_array[])
{
   int i;

   for (i= 0; i < NUMBER_OF_FREQUENCIES; i++)
   {
      a_freq_array[i]= 150000 + (10*i);
      fprintf(DEBUG, "a_freq_array[%d]= %u \n", i, a_freq_array[i]);

   }
}
PCM programmer



Joined: 06 Sep 2003
Posts: 21708

View user's profile Send private message

PostPosted: Fri Feb 27, 2004 5:15 pm     Reply with quote

Your 10*i value is only 8-bit. With CCS, you need to tell
the compiler to promote it to 32 bits. See the code below:

a_freq_array[i]= 150000 + (int32)(10*i);
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