![CG Emotron VFX Series Скачать руководство пользователя страница 78](http://html1.mh-extra.com/html/cg/emotron-vfx-series/emotron-vfx-series_instruction-manual_2585388078.webp)
74
Serial communication
CG Drives & Automation, 01-5326-01r5
Programming example:
typedef struct
{
int m:11; // mantissa, -1024..1023
int e: 4; // exponent -8..7
unsigned int f: 1; // format, 1->special emoint format
} eint16;
//---------------------------------------------------------------------------
unsigned short int float_to_eint16(float value)
{
eint16 etmp;
int dec=0;
while (floor(value) != value && dec<16)
{
dec++; value*=10;
}
if (value>=0 && value<=32767 && dec==0)
*(short int *)&etmp=(short int)value;
else if (value>=-1000 && value<0 && dec==0)
{
etmp.e=0;
etmp.f=1;
etmp.m=(short int)value;
}
else
{
etmp.m=0;
etmp.f=1;
etmp.e=-dec;
if (value>=0)
etmp.m=1; // Set sign
else
etmp.m=-1; // Set sign
value=fabs(value);
while (value>1000)
{
etmp.e++; // increase exponent
value=value/10;
}
value+=0.5; // round
etmp.m=etmp.m*value; // make signed
}
R
return (*(unsigned short int *)&etmp);
}
//---------------------------------------------------------------------------
float eint16_to_float(unsigned short int value)
{
float f;
eint16 evalue;
evalue=*(eint16 *)&value;
if (evalue.f)
{
if (evalue.e>=0)
f=(int)evalue.m*pow10(evalue.e);
else
f=(int)evalue.m/pow10(abs(evalue.e));
}
else
f=value;
return f;
}
//---------------------------------------------------------------------------
Содержание Emotron VFX Series
Страница 1: ...Emotron VFX 2 0 AC drive Instruction manual English Valid from software version 4 42...
Страница 2: ......
Страница 4: ......
Страница 10: ...6 CG Drives Automation 01 5326 01r5...
Страница 50: ...46 Installation CG Drives Automation 01 5326 01r5...
Страница 62: ...58 Getting Started CG Drives Automation 01 5326 03r5...
Страница 74: ...70 EMC and standards CG Drives Automation 01 5326 01r5...
Страница 90: ...86 Operation via the Control Panel CG Drives Automation 01 5326 01r5...
Страница 218: ...216 CG Drives Automation 01 5326 01r5...
Страница 226: ...224 Troubleshooting Diagnoses and Maintenance CG Drives Automation 01 5326 01r5...
Страница 236: ...234 Options CG Drives Automation 01 5326 01r5...
Страница 256: ...254 Technical Data CG Drives Automation 01 5326 01r5...
Страница 267: ......