The
structure type corresponds to the two-phase
coordinate system, based on the Sin and Cos components of a certain angle. Each
member is of the
data type. The structure definition is as follows:
typedef struct
{
f16Sin;
f16Cos;
} GMCLIB_2COOR_SINCOS_T_F16;
The structure description is as follows:
Table A-17. GMCLIB_2COOR_SINCOS_T_F16 members description
Type
Name
Description
f16Sin
Sin component; 16-bit fractional type
f16Cos
Cos component; 16-bit fractional type
A.18 FALSE
The
macro serves to write a correct value standing for the logical FALSE value
of the
type. Its definition is as follows:
#define FALSE ((bool_t)0)
#include "mlib.h"
static bool_t bVal;
void main(void)
{
bVal = FALSE; /* bVal = FALSE */
}
A.19 TRUE
The
macro serves to write a correct value standing for the logical TRUE value of
the
type. Its definition is as follows:
#define TRUE ((bool_t)1)
#include "mlib.h"
static bool_t bVal;
FALSE
GMCLIB User's Guide, Rev. 2, 10/2015
74
Freescale Semiconductor, Inc.
Summary of Contents for DSP56800E
Page 1: ...GMCLIB User s Guide DSP56800E Document Number DSP56800EGMCLIBUG Rev 2 10 2015 ...
Page 2: ...GMCLIB User s Guide Rev 2 10 2015 2 Freescale Semiconductor Inc ...
Page 4: ...GMCLIB User s Guide Rev 2 10 2015 4 Freescale Semiconductor Inc ...
Page 64: ...GMCLIB_SvmU7n GMCLIB User s Guide Rev 2 10 2015 64 Freescale Semiconductor Inc ...
Page 78: ...GMCLIB User s Guide Rev 2 10 2015 78 Freescale Semiconductor Inc ...