03.08.2013 Views

Embedded Software and Motor Control Libraries for PXR40xx

Embedded Software and Motor Control Libraries for PXR40xx

Embedded Software and Motor Control Libraries for PXR40xx

SHOW MORE
SHOW LESS

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

Function MLIB_Add_F32<br />

This inline function returns the sum of two input values. The input values as well as<br />

output value is considered as 32-bit fractional data type. The output saturation is not<br />

implemented in this function, thus in case the sum of input values is outside the (-1, 1)<br />

interval, the output value will overflow without any detection.<br />

Note<br />

Due to effectivity reason this function is implemented as inline<br />

<strong>and</strong> thus is not ANSI-C compliant.<br />

4.120.5 Re-entrancy:<br />

The function is re-entrant.<br />

4.120.6 Code Example:<br />

#include "mlib.h"<br />

tFrac32 f32In1, f32In2;<br />

tFrac32 f32Out;<br />

void main(void)<br />

{<br />

// input value 1 = 0.25<br />

f32In1 = FRAC32 (0.25);<br />

// input value 2 = 0.25<br />

f32In2 = FRAC32 (0.25);<br />

}<br />

// output should be FRAC32(0.5) = 0x40000000<br />

f32Out = MLIB_Add_F32(f32In1, f32In2);<br />

// output should be FRAC32(0.5) = 0x40000000<br />

f32Out = MLIB_Add (f32In1, f32In2, Define F32);<br />

// ##############################################################<br />

// Available only if 32-bit fractional implementation selected<br />

// as default<br />

// ##############################################################<br />

// output should be FRAC32(0.5) = 0x40000000<br />

f32Out = MLIB_Add (f32In1, f32In2);<br />

The output of the function is defined by the following simple equation:<br />

Equation MLIB_Add_Eq1<br />

<strong>Embedded</strong> <strong>Software</strong> <strong>and</strong> <strong>Motor</strong> <strong>Control</strong> <strong>Libraries</strong> <strong>for</strong> <strong>PXR40xx</strong>, Rev. 1.0<br />

554 Freescale Semiconductor, Inc.

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!