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

Hex to float
Goto page Previous  1, 2
 
Post new topic   Reply to topic    CCS Forum Index -> General CCS C Discussion
View previous topic :: View next topic  
Author Message
Need Help
Guest







PostPosted: Thu Mar 22, 2007 12:18 am     Reply with quote

Hi Ttelmah,

i'm able to output the values using scaled integer when i using the printf only. However when i use the printf with tx_putc, there is no output in hyperterminal.
PCM programmer



Joined: 06 Sep 2003
Posts: 21708

View user's profile Send private message

PostPosted: Thu Mar 22, 2007 1:08 am     Reply with quote

Quote:

#define TX_BUFFER_SIZE (32)
int8 tx_buffer[TX_BUFFER_SIZE],tx_out=0,tx_in=0;
#define tx_empty (tx_out==tx_in)
#define incbuff(x) ((x+1) & ( TX_BUFFER_SIZE -1) )
#define tx_full (incbuff(tx_in)==tx_out)

If the buffer size is a power of 2, the bitmask should be the
buffer size -1. So I think you have to subtract one from
it, as shown above in bold.
Need Help
Guest







PostPosted: Thu Mar 22, 2007 1:52 am     Reply with quote

I m managed to obtain my output using the EX_STISR.C example. Thanks!
Display posts from previous:   
Post new topic   Reply to topic    CCS Forum Index -> General CCS C Discussion All times are GMT - 6 Hours
Goto page Previous  1, 2
Page 2 of 2

 
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