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

create int16 from float

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



Joined: 30 Sep 2010
Posts: 38

View user's profile Send private message

create int16 from float
PostPosted: Fri Dec 21, 2012 7:19 am     Reply with quote

hello,

Im trying to create a function that creates int16 from float. Is this correct?

Im sorry I meant to post this code

Code:

 void Set_Duty_Cycle(int8 DC, int16 Width)

     {
     
     int16 PW_ON, PW_OFF;
     
     float DC_percent;
     
     dc_percent = (float)DC / 100;
             
     
      pw_ON = dc_percent * Width;  //length of ON time
           
      pw_OFF = Width-pw_ON;        //length of OFF time
         
     
      return;
      }
            }


Last edited by davidd on Fri Dec 21, 2012 7:42 am; edited 1 time in total
Mike Walne



Joined: 19 Feb 2004
Posts: 1785
Location: Boston Spa UK

View user's profile Send private message

PostPosted: Fri Dec 21, 2012 7:31 am     Reply with quote

What are the ranges of your integer variables DC and Width?

Why convert to float?

What's wrong with int32?

For instance, when DC = 20, do you really mean 20%?

I suggest you plug some numbers in to see what happens.

Mike
davidd



Joined: 30 Sep 2010
Posts: 38

View user's profile Send private message

PostPosted: Fri Dec 21, 2012 7:44 am     Reply with quote

yes my goal is to set 16-bit timer values from integer 0 to 100%
Ttelmah



Joined: 11 Mar 2010
Posts: 19346

View user's profile Send private message

PostPosted: Fri Dec 21, 2012 8:32 am     Reply with quote

Remember if you multiply first, then you could stick with integers all the way....
Lots faster, and smaller.

Best Wishes
Mike Walne



Joined: 19 Feb 2004
Posts: 1785
Location: Boston Spa UK

View user's profile Send private message

PostPosted: Fri Dec 21, 2012 8:32 am     Reply with quote

OK. you've changed the question.

Again. Why convert to float.

Floats take a long time and can have rounding-off issues.

Depending on your range of values you may get away with int16 rather than int32.

This avoids floats:-
Code:
pw_ON = (DC * Width) /100;


You'll need to check there's no overflow problem with the intermediate results. You may need to cast to get it to work properly.

Mike
asmboy



Joined: 20 Nov 2007
Posts: 2128
Location: albany ny

View user's profile Send private message AIM Address

PostPosted: Fri Dec 21, 2012 9:57 am     Reply with quote

For completeness and reliability you might check the CASE sensitivity of
PW_ON, PW_OFF; in your code.

It seems never the same capitalization twice. Very Happy Very Happy Very Happy Very Happy

Not to mention that you make no external use of those local VARS.

And lastly as written, the constellation of resultant floats is still only 1 of 255 values ......
From dc_percent = (float)DC / 100;

Ttelmahs advice was awfully good - i can see it would be simple and much faster to stay with unsigned INT16 vars as your working VAR type and you would benefit from more resolution in DC - -
SO--
where does "DC" come from ? 8 bit A/D ? 10Bit A/d ? 12bit A/D ? more bits ?? it surely is not one part in 100 if its an ADC value is it ??
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