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