криво работает return_type, надо разобратся

чет поделано в коде для тмс
This commit is contained in:
2025-07-14 17:54:49 +03:00
parent 6428e523df
commit 7b720cbdf4
7 changed files with 683 additions and 612 deletions

Binary file not shown.

View File

@@ -182,7 +182,7 @@ class VariableSelectorDialog(QDialog):
new_var = {
'name': name, 'type': type_str, 'show_var': 'true',
'enable': 'true', 'shortname': name, 'pt_type': '', 'iq_type': '',
'return_type': 'iq_none', 'file': file_val,
'return_type': 't_iq_none', 'file': file_val,
'extern': str(extern_val).lower() if extern_val else 'false',
'static': str(static_val).lower() if static_val else 'false',
}

View File

@@ -545,7 +545,7 @@ def read_vars_from_xml(xml_path):
'shortname': var_elem.findtext('shortname', name),
'pt_type': var_elem.findtext('pt_type', ''),
'iq_type': var_elem.findtext('iq_type', ''),
'return_type': var_elem.findtext('return_type', 'int'),
'return_type': var_elem.findtext('return_type', 'pt_iq_none'),
'type': var_elem.findtext('type', 'unknown'),
'file': var_elem.findtext('file', ''),
'extern': get_bool('extern'),
@@ -608,7 +608,7 @@ def generate_xml_output(proj_path, xml_path, unique_vars, h_files_needed, vars_n
'shortname': info.get('shortname', name),
'pt_type': info.get('pt_type', ''),
'iq_type': info.get('iq_type', ''),
'return_type': info.get('return_type', 'int'),
'return_type': info.get('return_type', 'pt_iq_none'),
'type': info.get('type', 'unknown'),
'file': info.get('file', ''),
'extern': info.get('extern', False),
@@ -627,7 +627,7 @@ def generate_xml_output(proj_path, xml_path, unique_vars, h_files_needed, vars_n
ET.SubElement(var_elem, "shortname").text = info.get('shortname', name)
ET.SubElement(var_elem, "pt_type").text = info.get('pt_type', '')
ET.SubElement(var_elem, "iq_type").text = info.get('iq_type', '')
ET.SubElement(var_elem, "return_type").text = info.get('return_type', 'int')
ET.SubElement(var_elem, "return_type").text = info.get('return_type', 'pt_iq_none')
ET.SubElement(var_elem, "type").text = info.get('type', 'unknown')
rel_file = make_relative_if_possible(info.get('file', ''), proj_path).replace("\\", "/")

View File

@@ -8,13 +8,15 @@ static int convertDebugVarToIQx(DebugVar_t *var, long *ret_var);
///////////////////////////----EXAPLE-----//////////////////////////////
long var_numb = 1;
DebugVarName_t var_name;
long return_var;
long return_ll_var;
int result;
char ext_date[] = {7, 233, 11, 07, 16, 50};
void Debug_Test_Example(void)
{
result = Debug_ReadVar(&dbg_vars[var_numb], &return_var);
result = Debug_ReadVar(var_numb, &return_var);
result = Debug_ReadVarName(var_numb, var_name);
if(Debug_LowLevel_Initialize(ext_date) == 0)
@@ -22,6 +24,47 @@ void Debug_Test_Example(void)
}
///////////////////////////----PUBLIC-----//////////////////////////////
int Debug_ReadVar(int var_ind, long *return_long)
{
if(return_long == NULL)
return 1;
long tmp_var;
if (var_ind >= DebugVar_Qnt)
return 1;
if((dbg_vars[var_numb].ptr_type == pt_struct) || (dbg_vars[var_numb].ptr_type == pt_union) ||
(dbg_vars[var_numb].ptr_type == pt_unknown))
return 1;
return convertDebugVarToIQx(&dbg_vars[var_numb], return_long);
}
int Debug_ReadVarName(int var_ind, DebugVarName_t name_ptr)
{
if(name_ptr == NULL)
return 1;
if (var_ind >= DebugVar_Qnt)
return 1;
int i;
// Êîïèðîâàíèå ñ çàùèòîé îò ïåðåïîëíåíèÿ è ÿâíîé îñòàíîâêîé ïî '\0'
for (i = 0; i < sizeof(dbg_vars[var_numb].name); i++)
{
name_ptr[i] = dbg_vars[var_numb].name[i];
if (dbg_vars[var_numb].name[i] == '\0')
break;
}
// Ãàðàíòèðîâàííîå çàâåðøåíèå ñòðîêè (íà ñëó÷àé, åñëè â var->name íå áûëî '\0')
name_ptr[sizeof(dbg_vars[var_numb].name) - 1] = '\0';
return 0;
}
int Debug_LowLevel_ReadVar(long *return_long)
{
if (return_long == NULL)
@@ -46,46 +89,11 @@ int Debug_LowLevel_ReadVar(long *return_long)
return 2; // Çàïðåù¸ííûé àäðåñ — íåëüçÿ ÷èòàòü
}
convertDebugVarToIQx(&debug_ll.dbg_var, return_long);
return 0;
return convertDebugVarToIQx(&debug_ll.dbg_var, return_long);
;
}
int Debug_ReadVar(DebugVar_t *var, long *return_long)
{
long tmp_var;
if (var == NULL)
return 1;
if((var->ptr_type == pt_struct) || (var->ptr_type == pt_union) ||
(var->ptr_type == pt_unknown))
return 1;
convertDebugVarToIQx(var, return_long);
return 0;
}
int Debug_ReadVarName(DebugVar_t *var, char *name_ptr)
{
if((var == NULL)||(name_ptr == NULL))
return 1;
int i;
// Êîïèðîâàíèå ñ çàùèòîé îò ïåðåïîëíåíèÿ è ÿâíîé îñòàíîâêîé ïî '\0'
for (i = 0; i < sizeof(var->name); i++)
{
name_ptr[i] = var->name[i];
if (var->name[i] == '\0')
break;
}
// Ãàðàíòèðîâàííîå çàâåðøåíèå ñòðîêè (íà ñëó÷àé, åñëè â var->name íå áûëî '\0')
name_ptr[sizeof(var->name) - 1] = '\0';
return 0;
}
int Debug_LowLevel_Initialize(const char* external_date)
{
if (external_date == NULL) {
@@ -121,6 +129,18 @@ int Debug_LowLevel_Initialize(const char* external_date)
/////////////////////----INTERNAL FUNCTIONS-----////////////////////////
static int iqTypeToQ(DebugVarIQType_t t)
{
if (t == t_iq_none)
return 0; // áåç IQ, float, int
else if (t == t_iq)
return GLOBAL_Q; // îáùèé IQ, íàïðèìåð 24
else if (t >= t_iq1 && t <= t_iq30)
return (int)t - (int)t_iq1 + 1; // íàïðèìåð t_iq1 -> 1, t_iq2 -> 2 è ò.ä.
else
return -1; // îøèáêà
}
static int convertDebugVarToIQx(DebugVar_t *var, long *ret_var)
{
long iq_numb, iq_united, iq_final;
@@ -129,214 +149,53 @@ static int convertDebugVarToIQx(DebugVar_t *var, long *ret_var)
if(getDebugVar(var, &iq_numb, &float_numb) != 0)
return 1;
// ïðèâåäåíèå ê îäíîìó IQ
switch(var->iq_type)
{
case t_iq_none:
if(var->ptr_type == pt_float)
{
iq_united = _IQ(float_numb);
}
else
{
iq_united = _IQ(iq_numb);
}
break;
case t_iq1:
iq_united = _IQ1toIQ(iq_numb);
break;
case t_iq2:
iq_united = _IQ2toIQ(iq_numb);
break;
case t_iq3:
iq_united = _IQ3toIQ(iq_numb);
break;
case t_iq4:
iq_united = _IQ4toIQ(iq_numb);
break;
case t_iq5:
iq_united = _IQ5toIQ(iq_numb);
break;
case t_iq6:
iq_united = _IQ6toIQ(iq_numb);
break;
case t_iq7:
iq_united = _IQ7toIQ(iq_numb);
break;
case t_iq8:
iq_united = _IQ8toIQ(iq_numb);
break;
case t_iq9:
iq_united = _IQ9toIQ(iq_numb);
break;
case t_iq10:
iq_united = _IQ10toIQ(iq_numb);
break;
case t_iq11:
iq_united = _IQ11toIQ(iq_numb);
break;
case t_iq12:
iq_united = _IQ12toIQ(iq_numb);
break;
case t_iq13:
iq_united = _IQ13toIQ(iq_numb);
break;
case t_iq14:
iq_united = _IQ14toIQ(iq_numb);
break;
case t_iq15:
iq_united = _IQ15toIQ(iq_numb);
break;
case t_iq16:
iq_united = _IQ16toIQ(iq_numb);
break;
case t_iq17:
iq_united = _IQ17toIQ(iq_numb);
break;
case t_iq18:
iq_united = _IQ18toIQ(iq_numb);
break;
case t_iq19:
iq_united = _IQ19toIQ(iq_numb);
break;
case t_iq20:
iq_united = _IQ20toIQ(iq_numb);
break;
case t_iq21:
iq_united = _IQ21toIQ(iq_numb);
break;
case t_iq22:
iq_united = _IQ22toIQ(iq_numb);
break;
case t_iq23:
iq_united = _IQ23toIQ(iq_numb);
break;
case t_iq24:
iq_united = _IQ24toIQ(iq_numb);
break;
case t_iq25:
iq_united = _IQ25toIQ(iq_numb);
break;
case t_iq26:
iq_united = _IQ26toIQ(iq_numb);
break;
case t_iq27:
iq_united = _IQ27toIQ(iq_numb);
break;
case t_iq28:
iq_united = _IQ28toIQ(iq_numb);
break;
case t_iq29:
iq_united = _IQ29toIQ(iq_numb);
break;
case t_iq30:
iq_united = _IQ30toIQ(iq_numb);
break;
int src_q = iqTypeToQ(var->iq_type);
int dst_q = iqTypeToQ(var->return_type);
if (src_q < 0 || dst_q < 0)
return 2; // íåïðàâèëüíûé ôîðìàò
long long iq_united64 = 0;
long long iq_final64 = 0;
// Êîíâåðòàöèÿ ê GLOBAL_Q (64-áèò)
if (var->iq_type == t_iq_none) {
if (var->ptr_type == pt_float) {
// float_numb óìíîæàåì íà 2^GLOBAL_Q (2^24=16777216)
// Ðåçóëüòàò ïðèâîäèì ê long long
iq_united64 = (long long)(float_numb * 16777216.0f);
} else {
iq_united64 = ((long long)iq_numb) << GLOBAL_Q;
}
} else {
int shift = GLOBAL_Q - src_q;
if (shift >= 0)
iq_united64 = ((long long)iq_numb) << shift;
else
iq_united64 = ((long long)iq_numb) >> (-shift);
}
// ïðèâåäåíèå îáùåãî IQ ê çàïðàøèâàåìîìó
switch(var->return_type)
{
case t_iq_none:
iq_final = (long)_IQtoF(iq_united);
break;
case t_iq1:
iq_final = _IQtoIQ1(iq_united);
break;
case t_iq2:
iq_final = _IQtoIQ2(iq_united);
break;
case t_iq3:
iq_final = _IQtoIQ3(iq_united);
break;
case t_iq4:
iq_final = _IQtoIQ4(iq_united);
break;
case t_iq5:
iq_final = _IQtoIQ5(iq_united);
break;
case t_iq6:
iq_final = _IQtoIQ6(iq_united);
break;
case t_iq7:
iq_final = _IQtoIQ7(iq_united);
break;
case t_iq8:
iq_final = _IQtoIQ8(iq_united);
break;
case t_iq9:
iq_final = _IQtoIQ9(iq_united);
break;
case t_iq10:
iq_final = _IQtoIQ10(iq_united);
break;
case t_iq11:
iq_final = _IQtoIQ11(iq_united);
break;
case t_iq12:
iq_final = _IQtoIQ12(iq_united);
break;
case t_iq13:
iq_final = _IQtoIQ13(iq_united);
break;
case t_iq14:
iq_final = _IQtoIQ14(iq_united);
break;
case t_iq15:
iq_final = _IQtoIQ15(iq_united);
break;
case t_iq16:
iq_final = _IQtoIQ16(iq_united);
break;
case t_iq17:
iq_final = _IQtoIQ17(iq_united);
break;
case t_iq18:
iq_final = _IQtoIQ18(iq_united);
break;
case t_iq19:
iq_final = _IQtoIQ19(iq_united);
break;
case t_iq20:
iq_final = _IQtoIQ20(iq_united);
break;
case t_iq21:
iq_final = _IQtoIQ21(iq_united);
break;
case t_iq22:
iq_final = _IQtoIQ22(iq_united);
break;
case t_iq23:
iq_final = _IQtoIQ23(iq_united);
break;
case t_iq24:
iq_final = _IQtoIQ24(iq_united);
break;
case t_iq25:
iq_final = _IQtoIQ25(iq_united);
break;
case t_iq26:
iq_final = _IQtoIQ26(iq_united);
break;
case t_iq27:
iq_final = _IQtoIQ27(iq_united);
break;
case t_iq28:
iq_final = _IQtoIQ28(iq_united);
break;
case t_iq29:
iq_final = _IQtoIQ29(iq_united);
break;
case t_iq30:
iq_final = _IQtoIQ30(iq_united);
break;
// Êîíâåðòàöèÿ èç GLOBAL_Q â öåëåâîé IQ (64-áèò)
if (var->return_type == t_iq_none) {
// Âîçâðàùàåì öåëîå, îòáðîñèâ äðîáíóþ ÷àñòü
*ret_var = (long)(iq_united64 >> GLOBAL_Q);
} else {
int shift = dst_q - GLOBAL_Q;
if (shift >= 0)
iq_final64 = iq_united64 << shift;
else
iq_final64 = iq_united64 >> (-shift);
// Ïðîâåðÿåì ïåðåïîëíåíèå int32_t
if (iq_final64 > LONG_MAX || iq_final64 < LONG_MIN)
return 3; // ïåðåïîëíåíèå
*ret_var = (long)iq_final64;
}
*ret_var = iq_final;
return 0;
}
static int getDebugVar(DebugVar_t *var, long *int_var, float *float_var)
{
if (!var || !int_var || !float_var || !var->Ptr)
@@ -355,21 +214,19 @@ static int getDebugVar(DebugVar_t *var, long *int_var, float *float_var)
case pt_int16: // 16 áèò (int)
case pt_uint16:
if (addr_val & 0x1) // ïðîâåðêà âûðàâíèâàíèÿ ïî 2 áàéòàì
return 2; // îøèáêà âûðàâíèâàíèÿ
*int_var = *((volatile int *)addr);
break;
case pt_int32: // 32 áèò (long)
case pt_uint32:
if (addr_val & 0x3) // ïðîâåðêà âûðàâíèâàíèÿ ïî 4 áàéòàì
if (addr_val & 0x1) // ïðîâåðÿåì âûðàâíèâàíèå ïî 2 ñëîâàì (4 áàéòà)
return 3; // îøèáêà âûðàâíèâàíèÿ
*int_var = *((volatile long *)addr);
break;
// case pt_int64: // 64 áèò (long long)
// case pt_uint64:
// if (addr_val & 0x7) // ïðîâåðêà âûðàâíèâàíèÿ ïî 8 áàéòàì
// if (addr_val & 0x3) // ïðîâåðêà âûðàâíèâàíèÿ ïî 4 ñëîâàì (8 áàéòàì)
// return 2; // îøèáêà âûðàâíèâàíèÿ
// // Òóò ïðîñòî ÷èòàåì, íî long long ìîæåò íå ïîìåñòèòüñÿ â *int_var
// // Ìîæíî çàìåíèòü ëîãèêó ïîä 64-áèòíîå ÷òåíèå ïðè íåîáõîäèìîñòè
@@ -377,7 +234,7 @@ static int getDebugVar(DebugVar_t *var, long *int_var, float *float_var)
// break;
case pt_float: // float (4 áàéòà)
if (addr_val & 0x3) // ïðîâåðêà âûðàâíèâàíèÿ ïî 4 áàéòàì
if (addr_val & 0x1) // ïðîâåðêà âûðàâíèâàíèÿ ïî 2 ñëîâàì
return 4; // îøèáêà âûðàâíèâàíèÿ
*float_var = *((volatile float *)addr);
break;
@@ -401,3 +258,212 @@ static int getDebugVar(DebugVar_t *var, long *int_var, float *float_var)
return 0; // óñïåõ
}
///////////// OUTDATE ////////////////
//
// // ïðèâåäåíèå ê îäíîìó IQ
// switch(var->iq_type)
// {
// case t_iq_none:
// if(var->ptr_type == pt_float)
// {
// iq_united = _IQ(float_numb);
// }
// else
// {
// iq_united = _IQ(iq_numb);
// }
// break;
// case t_iq1:
// iq_united = _IQ1toIQ(iq_numb);
// break;
// case t_iq2:
// iq_united = _IQ2toIQ(iq_numb);
// break;
// case t_iq3:
// iq_united = _IQ3toIQ(iq_numb);
// break;
// case t_iq4:
// iq_united = _IQ4toIQ(iq_numb);
// break;
// case t_iq5:
// iq_united = _IQ5toIQ(iq_numb);
// break;
// case t_iq6:
// iq_united = _IQ6toIQ(iq_numb);
// break;
// case t_iq7:
// iq_united = _IQ7toIQ(iq_numb);
// break;
// case t_iq8:
// iq_united = _IQ8toIQ(iq_numb);
// break;
// case t_iq9:
// iq_united = _IQ9toIQ(iq_numb);
// break;
// case t_iq10:
// iq_united = _IQ10toIQ(iq_numb);
// break;
// case t_iq11:
// iq_united = _IQ11toIQ(iq_numb);
// break;
// case t_iq12:
// iq_united = _IQ12toIQ(iq_numb);
// break;
// case t_iq13:
// iq_united = _IQ13toIQ(iq_numb);
// break;
// case t_iq14:
// iq_united = _IQ14toIQ(iq_numb);
// break;
// case t_iq15:
// iq_united = _IQ15toIQ(iq_numb);
// break;
// case t_iq16:
// iq_united = _IQ16toIQ(iq_numb);
// break;
// case t_iq17:
// iq_united = _IQ17toIQ(iq_numb);
// break;
// case t_iq18:
// iq_united = _IQ18toIQ(iq_numb);
// break;
// case t_iq19:
// iq_united = _IQ19toIQ(iq_numb);
// break;
// case t_iq20:
// iq_united = _IQ20toIQ(iq_numb);
// break;
// case t_iq21:
// iq_united = _IQ21toIQ(iq_numb);
// break;
// case t_iq22:
// iq_united = _IQ22toIQ(iq_numb);
// break;
// case t_iq23:
// iq_united = _IQ23toIQ(iq_numb);
// break;
// case t_iq24:
// iq_united = _IQ24toIQ(iq_numb);
// break;
// case t_iq25:
// iq_united = _IQ25toIQ(iq_numb);
// break;
// case t_iq26:
// iq_united = _IQ26toIQ(iq_numb);
// break;
// case t_iq27:
// iq_united = _IQ27toIQ(iq_numb);
// break;
// case t_iq28:
// iq_united = _IQ28toIQ(iq_numb);
// break;
// case t_iq29:
// iq_united = _IQ29toIQ(iq_numb);
// break;
// case t_iq30:
// iq_united = _IQ30toIQ(iq_numb);
// break;
// }
//
// // ïðèâåäåíèå îáùåãî IQ ê çàïðàøèâàåìîìó
// switch(var->return_type)
// {
// case t_iq_none:
// iq_final = (long)_IQtoF(iq_united);
// break;
// case t_iq1:
// iq_final = _IQtoIQ1(iq_united);
// break;
// case t_iq2:
// iq_final = _IQtoIQ2(iq_united);
// break;
// case t_iq3:
// iq_final = _IQtoIQ3(iq_united);
// break;
// case t_iq4:
// iq_final = _IQtoIQ4(iq_united);
// break;
// case t_iq5:
// iq_final = _IQtoIQ5(iq_united);
// break;
// case t_iq6:
// iq_final = _IQtoIQ6(iq_united);
// break;
// case t_iq7:
// iq_final = _IQtoIQ7(iq_united);
// break;
// case t_iq8:
// iq_final = _IQtoIQ8(iq_united);
// break;
// case t_iq9:
// iq_final = _IQtoIQ9(iq_united);
// break;
// case t_iq10:
// iq_final = _IQtoIQ10(iq_united);
// break;
// case t_iq11:
// iq_final = _IQtoIQ11(iq_united);
// break;
// case t_iq12:
// iq_final = _IQtoIQ12(iq_united);
// break;
// case t_iq13:
// iq_final = _IQtoIQ13(iq_united);
// break;
// case t_iq14:
// iq_final = _IQtoIQ14(iq_united);
// break;
// case t_iq15:
// iq_final = _IQtoIQ15(iq_united);
// break;
// case t_iq16:
// iq_final = _IQtoIQ16(iq_united);
// break;
// case t_iq17:
// iq_final = _IQtoIQ17(iq_united);
// break;
// case t_iq18:
// iq_final = _IQtoIQ18(iq_united);
// break;
// case t_iq19:
// iq_final = _IQtoIQ19(iq_united);
// break;
// case t_iq20:
// iq_final = _IQtoIQ20(iq_united);
// break;
// case t_iq21:
// iq_final = _IQtoIQ21(iq_united);
// break;
// case t_iq22:
// iq_final = _IQtoIQ22(iq_united);
// break;
// case t_iq23:
// iq_final = _IQtoIQ23(iq_united);
// break;
// case t_iq24:
// iq_final = _IQtoIQ24(iq_united);
// break;
// case t_iq25:
// iq_final = _IQtoIQ25(iq_united);
// break;
// case t_iq26:
// iq_final = _IQtoIQ26(iq_united);
// break;
// case t_iq27:
// iq_final = _IQtoIQ27(iq_united);
// break;
// case t_iq28:
// iq_final = _IQtoIQ28(iq_united);
// break;
// case t_iq29:
// iq_final = _IQtoIQ29(iq_united);
// break;
// case t_iq30:
// iq_final = _IQtoIQ30(iq_united);
// break;
// }
// *ret_var = iq_final;

View File

@@ -67,13 +67,14 @@ typedef enum
t_iq30
}DebugVarIQType_t;
typedef char DebugVarName_t[11];
typedef struct
{
char* Ptr;
DebugVarPtrType_t ptr_type;
DebugVarIQType_t iq_type;
DebugVarIQType_t return_type;
char name[11]; // 10 ñèìâîëîâ + '\0'
DebugVarName_t name;
}DebugVar_t;
typedef struct {
@@ -102,9 +103,9 @@ extern DebugVar_t dbg_vars[];
void Debug_Test_Example(void);
int Debug_ReadVar(int var_ind, long *return_long);
int Debug_ReadVarName(int var_ind, DebugVarName_t name_ptr);
int Debug_LowLevel_ReadVar(long *return_long);
int Debug_ReadVar(DebugVar_t *var, long *return_long);
int Debug_ReadVarName(DebugVar_t *var, char *name_ptr);
int Debug_LowLevel_Initialize(const char* external_date);
#endif //DEBUG_TOOLS

View File

@@ -3,31 +3,31 @@
// Èíêëþäû äëÿ äîñòóïà ê ïåðåìåííûì
#include "xp_project.h"
#include "RS_Functions_modbus.h"
#include "adc_tools.h"
#include "errors.h"
#include "pwm_vector_regul.h"
#include "vector.h"
#include "f281xpwm.h"
#include "errors.h"
#include "RS_Functions_modbus.h"
#include "xp_project.h"
#include "adc_tools.h"
#include "pwm_vector_regul.h"
#include "log_can.h"
#include "f281xpwm.h"
#include "v_pwm24.h"
#include "xp_write_xpwm_time.h"
#include "rotation_speed.h"
#include "teta_calc.h"
#include "dq_to_alphabeta_cos.h"
#include "teta_calc.h"
#include "rotation_speed.h"
#include "detect_phase_break2.h"
#include "RS_Functions.h"
#include "Spartan2E_Functions.h"
#include "xp_controller.h"
#include "xp_rotation_sensor.h"
#include "x_serial_bus.h"
#include "x_parallel_bus.h"
#include "xPeriphSP6_loader.h"
#include "Spartan2E_Functions.h"
#include "x_serial_bus.h"
#include "xp_rotation_sensor.h"
#include "RS_Functions.h"
#include "detect_phase_break2.h"
#include "log_to_memory.h"
#include "CRC_Functions.h"
#include "CAN_Setup.h"
#include "log_params.h"
#include "CAN_Setup.h"
#include "CRC_Functions.h"
#include "log_to_memory.h"
#include "global_time.h"
#include "svgen_dq.h"
#include "pid_reg3.h"
@@ -261,7 +261,6 @@ extern T_controller_read r_controller;
extern FIFO refo;
extern TMS_TO_TERMINAL_STRUCT reply;
extern TMS_TO_TERMINAL_TEST_ALL_STRUCT reply_test_all;
extern long return_var;
extern RMP_MY1 rmp_freq;
extern RMP_MY1 rmp_wrot;
extern T_rotation_sensor rotation_sensor;
@@ -297,7 +296,6 @@ extern int time_pause_logs;
extern int time_pause_titles;
extern volatile int tryNumb;
extern UNITES_CAN_SETUP unites_can_setup;
extern long var_numb;
extern VECTOR_CONTROL vect_control;
extern WaterCooler water_cooler;
extern _iq winding_displacement;
@@ -314,24 +312,30 @@ extern int zero_ADC[20];
// Îïðåäåëåíèå ìàññèâà ñ óêàçàòåëÿìè íà ïåðåìåííûå äëÿ îòëàäêè
int DebugVar_Qnt = 17;
int DebugVar_Qnt = 23;
#pragma DATA_SECTION(dbg_vars,".dbgvar_info")
DebugVar_t dbg_vars[] = {\
{(char *)&ADC0finishAddr, pt_int16, t_iq_none, t_iq_none, "ADC0finish" }, \
{(char *)&ADC_sf[0][0], pt_int16, t_iq_none, t_iq_none, "ADC_sf[0][" }, \
{(char *)&ADC_sf[0][1], pt_int16, t_iq_none, t_iq_none, "ADC_sf[0][" }, \
{(char *)&ADC_sf[0][2], pt_int16, t_iq_none, t_iq_none, "ADC_sf[0][" }, \
{(char *)&ADC_sf[0][3], pt_int16, t_iq_none, t_iq_none, "ADC_sf[0][" }, \
{(char *)&ADC_sf[0][4], pt_int16, t_iq_none, t_iq_none, "ADC_sf[0][" }, \
{(char *)&ADC_sf[0][5], pt_int16, t_iq_none, t_iq_none, "ADC_sf[0][" }, \
{(char *)&ADC_sf[0][6], pt_int16, t_iq_none, t_iq_none, "ADC_sf[0][" }, \
{(char *)&ADC_sf[0][7], pt_int16, t_iq_none, t_iq_none, "ADC_sf[0][" }, \
{(char *)&ADC_sf[0][8], pt_int16, t_iq_none, t_iq_none, "ADC_sf[0][" }, \
{(char *)&ADC_sf[0][9], pt_int16, t_iq_none, t_iq_none, "ADC_sf[0][" }, \
{(char *)&ADC_sf[0][10], pt_int16, t_iq_none, t_iq_none, "ADC_sf[0][" }, \
{(char *)&ADC_sf[0][11], pt_int16, t_iq_none, t_iq_none, "ADC_sf[0][" }, \
{(char *)&ADC_sf[0][12], pt_int16, t_iq_none, t_iq_none, "ADC_sf[0][" }, \
{(char *)&ADC_sf[0][13], pt_int16, t_iq_none, t_iq_none, "ADC_sf[0][" }, \
{(char *)&ADC_sf[0][14], pt_int16, t_iq_none, t_iq_none, "ADC_sf[0][" }, \
{(char *)&ADC_sf[0][15], pt_int16, t_iq_none, t_iq_none, "ADC_sf[0][" }, \
{(char *)&IQ_OUT_NOM, pt_float, t_iq_none, t_iq10, "IQ_OUT_NOM" }, \
{(char *)&KmodTerm, pt_float, t_iq_none, t_iq10, "KmodTerm" }, \
{(char *)&freqTerm, pt_float, t_iq_none, t_iq10, "freqTerm" }, \
{(char *)&ADC_sf[0][0], pt_int16, t_iq_none, t_iq_none, "ADC_sf00" }, \
{(char *)&ADC_sf[0][1], pt_int16, t_iq_none, t_iq_none, "ADC_sf01" }, \
{(char *)&ADC_sf[0][2], pt_int16, t_iq_none, t_iq_none, "ADC_sf02" }, \
{(char *)&ADC_sf[0][3], pt_int16, t_iq_none, t_iq_none, "ADC_sf03" }, \
{(char *)&ADC_sf[0][4], pt_int16, t_iq_none, t_iq_none, "ADC_sf04" }, \
{(char *)&ADC_sf[0][5], pt_int16, t_iq_none, t_iq_none, "ADC_sf05" }, \
{(char *)&ADC_sf[0][6], pt_int16, t_iq_none, t_iq_none, "ADC_sf06" }, \
{(char *)&ADC_sf[0][7], pt_int16, t_iq_none, t_iq_none, "ADC_sf07" }, \
{(char *)&ADC_sf[0][8], pt_int16, t_iq_none, t_iq_none, "ADC_sf08" }, \
{(char *)&ADC_sf[0][9], pt_int16, t_iq_none, t_iq_none, "ADC_sf09" }, \
{(char *)&ADC_sf[0][10], pt_int16, t_iq_none, t_iq_none, "ADC_sf010" }, \
{(char *)&ADC_sf[0][11], pt_int16, t_iq_none, t_iq_none, "ADC_sf011" }, \
{(char *)&ADC_sf[0][12], pt_int16, t_iq_none, t_iq_none, "ADC_sf012" }, \
{(char *)&ADC_sf[0][13], pt_int16, t_iq_none, t_iq_none, "ADC_sf013" }, \
{(char *)&ADC_sf[0][14], pt_int16, t_iq_none, t_iq_none, "ADC_sf014" }, \
{(char *)&ADC_sf[0][15], pt_int16, t_iq_none, t_iq_none, "ADC_sf015" }, \
{(char *)&Bender[0].KOhms, pt_uint16, t_iq_none, t_iq_none, "Bend0.KOhm" }, \
{(char *)&Bender[0].Times, pt_uint16, t_iq_none, t_iq_none, "Bend0.Time" }, \
{(char *)&Bender[0].Error.all, pt_uint16, t_iq_none, t_iq_none, "Bend0.Err" }, \
};

652
vars.xml
View File

@@ -1,5 +1,5 @@
<?xml version='1.0' encoding='utf-8'?>
<analysis proj_path="F:/Work/Projects/TMS/TMS_new_bus" makefile_path="Debug/makefile" structs_path="Src/DebugTools/structs.xml">
<analysis makefile_path="Debug/makefile" proj_path="F:/Work/Projects/TMS/TMS_new_bus" structs_path="Src/DebugTools/structs.xml">
<variables>
<var name="ADC0finishAddr">
<show_var>true</show_var>
@@ -19,7 +19,7 @@
<shortname>ADC0startAddr</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/myXilinx/x_example_all.c</file>
<extern>false</extern>
@@ -31,7 +31,7 @@
<shortname>ADC1finishAddr</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/myXilinx/x_example_all.c</file>
<extern>false</extern>
@@ -43,7 +43,7 @@
<shortname>ADC1startAddr</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/myXilinx/x_example_all.c</file>
<extern>false</extern>
@@ -55,7 +55,7 @@
<shortname>ADC2finishAddr</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/myXilinx/x_example_all.c</file>
<extern>false</extern>
@@ -67,7 +67,7 @@
<shortname>ADC2startAddr</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/myXilinx/x_example_all.c</file>
<extern>false</extern>
@@ -79,7 +79,7 @@
<shortname>ADDR_FOR_ALL</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/myXilinx/RS_Functions.c</file>
<extern>false</extern>
@@ -91,7 +91,7 @@
<shortname>BUSY</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/myLibs/CAN_Setup.c</file>
<extern>false</extern>
@@ -103,7 +103,7 @@
<shortname>Bender</shortname>
<pt_type>pt_arr_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>BENDER[2]</type>
<file>Src/myLibs/bender.c</file>
<extern>false</extern>
@@ -115,7 +115,7 @@
<shortname>CAN_answer_wait</shortname>
<pt_type>pt_arr_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int[32]</type>
<file>Src/myLibs/CAN_Setup.c</file>
<extern>false</extern>
@@ -127,7 +127,7 @@
<shortname>CAN_count_cycle_input_units</shortname>
<pt_type>pt_arr_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int[8]</type>
<file>Src/myLibs/CAN_Setup.c</file>
<extern>false</extern>
@@ -139,7 +139,7 @@
<shortname>CAN_no_answer</shortname>
<pt_type>pt_arr_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int[32]</type>
<file>Src/myLibs/CAN_Setup.c</file>
<extern>false</extern>
@@ -151,7 +151,7 @@
<shortname>CAN_refresh_cicle</shortname>
<pt_type>pt_arr_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int[32]</type>
<file>Src/myLibs/CAN_Setup.c</file>
<extern>false</extern>
@@ -163,7 +163,7 @@
<shortname>CAN_request_sent</shortname>
<pt_type>pt_arr_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int[32]</type>
<file>Src/myLibs/CAN_Setup.c</file>
<extern>false</extern>
@@ -175,7 +175,7 @@
<shortname>CAN_timeout</shortname>
<pt_type>pt_arr_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int[32]</type>
<file>Src/myLibs/CAN_Setup.c</file>
<extern>false</extern>
@@ -187,7 +187,7 @@
<shortname>CAN_timeout_cicle</shortname>
<pt_type>pt_arr_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int[32]</type>
<file>Src/myLibs/CAN_Setup.c</file>
<extern>false</extern>
@@ -199,7 +199,7 @@
<shortname>CNTRL_ADDR</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/myXilinx/RS_Functions.c</file>
<extern>false</extern>
@@ -211,7 +211,7 @@
<shortname>CNTRL_ADDR_UNIVERSAL</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>const int</type>
<file>Src/myXilinx/RS_Functions.c</file>
<extern>false</extern>
@@ -223,7 +223,7 @@
<shortname>CONST_15</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<return_type />
<type>_iq</type>
<file>Src/myLibs/mathlib.c</file>
<extern>false</extern>
@@ -235,7 +235,7 @@
<shortname>CONST_23</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<return_type />
<type>_iq</type>
<file>Src/myLibs/mathlib.c</file>
<extern>false</extern>
@@ -247,7 +247,7 @@
<shortname>CanOpenUnites</shortname>
<pt_type>pt_arr_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int[30]</type>
<file>Src/myLibs/CAN_Setup.c</file>
<extern>false</extern>
@@ -259,7 +259,7 @@
<shortname>CanTimeOutErrorTR</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/myLibs/CAN_Setup.c</file>
<extern>false</extern>
@@ -271,7 +271,7 @@
<shortname>Controll</shortname>
<pt_type>pt_union</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>XControll_reg</type>
<file>Src/myXilinx/Spartan2E_Functions.c</file>
<extern>false</extern>
@@ -283,7 +283,7 @@
<shortname>Dpwm</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/main/PWMTMSHandle.c</file>
<extern>false</extern>
@@ -295,7 +295,7 @@
<shortname>Dpwm2</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/main/PWMTMSHandle.c</file>
<extern>false</extern>
@@ -307,7 +307,7 @@
<shortname>Dpwm4</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/main/PWMTMSHandle.c</file>
<extern>false</extern>
@@ -319,7 +319,7 @@
<shortname>EvaTimer1InterruptCount</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/main/281xEvTimersInit.c</file>
<extern>false</extern>
@@ -331,7 +331,7 @@
<shortname>EvaTimer2InterruptCount</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/main/281xEvTimersInit.c</file>
<extern>false</extern>
@@ -343,7 +343,7 @@
<shortname>EvbTimer3InterruptCount</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/main/281xEvTimersInit.c</file>
<extern>false</extern>
@@ -355,7 +355,7 @@
<shortname>EvbTimer4InterruptCount</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/main/281xEvTimersInit.c</file>
<extern>false</extern>
@@ -367,7 +367,7 @@
<shortname>Fpwm</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/main/PWMTMSHandle.c</file>
<extern>false</extern>
@@ -379,7 +379,7 @@
<shortname>Gott</shortname>
<pt_type>pt_arr_int8</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>char[8][16]</type>
<file>Src/myLibs/bender.c</file>
<extern>false</extern>
@@ -391,7 +391,7 @@
<shortname>IN0finishAddr</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/myXilinx/x_example_all.c</file>
<extern>false</extern>
@@ -403,7 +403,7 @@
<shortname>IN0startAddr</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/myXilinx/x_example_all.c</file>
<extern>false</extern>
@@ -415,7 +415,7 @@
<shortname>IN1finishAddr</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/myXilinx/x_example_all.c</file>
<extern>false</extern>
@@ -427,7 +427,7 @@
<shortname>IN1startAddr</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/myXilinx/x_example_all.c</file>
<extern>false</extern>
@@ -439,7 +439,7 @@
<shortname>IN2finishAddr</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/myXilinx/x_example_all.c</file>
<extern>false</extern>
@@ -451,19 +451,19 @@
<shortname>IN2startAddr</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/myXilinx/x_example_all.c</file>
<extern>false</extern>
<static>false</static>
</var>
<var name="IQ_OUT_NOM">
<show_var>false</show_var>
<enable>false</enable>
<show_var>true</show_var>
<enable>true</enable>
<shortname>IQ_OUT_NOM</shortname>
<pt_type>pt_float</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type>t_iq10</return_type>
<type>float</type>
<file>Src/main/params_i_out.c</file>
<extern>false</extern>
@@ -475,7 +475,7 @@
<shortname>I_OUT_1_6_NOMINAL_IQ</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>long</type>
<file>Src/main/params_i_out.c</file>
<extern>false</extern>
@@ -487,7 +487,7 @@
<shortname>I_OUT_1_8_NOMINAL_IQ</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>long</type>
<file>Src/main/params_i_out.c</file>
<extern>false</extern>
@@ -499,7 +499,7 @@
<shortname>I_OUT_NOMINAL</shortname>
<pt_type>pt_float</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>float</type>
<file>Src/main/params_i_out.c</file>
<extern>false</extern>
@@ -511,7 +511,7 @@
<shortname>I_OUT_NOMINAL_IQ</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>long</type>
<file>Src/main/params_i_out.c</file>
<extern>false</extern>
@@ -523,7 +523,7 @@
<shortname>I_ZPT_NOMINAL_IQ</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>long</type>
<file>Src/main/params_i_out.c</file>
<extern>false</extern>
@@ -535,7 +535,7 @@
<shortname>Id_out_max_full</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<return_type />
<type>_iq</type>
<file>Src/VectorControl/regul_power.c</file>
<extern>false</extern>
@@ -547,7 +547,7 @@
<shortname>Id_out_max_low_speed</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<return_type />
<type>_iq</type>
<file>Src/VectorControl/regul_power.c</file>
<extern>false</extern>
@@ -559,7 +559,7 @@
<shortname>Iq_out_max</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<return_type />
<type>_iq</type>
<file>Src/main/params_i_out.c</file>
<extern>false</extern>
@@ -571,7 +571,7 @@
<shortname>Iq_out_nom</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<return_type />
<type>_iq</type>
<file>Src/main/params_i_out.c</file>
<extern>false</extern>
@@ -583,19 +583,19 @@
<shortname>K_LEM_ADC</shortname>
<pt_type>pt_arr_uint32</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>const unsigned long[20]</type>
<file>Src/main/adc_tools.c</file>
<extern>false</extern>
<static>false</static>
</var>
<var name="KmodTerm">
<show_var>false</show_var>
<enable>false</enable>
<show_var>true</show_var>
<enable>true</enable>
<shortname>KmodTerm</shortname>
<pt_type>pt_float</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type>t_iq10</return_type>
<type>float</type>
<file>Src/myXilinx/RS_Functions.c</file>
<extern>false</extern>
@@ -607,7 +607,7 @@
<shortname>ROTfinishAddr</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/myXilinx/x_example_all.c</file>
<extern>false</extern>
@@ -619,7 +619,7 @@
<shortname>RS_Len</shortname>
<pt_type>pt_arr_uint16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>unsigned int[70]</type>
<file>Src/myXilinx/RS_Functions.c</file>
<extern>false</extern>
@@ -631,7 +631,7 @@
<shortname>R_ADC</shortname>
<pt_type>pt_arr_uint16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>const unsigned int[20]</type>
<file>Src/main/adc_tools.c</file>
<extern>false</extern>
@@ -643,7 +643,7 @@
<shortname>RotPlaneStartAddr</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/myXilinx/x_example_all.c</file>
<extern>false</extern>
@@ -655,7 +655,7 @@
<shortname>SQRT_32</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<return_type />
<type>_iq</type>
<file>Src/myLibs/mathlib.c</file>
<extern>false</extern>
@@ -667,7 +667,7 @@
<shortname>Unites</shortname>
<pt_type>pt_arr_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int[8][128]</type>
<file>Src/myLibs/CAN_Setup.c</file>
<extern>false</extern>
@@ -679,7 +679,7 @@
<shortname>VAR_FREQ_PWM_XTICS</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/main/PWMTools.c</file>
<extern>false</extern>
@@ -691,7 +691,7 @@
<shortname>VAR_PERIOD_MAX_XTICS</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/main/PWMTools.c</file>
<extern>false</extern>
@@ -703,7 +703,7 @@
<shortname>VAR_PERIOD_MIN_BR_XTICS</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/main/PWMTools.c</file>
<extern>false</extern>
@@ -715,7 +715,7 @@
<shortname>VAR_PERIOD_MIN_XTICS</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/main/PWMTools.c</file>
<extern>false</extern>
@@ -727,7 +727,7 @@
<shortname>Zpwm</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/main/PWMTMSHandle.c</file>
<extern>false</extern>
@@ -739,7 +739,7 @@
<shortname>a</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>WINDING</type>
<file>Src/main/PWMTools.c</file>
<extern>false</extern>
@@ -751,7 +751,7 @@
<shortname>addrToSent</shortname>
<pt_type>pt_union</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>volatile AddrToSent</type>
<file>Src/myXilinx/xPeriphSP6_loader.c</file>
<extern>false</extern>
@@ -763,7 +763,7 @@
<shortname>adr_read_from_modbus3</shortname>
<pt_type>pt_uint16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>unsigned int</type>
<file>Src/myXilinx/RS_Functions_modbus.c</file>
<extern>false</extern>
@@ -775,7 +775,7 @@
<shortname>alarm_log_can</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>ALARM_LOG_CAN</type>
<file>Src/myLibs/alarm_log_can.c</file>
<extern>false</extern>
@@ -787,7 +787,7 @@
<shortname>alarm_log_can_setup</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>ALARM_LOG_CAN_SETUP</type>
<file>Src/myLibs/CAN_Setup.c</file>
<extern>false</extern>
@@ -799,7 +799,7 @@
<shortname>analog</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>ANALOG_VALUE</type>
<file>Src/main/adc_tools.c</file>
<extern>false</extern>
@@ -811,7 +811,7 @@
<shortname>ar_sa_all</shortname>
<pt_type>pt_arr_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int[3][6][4][7]</type>
<file>Src/main/v_pwm24.c</file>
<extern>false</extern>
@@ -823,7 +823,7 @@
<shortname>ar_tph</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<return_type />
<type>_iq[7]</type>
<file>Src/main/v_pwm24.c</file>
<extern>false</extern>
@@ -835,7 +835,7 @@
<shortname>biTemperatureLimits</shortname>
<pt_type>pt_arr_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int[12]</type>
<file>Src/main/init_protect_levels.c</file>
<extern>false</extern>
@@ -847,7 +847,7 @@
<shortname>biTemperatureWarnings</shortname>
<pt_type>pt_arr_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int[12]</type>
<file>Src/main/init_protect_levels.c</file>
<extern>false</extern>
@@ -859,7 +859,7 @@
<shortname>block_size_counter_fast</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/myLibs/log_to_memory.c</file>
<extern>false</extern>
@@ -871,7 +871,7 @@
<shortname>block_size_counter_slow</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/myLibs/log_to_memory.c</file>
<extern>false</extern>
@@ -883,7 +883,7 @@
<shortname>break_result_1</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<return_type />
<type>_iq</type>
<file>Src/main/break_regul.c</file>
<extern>false</extern>
@@ -895,7 +895,7 @@
<shortname>break_result_2</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<return_type />
<type>_iq</type>
<file>Src/main/break_regul.c</file>
<extern>false</extern>
@@ -907,7 +907,7 @@
<shortname>break_result_3</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<return_type />
<type>_iq</type>
<file>Src/main/break_regul.c</file>
<extern>false</extern>
@@ -919,7 +919,7 @@
<shortname>break_result_4</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<return_type />
<type>_iq</type>
<file>Src/main/break_regul.c</file>
<extern>false</extern>
@@ -931,7 +931,7 @@
<shortname>bvTemperatureLimits</shortname>
<pt_type>pt_arr_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int[12]</type>
<file>Src/main/init_protect_levels.c</file>
<extern>false</extern>
@@ -943,7 +943,7 @@
<shortname>bvTemperatureWarnings</shortname>
<pt_type>pt_arr_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int[12]</type>
<file>Src/main/init_protect_levels.c</file>
<extern>false</extern>
@@ -955,7 +955,7 @@
<shortname>byte</shortname>
<pt_type>pt_union</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>Byte</type>
<file>Src/myXilinx/xPeriphSP6_loader.c</file>
<extern>false</extern>
@@ -967,7 +967,7 @@
<shortname>c_s</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>long</type>
<file>Src/main/rotation_speed.c</file>
<extern>false</extern>
@@ -979,7 +979,7 @@
<shortname>calibration1</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/main/isolation.c</file>
<extern>false</extern>
@@ -991,7 +991,7 @@
<shortname>calibration2</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/main/isolation.c</file>
<extern>false</extern>
@@ -1003,7 +1003,7 @@
<shortname>callfunc</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>test_functions</type>
<file>Src/main/Main.c</file>
<extern>false</extern>
@@ -1015,7 +1015,7 @@
<shortname>canopen_can_setup</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>CANOPEN_CAN_SETUP</type>
<file>Src/myLibs/CAN_Setup.c</file>
<extern>false</extern>
@@ -1027,7 +1027,7 @@
<shortname>capnum0</shortname>
<pt_type>pt_uint16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>unsigned int</type>
<file>Src/main/sync_tools.c</file>
<extern>false</extern>
@@ -1039,7 +1039,7 @@
<shortname>capnum1</shortname>
<pt_type>pt_uint16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>unsigned int</type>
<file>Src/main/sync_tools.c</file>
<extern>false</extern>
@@ -1051,7 +1051,7 @@
<shortname>capnum2</shortname>
<pt_type>pt_uint16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>unsigned int</type>
<file>Src/main/sync_tools.c</file>
<extern>false</extern>
@@ -1063,7 +1063,7 @@
<shortname>capnum3</shortname>
<pt_type>pt_uint16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>unsigned int</type>
<file>Src/main/sync_tools.c</file>
<extern>false</extern>
@@ -1075,7 +1075,7 @@
<shortname>chNum</shortname>
<pt_type>pt_uint16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>unsigned int</type>
<file>Src/myXilinx/x_example_all.c</file>
<extern>false</extern>
@@ -1087,7 +1087,7 @@
<shortname>chanell1</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>BREAK_PHASE_I</type>
<file>Src/main/detect_phase.c</file>
<extern>false</extern>
@@ -1099,7 +1099,7 @@
<shortname>chanell2</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>BREAK_PHASE_I</type>
<file>Src/main/detect_phase.c</file>
<extern>false</extern>
@@ -1111,7 +1111,7 @@
<shortname>cmd_3_or_16</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/myXilinx/RS_Functions_modbus.c</file>
<extern>false</extern>
@@ -1123,7 +1123,7 @@
<shortname>cmd_crc</shortname>
<pt_type>pt_arr_int8</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>char[4]</type>
<file>Src/myLibs/bender.c</file>
<extern>false</extern>
@@ -1135,7 +1135,7 @@
<shortname>cmd_finish1</shortname>
<pt_type>pt_int8</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>char</type>
<file>Src/myLibs/bender.c</file>
<extern>false</extern>
@@ -1147,7 +1147,7 @@
<shortname>cmd_finish2</shortname>
<pt_type>pt_int8</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>char</type>
<file>Src/myLibs/bender.c</file>
<extern>false</extern>
@@ -1159,7 +1159,7 @@
<shortname>cmd_start</shortname>
<pt_type>pt_arr_int8</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>char[5]</type>
<file>Src/myLibs/bender.c</file>
<extern>false</extern>
@@ -1171,7 +1171,7 @@
<shortname>cmd_txt</shortname>
<pt_type>pt_arr_int8</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>char[4][8]</type>
<file>Src/myLibs/bender.c</file>
<extern>false</extern>
@@ -1183,7 +1183,7 @@
<shortname>compress_size</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/myLibs/alarm_log_can.c</file>
<extern>false</extern>
@@ -1195,7 +1195,7 @@
<shortname>controlReg</shortname>
<pt_type>pt_union</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>ControlReg</type>
<file>Src/myXilinx/xPeriphSP6_loader.c</file>
<extern>false</extern>
@@ -1207,7 +1207,7 @@
<shortname>cos_fi</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>COS_FI_STRUCT</type>
<file>Src/VectorControl/pwm_vector_regul.c</file>
<extern>false</extern>
@@ -1219,7 +1219,7 @@
<shortname>count_error_sync</shortname>
<pt_type>pt_uint16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>unsigned int</type>
<file>Src/main/sync_tools.c</file>
<extern>false</extern>
@@ -1231,7 +1231,7 @@
<shortname>count_modbus_table_changed</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/myLibs/modbus_fill_table.c</file>
<extern>false</extern>
@@ -1243,7 +1243,7 @@
<shortname>count_run_pch</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/main/PWMTools.c</file>
<extern>false</extern>
@@ -1255,7 +1255,7 @@
<shortname>counterSBWriteErrors</shortname>
<pt_type>pt_uint16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>unsigned int</type>
<file>Src/myXilinx/x_serial_bus.c</file>
<extern>false</extern>
@@ -1267,7 +1267,7 @@
<shortname>crc_16_tab</shortname>
<pt_type>pt_arr_uint16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>WORD[256]</type>
<file>Src/myXilinx/CRC_Functions.c</file>
<extern>false</extern>
@@ -1279,7 +1279,7 @@
<shortname>crypt</shortname>
<pt_type>pt_arr_int8</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>char[34]</type>
<file>Src/myLibs/bender.c</file>
<extern>false</extern>
@@ -1291,7 +1291,7 @@
<shortname>cur_position_buf_modbus16</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/myLibs/message_modbus.c</file>
<extern>false</extern>
@@ -1303,7 +1303,7 @@
<shortname>cur_position_buf_modbus16_can</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/myLibs/message_modbus.c</file>
<extern>false</extern>
@@ -1315,7 +1315,7 @@
<shortname>cur_position_buf_modbus3</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/myLibs/message_modbus.c</file>
<extern>false</extern>
@@ -1327,7 +1327,7 @@
<shortname>cycle</shortname>
<pt_type>pt_arr_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>CYCLE[32]</type>
<file>Src/myLibs/CAN_Setup.c</file>
<extern>false</extern>
@@ -1339,7 +1339,7 @@
<shortname>data_to_umu1_7f</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/main/init_protect_levels.c</file>
<extern>false</extern>
@@ -1351,7 +1351,7 @@
<shortname>data_to_umu1_8</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/main/init_protect_levels.c</file>
<extern>false</extern>
@@ -1363,7 +1363,7 @@
<shortname>data_to_umu2_7f</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/main/init_protect_levels.c</file>
<extern>false</extern>
@@ -1375,7 +1375,7 @@
<shortname>data_to_umu2_8</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/main/init_protect_levels.c</file>
<extern>false</extern>
@@ -1387,7 +1387,7 @@
<shortname>delta_capnum</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/main/sync_tools.c</file>
<extern>false</extern>
@@ -1399,7 +1399,7 @@
<shortname>delta_error</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/main/sync_tools.c</file>
<extern>false</extern>
@@ -1411,7 +1411,7 @@
<shortname>doors</shortname>
<pt_type>pt_union</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>volatile DOORS_STATUS</type>
<file>Src/main/doors_control.c</file>
<extern>false</extern>
@@ -1423,7 +1423,7 @@
<shortname>dq_to_ab</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>DQ_TO_ALPHABETA</type>
<file>Src/main/v_pwm24.c</file>
<extern>false</extern>
@@ -1435,7 +1435,7 @@
<shortname>enable_can</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/myLibs/message_modbus.c</file>
<extern>false</extern>
@@ -1447,7 +1447,7 @@
<shortname>enable_can_recive_after_units_box</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/myLibs/CAN_Setup.c</file>
<extern>false</extern>
@@ -1459,7 +1459,7 @@
<shortname>err_level_adc</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<return_type />
<type>_iq</type>
<file>Src/main/adc_tools.c</file>
<extern>false</extern>
@@ -1471,7 +1471,7 @@
<shortname>err_level_adc_on_go</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<return_type />
<type>_iq</type>
<file>Src/main/adc_tools.c</file>
<extern>false</extern>
@@ -1483,7 +1483,7 @@
<shortname>err_main</shortname>
<pt_type>pt_uint16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>unsigned int</type>
<file>Src/main/Main.c</file>
<extern>false</extern>
@@ -1495,7 +1495,7 @@
<shortname>err_modbus16</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/myXilinx/RS_Functions_modbus.c</file>
<extern>false</extern>
@@ -1507,7 +1507,7 @@
<shortname>err_modbus3</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/myXilinx/RS_Functions_modbus.c</file>
<extern>false</extern>
@@ -1519,7 +1519,7 @@
<shortname>errors</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>ERRORS</type>
<file>Src/main/errors.c</file>
<extern>false</extern>
@@ -1531,7 +1531,7 @@
<shortname>f</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>FLAG</type>
<file>Src/main/Main.c</file>
<extern>false</extern>
@@ -1543,7 +1543,7 @@
<shortname>fail</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>volatile int</type>
<file>Src/myXilinx/xPeriphSP6_loader.c</file>
<extern>false</extern>
@@ -1555,7 +1555,7 @@
<shortname>faults</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>FAULTS</type>
<file>Src/main/errors.c</file>
<extern>false</extern>
@@ -1567,7 +1567,7 @@
<shortname>fifo</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>FIFO</type>
<file>Src/myLibs/CAN_Setup.c</file>
<extern>false</extern>
@@ -1579,7 +1579,7 @@
<shortname>filter</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>ANALOG_VALUE</type>
<file>Src/main/adc_tools.c</file>
<extern>false</extern>
@@ -1591,7 +1591,7 @@
<shortname>flag_buf</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/main/rotation_speed.c</file>
<extern>false</extern>
@@ -1603,7 +1603,7 @@
<shortname>flag_enable_can_from_mpu</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/myLibs/CAN_Setup.c</file>
<extern>false</extern>
@@ -1615,7 +1615,7 @@
<shortname>flag_enable_can_from_terminal</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/myLibs/CAN_Setup.c</file>
<extern>false</extern>
@@ -1627,7 +1627,7 @@
<shortname>flag_on_off_pch</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/main/PWMTools.c</file>
<extern>false</extern>
@@ -1639,7 +1639,7 @@
<shortname>flag_received_first_mess_from_MPU</shortname>
<pt_type>pt_uint16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>unsigned int</type>
<file>Src/myXilinx/RS_Functions_modbus.c</file>
<extern>false</extern>
@@ -1651,7 +1651,7 @@
<shortname>flag_reverse</shortname>
<pt_type>pt_uint16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>unsigned int</type>
<file>Src/myLibs/modbus_read_table.c</file>
<extern>false</extern>
@@ -1663,7 +1663,7 @@
<shortname>flag_send_answer_rs</shortname>
<pt_type>pt_uint16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>unsigned int</type>
<file>Src/myXilinx/RS_Functions_modbus.c</file>
<extern>false</extern>
@@ -1675,7 +1675,7 @@
<shortname>flag_test_tabe_filled</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/myLibs/modbus_fill_table.c</file>
<extern>false</extern>
@@ -1687,7 +1687,7 @@
<shortname>flag_we_int_pwm_on</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/main/PWMTools.c</file>
<extern>false</extern>
@@ -1699,19 +1699,19 @@
<shortname>freq1</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<return_type />
<type>_iq</type>
<file>Src/main/PWMTools.c</file>
<extern>false</extern>
<static>false</static>
</var>
<var name="freqTerm">
<show_var>false</show_var>
<enable>false</enable>
<show_var>true</show_var>
<enable>true</enable>
<shortname>freqTerm</shortname>
<pt_type>pt_float</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type>t_iq10</return_type>
<type>float</type>
<file>Src/myXilinx/RS_Functions.c</file>
<extern>false</extern>
@@ -1723,7 +1723,7 @@
<shortname>global_time</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>GLOBAL_TIME</type>
<file>Src/main/global_time.c</file>
<extern>false</extern>
@@ -1735,7 +1735,7 @@
<shortname>hb_logs_data</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/myLibs/log_to_memory.c</file>
<extern>false</extern>
@@ -1747,7 +1747,7 @@
<shortname>i</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/main/PWMTools.c</file>
<extern>false</extern>
@@ -1759,7 +1759,7 @@
<shortname>i1_out</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>BREAK2_PHASE</type>
<file>Src/main/errors.c</file>
<extern>false</extern>
@@ -1771,7 +1771,7 @@
<shortname>i2_out</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>BREAK2_PHASE</type>
<file>Src/main/errors.c</file>
<extern>false</extern>
@@ -1783,7 +1783,7 @@
<shortname>init_log</shortname>
<pt_type>pt_arr_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int[3]</type>
<file>Src/myLibs/log_can.c</file>
<extern>false</extern>
@@ -1795,7 +1795,7 @@
<shortname>iq19_k_norm_ADC</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq19</iq_type>
<return_type>int</return_type>
<return_type />
<type>_iq19[20]</type>
<file>Src/main/adc_tools.c</file>
<extern>false</extern>
@@ -1807,7 +1807,7 @@
<shortname>iq19_zero_ADC</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq19</iq_type>
<return_type>int</return_type>
<return_type />
<type>_iq19[20]</type>
<file>Src/main/adc_tools.c</file>
<extern>false</extern>
@@ -1819,7 +1819,7 @@
<shortname>iq_alfa_coef</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<return_type />
<type>_iq</type>
<file>Src/main/v_pwm24.c</file>
<extern>false</extern>
@@ -1831,7 +1831,7 @@
<shortname>iq_k_norm_ADC</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<return_type />
<type>_iq[20]</type>
<file>Src/main/adc_tools.c</file>
<extern>false</extern>
@@ -1843,7 +1843,7 @@
<shortname>iq_logpar</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>IQ_LOGSPARAMS</type>
<file>Src/myLibs/log_to_memory.c</file>
<extern>false</extern>
@@ -1855,7 +1855,7 @@
<shortname>iq_max</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<return_type />
<type>_iq</type>
<file>Src/myLibs/svgen_dq_v2.c</file>
<extern>false</extern>
@@ -1867,7 +1867,7 @@
<shortname>iq_norm_ADC</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<return_type />
<type>_iq[20]</type>
<file>Src/main/adc_tools.c</file>
<extern>false</extern>
@@ -1879,7 +1879,7 @@
<shortname>isolation1</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>ISOLATION</type>
<file>Src/main/isolation.c</file>
<extern>false</extern>
@@ -1891,7 +1891,7 @@
<shortname>isolation2</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>ISOLATION</type>
<file>Src/main/isolation.c</file>
<extern>false</extern>
@@ -1903,7 +1903,7 @@
<shortname>k1</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<return_type />
<type>_iq</type>
<file>Src/main/PWMTools.c</file>
<extern>false</extern>
@@ -1915,7 +1915,7 @@
<shortname>kI_D</shortname>
<pt_type>pt_float</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>float</type>
<file>Src/VectorControl/pwm_vector_regul.c</file>
<extern>false</extern>
@@ -1927,7 +1927,7 @@
<shortname>kI_D_Inv31</shortname>
<pt_type>pt_float</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>float</type>
<file>Src/VectorControl/pwm_vector_regul.c</file>
<extern>false</extern>
@@ -1939,7 +1939,7 @@
<shortname>kI_Q</shortname>
<pt_type>pt_float</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>float</type>
<file>Src/VectorControl/pwm_vector_regul.c</file>
<extern>false</extern>
@@ -1951,7 +1951,7 @@
<shortname>kI_Q_Inv31</shortname>
<pt_type>pt_float</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>float</type>
<file>Src/VectorControl/pwm_vector_regul.c</file>
<extern>false</extern>
@@ -1963,7 +1963,7 @@
<shortname>kP_D</shortname>
<pt_type>pt_float</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>float</type>
<file>Src/VectorControl/pwm_vector_regul.c</file>
<extern>false</extern>
@@ -1975,7 +1975,7 @@
<shortname>kP_D_Inv31</shortname>
<pt_type>pt_float</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>float</type>
<file>Src/VectorControl/pwm_vector_regul.c</file>
<extern>false</extern>
@@ -1987,7 +1987,7 @@
<shortname>kP_Q</shortname>
<pt_type>pt_float</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>float</type>
<file>Src/VectorControl/pwm_vector_regul.c</file>
<extern>false</extern>
@@ -1999,7 +1999,7 @@
<shortname>kP_Q_Inv31</shortname>
<pt_type>pt_float</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>float</type>
<file>Src/VectorControl/pwm_vector_regul.c</file>
<extern>false</extern>
@@ -2011,7 +2011,7 @@
<shortname>kan</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/myLibs/bender.c</file>
<extern>false</extern>
@@ -2023,7 +2023,7 @@
<shortname>koef_Base_stop_run</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<return_type />
<type>_iq</type>
<file>Src/main/break_regul.c</file>
<extern>false</extern>
@@ -2035,7 +2035,7 @@
<shortname>koef_Iabc_filter</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<return_type />
<type>_iq</type>
<file>Src/main/adc_tools.c</file>
<extern>false</extern>
@@ -2047,7 +2047,7 @@
<shortname>koef_Im_filter</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<return_type />
<type>_iq</type>
<file>Src/main/adc_tools.c</file>
<extern>false</extern>
@@ -2059,7 +2059,7 @@
<shortname>koef_Im_filter_long</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<return_type />
<type>_iq</type>
<file>Src/main/adc_tools.c</file>
<extern>false</extern>
@@ -2071,7 +2071,7 @@
<shortname>koef_K_stop_run</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<return_type />
<type>_iq</type>
<file>Src/main/break_regul.c</file>
<extern>false</extern>
@@ -2083,7 +2083,7 @@
<shortname>koef_Krecup</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<return_type />
<type>_iq</type>
<file>Src/main/break_regul.c</file>
<extern>false</extern>
@@ -2095,7 +2095,7 @@
<shortname>koef_Min_recup</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<return_type />
<type>_iq</type>
<file>Src/main/break_regul.c</file>
<extern>false</extern>
@@ -2107,7 +2107,7 @@
<shortname>koef_TemperBSU_long_filter</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<return_type />
<type>_iq</type>
<file>Src/main/adc_tools.c</file>
<extern>false</extern>
@@ -2119,7 +2119,7 @@
<shortname>koef_Ud_fast_filter</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<return_type />
<type>_iq</type>
<file>Src/main/adc_tools.c</file>
<extern>false</extern>
@@ -2131,7 +2131,7 @@
<shortname>koef_Ud_long_filter</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<return_type />
<type>_iq</type>
<file>Src/main/adc_tools.c</file>
<extern>false</extern>
@@ -2143,7 +2143,7 @@
<shortname>koef_Wlong</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<return_type />
<type>_iq</type>
<file>Src/main/adc_tools.c</file>
<extern>false</extern>
@@ -2155,7 +2155,7 @@
<shortname>koef_Wout_filter</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<return_type />
<type>_iq</type>
<file>Src/main/rotation_speed.c</file>
<extern>false</extern>
@@ -2167,7 +2167,7 @@
<shortname>koef_Wout_filter_long</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<return_type />
<type>_iq</type>
<file>Src/main/rotation_speed.c</file>
<extern>false</extern>
@@ -2179,7 +2179,7 @@
<shortname>koeff_Fs_filter</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>long</type>
<file>Src/VectorControl/pwm_vector_regul.c</file>
<extern>false</extern>
@@ -2191,7 +2191,7 @@
<shortname>koeff_Idq_filter</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>long</type>
<file>Src/VectorControl/pwm_vector_regul.c</file>
<extern>false</extern>
@@ -2203,7 +2203,7 @@
<shortname>koeff_Iq_filter</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<return_type />
<type>_iq</type>
<file>Src/VectorControl/regul_power.c</file>
<extern>false</extern>
@@ -2215,7 +2215,7 @@
<shortname>koeff_Iq_filter_slow</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>long</type>
<file>Src/VectorControl/pwm_vector_regul.c</file>
<extern>false</extern>
@@ -2227,7 +2227,7 @@
<shortname>koeff_Ud_filter</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>long</type>
<file>Src/VectorControl/pwm_vector_regul.c</file>
<extern>false</extern>
@@ -2239,7 +2239,7 @@
<shortname>koeff_Uq_filter</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>long</type>
<file>Src/VectorControl/pwm_vector_regul.c</file>
<extern>false</extern>
@@ -2251,7 +2251,7 @@
<shortname>kom</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/myLibs/bender.c</file>
<extern>false</extern>
@@ -2263,7 +2263,7 @@
<shortname>length</shortname>
<pt_type>pt_uint32</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>volatile unsigned long</type>
<file>Src/myXilinx/xPeriphSP6_loader.c</file>
<extern>false</extern>
@@ -2275,7 +2275,7 @@
<shortname>level_on_off_break</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<return_type />
<type>_iq[13][2]</type>
<file>Src/main/break_tools.c</file>
<extern>false</extern>
@@ -2287,7 +2287,7 @@
<shortname>log_can</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>logcan_TypeDef</type>
<file>Src/myLibs/log_can.c</file>
<extern>false</extern>
@@ -2299,7 +2299,7 @@
<shortname>log_can_setup</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>LOG_CAN_SETUP</type>
<file>Src/myLibs/CAN_Setup.c</file>
<extern>false</extern>
@@ -2311,7 +2311,7 @@
<shortname>log_params</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>TYPE_LOG_PARAMS</type>
<file>Src/myLibs/log_params.c</file>
<extern>false</extern>
@@ -2323,7 +2323,7 @@
<shortname>logbuf_sync1</shortname>
<pt_type>pt_arr_int32</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>long[10]</type>
<file>Src/main/sync_tools.c</file>
<extern>false</extern>
@@ -2335,7 +2335,7 @@
<shortname>logpar</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>LOGSPARAMS</type>
<file>Src/myLibs/log_to_memory.c</file>
<extern>false</extern>
@@ -2347,7 +2347,7 @@
<shortname>mPWM_a</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/main/PWMTMSHandle.c</file>
<extern>false</extern>
@@ -2359,7 +2359,7 @@
<shortname>mPWM_b</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/main/PWMTMSHandle.c</file>
<extern>false</extern>
@@ -2371,7 +2371,7 @@
<shortname>m_PWM</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/main/PWMTMSHandle.c</file>
<extern>false</extern>
@@ -2383,7 +2383,7 @@
<shortname>mailboxs_can_setup</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>MAILBOXS_CAN_SETUP</type>
<file>Src/myLibs/CAN_Setup.c</file>
<extern>false</extern>
@@ -2395,7 +2395,7 @@
<shortname>manufactorerAndProductID</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/myXilinx/xPeriphSP6_loader.c</file>
<extern>false</extern>
@@ -2407,7 +2407,7 @@
<shortname>modbus_table_can_in</shortname>
<pt_type>pt_ptr_union</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>MODBUS_REG_STRUCT *</type>
<file>Src/myLibs/modbus_table.c</file>
<extern>false</extern>
@@ -2419,7 +2419,7 @@
<shortname>modbus_table_can_out</shortname>
<pt_type>pt_ptr_union</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>MODBUS_REG_STRUCT *</type>
<file>Src/myLibs/modbus_table.c</file>
<extern>false</extern>
@@ -2431,7 +2431,7 @@
<shortname>modbus_table_in</shortname>
<pt_type>pt_arr_union</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>MODBUS_REG_STRUCT[450]</type>
<file>Src/myLibs/modbus_table.c</file>
<extern>false</extern>
@@ -2443,7 +2443,7 @@
<shortname>modbus_table_out</shortname>
<pt_type>pt_arr_union</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>MODBUS_REG_STRUCT[450]</type>
<file>Src/myLibs/modbus_table.c</file>
<extern>false</extern>
@@ -2455,7 +2455,7 @@
<shortname>modbus_table_rs_in</shortname>
<pt_type>pt_ptr_union</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>MODBUS_REG_STRUCT *</type>
<file>Src/myLibs/modbus_table.c</file>
<extern>false</extern>
@@ -2467,7 +2467,7 @@
<shortname>modbus_table_rs_out</shortname>
<pt_type>pt_ptr_union</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>MODBUS_REG_STRUCT *</type>
<file>Src/myLibs/modbus_table.c</file>
<extern>false</extern>
@@ -2479,7 +2479,7 @@
<shortname>modbus_table_test</shortname>
<pt_type>pt_arr_union</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>MODBUS_REG_STRUCT[450]</type>
<file>Src/myLibs/modbus_table.c</file>
<extern>false</extern>
@@ -2491,7 +2491,7 @@
<shortname>mpu_can_setup</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>MPU_CAN_SETUP</type>
<file>Src/myLibs/CAN_Setup.c</file>
<extern>false</extern>
@@ -2503,7 +2503,7 @@
<shortname>mzz_limit_100</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/myLibs/modbus_read_table.c</file>
<extern>false</extern>
@@ -2515,7 +2515,7 @@
<shortname>mzz_limit_1000</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/myLibs/modbus_read_table.c</file>
<extern>false</extern>
@@ -2527,7 +2527,7 @@
<shortname>mzz_limit_1100</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/myLibs/modbus_read_table.c</file>
<extern>false</extern>
@@ -2539,7 +2539,7 @@
<shortname>mzz_limit_1200</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/myLibs/modbus_read_table.c</file>
<extern>false</extern>
@@ -2551,7 +2551,7 @@
<shortname>mzz_limit_1400</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/myLibs/modbus_read_table.c</file>
<extern>false</extern>
@@ -2563,7 +2563,7 @@
<shortname>mzz_limit_1500</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/myLibs/modbus_read_table.c</file>
<extern>false</extern>
@@ -2575,7 +2575,7 @@
<shortname>mzz_limit_2000</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/myLibs/modbus_read_table.c</file>
<extern>false</extern>
@@ -2587,7 +2587,7 @@
<shortname>mzz_limit_500</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/myLibs/modbus_read_table.c</file>
<extern>false</extern>
@@ -2599,7 +2599,7 @@
<shortname>new_cycle_fifo</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>NEW_CYCLE_FIFO</type>
<file>Src/myLibs/CAN_Setup.c</file>
<extern>false</extern>
@@ -2611,7 +2611,7 @@
<shortname>no_write</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/myLibs/log_to_memory.c</file>
<extern>false</extern>
@@ -2623,7 +2623,7 @@
<shortname>no_write_slow</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/myLibs/log_to_memory.c</file>
<extern>false</extern>
@@ -2635,7 +2635,7 @@
<shortname>number_modbus_table_changed</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/myLibs/modbus_fill_table.c</file>
<extern>false</extern>
@@ -2647,7 +2647,7 @@
<shortname>optical_read_data</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>OPTICAL_BUS_DATA</type>
<file>Src/main/optical_bus.c</file>
<extern>false</extern>
@@ -2659,7 +2659,7 @@
<shortname>optical_write_data</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>OPTICAL_BUS_DATA</type>
<file>Src/main/optical_bus.c</file>
<extern>false</extern>
@@ -2671,7 +2671,7 @@
<shortname>options_controller</shortname>
<pt_type>pt_arr_union</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>MODBUS_REG_STRUCT[200]</type>
<file>Src/myXilinx/RS_Functions_modbus.c</file>
<extern>false</extern>
@@ -2683,7 +2683,7 @@
<shortname>pidCur_Ki</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<return_type />
<type>_iq</type>
<file>Src/main/v_pwm24.c</file>
<extern>false</extern>
@@ -2695,7 +2695,7 @@
<shortname>pidD</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>PIDREG3</type>
<file>Src/VectorControl/pwm_vector_regul.c</file>
<extern>false</extern>
@@ -2707,7 +2707,7 @@
<shortname>pidD2</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>PIDREG3</type>
<file>Src/VectorControl/pwm_vector_regul.c</file>
<extern>false</extern>
@@ -2719,7 +2719,7 @@
<shortname>pidFvect</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>PIDREG3</type>
<file>Src/VectorControl/regul_turns.c</file>
<extern>false</extern>
@@ -2731,7 +2731,7 @@
<shortname>pidFvectKi_test</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/main/message2.c</file>
<extern>false</extern>
@@ -2743,7 +2743,7 @@
<shortname>pidFvectKp_test</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/main/message2.c</file>
<extern>false</extern>
@@ -2755,7 +2755,7 @@
<shortname>pidPvect</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>PIDREG3</type>
<file>Src/VectorControl/regul_power.c</file>
<extern>false</extern>
@@ -2767,7 +2767,7 @@
<shortname>pidQ</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>PIDREG3</type>
<file>Src/VectorControl/pwm_vector_regul.c</file>
<extern>false</extern>
@@ -2779,7 +2779,7 @@
<shortname>pidQ2</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>PIDREG3</type>
<file>Src/VectorControl/pwm_vector_regul.c</file>
<extern>false</extern>
@@ -2791,7 +2791,7 @@
<shortname>pidReg_koeffs</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>PIDREG_KOEFFICIENTS</type>
<file>Src/VectorControl/pwm_vector_regul.c</file>
<extern>false</extern>
@@ -2803,7 +2803,7 @@
<shortname>pidTetta</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>PIDREG3</type>
<file>Src/VectorControl/teta_calc.c</file>
<extern>false</extern>
@@ -2815,7 +2815,7 @@
<shortname>power_ratio</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>POWER_RATIO</type>
<file>Src/myLibs/modbus_read_table.c</file>
<extern>false</extern>
@@ -2827,7 +2827,7 @@
<shortname>prev_flag_buf</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/main/rotation_speed.c</file>
<extern>false</extern>
@@ -2839,7 +2839,7 @@
<shortname>prev_status_received</shortname>
<pt_type>pt_uint16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>unsigned int</type>
<file>Src/myLibs/log_can.c</file>
<extern>false</extern>
@@ -2851,7 +2851,7 @@
<shortname>pwmd</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>PWMGEND</type>
<file>Src/main/PWMTMSHandle.c</file>
<extern>false</extern>
@@ -2863,7 +2863,7 @@
<shortname>r_c_sbus</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>T_controller_read</type>
<file>Src/myXilinx/x_serial_bus.c</file>
<extern>false</extern>
@@ -2875,7 +2875,7 @@
<shortname>r_controller</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>T_controller_read</type>
<file>Src/myXilinx/xp_hwp.c</file>
<extern>false</extern>
@@ -2887,7 +2887,7 @@
<shortname>refo</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>FIFO</type>
<file>Src/myLibs/CAN_Setup.c</file>
<extern>false</extern>
@@ -2899,7 +2899,7 @@
<shortname>reply</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>TMS_TO_TERMINAL_STRUCT</type>
<file>Src/myXilinx/RS_Functions_modbus.c</file>
<extern>false</extern>
@@ -2911,7 +2911,7 @@
<shortname>reply_test_all</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>TMS_TO_TERMINAL_TEST_ALL_STRUCT</type>
<file>Src/myXilinx/RS_Functions_modbus.c</file>
<extern>false</extern>
@@ -2923,7 +2923,7 @@
<shortname>return_var</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>long</type>
<file>Src/main/Main.c</file>
<extern>false</extern>
@@ -2935,7 +2935,7 @@
<shortname>rmp_freq</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>RMP_MY1</type>
<file>Src/main/PWMTools.c</file>
<extern>false</extern>
@@ -2947,7 +2947,7 @@
<shortname>rmp_wrot</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>RMP_MY1</type>
<file>Src/main/rotation_speed.c</file>
<extern>false</extern>
@@ -2959,7 +2959,7 @@
<shortname>rotation_sensor</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>T_rotation_sensor</type>
<file>Src/myXilinx/xp_rotation_sensor.c</file>
<extern>false</extern>
@@ -2971,7 +2971,7 @@
<shortname>rotor</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>ROTOR_VALUE</type>
<file>Src/main/rotation_speed.c</file>
<extern>false</extern>
@@ -2983,7 +2983,7 @@
<shortname>rs_a</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>RS_DATA_STRUCT</type>
<file>Src/myXilinx/RS_Functions.c</file>
<extern>false</extern>
@@ -2995,7 +2995,7 @@
<shortname>rs_b</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>RS_DATA_STRUCT</type>
<file>Src/myXilinx/RS_Functions.c</file>
<extern>false</extern>
@@ -3007,7 +3007,7 @@
<shortname>sincronisationFault</shortname>
<pt_type>pt_uint16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>unsigned int</type>
<file>Src/myLibs/modbus_read_table.c</file>
<extern>false</extern>
@@ -3019,7 +3019,7 @@
<shortname>size_cmd15</shortname>
<pt_type>pt_int8</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>char</type>
<file>Src/myXilinx/RS_Functions.c</file>
<extern>false</extern>
@@ -3031,7 +3031,7 @@
<shortname>size_cmd16</shortname>
<pt_type>pt_int8</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>char</type>
<file>Src/myXilinx/RS_Functions.c</file>
<extern>false</extern>
@@ -3043,7 +3043,7 @@
<shortname>size_fast_done</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/myLibs/log_to_memory.c</file>
<extern>false</extern>
@@ -3055,7 +3055,7 @@
<shortname>size_slow_done</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/myLibs/log_to_memory.c</file>
<extern>false</extern>
@@ -3067,7 +3067,7 @@
<shortname>stop_log</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/myLibs/log_to_memory.c</file>
<extern>false</extern>
@@ -3079,7 +3079,7 @@
<shortname>stop_log_slow</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/myLibs/log_to_memory.c</file>
<extern>false</extern>
@@ -3091,7 +3091,7 @@
<shortname>svgen_dq_1</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>SVGENDQ</type>
<file>Src/main/v_pwm24.c</file>
<extern>false</extern>
@@ -3103,7 +3103,7 @@
<shortname>svgen_dq_2</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>SVGENDQ</type>
<file>Src/main/v_pwm24.c</file>
<extern>false</extern>
@@ -3115,7 +3115,7 @@
<shortname>svgen_pwm24_1</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>SVGEN_PWM24</type>
<file>Src/main/v_pwm24.c</file>
<extern>false</extern>
@@ -3127,7 +3127,7 @@
<shortname>svgen_pwm24_2</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>SVGEN_PWM24</type>
<file>Src/main/v_pwm24.c</file>
<extern>false</extern>
@@ -3139,7 +3139,7 @@
<shortname>temp</shortname>
<pt_type>pt_uint16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>unsigned int</type>
<file>Src/main/sync_tools.c</file>
<extern>false</extern>
@@ -3151,7 +3151,7 @@
<shortname>temperature_limit_koeff</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<return_type />
<type>_iq</type>
<file>Src/main/errors_temperature.c</file>
<extern>false</extern>
@@ -3163,7 +3163,7 @@
<shortname>temperature_warning_BI1</shortname>
<pt_type>pt_union</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>INVERTER_TEMPERATURES</type>
<file>Src/main/errors.c</file>
<extern>false</extern>
@@ -3175,7 +3175,7 @@
<shortname>temperature_warning_BI2</shortname>
<pt_type>pt_union</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>INVERTER_TEMPERATURES</type>
<file>Src/main/errors.c</file>
<extern>false</extern>
@@ -3187,7 +3187,7 @@
<shortname>temperature_warning_BV1</shortname>
<pt_type>pt_union</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>RECTIFIER_TEMPERATURES</type>
<file>Src/main/errors.c</file>
<extern>false</extern>
@@ -3199,7 +3199,7 @@
<shortname>temperature_warning_BV2</shortname>
<pt_type>pt_union</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>RECTIFIER_TEMPERATURES</type>
<file>Src/main/errors.c</file>
<extern>false</extern>
@@ -3211,7 +3211,7 @@
<shortname>terminal_can_setup</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>TERMINAL_CAN_SETUP</type>
<file>Src/myLibs/CAN_Setup.c</file>
<extern>false</extern>
@@ -3223,7 +3223,7 @@
<shortname>tetta_calc</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>TETTA_CALC</type>
<file>Src/VectorControl/teta_calc.c</file>
<extern>false</extern>
@@ -3235,7 +3235,7 @@
<shortname>timCNT_alg</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/myXilinx/Spartan2E_Functions.c</file>
<extern>false</extern>
@@ -3247,7 +3247,7 @@
<shortname>timCNT_prev</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/myXilinx/Spartan2E_Functions.c</file>
<extern>false</extern>
@@ -3259,7 +3259,7 @@
<shortname>time</shortname>
<pt_type>pt_uint16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>unsigned int</type>
<file>Src/myXilinx/Spartan2E_Functions.c</file>
<extern>false</extern>
@@ -3271,7 +3271,7 @@
<shortname>timePauseBENDER_Messages</shortname>
<pt_type>pt_uint16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>unsigned int</type>
<file>Src/main/main22220.c</file>
<extern>false</extern>
@@ -3283,7 +3283,7 @@
<shortname>timePauseCAN_Messages</shortname>
<pt_type>pt_uint16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>unsigned int</type>
<file>Src/main/main22220.c</file>
<extern>false</extern>
@@ -3295,7 +3295,7 @@
<shortname>time_alg</shortname>
<pt_type>pt_float</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>float</type>
<file>Src/myXilinx/Spartan2E_Functions.c</file>
<extern>false</extern>
@@ -3307,7 +3307,7 @@
<shortname>time_pause_enable_can_from_mpu</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>long</type>
<file>Src/myLibs/CAN_Setup.c</file>
<extern>false</extern>
@@ -3319,7 +3319,7 @@
<shortname>time_pause_enable_can_from_terminal</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>long</type>
<file>Src/myLibs/CAN_Setup.c</file>
<extern>false</extern>
@@ -3331,7 +3331,7 @@
<shortname>time_pause_logs</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/myLibs/log_can.c</file>
<extern>false</extern>
@@ -3343,7 +3343,7 @@
<shortname>time_pause_titles</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int</type>
<file>Src/myLibs/log_can.c</file>
<extern>false</extern>
@@ -3355,7 +3355,7 @@
<shortname>tryNumb</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>volatile int</type>
<file>Src/myXilinx/xPeriphSP6_loader.c</file>
<extern>false</extern>
@@ -3367,7 +3367,7 @@
<shortname>unites_can_setup</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>UNITES_CAN_SETUP</type>
<file>Src/myLibs/CAN_Setup.c</file>
<extern>false</extern>
@@ -3379,7 +3379,7 @@
<shortname>var_numb</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>long</type>
<file>Src/main/Main.c</file>
<extern>false</extern>
@@ -3391,7 +3391,7 @@
<shortname>vect_control</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>VECTOR_CONTROL</type>
<file>Src/VectorControl/pwm_vector_regul.c</file>
<extern>false</extern>
@@ -3403,7 +3403,7 @@
<shortname>water_cooler</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>WaterCooler</type>
<file>Src/myLibs/can_watercool.c</file>
<extern>false</extern>
@@ -3415,7 +3415,7 @@
<shortname>winding_displacement</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<return_type />
<type>_iq</type>
<file>Src/main/v_pwm24.c</file>
<extern>false</extern>
@@ -3427,7 +3427,7 @@
<shortname>word</shortname>
<pt_type>pt_union</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>Word</type>
<file>Src/myXilinx/xPeriphSP6_loader.c</file>
<extern>false</extern>
@@ -3439,7 +3439,7 @@
<shortname>wordReversed</shortname>
<pt_type>pt_union</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>WordReversed</type>
<file>Src/myXilinx/xPeriphSP6_loader.c</file>
<extern>false</extern>
@@ -3451,7 +3451,7 @@
<shortname>wordToReverse</shortname>
<pt_type>pt_union</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>WordToReverse</type>
<file>Src/myXilinx/xPeriphSP6_loader.c</file>
<extern>false</extern>
@@ -3463,7 +3463,7 @@
<shortname>x_parallel_bus_project</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>X_PARALLEL_BUS</type>
<file>Src/myXilinx/x_parallel_bus.c</file>
<extern>false</extern>
@@ -3475,7 +3475,7 @@
<shortname>x_serial_bus_project</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>X_SERIAL_BUS</type>
<file>Src/myXilinx/x_serial_bus.c</file>
<extern>false</extern>
@@ -3487,7 +3487,7 @@
<shortname>xeeprom_controll_fast</shortname>
<pt_type>pt_uint16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>unsigned int</type>
<file>Src/myXilinx/Spartan2E_Functions.c</file>
<extern>false</extern>
@@ -3499,7 +3499,7 @@
<shortname>xeeprom_controll_store</shortname>
<pt_type>pt_uint16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>unsigned int</type>
<file>Src/myXilinx/Spartan2E_Functions.c</file>
<extern>false</extern>
@@ -3511,7 +3511,7 @@
<shortname>xpwm_time</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>XPWM_TIME</type>
<file>Src/myXilinx/xp_write_xpwm_time.c</file>
<extern>false</extern>
@@ -3523,7 +3523,7 @@
<shortname>zadan_Id_min</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<return_type />
<type>_iq</type>
<file>Src/VectorControl/pwm_vector_regul.c</file>
<extern>false</extern>
@@ -3535,7 +3535,7 @@
<shortname>zero_ADC</shortname>
<pt_type>pt_arr_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int[20]</type>
<file>Src/main/adc_tools.c</file>
<extern>false</extern>
@@ -3544,7 +3544,7 @@
<var name="ADC_sf[0][0]">
<show_var>true</show_var>
<enable>true</enable>
<shortname>ADC_sf[0][0]</shortname>
<shortname>ADC_sf00</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>t_iq_none</return_type>
@@ -3556,7 +3556,7 @@
<var name="ADC_sf[0][1]">
<show_var>true</show_var>
<enable>true</enable>
<shortname>ADC_sf[0][1]</shortname>
<shortname>ADC_sf01</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>t_iq_none</return_type>
@@ -3568,7 +3568,7 @@
<var name="ADC_sf[0][2]">
<show_var>true</show_var>
<enable>true</enable>
<shortname>ADC_sf[0][2]</shortname>
<shortname>ADC_sf02</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>t_iq_none</return_type>
@@ -3580,7 +3580,7 @@
<var name="ADC_sf[0][3]">
<show_var>true</show_var>
<enable>true</enable>
<shortname>ADC_sf[0][3]</shortname>
<shortname>ADC_sf03</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>t_iq_none</return_type>
@@ -3592,7 +3592,7 @@
<var name="ADC_sf[0][4]">
<show_var>true</show_var>
<enable>true</enable>
<shortname>ADC_sf[0][4]</shortname>
<shortname>ADC_sf04</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>t_iq_none</return_type>
@@ -3604,7 +3604,7 @@
<var name="ADC_sf[0][5]">
<show_var>true</show_var>
<enable>true</enable>
<shortname>ADC_sf[0][5]</shortname>
<shortname>ADC_sf05</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>t_iq_none</return_type>
@@ -3616,7 +3616,7 @@
<var name="ADC_sf[0][6]">
<show_var>true</show_var>
<enable>true</enable>
<shortname>ADC_sf[0][6]</shortname>
<shortname>ADC_sf06</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>t_iq_none</return_type>
@@ -3628,7 +3628,7 @@
<var name="ADC_sf[0][7]">
<show_var>true</show_var>
<enable>true</enable>
<shortname>ADC_sf[0][7]</shortname>
<shortname>ADC_sf07</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>t_iq_none</return_type>
@@ -3640,7 +3640,7 @@
<var name="ADC_sf[0][8]">
<show_var>true</show_var>
<enable>true</enable>
<shortname>ADC_sf[0][8]</shortname>
<shortname>ADC_sf08</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>t_iq_none</return_type>
@@ -3652,7 +3652,7 @@
<var name="ADC_sf[0][9]">
<show_var>true</show_var>
<enable>true</enable>
<shortname>ADC_sf[0][9]</shortname>
<shortname>ADC_sf09</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>t_iq_none</return_type>
@@ -3664,7 +3664,7 @@
<var name="ADC_sf[0][10]">
<show_var>true</show_var>
<enable>true</enable>
<shortname>ADC_sf[0][10]</shortname>
<shortname>ADC_sf010</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>t_iq_none</return_type>
@@ -3676,7 +3676,7 @@
<var name="ADC_sf[0][11]">
<show_var>true</show_var>
<enable>true</enable>
<shortname>ADC_sf[0][11]</shortname>
<shortname>ADC_sf011</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>t_iq_none</return_type>
@@ -3688,7 +3688,7 @@
<var name="ADC_sf[0][12]">
<show_var>true</show_var>
<enable>true</enable>
<shortname>ADC_sf[0][12]</shortname>
<shortname>ADC_sf012</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>t_iq_none</return_type>
@@ -3700,7 +3700,7 @@
<var name="ADC_sf[0][13]">
<show_var>true</show_var>
<enable>true</enable>
<shortname>ADC_sf[0][13]</shortname>
<shortname>ADC_sf013</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>t_iq_none</return_type>
@@ -3712,7 +3712,7 @@
<var name="ADC_sf[0][14]">
<show_var>true</show_var>
<enable>true</enable>
<shortname>ADC_sf[0][14]</shortname>
<shortname>ADC_sf014</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>t_iq_none</return_type>
@@ -3724,7 +3724,7 @@
<var name="ADC_sf[0][15]">
<show_var>true</show_var>
<enable>true</enable>
<shortname>ADC_sf[0][15]</shortname>
<shortname>ADC_sf015</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>t_iq_none</return_type>
@@ -3739,7 +3739,7 @@
<shortname>ADC_f</shortname>
<pt_type>pt_arr_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int[2][16]</type>
<file>Src/main/adc_tools.c</file>
<extern>false</extern>
@@ -3751,7 +3751,7 @@
<shortname>ADC_sf</shortname>
<pt_type>pt_arr_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>int[2][16]</type>
<file>Src/main/adc_tools.c</file>
<extern>false</extern>
@@ -3763,7 +3763,7 @@
<shortname>project</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<return_type />
<type>T_project</type>
<file>Src/myXilinx/xp_project.c</file>
<extern>false</extern>
@@ -3772,10 +3772,10 @@
<var name="Bender[0].KOhms">
<show_var>true</show_var>
<enable>true</enable>
<shortname>Bender[0].KOhms</shortname>
<shortname>Bend0.KOhm</shortname>
<pt_type>pt_uint16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>iq_none</return_type>
<return_type>t_iq_none</return_type>
<type>unsigned int</type>
<file>Src/myLibs/bender.c</file>
<extern>false</extern>
@@ -3784,10 +3784,10 @@
<var name="Bender[0].Times">
<show_var>true</show_var>
<enable>true</enable>
<shortname>Bender[0].Times</shortname>
<shortname>Bend0.Time</shortname>
<pt_type>pt_uint16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>iq_none</return_type>
<return_type>t_iq_none</return_type>
<type>unsigned int</type>
<file>Src/myLibs/bender.c</file>
<extern>false</extern>
@@ -3796,10 +3796,10 @@
<var name="Bender[0].Error.all">
<show_var>true</show_var>
<enable>true</enable>
<shortname>Bender[0].Error.all</shortname>
<shortname>Bend0.Err</shortname>
<pt_type>pt_uint16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>iq_none</return_type>
<return_type>t_iq_none</return_type>
<type>unsigned int</type>
<file>Src/myLibs/bender.c</file>
<extern>false</extern>