diff --git a/generateVars.exe b/.out/generateVars.exe similarity index 100% rename from generateVars.exe rename to .out/generateVars.exe diff --git a/.out/scanVars.exe b/.out/scanVars.exe index 6438dd7..8b7e057 100644 Binary files a/.out/scanVars.exe and b/.out/scanVars.exe differ diff --git a/scanVars.exe b/DebugVarEdit.exe similarity index 52% rename from scanVars.exe rename to DebugVarEdit.exe index 8b7e057..d8da614 100644 Binary files a/scanVars.exe and b/DebugVarEdit.exe differ diff --git a/VariableSelector.py b/Src/VariableSelector.py similarity index 78% rename from VariableSelector.py rename to Src/VariableSelector.py index 4504cda..406aab3 100644 --- a/VariableSelector.py +++ b/Src/VariableSelector.py @@ -11,7 +11,7 @@ from scanVars import * array_re = re.compile(r'^(\w+)\[(\d+)\]$') class VariableSelectorDialog(QDialog): - def __init__(self, all_vars, structs, typedefs, parent=None): + def __init__(self, all_vars, structs, typedefs, xml_path=None, parent=None): super().__init__(parent) self.setWindowTitle("Выбор переменных") self.resize(600, 500) @@ -23,6 +23,8 @@ class VariableSelectorDialog(QDialog): self.expanded_vars = [] self.var_map = {v['name']: v for v in all_vars} + self.xml_path = xml_path # сохраняем путь к xml + self.search_input = QLineEdit() self.search_input.setPlaceholderText("Поиск по имени переменной...") self.search_input.textChanged.connect(self.filter_tree) @@ -59,6 +61,7 @@ class VariableSelectorDialog(QDialog): self.populate_tree() + def add_tree_item_recursively(self, parent, var): """ Рекурсивно добавляет переменную и её дочерние поля в дерево. @@ -166,7 +169,7 @@ class VariableSelectorDialog(QDialog): name = item.text(0) # имя переменной (в колонке 1) type_str = item.text(1) # тип переменной (в колонке 2) - if not name or not type_str: + if not name: continue self.selected_names.append((name, type_str)) @@ -215,7 +218,62 @@ class VariableSelectorDialog(QDialog): var['enable'] = 'false' self.accept() - + def set_tool(self, item, text): item.setToolTip(0, text) - item.setToolTip(1, text) \ No newline at end of file + item.setToolTip(1, text) + + + def keyPressEvent(self, event): + if event.key() == Qt.Key_Delete: + self.delete_selected_vars() + else: + super().keyPressEvent(event) + + def delete_selected_vars(self): + # Деактивируем (удаляем из видимых) выбранные переменные + for item in self.tree.selectedItems(): + name = item.text(0) + if not name: + continue + if name in self.var_map: + var = self.var_map[name] + var['show_var'] = 'false' + var['enable'] = 'false' + + if not hasattr(self, 'xml_path') or not self.xml_path: + from PySide6.QtWidgets import QMessageBox + QMessageBox.warning(self, "Ошибка", "Путь к XML не задан, невозможно удалить переменные.") + return + + import xml.etree.ElementTree as ET + tree = ET.parse(self.xml_path) + root = tree.getroot() + + if root is None: + return + + vars_section = root.find('variables') + if vars_section is None: + return # Нет секции variables — ничего удалять + + selected_names = [item.text(0) for item in self.tree.selectedItems() if item.text(0)] + + removed_any = False + for var_elem in vars_section.findall('var'): + name = var_elem.attrib.get('name') + if name in selected_names: + vars_section.remove(var_elem) + removed_any = True + if name in self.var_map: + del self.var_map[name] + # Удаляем элементы из списка на месте + self.all_vars[:] = [v for v in self.all_vars if v['name'] != name] + + + if removed_any: + ET.indent(tree, space=" ", level=0) + tree.write(self.xml_path, encoding='utf-8', xml_declaration=True) + + + self.populate_tree() \ No newline at end of file diff --git a/generateVars.py b/Src/generateVars.py similarity index 78% rename from generateVars.py rename to Src/generateVars.py index b15f606..78865f1 100644 --- a/generateVars.py +++ b/Src/generateVars.py @@ -129,6 +129,98 @@ def get_iq_define(vtype): else: return 't_iq_none' +def add_new_vars_to_xml(proj_path, xml_rel_path, output_path): + """ + new_vars — dict: ключ = имя переменной, значение = словарь с info (type, file, extern, static, enable, show_var и т.п.) + + Если переменной нет в XML (в ), добавляем её и сохраняем XML-файл. + + Возвращает True если что-то добавлено и XML перезаписан, иначе False. + """ + + # Считываем существующие переменные + parsed_vars = {} + if os.path.isfile(output_path): + with open(output_path, 'r', encoding='utf-8', errors='ignore') as f: + for line in f: + # {(char *)&some.deep.var.name , pt_uint16 , t_iq15 , "ShortName"}, + m = re.match( + r'{\s*\(char\s*\*\)\s*&([a-zA-Z_][a-zA-Z0-9_]*)\s*,\s*(pt_\w+)\s*,\s*(t?iq_\w+)\s*,\s*"([^"]+)"', + line) + if m: + full_varname = m.group(1) # e.g., some.deep.var.name + pt_type = m.group(2) + iq_type = m.group(3) + shortname = m.group(4) + + parsed_vars[full_varname] = { + 'pt_type': pt_type, + 'iq_type': iq_type, + 'enable': True, + 'show_var': True, + 'shortname': shortname, + 'return_type': 'int', + 'type': '', # Можешь дополнить из externs + 'file': '', # Можешь дополнить из externs + 'extern': False, + 'static': False, + 'name': full_varname # Сохраняем исходное имя переменной + } + + if not parsed_vars: + print("[INFO] Не удалось найти ни одной переменной в debug_vars.c") + return False + + xml_full_path = os.path.join(proj_path, xml_rel_path) + xml_full_path = os.path.normpath(xml_full_path) + + tree = ET.parse(xml_full_path) + root = tree.getroot() + + vars_section = root.find("variables") + if vars_section is None: + vars_section = ET.SubElement(root, "variables") + + existing_var_names = {v.attrib['name'] for v in vars_section.findall("var")} + added_count = 0 + + # 3. Добавляем переменные, которых нет в XML + for name, info in parsed_vars.items(): + if name in existing_var_names: + # Уже есть — обновляем enable, если нужно + existing_elem = vars_section.find(f"./var[@name='{name}']") + if existing_elem is not None: + manual_elem = existing_elem.find("manual") + if manual_elem and manual_elem.text == "true": + show_elem = existing_elem.find("show_var") + if show_elem is None: + show_elem = ET.SubElement(existing_elem, "enable") + enable_elem.text = "true" + enable_elem = existing_elem.find("enable") + if enable_elem is None: + enable_elem = ET.SubElement(existing_elem, "enable") + enable_elem.text = "true" + added_count += 1 + continue + var_elem = ET.SubElement(vars_section, "var", {"name": name}) + manual = ET.SubElement(var_elem, 'manual') + manual.text = 'true' + for key, val in info.items(): + elem = ET.SubElement(var_elem, key) + if isinstance(val, bool): + elem.text = "true" if val else "false" + else: + elem.text = str(val) + added_count += 1 + + if added_count > 0: + ET.indent(tree, space=" ", level=0) + tree.write(xml_full_path, encoding="utf-8", xml_declaration=True) + print(f"[INFO] В XML добавлено новых переменных: {added_count}") + return True + else: + print("[INFO] Все переменные уже есть в XML.") + return False def read_vars_from_xml(proj_path, xml_rel_path): @@ -192,29 +284,20 @@ def read_vars_from_xml(proj_path, xml_rel_path): -def generate_vars_file(proj_path, xml_path, output_dir): +def generate_vars_file(proj_path, xml_path, output_dir): output_dir = os.path.join(proj_path, output_dir) os.makedirs(output_dir, exist_ok=True) output_path = os.path.join(output_dir, 'debug_vars.c') + + # Запись новых переменных для в XML + add_new_vars_to_xml(proj_path, xml_path, output_path) # Генерируем новые переменные vars, includes, externs = read_vars_from_xml(proj_path, xml_path) # Сортируем новые переменные по алфавиту по имени sorted_new_debug_vars = dict(sorted(vars.items())) - - # Считываем существующие переменные - existing_debug_vars = {} - if os.path.isfile(output_path): - with open(output_path, 'r', encoding='utf-8', errors='ignore') as f: - old_lines = f.readlines() - for line in old_lines: - m = re.match(r'\s*{.*?,\s+.*?,\s+.*?,\s+"([_a-zA-Z][_a-zA-Z0-9]*)"\s*},', line) - if m: - varname = m.group(1) - existing_debug_vars[varname] = line.strip() - new_debug_vars = {} def is_true(val): @@ -237,9 +320,6 @@ def generate_vars_file(proj_path, xml_path, output_dir): path = info["file"] - if vname in existing_debug_vars: - continue - iq_type = info.get('iq_type') if not iq_type: iq_type = get_iq_define(vtype) @@ -269,7 +349,7 @@ def generate_vars_file(proj_path, xml_path, output_dir): # Объединяем все переменные - all_debug_lines = [str(v) for v in existing_debug_vars.values()] + [str(v) for v in new_debug_vars.values()] + all_debug_lines = new_debug_vars.values() out_lines = [] out_lines.append("// Этот файл сгенерирован автоматически") diff --git a/parseMakefile.py b/Src/parseMakefile.py similarity index 100% rename from parseMakefile.py rename to Src/parseMakefile.py diff --git a/scanVars.py b/Src/scanVars.py similarity index 100% rename from scanVars.py rename to Src/scanVars.py diff --git a/setupVars.py b/Src/setupVars.py similarity index 100% rename from setupVars.py rename to Src/setupVars.py diff --git a/setupVars_GUI.py b/Src/setupVars_GUI.py similarity index 72% rename from setupVars_GUI.py rename to Src/setupVars_GUI.py index c935df3..5a4fb79 100644 --- a/setupVars_GUI.py +++ b/Src/setupVars_GUI.py @@ -1,3 +1,6 @@ +# build command +# pyinstaller --onefile --name DebugVarEdit --add-binary "build/libclang.dll;build" --distpath ./ --workpath ./build_temp --specpath ./build_temp setupVars_GUI.py + import sys import os import subprocess @@ -14,19 +17,21 @@ from PySide6.QtWidgets import ( QApplication, QWidget, QTableWidget, QTableWidgetItem, QCheckBox, QComboBox, QLineEdit, QVBoxLayout, QHBoxLayout, QPushButton, QCompleter, QAbstractItemView, QLabel, QMessageBox, QFileDialog, QTextEdit, - QDialog, QTreeWidget, QTreeWidgetItem + QDialog, QTreeWidget, QTreeWidgetItem, QSizePolicy ) from PySide6.QtGui import QTextCursor, QKeyEvent from PySide6.QtCore import Qt, QProcess, QObject, Signal, QTimer + class rows(IntEnum): - include = 0 - name = 1 - type = 2 - pt_type = 3 - iq_type = 4 - ret_type = 5 - short_name = 6 + No = 0 + include = 1 + name = 2 + type = 3 + pt_type = 4 + iq_type = 5 + ret_type = 6 + short_name = 7 class EmittingStream(QObject): @@ -95,6 +100,8 @@ class VarEditor(QWidget): self.makefile_path = None self.structs_path = None self.output_path = None + self._updating = False # Флаг блокировки рекурсии + self._resizing = False # флаг блокировки повторного вызова self.initUI() def initUI(self): @@ -106,7 +113,7 @@ class VarEditor(QWidget): xml_layout = QHBoxLayout() xml_layout.addWidget(QLabel("XML Output:")) self.xml_output_edit = QLineEdit() - self.xml_output_edit.returnPressed.connect(self.read_xml_file) + self.xml_output_edit.returnPressed.connect(self.update) self.xml_output_edit.textChanged.connect(self.__on_xml_path_changed) xml_layout.addWidget(self.xml_output_edit) btn_xml_browse = QPushButton("...") @@ -118,7 +125,7 @@ class VarEditor(QWidget): proj_layout = QHBoxLayout() proj_layout.addWidget(QLabel("Project Path:")) self.proj_path_edit = QLineEdit() - self.proj_path_edit.returnPressed.connect(self.read_xml_file) + self.proj_path_edit.returnPressed.connect(self.update) self.proj_path_edit.textChanged.connect(self.__on_proj_path_changed) proj_layout.addWidget(self.proj_path_edit) btn_proj_browse = QPushButton("...") @@ -130,7 +137,7 @@ class VarEditor(QWidget): makefile_layout = QHBoxLayout() makefile_layout.addWidget(QLabel("Makefile Path (relative path):")) self.makefile_edit = QLineEdit() - self.makefile_edit.returnPressed.connect(self.read_xml_file) + self.makefile_edit.returnPressed.connect(self.update) self.makefile_edit.textChanged.connect(self.__on_makefile_path_changed) makefile_layout.addWidget(self.makefile_edit) btn_makefile_browse = QPushButton("...") @@ -155,9 +162,10 @@ class VarEditor(QWidget): self.btn_update_vars.clicked.connect(self.update_vars_data) # Таблица переменных - self.table = QTableWidget(len(self.vars_list), 7) + self.table = QTableWidget(len(self.vars_list), 8) self.table.setHorizontalHeaderLabels([ - 'Include', + '№', # новый столбец + 'En', 'Name', 'Origin Type', 'Pointer Type', @@ -187,9 +195,68 @@ class VarEditor(QWidget): layout.addLayout(source_output_layout) layout.addWidget(btn_save) + + header = self.table.horizontalHeader() + # Для остальных колонок — растяжение (Stretch), чтобы они заняли всю оставшуюся ширину + + for col in range(self.table.columnCount()): + if col == self.table.columnCount() - 1: + header.setSectionResizeMode(col, QHeaderView.Stretch) + else: + header.setSectionResizeMode(col, QHeaderView.Interactive) + + parent_widget = self.table.parentWidget() + if parent_widget: + w = parent_widget.width() + h = parent_widget.height() + viewport_width = self.table.viewport().width() + # Сделаем колонки с номерами фиксированной ширины + self.table.setColumnWidth(rows.No, 30) + self.table.setColumnWidth(rows.include, 30) + self.table.setColumnWidth(rows.pt_type, 85) + self.table.setColumnWidth(rows.iq_type, 85) + self.table.setColumnWidth(rows.ret_type, 85) + + self.table.setColumnWidth(rows.name, 300) + self.table.setColumnWidth(rows.type, 100) + + self.table.horizontalHeader().sectionResized.connect(self.on_section_resized) + self.setLayout(layout) + def on_section_resized(self, logicalIndex, oldSize, newSize): + if self._resizing: + return # предотвращаем рекурсию + + min_width = 50 + delta = newSize - oldSize + right_index = logicalIndex + 1 + + if right_index >= self.table.columnCount(): + # Если правая колока - нет соседа, ограничиваем минимальную ширину + if newSize < min_width: + self._resizing = True + self.table.setColumnWidth(logicalIndex, min_width) + self._resizing = False + return + + self._resizing = True + try: + right_width = self.table.columnWidth(right_index) + new_right_width = right_width - delta + + # Если соседняя колонка станет уже минимальной - подкорректируем левую + if new_right_width < min_width: + new_right_width = min_width + newSize = oldSize + (right_width - min_width) + self.table.setColumnWidth(logicalIndex, newSize) + + self.table.setColumnWidth(right_index, new_right_width) + finally: + self._resizing = False + + def get_xml_path(self): xml_path = self.xml_output_edit.text().strip() @@ -288,7 +355,6 @@ class VarEditor(QWidget): } vars_out.append(var_data) - # Здесь нужно указать абсолютные пути к проекту, xml и output (замени на свои) self.update_all_paths() if not self.proj_path or not self.xml_path or not self.output_path: @@ -298,65 +364,76 @@ class VarEditor(QWidget): try: run_generate(self.proj_path, self.xml_path, self.output_path) QMessageBox.information(self, "Готово", "Файл debug_vars.c успешно сгенерирован.") + self.update() except Exception as e: QMessageBox.critical(self, "Ошибка при генерации", str(e)) - def read_xml_file(self): + def update(self): + if self._updating: + return # Уже в процессе обновления — выходим, чтобы избежать рекурсии + self._updating = True + self.update_all_paths() - if self.xml_path and not os.path.isfile(self.xml_path): - return - try: - root, tree = safe_parse_xml(self.xml_path) - if root is None: + if self.xml_path and not os.path.isfile(self.xml_path): return - - if not self.proj_path: - # Если в поле ничего нет, пробуем взять из XML - proj_path_from_xml = root.attrib.get('proj_path', '').strip() - if proj_path_from_xml and os.path.isdir(proj_path_from_xml): - self.proj_path = proj_path_from_xml - self.proj_path_edit.setText(proj_path_from_xml) - else: - QMessageBox.warning( - self, - "Внимание", - "Путь к проекту (proj_path) не найден или не существует.\n" - "Пожалуйста, укажите его вручную в поле 'Project Path'." - ) - else: - if not os.path.isdir(self.proj_path): - QMessageBox.warning( - self, - "Внимание", - f"Указанный путь к проекту не существует:\n{self.proj_path}\n" - "Пожалуйста, исправьте путь в поле 'Project Path'." - ) - - - # --- makefile_path из атрибута --- - makefile_path = root.attrib.get('makefile_path', '').strip() - makefile_path_full = make_absolute_path(makefile_path, self.proj_path) - if makefile_path_full and os.path.isfile(makefile_path_full): - self.makefile_edit.setText(makefile_path) - self.makefile_path = makefile_path_full - - # --- structs_path из атрибута --- - structs_path = root.attrib.get('structs_path', '').strip() - structs_path_full = make_absolute_path(structs_path, self.proj_path) - if structs_path_full and os.path.isfile(structs_path_full): - self.structs_path = structs_path_full - self.structs, self.typedef_map = parse_structs(structs_path_full) - else: - self.structs_path = None - self.vars_list = parse_vars(self.xml_path, self.typedef_map) - self.update_table() - except Exception as e: - QMessageBox.warning(self, "Ошибка", f"Ошибка при чтении XML:\n{e}") + try: + root, tree = safe_parse_xml(self.xml_path) + if root is None: + return + + if not self.proj_path: + # Если в поле ничего нет, пробуем взять из XML + proj_path_from_xml = root.attrib.get('proj_path', '').strip() + if proj_path_from_xml and os.path.isdir(proj_path_from_xml): + self.proj_path = proj_path_from_xml + self.proj_path_edit.setText(proj_path_from_xml) + else: + QMessageBox.warning( + self, + "Внимание", + "Путь к проекту (proj_path) не найден или не существует.\n" + "Пожалуйста, укажите его вручную в поле 'Project Path'." + ) + else: + if not os.path.isdir(self.proj_path): + QMessageBox.warning( + self, + "Внимание", + f"Указанный путь к проекту не существует:\n{self.proj_path}\n" + "Пожалуйста, исправьте путь в поле 'Project Path'." + ) + if not self.makefile_path: + # --- makefile_path из атрибута --- + makefile_path = root.attrib.get('makefile_path', '').strip() + makefile_path_full = make_absolute_path(makefile_path, self.proj_path) + if makefile_path_full and os.path.isfile(makefile_path_full): + self.makefile_edit.setText(makefile_path) + else: + self.makefile_path = None + + if not self.structs_path: + # --- structs_path из атрибута --- + structs_path = root.attrib.get('structs_path', '').strip() + structs_path_full = make_absolute_path(structs_path, self.proj_path) + if structs_path_full and os.path.isfile(structs_path_full): + self.structs_path = structs_path_full + self.structs, self.typedef_map = parse_structs(structs_path_full) + else: + self.structs_path = None + + self.vars_list = parse_vars(self.xml_path, self.typedef_map) + self.update_table() + except Exception as e: + QMessageBox.warning(self, "Ошибка", f"Ошибка при чтении XML:\n{e}") + + + finally: + self._updating = False # Снимаем блокировку при выходе из функции def __browse_proj_path(self): dir_path = QFileDialog.getExistingDirectory(self, "Выберите папку проекта") @@ -406,38 +483,31 @@ class VarEditor(QWidget): def __on_xml_path_changed(self): self.xml_path = self.get_xml_path() - self.read_xml_file() + self.update() def __on_proj_path_changed(self): self.proj_path = self.get_proj_path() - self.read_xml_file() + self.update() def __on_makefile_path_changed(self): self.makefile_path = self.get_makefile_path() if self.makefile_path and self.proj_path: path = make_relative_path(self.makefile_path, self.proj_path) self.makefile_edit.setText(path) - self.makefile_path = path - self.read_xml_file() + self.update() def __after_scanvars_finished(self): - xml_path = self.xml_output_edit.text().strip() - if not os.path.isfile(xml_path): - QMessageBox.critical(self, "Ошибка", f"Файл не найден: {xml_path}") + self.update_all_paths() + if not os.path.isfile(self.xml_path): + QMessageBox.critical(self, "Ошибка", f"Файл не найден: {self.xml_path}") return try: - # Читаем структуры, если задан путь - if self.structs_path and os.path.isfile(self.structs_path): - try: - self.structs, self.typedef_map = parse_structs(self.structs_path) - # При необходимости обновите UI или сделайте что-то с self.structs - except Exception as e: - QMessageBox.warning(self, "Внимание", f"Не удалось загрузить структуры из {self.structs_path}:\n{e}") - - self.vars_list = parse_vars(xml_path) - self.update_table() + self.makefile_path = None + self.structs_path = None + self.proj_path = None + self.update() except Exception as e: @@ -466,11 +536,10 @@ class VarEditor(QWidget): QMessageBox.warning(self, "Нет переменных", "Сначала загрузите или обновите переменные.") return - dlg = VariableSelectorDialog(self.vars_list, self.structs, self.typedef_map, self) + dlg = VariableSelectorDialog(self.vars_list, self.structs, self.typedef_map, self.xml_path, self) if dlg.exec(): self.write_to_xml() - self.read_xml_file() - self.update_table() + self.update() @@ -480,8 +549,14 @@ class VarEditor(QWidget): iq_types = ['iq_none', 'iq'] + [f'iq{i}' for i in range(1, 31)] filtered_vars = [v for v in self.vars_list if v.get('show_var', 'false') == 'true'] self.table.setRowCount(len(filtered_vars)) + self.table.verticalHeader().setVisible(False) for row, var in enumerate(filtered_vars): + # Добавляем номер строки в колонку No (0) + no_item = QTableWidgetItem(str(row)) + no_item.setFlags(Qt.ItemIsSelectable | Qt.ItemIsEnabled) # readonly + self.table.setItem(row, rows.No, no_item) + cb = QCheckBox() enable_str = var.get('enable', 'false') cb.setChecked(enable_str.lower() == 'true') @@ -534,6 +609,7 @@ class VarEditor(QWidget): ret_combo.currentTextChanged.connect(self.write_to_xml) short_name_edit.textChanged.connect(self.write_to_xml) + self.write_to_xml() @@ -607,11 +683,11 @@ class VarEditor(QWidget): # Читаем переменные из таблицы (активные/изменённые) table_vars = {v['name']: v for v in self.read_table()} - # Все переменные (в том числе новые, которых нет в XML) + # Все переменные (в том числе новые, которых нет в таблице) all_vars_by_name = {v['name']: v for v in self.vars_list} # Объединённый список переменных для записи - all_names = set(all_vars_by_name.keys()) + all_names = list(all_vars_by_name.keys()) for name in all_names: v = all_vars_by_name[name] v_table = table_vars.get(name) @@ -633,11 +709,18 @@ class VarEditor(QWidget): set_sub_elem_text(var_elem, 'show_var', v.get('show_var', 'false')) set_sub_elem_text(var_elem, 'enable', v.get('enable', 'false')) - set_sub_elem_text(var_elem, 'shortname', v['shortname']) - set_sub_elem_text(var_elem, 'pt_type', v['pt_type']) - set_sub_elem_text(var_elem, 'iq_type', v['iq_type']) - set_sub_elem_text(var_elem, 'return_type', v['return_type']) - set_sub_elem_text(var_elem, 'type', v['type']) + + # Тут подтягиваем из таблицы, если есть, иначе из v + shortname_val = v_table['shortname'] if v_table and 'shortname' in v_table else v.get('shortname', '') + pt_type_val = v_table['pt_type'] if v_table and 'pt_type' in v_table else v.get('pt_type', '') + iq_type_val = v_table['iq_type'] if v_table and 'iq_type' in v_table else v.get('iq_type', '') + ret_type_val = v_table['return_type'] if v_table and 'return_type' in v_table else v.get('return_type', '') + + set_sub_elem_text(var_elem, 'shortname', shortname_val) + set_sub_elem_text(var_elem, 'pt_type', pt_type_val) + set_sub_elem_text(var_elem, 'iq_type', iq_type_val) + set_sub_elem_text(var_elem, 'return_type', ret_type_val) + set_sub_elem_text(var_elem, 'type', v.get('type', '')) # file/extern/static: из original_info, либо из v file_val = v.get('file') or original_info.get(name, {}).get('file', '') diff --git a/__pycache__/VariableSelector.cpython-313.pyc b/__pycache__/VariableSelector.cpython-313.pyc deleted file mode 100644 index 7aceb77..0000000 Binary files a/__pycache__/VariableSelector.cpython-313.pyc and /dev/null differ diff --git a/__pycache__/generateVars.cpython-313.pyc b/__pycache__/generateVars.cpython-313.pyc deleted file mode 100644 index fe5d6a7..0000000 Binary files a/__pycache__/generateVars.cpython-313.pyc and /dev/null differ diff --git a/__pycache__/parseMakefile.cpython-313.pyc b/__pycache__/parseMakefile.cpython-313.pyc deleted file mode 100644 index cae460a..0000000 Binary files a/__pycache__/parseMakefile.cpython-313.pyc and /dev/null differ diff --git a/__pycache__/scanVars.cpython-313.pyc b/__pycache__/scanVars.cpython-313.pyc deleted file mode 100644 index a7c01fb..0000000 Binary files a/__pycache__/scanVars.cpython-313.pyc and /dev/null differ diff --git a/__pycache__/setupVars.cpython-313.pyc b/__pycache__/setupVars.cpython-313.pyc deleted file mode 100644 index ba8b570..0000000 Binary files a/__pycache__/setupVars.cpython-313.pyc and /dev/null differ diff --git a/build/build_and_clean.py b/build/build_and_clean.py new file mode 100644 index 0000000..0ab9bea --- /dev/null +++ b/build/build_and_clean.py @@ -0,0 +1,34 @@ +import subprocess +import shutil +import os + +# Пути +dist_path = os.path.abspath("./") # текущая папка — exe будет тут +work_path = os.path.abspath("./build_temp") +spec_path = os.path.abspath("./build_temp") +script_dir = os.path.dirname(os.path.abspath(__file__)) +libclang_path = os.path.join(script_dir, "libclang.dll") + +# Запуск PyInstaller с нужными параметрами +cmd = [ + "pyinstaller", + "--onefile", + "--windowed", + "--name", "DebugVarEdit", + "--add-binary", f"{libclang_path};.", + "--distpath", dist_path, + "--workpath", work_path, + "--specpath", spec_path, + "./Src/setupVars_GUI.py" +] + +result = subprocess.run(cmd) +if result.returncode == 0: + # Удаляем временные папки + for folder in ["build_temp", "__pycache__"]: + if os.path.exists(folder): + shutil.rmtree(folder) + + print("Сборка успешно завершена!") +else: + print("Сборка завершилась с ошибкой.") diff --git a/debug_vars.c b/debug_vars.c index 2f82485..4b546df 100644 --- a/debug_vars.c +++ b/debug_vars.c @@ -3,33 +3,33 @@ // -#include "xp_project.h" -#include "RS_Functions_modbus.h" #include "vector.h" -#include "errors.h" +#include "RS_Functions_modbus.h" #include "adc_tools.h" -#include "pwm_vector_regul.h" -#include "xp_write_xpwm_time.h" -#include "log_can.h" -#include "f281xpwm.h" +#include "errors.h" #include "v_pwm24.h" +#include "f281xpwm.h" +#include "xp_project.h" #include "rotation_speed.h" #include "teta_calc.h" #include "dq_to_alphabeta_cos.h" -#include "xp_controller.h" -#include "x_parallel_bus.h" -#include "xp_rotation_sensor.h" -#include "xPeriphSP6_loader.h" -#include "Spartan2E_Functions.h" -#include "x_serial_bus.h" +#include "xp_write_xpwm_time.h" +#include "log_can.h" +#include "pwm_vector_regul.h" #include "RS_Functions.h" #include "detect_phase_break2.h" +#include "svgen_dq.h" +#include "x_parallel_bus.h" +#include "Spartan2E_Functions.h" +#include "x_serial_bus.h" +#include "xp_controller.h" +#include "xp_rotation_sensor.h" +#include "xPeriphSP6_loader.h" #include "log_to_memory.h" -#include "log_params.h" #include "global_time.h" #include "CAN_Setup.h" +#include "log_params.h" #include "CRC_Functions.h" -#include "svgen_dq.h" #include "pid_reg3.h" #include "IQmathLib.h" #include "doors_control.h" @@ -317,5 +317,5 @@ extern int zero_ADC[20]; int DebugVar_Qnt = 1; #pragma DATA_SECTION(dbg_vars,".dbgvar_info") DebugVar_t dbg_vars[] = {\ -{(char *)&ADC1finishAddr , pt_int16 , iq_none , "ADC1finishAddr" }, \ +{(char *)&Bender.KOhms , pt_uint16 , iq_none , "Bender.KOhms" }, \ }; diff --git a/structs.xml b/structs.xml index b70a600..3523819 100644 --- a/structs.xml +++ b/structs.xml @@ -54,7 +54,7 @@ - + @@ -142,7 +142,7 @@ - + @@ -165,7 +165,7 @@ - + @@ -189,7 +189,7 @@ - + @@ -206,7 +206,7 @@ - + @@ -223,7 +223,7 @@ - + @@ -240,7 +240,7 @@ - + @@ -257,7 +257,7 @@ - + @@ -274,7 +274,7 @@ - + @@ -291,7 +291,7 @@ - + @@ -308,7 +308,7 @@ - + @@ -325,7 +325,7 @@ - + @@ -342,7 +342,7 @@ - + @@ -359,7 +359,7 @@ - + @@ -376,7 +376,7 @@ - + @@ -393,7 +393,7 @@ - + @@ -410,7 +410,7 @@ - + @@ -427,7 +427,7 @@ - + @@ -444,7 +444,7 @@ - + @@ -461,7 +461,7 @@ - + @@ -478,7 +478,7 @@ - + @@ -495,7 +495,7 @@ - + @@ -512,7 +512,7 @@ - + @@ -529,7 +529,7 @@ - + @@ -546,7 +546,7 @@ - + @@ -563,7 +563,7 @@ - + @@ -580,7 +580,7 @@ - + @@ -597,7 +597,7 @@ - + @@ -614,7 +614,7 @@ - + @@ -631,7 +631,7 @@ - + @@ -648,7 +648,7 @@ - + @@ -665,7 +665,7 @@ - + @@ -682,7 +682,7 @@ - + @@ -699,7 +699,7 @@ - + @@ -716,7 +716,7 @@ - + @@ -733,7 +733,7 @@ - + @@ -750,7 +750,7 @@ - + @@ -767,7 +767,7 @@ - + @@ -784,7 +784,7 @@ - + @@ -801,7 +801,7 @@ - + @@ -818,7 +818,7 @@ - + @@ -835,7 +835,7 @@ - + @@ -852,7 +852,7 @@ - + @@ -869,7 +869,7 @@ - + @@ -886,7 +886,7 @@ - + @@ -903,7 +903,7 @@ - + @@ -920,7 +920,7 @@ - + @@ -937,7 +937,7 @@ - + @@ -954,7 +954,7 @@ - + @@ -971,7 +971,7 @@ - + @@ -988,7 +988,7 @@ - + @@ -1005,7 +1005,7 @@ - + @@ -1022,7 +1022,7 @@ - + @@ -1039,7 +1039,7 @@ - + @@ -1056,7 +1056,7 @@ - + @@ -1073,7 +1073,7 @@ - + @@ -1090,7 +1090,7 @@ - + @@ -1107,7 +1107,7 @@ - + @@ -1124,7 +1124,7 @@ - + @@ -1141,7 +1141,7 @@ - + @@ -1158,7 +1158,7 @@ - + @@ -1175,7 +1175,7 @@ - + @@ -1192,7 +1192,7 @@ - + @@ -1211,7 +1211,7 @@ - + @@ -1228,7 +1228,7 @@ - + @@ -1245,7 +1245,7 @@ - + @@ -1262,7 +1262,7 @@ - + @@ -1279,7 +1279,7 @@ - + @@ -1296,7 +1296,7 @@ - + @@ -1313,7 +1313,7 @@ - + @@ -1330,7 +1330,7 @@ - + @@ -1347,7 +1347,7 @@ - + @@ -1364,7 +1364,7 @@ - + @@ -1381,7 +1381,7 @@ - + @@ -1398,7 +1398,7 @@ - + @@ -1415,7 +1415,7 @@ - + @@ -1432,7 +1432,7 @@ - + @@ -1449,7 +1449,7 @@ - + @@ -1466,7 +1466,7 @@ - + @@ -1483,7 +1483,7 @@ - + @@ -1500,7 +1500,7 @@ - + @@ -1517,7 +1517,7 @@ - + @@ -1534,7 +1534,7 @@ - + @@ -1551,7 +1551,7 @@ - + @@ -1568,7 +1568,7 @@ - + @@ -1585,7 +1585,7 @@ - + @@ -1602,7 +1602,7 @@ - + @@ -1620,7 +1620,7 @@ - + @@ -1630,7 +1630,7 @@ - + @@ -1642,7 +1642,7 @@ - + @@ -1655,7 +1655,7 @@ - + @@ -1672,7 +1672,7 @@ - + @@ -1695,7 +1695,7 @@ - + @@ -1704,7 +1704,7 @@ - + @@ -1722,7 +1722,7 @@ - + @@ -1761,7 +1761,7 @@ - + @@ -1778,7 +1778,7 @@ - + @@ -1795,7 +1795,7 @@ - + @@ -1812,7 +1812,7 @@ - + @@ -1829,7 +1829,7 @@ - + @@ -1846,7 +1846,7 @@ - + @@ -1863,7 +1863,7 @@ - + @@ -1882,7 +1882,7 @@ - + @@ -1899,7 +1899,7 @@ - + @@ -1916,7 +1916,7 @@ - + @@ -1933,7 +1933,7 @@ - + @@ -1950,7 +1950,7 @@ - + @@ -1967,7 +1967,7 @@ - + @@ -1984,7 +1984,7 @@ - + @@ -2001,7 +2001,7 @@ - + @@ -2018,7 +2018,7 @@ - + @@ -2035,7 +2035,7 @@ - + @@ -2052,7 +2052,7 @@ - + @@ -2069,7 +2069,7 @@ - + @@ -2124,7 +2124,7 @@ - + @@ -2141,7 +2141,7 @@ - + @@ -2158,7 +2158,7 @@ - + @@ -2175,7 +2175,7 @@ - + @@ -2192,7 +2192,7 @@ - + @@ -2209,7 +2209,7 @@ - + @@ -2249,7 +2249,7 @@ - + @@ -2266,7 +2266,7 @@ - + @@ -2283,7 +2283,7 @@ - + @@ -2300,7 +2300,7 @@ - + @@ -2317,7 +2317,7 @@ - + @@ -2334,7 +2334,7 @@ - + @@ -2351,7 +2351,7 @@ - + @@ -2368,7 +2368,7 @@ - + @@ -2385,7 +2385,7 @@ - + @@ -2402,7 +2402,7 @@ - + @@ -2419,7 +2419,7 @@ - + @@ -2436,7 +2436,7 @@ - + @@ -2472,7 +2472,7 @@ - + @@ -2491,7 +2491,7 @@ - + @@ -2506,7 +2506,7 @@ - + @@ -2536,7 +2536,7 @@ - + @@ -2561,7 +2561,7 @@ - + @@ -2586,7 +2586,7 @@ - + @@ -2604,7 +2604,7 @@ - + @@ -2629,7 +2629,7 @@ - + @@ -2654,7 +2654,7 @@ - + @@ -2679,7 +2679,7 @@ - + @@ -2697,7 +2697,7 @@ - + @@ -2722,7 +2722,7 @@ - + @@ -2747,7 +2747,7 @@ - + @@ -2772,7 +2772,7 @@ - + @@ -2797,7 +2797,7 @@ - + @@ -2820,7 +2820,7 @@ - + @@ -2845,7 +2845,7 @@ - + @@ -2866,7 +2866,7 @@ - + @@ -2887,7 +2887,7 @@ - + @@ -2909,7 +2909,7 @@ - + @@ -2931,7 +2931,7 @@ - + @@ -2956,7 +2956,7 @@ - + @@ -2977,7 +2977,7 @@ - + @@ -2995,7 +2995,7 @@ - + @@ -3020,7 +3020,7 @@ - + @@ -3045,7 +3045,7 @@ - + @@ -3070,7 +3070,7 @@ - + @@ -3095,7 +3095,7 @@ - + @@ -3120,7 +3120,7 @@ - + @@ -3145,7 +3145,7 @@ - + @@ -3170,7 +3170,7 @@ - + @@ -3188,7 +3188,7 @@ - + @@ -3210,7 +3210,7 @@ - + @@ -3232,7 +3232,7 @@ - + @@ -3255,7 +3255,7 @@ - + @@ -3278,7 +3278,7 @@ - + @@ -3301,7 +3301,7 @@ - + @@ -3324,7 +3324,7 @@ - + @@ -3470,10 +3470,10 @@ - + - + @@ -3527,7 +3527,7 @@ - + @@ -3545,7 +3545,7 @@ - + @@ -3568,7 +3568,7 @@ - + @@ -3584,7 +3584,7 @@ - + @@ -3600,7 +3600,7 @@ - + @@ -3625,7 +3625,7 @@ - + @@ -3636,7 +3636,7 @@ - + @@ -3654,7 +3654,7 @@ - + @@ -3679,7 +3679,7 @@ - + @@ -3703,7 +3703,7 @@ - + @@ -3728,7 +3728,7 @@ - + @@ -3751,10 +3751,10 @@ - + - + @@ -3762,10 +3762,10 @@ - + - + @@ -3787,10 +3787,10 @@ - + - + @@ -3815,7 +3815,7 @@ - + @@ -3835,7 +3835,7 @@ - + @@ -3871,7 +3871,7 @@ - + @@ -4021,7 +4021,7 @@ - + @@ -4043,7 +4043,7 @@ - + @@ -4104,9 +4104,9 @@ - + - + @@ -4153,7 +4153,7 @@ - + @@ -4176,7 +4176,7 @@ - + @@ -4199,7 +4199,7 @@ - + @@ -4260,7 +4260,7 @@ - + @@ -4271,7 +4271,7 @@ - + @@ -4302,7 +4302,7 @@ - + @@ -4348,7 +4348,7 @@ - + @@ -4361,7 +4361,7 @@ - + @@ -4377,7 +4377,7 @@ - + @@ -4397,7 +4397,7 @@ - + @@ -4418,7 +4418,7 @@ - + @@ -4459,7 +4459,7 @@ - + @@ -4673,7 +4673,7 @@ - + @@ -4704,7 +4704,7 @@ - + @@ -4940,7 +4940,7 @@ - + @@ -4957,7 +4957,7 @@ - + @@ -4974,7 +4974,7 @@ - + @@ -4991,7 +4991,7 @@ - + @@ -5008,7 +5008,7 @@ - + @@ -5025,7 +5025,7 @@ - + @@ -5042,7 +5042,7 @@ - + @@ -5059,7 +5059,7 @@ - + @@ -5076,7 +5076,7 @@ - + @@ -5093,7 +5093,7 @@ - + @@ -5110,7 +5110,7 @@ - + @@ -5127,7 +5127,7 @@ - + @@ -5144,7 +5144,7 @@ - + @@ -5161,7 +5161,7 @@ - + @@ -5178,7 +5178,7 @@ - + @@ -5195,7 +5195,7 @@ - + @@ -5212,7 +5212,7 @@ - + @@ -5229,7 +5229,7 @@ - + @@ -5246,7 +5246,7 @@ - + @@ -5263,7 +5263,7 @@ - + @@ -5280,7 +5280,7 @@ - + @@ -5297,7 +5297,7 @@ - + @@ -5314,7 +5314,7 @@ - + @@ -5331,7 +5331,7 @@ - + @@ -5348,7 +5348,7 @@ - + @@ -5365,7 +5365,7 @@ - + @@ -5382,7 +5382,7 @@ - + @@ -5399,7 +5399,7 @@ - + @@ -5416,7 +5416,7 @@ - + @@ -5433,7 +5433,7 @@ - + @@ -5450,7 +5450,7 @@ - + @@ -5467,7 +5467,7 @@ - + @@ -5484,7 +5484,7 @@ - + @@ -5501,7 +5501,7 @@ - + @@ -5518,7 +5518,7 @@ - + @@ -5535,7 +5535,7 @@ - + @@ -5552,7 +5552,7 @@ - + @@ -5569,7 +5569,7 @@ - + @@ -5586,7 +5586,7 @@ - + @@ -5603,7 +5603,7 @@ - + @@ -5620,7 +5620,7 @@ - + @@ -5637,7 +5637,7 @@ - + @@ -5654,7 +5654,7 @@ - + @@ -5671,7 +5671,7 @@ - + @@ -5688,7 +5688,7 @@ - + @@ -5705,7 +5705,7 @@ - + @@ -5722,7 +5722,7 @@ - + @@ -5739,7 +5739,7 @@ - + @@ -5756,7 +5756,7 @@ - + @@ -5773,7 +5773,7 @@ - + @@ -5790,7 +5790,7 @@ - + @@ -5807,7 +5807,7 @@ - + @@ -5824,7 +5824,7 @@ - + @@ -5841,7 +5841,7 @@ - + @@ -5858,7 +5858,7 @@ - + @@ -5875,7 +5875,7 @@ - + @@ -5892,7 +5892,7 @@ - + @@ -5909,7 +5909,7 @@ - + @@ -5926,7 +5926,7 @@ - + @@ -5943,7 +5943,7 @@ - + @@ -6121,7 +6121,7 @@ - + @@ -6138,7 +6138,7 @@ - + @@ -6155,7 +6155,7 @@ - + @@ -6172,7 +6172,7 @@ - + @@ -6189,7 +6189,7 @@ - + @@ -6206,7 +6206,7 @@ - + @@ -6223,7 +6223,7 @@ - + @@ -6240,7 +6240,7 @@ - + @@ -6257,7 +6257,7 @@ - + @@ -6274,7 +6274,7 @@ - + @@ -6291,7 +6291,7 @@ - + @@ -6308,7 +6308,7 @@ - + @@ -6325,7 +6325,7 @@ - + @@ -6342,7 +6342,7 @@ - + @@ -6359,7 +6359,7 @@ - + @@ -6376,7 +6376,7 @@ - + @@ -6393,7 +6393,7 @@ - + @@ -6410,7 +6410,7 @@ - + @@ -6427,7 +6427,7 @@ - + @@ -6444,7 +6444,7 @@ - + @@ -6461,7 +6461,7 @@ - + @@ -6478,7 +6478,7 @@ - + @@ -6495,7 +6495,7 @@ - + @@ -6512,7 +6512,7 @@ - + @@ -6703,7 +6703,7 @@ - + @@ -6757,7 +6757,7 @@ - + @@ -6799,7 +6799,7 @@ - + @@ -6848,7 +6848,7 @@ - + @@ -6872,7 +6872,7 @@ - + @@ -6927,10 +6927,10 @@ - + - + @@ -6938,10 +6938,10 @@ - + - + @@ -6951,10 +6951,10 @@ - + - + @@ -6964,10 +6964,10 @@ - + - + @@ -6987,10 +6987,10 @@ - + - + @@ -7002,10 +7002,10 @@ - + - + @@ -7016,10 +7016,10 @@ - + - + @@ -7031,10 +7031,10 @@ - + - + @@ -7050,10 +7050,10 @@ - + - + @@ -7075,10 +7075,10 @@ - + - + @@ -7100,10 +7100,10 @@ - + - + @@ -7138,7 +7138,7 @@ - + @@ -7151,10 +7151,10 @@ - + - + @@ -7166,10 +7166,10 @@ - + - + @@ -7180,10 +7180,10 @@ - + - + @@ -7195,10 +7195,10 @@ - + - + @@ -7214,10 +7214,10 @@ - + - + @@ -7239,10 +7239,10 @@ - + - + @@ -7264,10 +7264,10 @@ - + - + @@ -7280,10 +7280,10 @@ - + - + @@ -7305,10 +7305,10 @@ - + - + @@ -7330,10 +7330,10 @@ - + - + @@ -7344,10 +7344,10 @@ - + - + @@ -7359,10 +7359,10 @@ - + - + @@ -7373,10 +7373,10 @@ - + - + @@ -7388,10 +7388,10 @@ - + - + @@ -7407,7 +7407,7 @@ - + @@ -7459,10 +7459,10 @@ - + - + @@ -7470,10 +7470,10 @@ - + - + @@ -7483,10 +7483,10 @@ - + - + @@ -7496,10 +7496,10 @@ - + - + @@ -7519,10 +7519,10 @@ - + - + @@ -7534,10 +7534,10 @@ - + - + @@ -7548,10 +7548,10 @@ - + - + @@ -7563,10 +7563,10 @@ - + - + @@ -7582,10 +7582,10 @@ - + - + @@ -7607,10 +7607,10 @@ - + - + @@ -7632,10 +7632,10 @@ - + - + @@ -7670,10 +7670,10 @@ - + - + @@ -7688,10 +7688,10 @@ - + - + @@ -7701,10 +7701,10 @@ - + - + @@ -7729,7 +7729,7 @@ - + @@ -7748,10 +7748,10 @@ - + - + @@ -7779,7 +7779,7 @@ - + @@ -7801,10 +7801,10 @@ - + - + @@ -7832,7 +7832,7 @@ - + @@ -7847,10 +7847,10 @@ - + - + @@ -7876,7 +7876,7 @@ - + @@ -7891,10 +7891,10 @@ - + - + @@ -7909,10 +7909,10 @@ - + - + @@ -7922,10 +7922,10 @@ - + - + @@ -7950,7 +7950,7 @@ - + @@ -7968,7 +7968,7 @@ - + @@ -7981,10 +7981,10 @@ - + - + @@ -7999,10 +7999,10 @@ - + - + @@ -8012,10 +8012,10 @@ - + - + @@ -8029,10 +8029,10 @@ - + - + @@ -8040,10 +8040,10 @@ - + - + @@ -8053,10 +8053,10 @@ - + - + @@ -8066,10 +8066,10 @@ - + - + @@ -8085,10 +8085,10 @@ - + - + @@ -8096,10 +8096,10 @@ - + - + @@ -8109,10 +8109,10 @@ - + - + @@ -8122,10 +8122,10 @@ - + - + @@ -8145,10 +8145,10 @@ - + - + @@ -8194,10 +8194,10 @@ - + - + @@ -8212,10 +8212,10 @@ - + - + @@ -8223,10 +8223,10 @@ - + - + @@ -8234,10 +8234,10 @@ - + - + @@ -8259,10 +8259,10 @@ - + - + @@ -8284,10 +8284,10 @@ - + - + @@ -8302,10 +8302,10 @@ - + - + @@ -8313,10 +8313,10 @@ - + - + @@ -8324,10 +8324,10 @@ - + - + @@ -8349,10 +8349,10 @@ - + - + @@ -8365,10 +8365,10 @@ - + - + @@ -8390,10 +8390,10 @@ - + - + @@ -8415,10 +8415,10 @@ - + - + @@ -8434,10 +8434,10 @@ - + - + @@ -8459,10 +8459,10 @@ - + - + @@ -8470,10 +8470,10 @@ - + - + @@ -8489,10 +8489,10 @@ - + - + @@ -8505,30 +8505,30 @@ - + - + - + - + - + - + @@ -8616,10 +8616,10 @@ - + - + @@ -8634,10 +8634,10 @@ - + - + @@ -8645,10 +8645,10 @@ - + - + @@ -8656,10 +8656,10 @@ - + - + @@ -8681,10 +8681,10 @@ - + - + @@ -8697,10 +8697,10 @@ - + - + @@ -8722,10 +8722,10 @@ - + - + @@ -8747,10 +8747,10 @@ - + - + @@ -8766,10 +8766,10 @@ - + - + @@ -8791,10 +8791,10 @@ - + - + @@ -8802,10 +8802,10 @@ - + - + @@ -8821,10 +8821,10 @@ - + - + @@ -8837,30 +8837,30 @@ - + - + - + - + - + - + @@ -8878,10 +8878,10 @@ - + - + @@ -8894,30 +8894,30 @@ - + - + - + - + - + - + @@ -8932,10 +8932,10 @@ - + - + @@ -8950,10 +8950,10 @@ - + - + @@ -8961,10 +8961,10 @@ - + - + @@ -8972,10 +8972,10 @@ - + - + @@ -8997,10 +8997,10 @@ - + - + @@ -9013,10 +9013,10 @@ - + - + @@ -9038,10 +9038,10 @@ - + - + @@ -9063,10 +9063,10 @@ - + - + @@ -9082,10 +9082,10 @@ - + - + @@ -9107,10 +9107,10 @@ - + - + @@ -9118,10 +9118,10 @@ - + - + @@ -9136,10 +9136,10 @@ - + - + @@ -9156,10 +9156,10 @@ - + - + @@ -9174,10 +9174,10 @@ - + - + @@ -9185,10 +9185,10 @@ - + - + @@ -9196,10 +9196,10 @@ - + - + @@ -9221,10 +9221,10 @@ - + - + @@ -9242,10 +9242,10 @@ - + - + @@ -9260,10 +9260,10 @@ - + - + @@ -9271,10 +9271,10 @@ - + - + @@ -9282,10 +9282,10 @@ - + - + @@ -9307,10 +9307,10 @@ - + - + @@ -9359,10 +9359,10 @@ - + - + @@ -9384,10 +9384,10 @@ - + - + @@ -9409,10 +9409,10 @@ - + - + @@ -9426,10 +9426,10 @@ - + - + @@ -9442,10 +9442,10 @@ - + - + @@ -9466,10 +9466,10 @@ - + - + @@ -9491,10 +9491,10 @@ - + - + @@ -9516,10 +9516,10 @@ - + - + @@ -9541,10 +9541,10 @@ - + - + @@ -9555,10 +9555,10 @@ - + - + @@ -9570,10 +9570,10 @@ - + - + @@ -9604,10 +9604,10 @@ - + - + @@ -9629,10 +9629,10 @@ - + - + @@ -9654,10 +9654,10 @@ - + - + @@ -9679,10 +9679,10 @@ - + - + @@ -9693,10 +9693,10 @@ - + - + @@ -9708,10 +9708,10 @@ - + - + @@ -9727,10 +9727,10 @@ - + - + @@ -9752,10 +9752,10 @@ - + - + @@ -9777,10 +9777,10 @@ - + - + @@ -9802,10 +9802,10 @@ - + - + @@ -9816,10 +9816,10 @@ - + - + @@ -9831,10 +9831,10 @@ - + - + @@ -9850,10 +9850,10 @@ - + - + @@ -9875,10 +9875,10 @@ - + - + @@ -9900,10 +9900,10 @@ - + - + @@ -9917,10 +9917,10 @@ - + - + @@ -9933,10 +9933,10 @@ - + - + @@ -9953,10 +9953,10 @@ - + - + @@ -9978,10 +9978,10 @@ - + - + @@ -10003,10 +10003,10 @@ - + - + @@ -10020,10 +10020,10 @@ - + - + @@ -10036,10 +10036,10 @@ - + - + @@ -10055,7 +10055,7 @@ - + @@ -10084,7 +10084,7 @@ - + @@ -10113,7 +10113,7 @@ - + @@ -10133,7 +10133,7 @@ - + @@ -10153,7 +10153,7 @@ - + @@ -10205,7 +10205,7 @@ - + @@ -10247,7 +10247,7 @@ - + @@ -10282,7 +10282,7 @@ - + @@ -10318,7 +10318,7 @@ - + @@ -10354,7 +10354,7 @@ - + @@ -10374,7 +10374,7 @@ - + @@ -10394,7 +10394,7 @@ - + @@ -10476,10 +10476,10 @@ - + - + @@ -10494,10 +10494,10 @@ - + - + @@ -10505,10 +10505,10 @@ - + - + @@ -10516,10 +10516,10 @@ - + - + @@ -10541,10 +10541,10 @@ - + - + @@ -10556,10 +10556,10 @@ - + - + @@ -10575,10 +10575,10 @@ - + - + @@ -10593,10 +10593,10 @@ - + - + @@ -10604,10 +10604,10 @@ - + - + @@ -10615,10 +10615,10 @@ - + - + @@ -10640,10 +10640,10 @@ - + - + @@ -10654,10 +10654,10 @@ - + - + @@ -10679,10 +10679,10 @@ - + - + @@ -10704,10 +10704,10 @@ - + - + @@ -10719,10 +10719,10 @@ - + - + @@ -10744,10 +10744,10 @@ - + - + @@ -10755,10 +10755,10 @@ - + - + @@ -10784,10 +10784,10 @@ - + - + @@ -10850,10 +10850,10 @@ - + - + @@ -10868,10 +10868,10 @@ - + - + @@ -10879,10 +10879,10 @@ - + - + @@ -10890,10 +10890,10 @@ - + - + @@ -10915,10 +10915,10 @@ - + - + @@ -10930,10 +10930,10 @@ - + - + @@ -10949,10 +10949,10 @@ - + - + @@ -10967,10 +10967,10 @@ - + - + @@ -10978,10 +10978,10 @@ - + - + @@ -10989,10 +10989,10 @@ - + - + @@ -11014,10 +11014,10 @@ - + - + @@ -11028,10 +11028,10 @@ - + - + @@ -11053,10 +11053,10 @@ - + - + @@ -11078,10 +11078,10 @@ - + - + @@ -11093,10 +11093,10 @@ - + - + @@ -11118,10 +11118,10 @@ - + - + @@ -11129,10 +11129,10 @@ - + - + @@ -11158,10 +11158,10 @@ - + - + @@ -11224,10 +11224,10 @@ - + - + @@ -11242,10 +11242,10 @@ - + - + @@ -11253,10 +11253,10 @@ - + - + @@ -11264,10 +11264,10 @@ - + - + @@ -11289,10 +11289,10 @@ - + - + @@ -11311,10 +11311,10 @@ - + - + @@ -11330,10 +11330,10 @@ - + - + @@ -11348,10 +11348,10 @@ - + - + @@ -11359,10 +11359,10 @@ - + - + @@ -11370,10 +11370,10 @@ - + - + @@ -11395,10 +11395,10 @@ - + - + @@ -11416,10 +11416,10 @@ - + - + @@ -11441,10 +11441,10 @@ - + - + @@ -11466,10 +11466,10 @@ - + - + @@ -11487,10 +11487,10 @@ - + - + @@ -11512,10 +11512,10 @@ - + - + @@ -11523,10 +11523,10 @@ - + - + @@ -11534,10 +11534,10 @@ - + - + @@ -11602,10 +11602,10 @@ - + - + @@ -11620,10 +11620,10 @@ - + - + @@ -11631,10 +11631,10 @@ - + - + @@ -11642,10 +11642,10 @@ - + - + @@ -11667,10 +11667,10 @@ - + - + @@ -11682,10 +11682,10 @@ - + - + @@ -11701,10 +11701,10 @@ - + - + @@ -11719,10 +11719,10 @@ - + - + @@ -11730,10 +11730,10 @@ - + - + @@ -11741,10 +11741,10 @@ - + - + @@ -11766,10 +11766,10 @@ - + - + @@ -11780,10 +11780,10 @@ - + - + @@ -11805,10 +11805,10 @@ - + - + @@ -11830,10 +11830,10 @@ - + - + @@ -11845,10 +11845,10 @@ - + - + @@ -11870,10 +11870,10 @@ - + - + @@ -11881,10 +11881,10 @@ - + - + @@ -11910,10 +11910,10 @@ - + - + @@ -11976,10 +11976,10 @@ - + - + @@ -11994,10 +11994,10 @@ - + - + @@ -12005,10 +12005,10 @@ - + - + @@ -12016,10 +12016,10 @@ - + - + @@ -12041,10 +12041,10 @@ - + - + @@ -12066,10 +12066,10 @@ - + - + @@ -12084,10 +12084,10 @@ - + - + @@ -12095,10 +12095,10 @@ - + - + @@ -12106,10 +12106,10 @@ - + - + @@ -12131,10 +12131,10 @@ - + - + @@ -12147,10 +12147,10 @@ - + - + @@ -12172,10 +12172,10 @@ - + - + @@ -12197,10 +12197,10 @@ - + - + @@ -12216,10 +12216,10 @@ - + - + @@ -12241,10 +12241,10 @@ - + - + @@ -12252,10 +12252,10 @@ - + - + @@ -12286,10 +12286,10 @@ - + - + @@ -12304,10 +12304,10 @@ - + - + @@ -12315,10 +12315,10 @@ - + - + @@ -12326,10 +12326,10 @@ - + - + @@ -12351,10 +12351,10 @@ - + - + @@ -12365,10 +12365,10 @@ - + - + @@ -12390,10 +12390,10 @@ - + - + @@ -12415,10 +12415,10 @@ - + - + @@ -12430,10 +12430,10 @@ - + - + @@ -12455,10 +12455,10 @@ - + - + @@ -12466,10 +12466,10 @@ - + - + @@ -12495,10 +12495,10 @@ - + - + @@ -12516,10 +12516,10 @@ - + - + @@ -12534,10 +12534,10 @@ - + - + @@ -12545,10 +12545,10 @@ - + - + @@ -12556,10 +12556,10 @@ - + - + @@ -12581,10 +12581,10 @@ - + - + @@ -12595,10 +12595,10 @@ - + - + @@ -12620,10 +12620,10 @@ - + - + @@ -12645,10 +12645,10 @@ - + - + @@ -12660,10 +12660,10 @@ - + - + @@ -12685,10 +12685,10 @@ - + - + @@ -12696,10 +12696,10 @@ - + - + @@ -12725,10 +12725,10 @@ - + - + @@ -12746,10 +12746,10 @@ - + - + @@ -12764,10 +12764,10 @@ - + - + @@ -12775,10 +12775,10 @@ - + - + @@ -12786,10 +12786,10 @@ - + - + @@ -12811,10 +12811,10 @@ - + - + @@ -12832,10 +12832,10 @@ - + - + @@ -12857,10 +12857,10 @@ - + - + @@ -12882,10 +12882,10 @@ - + - + @@ -12903,10 +12903,10 @@ - + - + @@ -12928,10 +12928,10 @@ - + - + @@ -12939,10 +12939,10 @@ - + - + @@ -12950,10 +12950,10 @@ - + - + @@ -12973,10 +12973,10 @@ - + - + @@ -12991,10 +12991,10 @@ - + - + @@ -13002,10 +13002,10 @@ - + - + @@ -13013,10 +13013,10 @@ - + - + @@ -13038,10 +13038,10 @@ - + - + @@ -13052,10 +13052,10 @@ - + - + @@ -13077,10 +13077,10 @@ - + - + @@ -13102,10 +13102,10 @@ - + - + @@ -13117,10 +13117,10 @@ - + - + @@ -13142,10 +13142,10 @@ - + - + @@ -13153,10 +13153,10 @@ - + - + @@ -13182,10 +13182,10 @@ - + - + @@ -13203,10 +13203,10 @@ - + - + @@ -13221,10 +13221,10 @@ - + - + @@ -13232,10 +13232,10 @@ - + - + @@ -13243,10 +13243,10 @@ - + - + @@ -13268,10 +13268,10 @@ - + - + @@ -13284,10 +13284,10 @@ - + - + @@ -13309,10 +13309,10 @@ - + - + @@ -13334,10 +13334,10 @@ - + - + @@ -13353,10 +13353,10 @@ - + - + @@ -13378,10 +13378,10 @@ - + - + @@ -13389,10 +13389,10 @@ - + - + @@ -13408,10 +13408,10 @@ - + - + @@ -13419,10 +13419,10 @@ - + - + @@ -13431,10 +13431,10 @@ - + - + @@ -13442,10 +13442,10 @@ - + - + @@ -13456,10 +13456,10 @@ - + - + @@ -13474,10 +13474,10 @@ - + - + @@ -13485,10 +13485,10 @@ - + - + @@ -13496,10 +13496,10 @@ - + - + @@ -13521,10 +13521,10 @@ - + - + @@ -13535,10 +13535,10 @@ - + - + @@ -13560,10 +13560,10 @@ - + - + @@ -13585,10 +13585,10 @@ - + - + @@ -13600,10 +13600,10 @@ - + - + @@ -13625,10 +13625,10 @@ - + - + @@ -13636,10 +13636,10 @@ - + - + @@ -13665,10 +13665,10 @@ - + - + @@ -13682,10 +13682,10 @@ - + - + @@ -13700,10 +13700,10 @@ - + - + @@ -13711,10 +13711,10 @@ - + - + @@ -13722,10 +13722,10 @@ - + - + @@ -13747,10 +13747,10 @@ - + - + @@ -13761,10 +13761,10 @@ - + - + @@ -13786,10 +13786,10 @@ - + - + @@ -13811,10 +13811,10 @@ - + - + @@ -13826,10 +13826,10 @@ - + - + @@ -13851,10 +13851,10 @@ - + - + @@ -13862,10 +13862,10 @@ - + - + @@ -13891,10 +13891,10 @@ - + - + @@ -13908,10 +13908,10 @@ - + - + @@ -13926,10 +13926,10 @@ - + - + @@ -13937,10 +13937,10 @@ - + - + @@ -13948,10 +13948,10 @@ - + - + @@ -13973,10 +13973,10 @@ - + - + @@ -13994,10 +13994,10 @@ - + - + @@ -14019,10 +14019,10 @@ - + - + @@ -14044,10 +14044,10 @@ - + - + @@ -14065,10 +14065,10 @@ - + - + @@ -14090,10 +14090,10 @@ - + - + @@ -14101,10 +14101,10 @@ - + - + @@ -14112,10 +14112,10 @@ - + - + @@ -14131,10 +14131,10 @@ - + - + @@ -14149,10 +14149,10 @@ - + - + @@ -14160,10 +14160,10 @@ - + - + @@ -14171,10 +14171,10 @@ - + - + @@ -14196,10 +14196,10 @@ - + - + @@ -14210,10 +14210,10 @@ - + - + @@ -14235,10 +14235,10 @@ - + - + @@ -14260,10 +14260,10 @@ - + - + @@ -14275,10 +14275,10 @@ - + - + @@ -14300,10 +14300,10 @@ - + - + @@ -14311,10 +14311,10 @@ - + - + @@ -14340,10 +14340,10 @@ - + - + @@ -14357,10 +14357,10 @@ - + - + @@ -14375,10 +14375,10 @@ - + - + @@ -14386,10 +14386,10 @@ - + - + @@ -14397,10 +14397,10 @@ - + - + @@ -14422,10 +14422,10 @@ - + - + @@ -14438,10 +14438,10 @@ - + - + @@ -14463,10 +14463,10 @@ - + - + @@ -14488,10 +14488,10 @@ - + - + @@ -14507,10 +14507,10 @@ - + - + @@ -14532,10 +14532,10 @@ - + - + @@ -14543,10 +14543,10 @@ - + - + @@ -14562,10 +14562,10 @@ - + - + @@ -14580,10 +14580,10 @@ - + - + @@ -14591,10 +14591,10 @@ - + - + @@ -14602,10 +14602,10 @@ - + - + @@ -14627,10 +14627,10 @@ - + - + @@ -14642,10 +14642,10 @@ - + - + @@ -14659,10 +14659,10 @@ - + - + @@ -14677,10 +14677,10 @@ - + - + @@ -14688,10 +14688,10 @@ - + - + @@ -14699,10 +14699,10 @@ - + - + @@ -14724,10 +14724,10 @@ - + - + @@ -14739,10 +14739,10 @@ - + - + @@ -14756,10 +14756,10 @@ - + - + @@ -14774,10 +14774,10 @@ - + - + @@ -14785,10 +14785,10 @@ - + - + @@ -14796,10 +14796,10 @@ - + - + @@ -14821,10 +14821,10 @@ - + - + @@ -14843,10 +14843,10 @@ - + - + @@ -14860,10 +14860,10 @@ - + - + @@ -14878,10 +14878,10 @@ - + - + @@ -14889,10 +14889,10 @@ - + - + @@ -14900,10 +14900,10 @@ - + - + @@ -14925,10 +14925,10 @@ - + - + @@ -14940,10 +14940,10 @@ - + - + @@ -14957,10 +14957,10 @@ - + - + @@ -14975,10 +14975,10 @@ - + - + @@ -14986,10 +14986,10 @@ - + - + @@ -14997,10 +14997,10 @@ - + - + @@ -15022,10 +15022,10 @@ - + - + @@ -15043,10 +15043,10 @@ - + - + @@ -15061,10 +15061,10 @@ - + - + @@ -15072,10 +15072,10 @@ - + - + @@ -15083,10 +15083,10 @@ - + - + @@ -15108,10 +15108,10 @@ - + - + @@ -15123,10 +15123,10 @@ - + - + @@ -15136,10 +15136,10 @@ - + - + @@ -15154,10 +15154,10 @@ - + - + @@ -15165,10 +15165,10 @@ - + - + @@ -15176,10 +15176,10 @@ - + - + @@ -15201,10 +15201,10 @@ - + - + @@ -15216,10 +15216,10 @@ - + - + @@ -15229,10 +15229,10 @@ - + - + @@ -15247,10 +15247,10 @@ - + - + @@ -15258,10 +15258,10 @@ - + - + @@ -15269,10 +15269,10 @@ - + - + @@ -15294,10 +15294,10 @@ - + - + @@ -15316,10 +15316,10 @@ - + - + @@ -15329,10 +15329,10 @@ - + - + @@ -15347,10 +15347,10 @@ - + - + @@ -15358,10 +15358,10 @@ - + - + @@ -15369,10 +15369,10 @@ - + - + @@ -15394,10 +15394,10 @@ - + - + @@ -15409,10 +15409,10 @@ - + - + @@ -15422,10 +15422,10 @@ - + - + @@ -15440,10 +15440,10 @@ - + - + @@ -15451,10 +15451,10 @@ - + - + @@ -15462,10 +15462,10 @@ - + - + @@ -15487,10 +15487,10 @@ - + - + @@ -15510,10 +15510,10 @@ - + - + @@ -15527,10 +15527,10 @@ - + - + @@ -15549,10 +15549,10 @@ - + - + @@ -15566,10 +15566,10 @@ - + - + @@ -15616,10 +15616,10 @@ - + - + @@ -15641,10 +15641,10 @@ - + - + @@ -15670,10 +15670,10 @@ - + - + @@ -15695,10 +15695,10 @@ - + - + @@ -15728,10 +15728,10 @@ - + - + @@ -15753,10 +15753,10 @@ - + - + @@ -15782,10 +15782,10 @@ - + - + @@ -15807,10 +15807,10 @@ - + - + @@ -15850,7 +15850,7 @@ - + @@ -15861,7 +15861,7 @@ - + @@ -15879,7 +15879,7 @@ - + @@ -15904,7 +15904,7 @@ - + @@ -15928,7 +15928,7 @@ - + @@ -15953,7 +15953,7 @@ - + @@ -15976,10 +15976,10 @@ - + - + @@ -15987,10 +15987,10 @@ - + - + @@ -16012,10 +16012,10 @@ - + - + @@ -16053,10 +16053,10 @@ - + - + @@ -16078,10 +16078,10 @@ - + - + @@ -16105,10 +16105,10 @@ - + - + @@ -16134,10 +16134,10 @@ - + - + @@ -16159,10 +16159,10 @@ - + - + @@ -16188,10 +16188,10 @@ - + - + @@ -16213,10 +16213,10 @@ - + - + @@ -16244,10 +16244,10 @@ - + - + @@ -16269,10 +16269,10 @@ - + - + @@ -16298,10 +16298,10 @@ - + - + @@ -16323,10 +16323,10 @@ - + - + @@ -16367,10 +16367,10 @@ - + - + @@ -16384,10 +16384,10 @@ - + - + @@ -16442,10 +16442,10 @@ - + - + @@ -16460,10 +16460,10 @@ - + - + @@ -16471,10 +16471,10 @@ - + - + @@ -16482,10 +16482,10 @@ - + - + @@ -16507,10 +16507,10 @@ - + - + @@ -16529,10 +16529,10 @@ - + - + @@ -16548,10 +16548,10 @@ - + - + @@ -16566,10 +16566,10 @@ - + - + @@ -16577,10 +16577,10 @@ - + - + @@ -16588,10 +16588,10 @@ - + - + @@ -16613,10 +16613,10 @@ - + - + @@ -16634,10 +16634,10 @@ - + - + @@ -16659,10 +16659,10 @@ - + - + @@ -16684,10 +16684,10 @@ - + - + @@ -16705,10 +16705,10 @@ - + - + @@ -16730,10 +16730,10 @@ - + - + @@ -16741,10 +16741,10 @@ - + - + @@ -16752,10 +16752,10 @@ - + - + @@ -16895,10 +16895,10 @@ - + - + @@ -16906,10 +16906,10 @@ - + - + @@ -16919,10 +16919,10 @@ - + - + @@ -16932,10 +16932,10 @@ - + - + @@ -16955,10 +16955,10 @@ - + - + @@ -16970,10 +16970,10 @@ - + - + @@ -16984,10 +16984,10 @@ - + - + @@ -16999,10 +16999,10 @@ - + - + @@ -17018,10 +17018,10 @@ - + - + @@ -17043,10 +17043,10 @@ - + - + @@ -17068,10 +17068,10 @@ - + - + @@ -17137,10 +17137,10 @@ - + - + @@ -17162,10 +17162,10 @@ - + - + @@ -17187,10 +17187,10 @@ - + - + @@ -17204,10 +17204,10 @@ - + - + @@ -17220,10 +17220,10 @@ - + - + @@ -17244,10 +17244,10 @@ - + - + @@ -17269,10 +17269,10 @@ - + - + @@ -17294,10 +17294,10 @@ - + - + @@ -17319,10 +17319,10 @@ - + - + @@ -17333,10 +17333,10 @@ - + - + @@ -17348,10 +17348,10 @@ - + - + @@ -17419,7 +17419,7 @@ - + @@ -17461,7 +17461,7 @@ - + @@ -17526,10 +17526,10 @@ - + - + @@ -17551,10 +17551,10 @@ - + - + @@ -17580,10 +17580,10 @@ - + - + @@ -17605,10 +17605,10 @@ - + - + @@ -17638,10 +17638,10 @@ - + - + @@ -17663,10 +17663,10 @@ - + - + @@ -17692,10 +17692,10 @@ - + - + @@ -17717,10 +17717,10 @@ - + - + @@ -17760,7 +17760,7 @@ - + @@ -17771,7 +17771,7 @@ - + @@ -17789,7 +17789,7 @@ - + @@ -17814,7 +17814,7 @@ - + @@ -17838,7 +17838,7 @@ - + @@ -17863,7 +17863,7 @@ - + @@ -17886,10 +17886,10 @@ - + - + @@ -17897,10 +17897,10 @@ - + - + @@ -17922,10 +17922,10 @@ - + - + @@ -17967,10 +17967,10 @@ - + - + @@ -18016,10 +18016,10 @@ - + - + @@ -18034,10 +18034,10 @@ - + - + @@ -18045,10 +18045,10 @@ - + - + @@ -18056,10 +18056,10 @@ - + - + @@ -18081,10 +18081,10 @@ - + - + @@ -18106,10 +18106,10 @@ - + - + @@ -18124,10 +18124,10 @@ - + - + @@ -18135,10 +18135,10 @@ - + - + @@ -18146,10 +18146,10 @@ - + - + @@ -18171,10 +18171,10 @@ - + - + @@ -18187,10 +18187,10 @@ - + - + @@ -18212,10 +18212,10 @@ - + - + @@ -18237,10 +18237,10 @@ - + - + @@ -18256,10 +18256,10 @@ - + - + @@ -18281,10 +18281,10 @@ - + - + @@ -18292,10 +18292,10 @@ - + - + @@ -18311,10 +18311,10 @@ - + - + @@ -18327,30 +18327,30 @@ - + - + - + - + - + - + @@ -18418,7 +18418,7 @@ - + @@ -18454,7 +18454,7 @@ - + @@ -18520,7 +18520,7 @@ - + @@ -18572,10 +18572,10 @@ - + - + @@ -18583,10 +18583,10 @@ - + - + @@ -18596,10 +18596,10 @@ - + - + @@ -18609,10 +18609,10 @@ - + - + @@ -18632,10 +18632,10 @@ - + - + @@ -18647,10 +18647,10 @@ - + - + @@ -18661,10 +18661,10 @@ - + - + @@ -18676,10 +18676,10 @@ - + - + @@ -18695,10 +18695,10 @@ - + - + @@ -18720,10 +18720,10 @@ - + - + @@ -18745,10 +18745,10 @@ - + - + @@ -18783,10 +18783,10 @@ - + - + @@ -18801,10 +18801,10 @@ - + - + @@ -18814,10 +18814,10 @@ - + - + @@ -18842,7 +18842,7 @@ - + @@ -18861,10 +18861,10 @@ - + - + @@ -18892,7 +18892,7 @@ - + @@ -18914,7 +18914,7 @@ - + @@ -18968,7 +18968,7 @@ - + @@ -19010,7 +19010,7 @@ - + @@ -19059,7 +19059,7 @@ - + @@ -19083,7 +19083,7 @@ - + @@ -19110,7 +19110,7 @@ - + @@ -19122,7 +19122,7 @@ - + @@ -19157,7 +19157,7 @@ - + @@ -19218,7 +19218,7 @@ - + @@ -19253,7 +19253,7 @@ - + @@ -19276,7 +19276,7 @@ - + @@ -19333,7 +19333,7 @@ - + @@ -19343,7 +19343,7 @@ - + @@ -19366,7 +19366,7 @@ - + @@ -19438,7 +19438,7 @@ - + @@ -19468,7 +19468,7 @@ - + @@ -19513,7 +19513,7 @@ - + @@ -19530,7 +19530,7 @@ - + @@ -19562,7 +19562,7 @@ - + @@ -19786,7 +19786,7 @@ - + @@ -19920,8 +19920,8 @@ - - + + @@ -20087,8 +20087,8 @@ - - + + diff --git a/vars.xml b/vars.xml index 40c6a99..479e94b 100644 --- a/vars.xml +++ b/vars.xml @@ -1,5 +1,5 @@ - - + + false @@ -9,7 +9,7 @@ iq_none iq_none int - Src/DebugTools/Src/myXilinx/x_example_all.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/x_example_all.c false false @@ -21,19 +21,19 @@ iq_none iq_none int - Src/DebugTools/Src/myXilinx/x_example_all.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/x_example_all.c false false false - false + true ADC1finishAddr pt_int16 iq_none iq_none int - Src/DebugTools/Src/myXilinx/x_example_all.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/x_example_all.c false false @@ -45,7 +45,7 @@ iq_none iq_none int - Src/DebugTools/Src/myXilinx/x_example_all.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/x_example_all.c false false @@ -57,7 +57,7 @@ iq_none iq_none int - Src/DebugTools/Src/myXilinx/x_example_all.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/x_example_all.c false false @@ -69,7 +69,7 @@ iq_none iq_none int - Src/DebugTools/Src/myXilinx/x_example_all.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/x_example_all.c false false @@ -81,7 +81,7 @@ iq_none iq_none int[2][16] - Src/DebugTools/Src/main/adc_tools.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/adc_tools.c false false @@ -93,7 +93,7 @@ iq_none iq_none int[2][16] - Src/DebugTools/Src/main/adc_tools.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/adc_tools.c false false @@ -105,7 +105,7 @@ iq_none iq_none int - Src/DebugTools/Src/myXilinx/RS_Functions.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/RS_Functions.c false false @@ -117,7 +117,7 @@ iq_none iq_none int - Src/DebugTools/Src/myLibs/CAN_Setup.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/CAN_Setup.c false false @@ -129,7 +129,7 @@ iq_none iq_none BENDER[2] - Src/DebugTools/Src/myLibs/bender.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/bender.c false false @@ -138,10 +138,10 @@ true CAN_answer_wait pt_arr_int16 - t_iq_none - int + iq_none + iq_none int[32] - Src/DebugTools/Src/myLibs/CAN_Setup.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/CAN_Setup.c false false @@ -150,10 +150,10 @@ true CAN_count_cycle_input_units pt_arr_int16 - t_iq_none - int + iq_none + iq_none int[8] - Src/DebugTools/Src/myLibs/CAN_Setup.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/CAN_Setup.c false false @@ -162,10 +162,10 @@ true CAN_no_answer pt_arr_int16 - t_iq_none - int + iq_none + iq_none int[32] - Src/DebugTools/Src/myLibs/CAN_Setup.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/CAN_Setup.c false false @@ -174,10 +174,10 @@ true CAN_refresh_cicle pt_arr_int16 - t_iq_none - int + iq_none + iq_none int[32] - Src/DebugTools/Src/myLibs/CAN_Setup.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/CAN_Setup.c false false @@ -189,7 +189,7 @@ iq_none iq_none int[32] - Src/DebugTools/Src/myLibs/CAN_Setup.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/CAN_Setup.c false false @@ -198,10 +198,10 @@ true CAN_timeout pt_arr_int16 - t_iq_none - int + iq_none + iq_none int[32] - Src/DebugTools/Src/myLibs/CAN_Setup.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/CAN_Setup.c false false @@ -210,10 +210,10 @@ true CAN_timeout_cicle pt_arr_int16 - t_iq_none - int + iq_none + iq_none int[32] - Src/DebugTools/Src/myLibs/CAN_Setup.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/CAN_Setup.c false false @@ -222,10 +222,10 @@ true CNTRL_ADDR pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/myXilinx/RS_Functions.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/RS_Functions.c false false @@ -234,10 +234,10 @@ true CNTRL_ADDR_UNIVERSAL pt_int16 - t_iq_none - int + iq_none + iq_none const int - Src/DebugTools/Src/myXilinx/RS_Functions.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/RS_Functions.c false false @@ -246,10 +246,10 @@ true CONST_15 pt_int32 - t_iq - int + iq + iq_none _iq - Src/DebugTools/Src/myLibs/mathlib.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/mathlib.c false false @@ -258,10 +258,10 @@ true CONST_23 pt_int32 - t_iq - int + iq + iq_none _iq - Src/DebugTools/Src/myLibs/mathlib.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/mathlib.c false false @@ -270,10 +270,10 @@ true CanOpenUnites pt_arr_int16 - t_iq_none - int + iq_none + iq_none int[30] - Src/DebugTools/Src/myLibs/CAN_Setup.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/CAN_Setup.c false false @@ -282,10 +282,10 @@ true CanTimeOutErrorTR pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/myLibs/CAN_Setup.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/CAN_Setup.c false false @@ -294,10 +294,10 @@ true Controll pt_union - t_iq_none - int + iq_none + iq_none XControll_reg - Src/DebugTools/Src/myXilinx/Spartan2E_Functions.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/Spartan2E_Functions.c false false @@ -306,10 +306,10 @@ true Dpwm pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/main/PWMTMSHandle.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/PWMTMSHandle.c false false @@ -318,10 +318,10 @@ true Dpwm2 pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/main/PWMTMSHandle.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/PWMTMSHandle.c false false @@ -330,10 +330,10 @@ true Dpwm4 pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/main/PWMTMSHandle.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/PWMTMSHandle.c false false @@ -342,10 +342,10 @@ true EvaTimer1InterruptCount pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/main/281xEvTimersInit.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/281xEvTimersInit.c false false @@ -354,10 +354,10 @@ true EvaTimer2InterruptCount pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/main/281xEvTimersInit.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/281xEvTimersInit.c false false @@ -366,10 +366,10 @@ true EvbTimer3InterruptCount pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/main/281xEvTimersInit.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/281xEvTimersInit.c false false @@ -378,10 +378,10 @@ true EvbTimer4InterruptCount pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/main/281xEvTimersInit.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/281xEvTimersInit.c false false @@ -390,10 +390,10 @@ true Fpwm pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/main/PWMTMSHandle.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/PWMTMSHandle.c false false @@ -402,22 +402,22 @@ true Gott pt_arr_int8 - t_iq_none - int + iq_none + iq_none char[8][16] - Src/DebugTools/Src/myLibs/bender.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/bender.c false - True + true false true IN0finishAddr pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/myXilinx/x_example_all.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/x_example_all.c false false @@ -426,10 +426,10 @@ true IN0startAddr pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/myXilinx/x_example_all.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/x_example_all.c false false @@ -438,10 +438,10 @@ true IN1finishAddr pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/myXilinx/x_example_all.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/x_example_all.c false false @@ -450,10 +450,10 @@ true IN1startAddr pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/myXilinx/x_example_all.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/x_example_all.c false false @@ -462,10 +462,10 @@ true IN2finishAddr pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/myXilinx/x_example_all.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/x_example_all.c false false @@ -474,10 +474,10 @@ true IN2startAddr pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/myXilinx/x_example_all.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/x_example_all.c false false @@ -486,10 +486,10 @@ true IQ_OUT_NOM pt_float - t_iq_none - int + iq_none + iq_none float - Src/DebugTools/Src/main/params_i_out.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/params_i_out.c false false @@ -498,10 +498,10 @@ true I_OUT_1_6_NOMINAL_IQ pt_int32 - t_iq_none - int + iq_none + iq_none long - Src/DebugTools/Src/main/params_i_out.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/params_i_out.c false false @@ -510,10 +510,10 @@ true I_OUT_1_8_NOMINAL_IQ pt_int32 - t_iq_none - int + iq_none + iq_none long - Src/DebugTools/Src/main/params_i_out.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/params_i_out.c false false @@ -522,10 +522,10 @@ true I_OUT_NOMINAL pt_float - t_iq_none - int + iq_none + iq_none float - Src/DebugTools/Src/main/params_i_out.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/params_i_out.c false false @@ -534,10 +534,10 @@ true I_OUT_NOMINAL_IQ pt_int32 - t_iq_none - int + iq_none + iq_none long - Src/DebugTools/Src/main/params_i_out.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/params_i_out.c false false @@ -546,10 +546,10 @@ true I_ZPT_NOMINAL_IQ pt_int32 - t_iq_none - int + iq_none + iq_none long - Src/DebugTools/Src/main/params_i_out.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/params_i_out.c false false @@ -558,10 +558,10 @@ true Id_out_max_full pt_int32 - t_iq - int + iq + iq_none _iq - Src/DebugTools/Src/VectorControl/regul_power.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/VectorControl/regul_power.c false false @@ -570,10 +570,10 @@ true Id_out_max_low_speed pt_int32 - t_iq - int + iq + iq_none _iq - Src/DebugTools/Src/VectorControl/regul_power.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/VectorControl/regul_power.c false false @@ -582,10 +582,10 @@ true Iq_out_max pt_int32 - t_iq - int + iq + iq_none _iq - Src/DebugTools/Src/main/params_i_out.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/params_i_out.c false false @@ -594,10 +594,10 @@ true Iq_out_nom pt_int32 - t_iq - int + iq + iq_none _iq - Src/DebugTools/Src/main/params_i_out.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/params_i_out.c false false @@ -606,10 +606,10 @@ true K_LEM_ADC pt_arr_uint32 - t_iq_none - int + iq_none + iq_none const unsigned long[20] - Src/DebugTools/Src/main/adc_tools.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/adc_tools.c false false @@ -618,10 +618,10 @@ true KmodTerm pt_float - t_iq_none - int + iq_none + iq_none float - Src/DebugTools/Src/myXilinx/RS_Functions.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/RS_Functions.c false false @@ -630,10 +630,10 @@ true ROTfinishAddr pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/myXilinx/x_example_all.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/x_example_all.c false false @@ -642,10 +642,10 @@ true RS_Len pt_arr_uint16 - t_iq_none - int + iq_none + iq_none unsigned int[70] - Src/DebugTools/Src/myXilinx/RS_Functions.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/RS_Functions.c false false @@ -654,10 +654,10 @@ true R_ADC pt_arr_uint16 - t_iq_none - int + iq_none + iq_none const unsigned int[20] - Src/DebugTools/Src/main/adc_tools.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/adc_tools.c false false @@ -666,10 +666,10 @@ true RotPlaneStartAddr pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/myXilinx/x_example_all.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/x_example_all.c false false @@ -678,10 +678,10 @@ true SQRT_32 pt_int32 - t_iq - int + iq + iq_none _iq - Src/DebugTools/Src/myLibs/mathlib.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/mathlib.c false false @@ -690,10 +690,10 @@ true Unites pt_arr_int16 - t_iq_none - int + iq_none + iq_none int[8][128] - Src/DebugTools/Src/myLibs/CAN_Setup.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/CAN_Setup.c false false @@ -702,10 +702,10 @@ true VAR_FREQ_PWM_XTICS pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/main/PWMTools.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/PWMTools.c false false @@ -714,10 +714,10 @@ true VAR_PERIOD_MAX_XTICS pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/main/PWMTools.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/PWMTools.c false false @@ -726,10 +726,10 @@ true VAR_PERIOD_MIN_BR_XTICS pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/main/PWMTools.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/PWMTools.c false false @@ -738,10 +738,10 @@ true VAR_PERIOD_MIN_XTICS pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/main/PWMTools.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/PWMTools.c false false @@ -750,10 +750,10 @@ true Zpwm pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/main/PWMTMSHandle.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/PWMTMSHandle.c false false @@ -762,10 +762,10 @@ true a pt_struct - t_iq_none - int + iq_none + iq_none WINDING - Src/DebugTools/Src/main/PWMTools.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/PWMTools.c false false @@ -774,10 +774,10 @@ true addrToSent pt_union - t_iq_none - int + iq_none + iq_none volatile AddrToSent - Src/DebugTools/Src/myXilinx/xPeriphSP6_loader.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/xPeriphSP6_loader.c false false @@ -786,10 +786,10 @@ true adr_read_from_modbus3 pt_uint16 - t_iq_none - int + iq_none + iq_none unsigned int - Src/DebugTools/Src/myXilinx/RS_Functions_modbus.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/RS_Functions_modbus.c false false @@ -798,10 +798,10 @@ true alarm_log_can pt_struct - t_iq_none - int + iq_none + iq_none ALARM_LOG_CAN - Src/DebugTools/Src/myLibs/alarm_log_can.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/alarm_log_can.c false false @@ -810,10 +810,10 @@ true alarm_log_can_setup pt_struct - t_iq_none - int + iq_none + iq_none ALARM_LOG_CAN_SETUP - Src/DebugTools/Src/myLibs/CAN_Setup.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/CAN_Setup.c false false @@ -822,10 +822,10 @@ true analog pt_struct - t_iq_none - int + iq_none + iq_none ANALOG_VALUE - Src/DebugTools/Src/main/adc_tools.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/adc_tools.c false false @@ -834,10 +834,10 @@ true ar_sa_all pt_arr_int16 - t_iq_none - int + iq_none + iq_none int[3][6][4][7] - Src/DebugTools/Src/main/v_pwm24.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/v_pwm24.c false false @@ -846,10 +846,10 @@ true ar_tph pt_int32 - t_iq - int + iq + iq_none _iq[7] - Src/DebugTools/Src/main/v_pwm24.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/v_pwm24.c false false @@ -858,34 +858,34 @@ true biTemperatureLimits pt_arr_int16 - t_iq_none - int + iq_none + iq_none int[12] - Src/DebugTools/Src/main/init_protect_levels.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/init_protect_levels.c false - True + true false true biTemperatureWarnings pt_arr_int16 - t_iq_none - int + iq_none + iq_none int[12] - Src/DebugTools/Src/main/init_protect_levels.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/init_protect_levels.c false - True + true false true block_size_counter_fast pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/myLibs/log_to_memory.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/log_to_memory.c false false @@ -894,10 +894,10 @@ true block_size_counter_slow pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/myLibs/log_to_memory.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/log_to_memory.c false false @@ -906,10 +906,10 @@ true break_result_1 pt_int32 - t_iq - int + iq + iq_none _iq - Src/DebugTools/Src/main/break_regul.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/break_regul.c false false @@ -918,10 +918,10 @@ true break_result_2 pt_int32 - t_iq - int + iq + iq_none _iq - Src/DebugTools/Src/main/break_regul.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/break_regul.c false false @@ -930,10 +930,10 @@ true break_result_3 pt_int32 - t_iq - int + iq + iq_none _iq - Src/DebugTools/Src/main/break_regul.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/break_regul.c false false @@ -942,10 +942,10 @@ true break_result_4 pt_int32 - t_iq - int + iq + iq_none _iq - Src/DebugTools/Src/main/break_regul.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/break_regul.c false false @@ -954,34 +954,34 @@ true bvTemperatureLimits pt_arr_int16 - t_iq_none - int + iq_none + iq_none int[12] - Src/DebugTools/Src/main/init_protect_levels.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/init_protect_levels.c false - True + true false true bvTemperatureWarnings pt_arr_int16 - t_iq_none - int + iq_none + iq_none int[12] - Src/DebugTools/Src/main/init_protect_levels.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/init_protect_levels.c false - True + true false true byte pt_union - t_iq_none - int + iq_none + iq_none Byte - Src/DebugTools/Src/myXilinx/xPeriphSP6_loader.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/xPeriphSP6_loader.c false false @@ -990,10 +990,10 @@ true c_s pt_int32 - t_iq_none - int + iq_none + iq_none long - Src/DebugTools/Src/main/rotation_speed.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/rotation_speed.c false false @@ -1002,10 +1002,10 @@ true calibration1 pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/main/isolation.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/isolation.c false false @@ -1014,10 +1014,10 @@ true calibration2 pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/main/isolation.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/isolation.c false false @@ -1026,10 +1026,10 @@ true callfunc pt_struct - t_iq_none - int + iq_none + iq_none test_functions - Src/DebugTools/Src/main/Main.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/Main.c false false @@ -1038,10 +1038,10 @@ true canopen_can_setup pt_struct - t_iq_none - int + iq_none + iq_none CANOPEN_CAN_SETUP - Src/DebugTools/Src/myLibs/CAN_Setup.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/CAN_Setup.c false false @@ -1050,10 +1050,10 @@ true capnum0 pt_uint16 - t_iq_none - int + iq_none + iq_none unsigned int - Src/DebugTools/Src/main/sync_tools.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/sync_tools.c false false @@ -1062,10 +1062,10 @@ true capnum1 pt_uint16 - t_iq_none - int + iq_none + iq_none unsigned int - Src/DebugTools/Src/main/sync_tools.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/sync_tools.c false false @@ -1074,10 +1074,10 @@ true capnum2 pt_uint16 - t_iq_none - int + iq_none + iq_none unsigned int - Src/DebugTools/Src/main/sync_tools.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/sync_tools.c false false @@ -1086,10 +1086,10 @@ true capnum3 pt_uint16 - t_iq_none - int + iq_none + iq_none unsigned int - Src/DebugTools/Src/main/sync_tools.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/sync_tools.c false false @@ -1098,10 +1098,10 @@ true chNum pt_uint16 - t_iq_none - int + iq_none + iq_none unsigned int - Src/DebugTools/Src/myXilinx/x_example_all.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/x_example_all.c false false @@ -1110,10 +1110,10 @@ true chanell1 pt_struct - t_iq_none - int + iq_none + iq_none BREAK_PHASE_I - Src/DebugTools/Src/main/detect_phase.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/detect_phase.c false false @@ -1122,10 +1122,10 @@ true chanell2 pt_struct - t_iq_none - int + iq_none + iq_none BREAK_PHASE_I - Src/DebugTools/Src/main/detect_phase.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/detect_phase.c false false @@ -1134,10 +1134,10 @@ true cmd_3_or_16 pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/myXilinx/RS_Functions_modbus.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/RS_Functions_modbus.c false false @@ -1146,70 +1146,70 @@ true cmd_crc pt_arr_int8 - t_iq_none - int + iq_none + iq_none char[4] - Src/DebugTools/Src/myLibs/bender.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/bender.c false - True + true false true cmd_finish1 pt_int8 - t_iq_none - int + iq_none + iq_none char - Src/DebugTools/Src/myLibs/bender.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/bender.c false - True + true false true cmd_finish2 pt_int8 - t_iq_none - int + iq_none + iq_none char - Src/DebugTools/Src/myLibs/bender.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/bender.c false - True + true false true cmd_start pt_arr_int8 - t_iq_none - int + iq_none + iq_none char[5] - Src/DebugTools/Src/myLibs/bender.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/bender.c false - True + true false true cmd_txt pt_arr_int8 - t_iq_none - int + iq_none + iq_none char[4][8] - Src/DebugTools/Src/myLibs/bender.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/bender.c false - True + true false true compress_size pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/myLibs/alarm_log_can.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/alarm_log_can.c false false @@ -1218,10 +1218,10 @@ true controlReg pt_union - t_iq_none - int + iq_none + iq_none ControlReg - Src/DebugTools/Src/myXilinx/xPeriphSP6_loader.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/xPeriphSP6_loader.c false false @@ -1230,10 +1230,10 @@ true cos_fi pt_struct - t_iq_none - int + iq_none + iq_none COS_FI_STRUCT - Src/DebugTools/Src/VectorControl/pwm_vector_regul.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/VectorControl/pwm_vector_regul.c false false @@ -1242,10 +1242,10 @@ true count_error_sync pt_uint16 - t_iq_none - int + iq_none + iq_none unsigned int - Src/DebugTools/Src/main/sync_tools.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/sync_tools.c false false @@ -1254,10 +1254,10 @@ true count_modbus_table_changed pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/myLibs/modbus_fill_table.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/modbus_fill_table.c false false @@ -1266,10 +1266,10 @@ true count_run_pch pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/main/PWMTools.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/PWMTools.c false false @@ -1278,22 +1278,22 @@ true counterSBWriteErrors pt_uint16 - t_iq_none - int + iq_none + iq_none unsigned int - Src/DebugTools/Src/myXilinx/x_serial_bus.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/x_serial_bus.c false - True + true false true crc_16_tab pt_arr_uint16 - t_iq_none - int + iq_none + iq_none WORD[256] - Src/DebugTools/Src/myXilinx/CRC_Functions.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/CRC_Functions.c false false @@ -1302,10 +1302,10 @@ true crypt pt_arr_int8 - t_iq_none - int + iq_none + iq_none char[34] - Src/DebugTools/Src/myLibs/bender.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/bender.c false false @@ -1314,22 +1314,22 @@ true cur_position_buf_modbus16 pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/myLibs/message_modbus.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/message_modbus.c false - True + true false true cur_position_buf_modbus16_can pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/myLibs/message_modbus.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/message_modbus.c false false @@ -1338,22 +1338,22 @@ true cur_position_buf_modbus3 pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/myLibs/message_modbus.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/message_modbus.c false - True + true false true cycle pt_arr_struct - t_iq_none - int + iq_none + iq_none CYCLE[32] - Src/DebugTools/Src/myLibs/CAN_Setup.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/CAN_Setup.c false false @@ -1362,58 +1362,58 @@ true data_to_umu1_7f pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/main/init_protect_levels.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/init_protect_levels.c false - True + true false true data_to_umu1_8 pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/main/init_protect_levels.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/init_protect_levels.c false - True + true false true data_to_umu2_7f pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/main/init_protect_levels.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/init_protect_levels.c false - True + true false true data_to_umu2_8 pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/main/init_protect_levels.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/init_protect_levels.c false - True + true false true delta_capnum pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/main/sync_tools.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/sync_tools.c false false @@ -1422,10 +1422,10 @@ true delta_error pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/main/sync_tools.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/sync_tools.c false false @@ -1434,10 +1434,10 @@ true doors pt_union - t_iq_none - int + iq_none + iq_none volatile DOORS_STATUS - Src/DebugTools/Src/main/doors_control.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/doors_control.c false false @@ -1446,22 +1446,22 @@ true dq_to_ab pt_struct - t_iq_none - int + iq_none + iq_none DQ_TO_ALPHABETA - Src/DebugTools/Src/main/v_pwm24.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/v_pwm24.c false - True + true false true enable_can pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/myLibs/message_modbus.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/message_modbus.c false false @@ -1470,10 +1470,10 @@ true enable_can_recive_after_units_box pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/myLibs/CAN_Setup.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/CAN_Setup.c false false @@ -1482,10 +1482,10 @@ true err_level_adc pt_int32 - t_iq - int + iq + iq_none _iq - Src/DebugTools/Src/main/adc_tools.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/adc_tools.c false false @@ -1494,10 +1494,10 @@ true err_level_adc_on_go pt_int32 - t_iq - int + iq + iq_none _iq - Src/DebugTools/Src/main/adc_tools.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/adc_tools.c false false @@ -1506,10 +1506,10 @@ true err_main pt_uint16 - t_iq_none - int + iq_none + iq_none unsigned int - Src/DebugTools/Src/main/Main.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/Main.c false false @@ -1518,10 +1518,10 @@ true err_modbus16 pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/myXilinx/RS_Functions_modbus.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/RS_Functions_modbus.c false false @@ -1530,10 +1530,10 @@ true err_modbus3 pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/myXilinx/RS_Functions_modbus.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/RS_Functions_modbus.c false false @@ -1542,10 +1542,10 @@ true errors pt_struct - t_iq_none - int + iq_none + iq_none ERRORS - Src/DebugTools/Src/main/errors.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/errors.c false false @@ -1554,10 +1554,10 @@ true f pt_struct - t_iq_none - int + iq_none + iq_none FLAG - Src/DebugTools/Src/main/Main.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/Main.c false false @@ -1566,10 +1566,10 @@ true fail pt_int16 - t_iq_none - int + iq_none + iq_none volatile int - Src/DebugTools/Src/myXilinx/xPeriphSP6_loader.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/xPeriphSP6_loader.c false false @@ -1578,10 +1578,10 @@ true faults pt_struct - t_iq_none - int + iq_none + iq_none FAULTS - Src/DebugTools/Src/main/errors.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/errors.c false false @@ -1590,10 +1590,10 @@ true fifo pt_struct - t_iq_none - int + iq_none + iq_none FIFO - Src/DebugTools/Src/myLibs/CAN_Setup.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/CAN_Setup.c false false @@ -1602,10 +1602,10 @@ true filter pt_struct - t_iq_none - int + iq_none + iq_none ANALOG_VALUE - Src/DebugTools/Src/main/adc_tools.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/adc_tools.c false false @@ -1614,10 +1614,10 @@ true flag_buf pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/main/rotation_speed.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/rotation_speed.c false false @@ -1626,10 +1626,10 @@ true flag_enable_can_from_mpu pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/myLibs/CAN_Setup.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/CAN_Setup.c false false @@ -1638,10 +1638,10 @@ true flag_enable_can_from_terminal pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/myLibs/CAN_Setup.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/CAN_Setup.c false false @@ -1650,10 +1650,10 @@ true flag_on_off_pch pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/main/PWMTools.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/PWMTools.c false false @@ -1662,10 +1662,10 @@ true flag_received_first_mess_from_MPU pt_uint16 - t_iq_none - int + iq_none + iq_none unsigned int - Src/DebugTools/Src/myXilinx/RS_Functions_modbus.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/RS_Functions_modbus.c false false @@ -1674,10 +1674,10 @@ true flag_reverse pt_uint16 - t_iq_none - int + iq_none + iq_none unsigned int - Src/DebugTools/Src/myLibs/modbus_read_table.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/modbus_read_table.c false false @@ -1686,10 +1686,10 @@ true flag_send_answer_rs pt_uint16 - t_iq_none - int + iq_none + iq_none unsigned int - Src/DebugTools/Src/myXilinx/RS_Functions_modbus.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/RS_Functions_modbus.c false false @@ -1698,10 +1698,10 @@ true flag_test_tabe_filled pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/myLibs/modbus_fill_table.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/modbus_fill_table.c false false @@ -1710,10 +1710,10 @@ true flag_we_int_pwm_on pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/main/PWMTools.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/PWMTools.c false false @@ -1722,10 +1722,10 @@ true freq1 pt_int32 - t_iq - int + iq + iq_none _iq - Src/DebugTools/Src/main/PWMTools.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/PWMTools.c false false @@ -1734,10 +1734,10 @@ true freqTerm pt_float - t_iq_none - int + iq_none + iq_none float - Src/DebugTools/Src/myXilinx/RS_Functions.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/RS_Functions.c false false @@ -1746,10 +1746,10 @@ true global_time pt_struct - t_iq_none - int + iq_none + iq_none GLOBAL_TIME - Src/DebugTools/Src/main/global_time.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/global_time.c false false @@ -1758,10 +1758,10 @@ true hb_logs_data pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/myLibs/log_to_memory.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/log_to_memory.c false false @@ -1770,10 +1770,10 @@ true i pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/main/PWMTools.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/PWMTools.c false false @@ -1782,10 +1782,10 @@ true i1_out pt_struct - t_iq_none - int + iq_none + iq_none BREAK2_PHASE - Src/DebugTools/Src/main/errors.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/errors.c false false @@ -1794,10 +1794,10 @@ true i2_out pt_struct - t_iq_none - int + iq_none + iq_none BREAK2_PHASE - Src/DebugTools/Src/main/errors.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/errors.c false false @@ -1806,10 +1806,10 @@ true init_log pt_arr_int16 - t_iq_none - int + iq_none + iq_none int[3] - Src/DebugTools/Src/myLibs/log_can.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/log_can.c false false @@ -1818,10 +1818,10 @@ true iq19_k_norm_ADC pt_int32 - t_iq19 - int + iq19 + iq_none _iq19[20] - Src/DebugTools/Src/main/adc_tools.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/adc_tools.c false false @@ -1830,10 +1830,10 @@ true iq19_zero_ADC pt_int32 - t_iq19 - int + iq19 + iq_none _iq19[20] - Src/DebugTools/Src/main/adc_tools.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/adc_tools.c false false @@ -1842,10 +1842,10 @@ true iq_alfa_coef pt_int32 - t_iq - int + iq + iq_none _iq - Src/DebugTools/Src/main/v_pwm24.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/v_pwm24.c false false @@ -1854,10 +1854,10 @@ true iq_k_norm_ADC pt_int32 - t_iq - int + iq + iq_none _iq[20] - Src/DebugTools/Src/main/adc_tools.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/adc_tools.c false false @@ -1866,10 +1866,10 @@ true iq_logpar pt_struct - t_iq_none - int + iq_none + iq_none IQ_LOGSPARAMS - Src/DebugTools/Src/myLibs/log_to_memory.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/log_to_memory.c false false @@ -1878,10 +1878,10 @@ true iq_max pt_int32 - t_iq - int + iq + iq_none _iq - Src/DebugTools/Src/myLibs/svgen_dq_v2.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/svgen_dq_v2.c false false @@ -1890,10 +1890,10 @@ true iq_norm_ADC pt_int32 - t_iq - int + iq + iq_none _iq[20] - Src/DebugTools/Src/main/adc_tools.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/adc_tools.c false false @@ -1902,10 +1902,10 @@ true isolation1 pt_struct - t_iq_none - int + iq_none + iq_none ISOLATION - Src/DebugTools/Src/main/isolation.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/isolation.c false false @@ -1914,10 +1914,10 @@ true isolation2 pt_struct - t_iq_none - int + iq_none + iq_none ISOLATION - Src/DebugTools/Src/main/isolation.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/isolation.c false false @@ -1926,10 +1926,10 @@ true k1 pt_int32 - t_iq - int + iq + iq_none _iq - Src/DebugTools/Src/main/PWMTools.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/PWMTools.c false false @@ -1938,10 +1938,10 @@ true kI_D pt_float - t_iq_none - int + iq_none + iq_none float - Src/DebugTools/Src/VectorControl/pwm_vector_regul.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/VectorControl/pwm_vector_regul.c false false @@ -1950,10 +1950,10 @@ true kI_D_Inv31 pt_float - t_iq_none - int + iq_none + iq_none float - Src/DebugTools/Src/VectorControl/pwm_vector_regul.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/VectorControl/pwm_vector_regul.c false false @@ -1962,10 +1962,10 @@ true kI_Q pt_float - t_iq_none - int + iq_none + iq_none float - Src/DebugTools/Src/VectorControl/pwm_vector_regul.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/VectorControl/pwm_vector_regul.c false false @@ -1974,10 +1974,10 @@ true kI_Q_Inv31 pt_float - t_iq_none - int + iq_none + iq_none float - Src/DebugTools/Src/VectorControl/pwm_vector_regul.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/VectorControl/pwm_vector_regul.c false false @@ -1986,10 +1986,10 @@ true kP_D pt_float - t_iq_none - int + iq_none + iq_none float - Src/DebugTools/Src/VectorControl/pwm_vector_regul.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/VectorControl/pwm_vector_regul.c false false @@ -1998,10 +1998,10 @@ true kP_D_Inv31 pt_float - t_iq_none - int + iq_none + iq_none float - Src/DebugTools/Src/VectorControl/pwm_vector_regul.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/VectorControl/pwm_vector_regul.c false false @@ -2010,10 +2010,10 @@ true kP_Q pt_float - t_iq_none - int + iq_none + iq_none float - Src/DebugTools/Src/VectorControl/pwm_vector_regul.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/VectorControl/pwm_vector_regul.c false false @@ -2022,10 +2022,10 @@ true kP_Q_Inv31 pt_float - t_iq_none - int + iq_none + iq_none float - Src/DebugTools/Src/VectorControl/pwm_vector_regul.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/VectorControl/pwm_vector_regul.c false false @@ -2034,22 +2034,22 @@ true kan pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/myLibs/bender.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/bender.c false - True + true false true koef_Base_stop_run pt_int32 - t_iq - int + iq + iq_none _iq - Src/DebugTools/Src/main/break_regul.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/break_regul.c false false @@ -2058,10 +2058,10 @@ true koef_Iabc_filter pt_int32 - t_iq - int + iq + iq_none _iq - Src/DebugTools/Src/main/adc_tools.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/adc_tools.c false false @@ -2070,10 +2070,10 @@ true koef_Im_filter pt_int32 - t_iq - int + iq + iq_none _iq - Src/DebugTools/Src/main/adc_tools.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/adc_tools.c false false @@ -2082,10 +2082,10 @@ true koef_Im_filter_long pt_int32 - t_iq - int + iq + iq_none _iq - Src/DebugTools/Src/main/adc_tools.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/adc_tools.c false false @@ -2094,10 +2094,10 @@ true koef_K_stop_run pt_int32 - t_iq - int + iq + iq_none _iq - Src/DebugTools/Src/main/break_regul.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/break_regul.c false false @@ -2106,10 +2106,10 @@ true koef_Krecup pt_int32 - t_iq - int + iq + iq_none _iq - Src/DebugTools/Src/main/break_regul.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/break_regul.c false false @@ -2118,10 +2118,10 @@ true koef_Min_recup pt_int32 - t_iq - int + iq + iq_none _iq - Src/DebugTools/Src/main/break_regul.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/break_regul.c false false @@ -2130,10 +2130,10 @@ true koef_TemperBSU_long_filter pt_int32 - t_iq - int + iq + iq_none _iq - Src/DebugTools/Src/main/adc_tools.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/adc_tools.c false false @@ -2142,10 +2142,10 @@ true koef_Ud_fast_filter pt_int32 - t_iq - int + iq + iq_none _iq - Src/DebugTools/Src/main/adc_tools.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/adc_tools.c false false @@ -2154,10 +2154,10 @@ true koef_Ud_long_filter pt_int32 - t_iq - int + iq + iq_none _iq - Src/DebugTools/Src/main/adc_tools.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/adc_tools.c false false @@ -2166,10 +2166,10 @@ true koef_Wlong pt_int32 - t_iq - int + iq + iq_none _iq - Src/DebugTools/Src/main/adc_tools.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/adc_tools.c false false @@ -2178,10 +2178,10 @@ true koef_Wout_filter pt_int32 - t_iq - int + iq + iq_none _iq - Src/DebugTools/Src/main/rotation_speed.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/rotation_speed.c false false @@ -2190,10 +2190,10 @@ true koef_Wout_filter_long pt_int32 - t_iq - int + iq + iq_none _iq - Src/DebugTools/Src/main/rotation_speed.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/rotation_speed.c false false @@ -2202,10 +2202,10 @@ true koeff_Fs_filter pt_int32 - t_iq_none - int + iq_none + iq_none long - Src/DebugTools/Src/VectorControl/pwm_vector_regul.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/VectorControl/pwm_vector_regul.c false false @@ -2214,10 +2214,10 @@ true koeff_Idq_filter pt_int32 - t_iq_none - int + iq_none + iq_none long - Src/DebugTools/Src/VectorControl/pwm_vector_regul.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/VectorControl/pwm_vector_regul.c false false @@ -2226,10 +2226,10 @@ true koeff_Iq_filter pt_int32 - t_iq - int + iq + iq_none _iq - Src/DebugTools/Src/VectorControl/regul_power.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/VectorControl/regul_power.c false false @@ -2238,10 +2238,10 @@ true koeff_Iq_filter_slow pt_int32 - t_iq_none - int + iq_none + iq_none long - Src/DebugTools/Src/VectorControl/pwm_vector_regul.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/VectorControl/pwm_vector_regul.c false false @@ -2250,10 +2250,10 @@ true koeff_Ud_filter pt_int32 - t_iq_none - int + iq_none + iq_none long - Src/DebugTools/Src/VectorControl/pwm_vector_regul.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/VectorControl/pwm_vector_regul.c false false @@ -2262,10 +2262,10 @@ true koeff_Uq_filter pt_int32 - t_iq_none - int + iq_none + iq_none long - Src/DebugTools/Src/VectorControl/pwm_vector_regul.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/VectorControl/pwm_vector_regul.c false false @@ -2274,22 +2274,22 @@ true kom pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/myLibs/bender.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/bender.c false - True + true false true length pt_uint32 - t_iq_none - int + iq_none + iq_none volatile unsigned long - Src/DebugTools/Src/myXilinx/xPeriphSP6_loader.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/xPeriphSP6_loader.c false false @@ -2298,10 +2298,10 @@ true level_on_off_break pt_int32 - t_iq - int + iq + iq_none _iq[13][2] - Src/DebugTools/Src/main/break_tools.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/break_tools.c false false @@ -2310,10 +2310,10 @@ true log_can pt_struct - t_iq_none - int + iq_none + iq_none logcan_TypeDef - Src/DebugTools/Src/myLibs/log_can.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/log_can.c false false @@ -2322,10 +2322,10 @@ true log_can_setup pt_struct - t_iq_none - int + iq_none + iq_none LOG_CAN_SETUP - Src/DebugTools/Src/myLibs/CAN_Setup.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/CAN_Setup.c false false @@ -2334,10 +2334,10 @@ true log_params pt_struct - t_iq_none - int + iq_none + iq_none TYPE_LOG_PARAMS - Src/DebugTools/Src/myLibs/log_params.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/log_params.c false false @@ -2346,10 +2346,10 @@ true logbuf_sync1 pt_arr_int32 - t_iq_none - int + iq_none + iq_none long[10] - Src/DebugTools/Src/main/sync_tools.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/sync_tools.c false false @@ -2358,10 +2358,10 @@ true logpar pt_struct - t_iq_none - int + iq_none + iq_none LOGSPARAMS - Src/DebugTools/Src/myLibs/log_to_memory.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/log_to_memory.c false false @@ -2370,34 +2370,34 @@ true mPWM_a pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/main/PWMTMSHandle.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/PWMTMSHandle.c false - True + true false true mPWM_b pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/main/PWMTMSHandle.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/PWMTMSHandle.c false - True + true false true m_PWM pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/main/PWMTMSHandle.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/PWMTMSHandle.c false false @@ -2406,10 +2406,10 @@ true mailboxs_can_setup pt_struct - t_iq_none - int + iq_none + iq_none MAILBOXS_CAN_SETUP - Src/DebugTools/Src/myLibs/CAN_Setup.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/CAN_Setup.c false false @@ -2418,10 +2418,10 @@ true manufactorerAndProductID pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/myXilinx/xPeriphSP6_loader.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/xPeriphSP6_loader.c false false @@ -2430,10 +2430,10 @@ true modbus_table_can_in pt_ptr_union - t_iq_none - int + iq_none + iq_none MODBUS_REG_STRUCT * - Src/DebugTools/Src/myLibs/modbus_table.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/modbus_table.c false false @@ -2442,10 +2442,10 @@ true modbus_table_can_out pt_ptr_union - t_iq_none - int + iq_none + iq_none MODBUS_REG_STRUCT * - Src/DebugTools/Src/myLibs/modbus_table.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/modbus_table.c false false @@ -2454,10 +2454,10 @@ true modbus_table_in pt_arr_union - t_iq_none - int + iq_none + iq_none MODBUS_REG_STRUCT[450] - Src/DebugTools/Src/myLibs/modbus_table.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/modbus_table.c false false @@ -2466,10 +2466,10 @@ true modbus_table_out pt_arr_union - t_iq_none - int + iq_none + iq_none MODBUS_REG_STRUCT[450] - Src/DebugTools/Src/myLibs/modbus_table.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/modbus_table.c false false @@ -2478,10 +2478,10 @@ true modbus_table_rs_in pt_ptr_union - t_iq_none - int + iq_none + iq_none MODBUS_REG_STRUCT * - Src/DebugTools/Src/myLibs/modbus_table.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/modbus_table.c false false @@ -2490,10 +2490,10 @@ true modbus_table_rs_out pt_ptr_union - t_iq_none - int + iq_none + iq_none MODBUS_REG_STRUCT * - Src/DebugTools/Src/myLibs/modbus_table.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/modbus_table.c false false @@ -2502,10 +2502,10 @@ true modbus_table_test pt_arr_union - t_iq_none - int + iq_none + iq_none MODBUS_REG_STRUCT[450] - Src/DebugTools/Src/myLibs/modbus_table.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/modbus_table.c false false @@ -2514,10 +2514,10 @@ true mpu_can_setup pt_struct - t_iq_none - int + iq_none + iq_none MPU_CAN_SETUP - Src/DebugTools/Src/myLibs/CAN_Setup.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/CAN_Setup.c false false @@ -2526,106 +2526,106 @@ true mzz_limit_100 pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/myLibs/modbus_read_table.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/modbus_read_table.c false - True + true false true mzz_limit_1000 pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/myLibs/modbus_read_table.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/modbus_read_table.c false - True + true false true mzz_limit_1100 pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/myLibs/modbus_read_table.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/modbus_read_table.c false - True + true false true mzz_limit_1200 pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/myLibs/modbus_read_table.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/modbus_read_table.c false - True + true false true mzz_limit_1400 pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/myLibs/modbus_read_table.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/modbus_read_table.c false - True + true false true mzz_limit_1500 pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/myLibs/modbus_read_table.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/modbus_read_table.c false - True + true false true mzz_limit_2000 pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/myLibs/modbus_read_table.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/modbus_read_table.c false - True + true false true mzz_limit_500 pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/myLibs/modbus_read_table.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/modbus_read_table.c false - True + true false true new_cycle_fifo pt_struct - t_iq_none - int + iq_none + iq_none NEW_CYCLE_FIFO - Src/DebugTools/Src/myLibs/CAN_Setup.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/CAN_Setup.c false false @@ -2634,10 +2634,10 @@ true no_write pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/myLibs/log_to_memory.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/log_to_memory.c false false @@ -2646,10 +2646,10 @@ true no_write_slow pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/myLibs/log_to_memory.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/log_to_memory.c false false @@ -2658,10 +2658,10 @@ true number_modbus_table_changed pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/myLibs/modbus_fill_table.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/modbus_fill_table.c false false @@ -2670,10 +2670,10 @@ true optical_read_data pt_struct - t_iq_none - int + iq_none + iq_none OPTICAL_BUS_DATA - Src/DebugTools/Src/main/optical_bus.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/optical_bus.c false false @@ -2682,10 +2682,10 @@ true optical_write_data pt_struct - t_iq_none - int + iq_none + iq_none OPTICAL_BUS_DATA - Src/DebugTools/Src/main/optical_bus.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/optical_bus.c false false @@ -2694,10 +2694,10 @@ true options_controller pt_arr_union - t_iq_none - int + iq_none + iq_none MODBUS_REG_STRUCT[200] - Src/DebugTools/Src/myXilinx/RS_Functions_modbus.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/RS_Functions_modbus.c false false @@ -2706,10 +2706,10 @@ true pidCur_Ki pt_int32 - t_iq - int + iq + iq_none _iq - Src/DebugTools/Src/main/v_pwm24.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/v_pwm24.c false false @@ -2718,10 +2718,10 @@ true pidD pt_struct - t_iq_none - int + iq_none + iq_none PIDREG3 - Src/DebugTools/Src/VectorControl/pwm_vector_regul.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/VectorControl/pwm_vector_regul.c false false @@ -2730,10 +2730,10 @@ true pidD2 pt_struct - t_iq_none - int + iq_none + iq_none PIDREG3 - Src/DebugTools/Src/VectorControl/pwm_vector_regul.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/VectorControl/pwm_vector_regul.c false false @@ -2742,10 +2742,10 @@ true pidFvect pt_struct - t_iq_none - int + iq_none + iq_none PIDREG3 - Src/DebugTools/Src/VectorControl/regul_turns.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/VectorControl/regul_turns.c false false @@ -2754,10 +2754,10 @@ true pidFvectKi_test pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/main/message2.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/message2.c false false @@ -2766,10 +2766,10 @@ true pidFvectKp_test pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/main/message2.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/message2.c false false @@ -2778,10 +2778,10 @@ true pidPvect pt_struct - t_iq_none - int + iq_none + iq_none PIDREG3 - Src/DebugTools/Src/VectorControl/regul_power.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/VectorControl/regul_power.c false false @@ -2790,10 +2790,10 @@ true pidQ pt_struct - t_iq_none - int + iq_none + iq_none PIDREG3 - Src/DebugTools/Src/VectorControl/pwm_vector_regul.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/VectorControl/pwm_vector_regul.c false false @@ -2802,10 +2802,10 @@ true pidQ2 pt_struct - t_iq_none - int + iq_none + iq_none PIDREG3 - Src/DebugTools/Src/VectorControl/pwm_vector_regul.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/VectorControl/pwm_vector_regul.c false false @@ -2814,10 +2814,10 @@ true pidReg_koeffs pt_struct - t_iq_none - int + iq_none + iq_none PIDREG_KOEFFICIENTS - Src/DebugTools/Src/VectorControl/pwm_vector_regul.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/VectorControl/pwm_vector_regul.c false false @@ -2826,10 +2826,10 @@ true pidTetta pt_struct - t_iq_none - int + iq_none + iq_none PIDREG3 - Src/DebugTools/Src/VectorControl/teta_calc.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/VectorControl/teta_calc.c false false @@ -2838,10 +2838,10 @@ true power_ratio pt_struct - t_iq_none - int + iq_none + iq_none POWER_RATIO - Src/DebugTools/Src/myLibs/modbus_read_table.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/modbus_read_table.c false false @@ -2850,10 +2850,10 @@ true prev_flag_buf pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/main/rotation_speed.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/rotation_speed.c false false @@ -2862,10 +2862,10 @@ true prev_status_received pt_uint16 - t_iq_none - int + iq_none + iq_none unsigned int - Src/DebugTools/Src/myLibs/log_can.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/log_can.c false false @@ -2874,10 +2874,10 @@ true project pt_struct - t_iq_none - int + iq_none + iq_none T_project - Src/DebugTools/Src/myXilinx/xp_project.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/xp_project.c false false @@ -2886,10 +2886,10 @@ true pwmd pt_struct - t_iq_none - int + iq_none + iq_none PWMGEND - Src/DebugTools/Src/main/PWMTMSHandle.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/PWMTMSHandle.c false false @@ -2898,10 +2898,10 @@ true r_c_sbus pt_struct - t_iq_none - int + iq_none + iq_none T_controller_read - Src/DebugTools/Src/myXilinx/x_serial_bus.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/x_serial_bus.c false false @@ -2910,10 +2910,10 @@ true r_controller pt_struct - t_iq_none - int + iq_none + iq_none T_controller_read - Src/DebugTools/Src/myXilinx/xp_hwp.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/xp_hwp.c false false @@ -2922,10 +2922,10 @@ true refo pt_struct - t_iq_none - int + iq_none + iq_none FIFO - Src/DebugTools/Src/myLibs/CAN_Setup.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/CAN_Setup.c false false @@ -2934,10 +2934,10 @@ true reply pt_struct - t_iq_none - int + iq_none + iq_none TMS_TO_TERMINAL_STRUCT - Src/DebugTools/Src/myXilinx/RS_Functions_modbus.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/RS_Functions_modbus.c false false @@ -2946,10 +2946,10 @@ true reply_test_all pt_struct - t_iq_none - int + iq_none + iq_none TMS_TO_TERMINAL_TEST_ALL_STRUCT - Src/DebugTools/Src/myXilinx/RS_Functions_modbus.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/RS_Functions_modbus.c false false @@ -2958,10 +2958,10 @@ true return_var pt_int32 - t_iq_none - int + iq_none + iq_none long - Src/DebugTools/Src/main/Main.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/Main.c false false @@ -2970,10 +2970,10 @@ true rmp_freq pt_struct - t_iq_none - int + iq_none + iq_none RMP_MY1 - Src/DebugTools/Src/main/PWMTools.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/PWMTools.c false false @@ -2982,10 +2982,10 @@ true rmp_wrot pt_struct - t_iq_none - int + iq_none + iq_none RMP_MY1 - Src/DebugTools/Src/main/rotation_speed.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/rotation_speed.c false false @@ -2994,10 +2994,10 @@ true rotation_sensor pt_struct - t_iq_none - int + iq_none + iq_none T_rotation_sensor - Src/DebugTools/Src/myXilinx/xp_rotation_sensor.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/xp_rotation_sensor.c false false @@ -3006,10 +3006,10 @@ true rotor pt_struct - t_iq_none - int + iq_none + iq_none ROTOR_VALUE - Src/DebugTools/Src/main/rotation_speed.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/rotation_speed.c false false @@ -3018,10 +3018,10 @@ true rs_a pt_struct - t_iq_none - int + iq_none + iq_none RS_DATA_STRUCT - Src/DebugTools/Src/myXilinx/RS_Functions.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/RS_Functions.c false false @@ -3030,10 +3030,10 @@ true rs_b pt_struct - t_iq_none - int + iq_none + iq_none RS_DATA_STRUCT - Src/DebugTools/Src/myXilinx/RS_Functions.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/RS_Functions.c false false @@ -3042,10 +3042,10 @@ true sincronisationFault pt_uint16 - t_iq_none - int + iq_none + iq_none unsigned int - Src/DebugTools/Src/myLibs/modbus_read_table.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/modbus_read_table.c false false @@ -3054,10 +3054,10 @@ true size_cmd15 pt_int8 - t_iq_none - int + iq_none + iq_none char - Src/DebugTools/Src/myXilinx/RS_Functions.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/RS_Functions.c false false @@ -3066,10 +3066,10 @@ true size_cmd16 pt_int8 - t_iq_none - int + iq_none + iq_none char - Src/DebugTools/Src/myXilinx/RS_Functions.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/RS_Functions.c false false @@ -3078,10 +3078,10 @@ true size_fast_done pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/myLibs/log_to_memory.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/log_to_memory.c false false @@ -3090,10 +3090,10 @@ true size_slow_done pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/myLibs/log_to_memory.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/log_to_memory.c false false @@ -3102,10 +3102,10 @@ true stop_log pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/myLibs/log_to_memory.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/log_to_memory.c false false @@ -3114,10 +3114,10 @@ true stop_log_slow pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/myLibs/log_to_memory.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/log_to_memory.c false false @@ -3126,10 +3126,10 @@ true svgen_dq_1 pt_struct - t_iq_none - int + iq_none + iq_none SVGENDQ - Src/DebugTools/Src/main/v_pwm24.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/v_pwm24.c false false @@ -3138,10 +3138,10 @@ true svgen_dq_2 pt_struct - t_iq_none - int + iq_none + iq_none SVGENDQ - Src/DebugTools/Src/main/v_pwm24.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/v_pwm24.c false false @@ -3150,10 +3150,10 @@ true svgen_pwm24_1 pt_struct - t_iq_none - int + iq_none + iq_none SVGEN_PWM24 - Src/DebugTools/Src/main/v_pwm24.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/v_pwm24.c false false @@ -3162,10 +3162,10 @@ true svgen_pwm24_2 pt_struct - t_iq_none - int + iq_none + iq_none SVGEN_PWM24 - Src/DebugTools/Src/main/v_pwm24.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/v_pwm24.c false false @@ -3174,10 +3174,10 @@ true temp pt_uint16 - t_iq_none - int + iq_none + iq_none unsigned int - Src/DebugTools/Src/main/sync_tools.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/sync_tools.c false false @@ -3186,10 +3186,10 @@ true temperature_limit_koeff pt_int32 - t_iq - int + iq + iq_none _iq - Src/DebugTools/Src/main/errors_temperature.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/errors_temperature.c false false @@ -3198,10 +3198,10 @@ true temperature_warning_BI1 pt_union - t_iq_none - int + iq_none + iq_none INVERTER_TEMPERATURES - Src/DebugTools/Src/main/errors.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/errors.c false false @@ -3210,10 +3210,10 @@ true temperature_warning_BI2 pt_union - t_iq_none - int + iq_none + iq_none INVERTER_TEMPERATURES - Src/DebugTools/Src/main/errors.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/errors.c false false @@ -3222,10 +3222,10 @@ true temperature_warning_BV1 pt_union - t_iq_none - int + iq_none + iq_none RECTIFIER_TEMPERATURES - Src/DebugTools/Src/main/errors.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/errors.c false false @@ -3234,10 +3234,10 @@ true temperature_warning_BV2 pt_union - t_iq_none - int + iq_none + iq_none RECTIFIER_TEMPERATURES - Src/DebugTools/Src/main/errors.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/errors.c false false @@ -3246,10 +3246,10 @@ true terminal_can_setup pt_struct - t_iq_none - int + iq_none + iq_none TERMINAL_CAN_SETUP - Src/DebugTools/Src/myLibs/CAN_Setup.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/CAN_Setup.c false false @@ -3258,10 +3258,10 @@ true tetta_calc pt_struct - t_iq_none - int + iq_none + iq_none TETTA_CALC - Src/DebugTools/Src/VectorControl/teta_calc.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/VectorControl/teta_calc.c false false @@ -3270,10 +3270,10 @@ true timCNT_alg pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/myXilinx/Spartan2E_Functions.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/Spartan2E_Functions.c false false @@ -3282,10 +3282,10 @@ true timCNT_prev pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/myXilinx/Spartan2E_Functions.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/Spartan2E_Functions.c false false @@ -3294,10 +3294,10 @@ true time pt_uint16 - t_iq_none - int + iq_none + iq_none unsigned int - Src/DebugTools/Src/myXilinx/Spartan2E_Functions.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/Spartan2E_Functions.c false false @@ -3306,34 +3306,34 @@ true timePauseBENDER_Messages pt_uint16 - t_iq_none - int + iq_none + iq_none unsigned int - Src/DebugTools/Src/main/main22220.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/main22220.c false - True + true false true timePauseCAN_Messages pt_uint16 - t_iq_none - int + iq_none + iq_none unsigned int - Src/DebugTools/Src/main/main22220.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/main22220.c false - True + true false true time_alg pt_float - t_iq_none - int + iq_none + iq_none float - Src/DebugTools/Src/myXilinx/Spartan2E_Functions.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/Spartan2E_Functions.c false false @@ -3342,10 +3342,10 @@ true time_pause_enable_can_from_mpu pt_int32 - t_iq_none - int + iq_none + iq_none long - Src/DebugTools/Src/myLibs/CAN_Setup.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/CAN_Setup.c false false @@ -3354,10 +3354,10 @@ true time_pause_enable_can_from_terminal pt_int32 - t_iq_none - int + iq_none + iq_none long - Src/DebugTools/Src/myLibs/CAN_Setup.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/CAN_Setup.c false false @@ -3366,10 +3366,10 @@ true time_pause_logs pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/myLibs/log_can.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/log_can.c false false @@ -3378,10 +3378,10 @@ true time_pause_titles pt_int16 - t_iq_none - int + iq_none + iq_none int - Src/DebugTools/Src/myLibs/log_can.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/log_can.c false false @@ -3390,10 +3390,10 @@ true tryNumb pt_int16 - t_iq_none - int + iq_none + iq_none volatile int - Src/DebugTools/Src/myXilinx/xPeriphSP6_loader.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/xPeriphSP6_loader.c false false @@ -3402,10 +3402,10 @@ true unites_can_setup pt_struct - t_iq_none - int + iq_none + iq_none UNITES_CAN_SETUP - Src/DebugTools/Src/myLibs/CAN_Setup.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/CAN_Setup.c false false @@ -3414,10 +3414,10 @@ true var_numb pt_int32 - t_iq_none - int + iq_none + iq_none long - Src/DebugTools/Src/main/Main.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/Main.c false false @@ -3426,10 +3426,10 @@ true vect_control pt_struct - t_iq_none - int + iq_none + iq_none VECTOR_CONTROL - Src/DebugTools/Src/VectorControl/pwm_vector_regul.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/VectorControl/pwm_vector_regul.c false false @@ -3438,10 +3438,10 @@ true water_cooler pt_struct - t_iq_none - int + iq_none + iq_none WaterCooler - Src/DebugTools/Src/myLibs/can_watercool.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/can_watercool.c false false @@ -3450,10 +3450,10 @@ true winding_displacement pt_int32 - t_iq - int + iq + iq_none _iq - Src/DebugTools/Src/main/v_pwm24.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/v_pwm24.c false false @@ -3462,10 +3462,10 @@ true word pt_union - t_iq_none - int + iq_none + iq_none Word - Src/DebugTools/Src/myXilinx/xPeriphSP6_loader.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/xPeriphSP6_loader.c false false @@ -3474,10 +3474,10 @@ true wordReversed pt_union - t_iq_none - int + iq_none + iq_none WordReversed - Src/DebugTools/Src/myXilinx/xPeriphSP6_loader.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/xPeriphSP6_loader.c false false @@ -3486,10 +3486,10 @@ true wordToReverse pt_union - t_iq_none - int + iq_none + iq_none WordToReverse - Src/DebugTools/Src/myXilinx/xPeriphSP6_loader.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/xPeriphSP6_loader.c false false @@ -3498,10 +3498,10 @@ true x_parallel_bus_project pt_struct - t_iq_none - int + iq_none + iq_none X_PARALLEL_BUS - Src/DebugTools/Src/myXilinx/x_parallel_bus.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/x_parallel_bus.c false false @@ -3510,10 +3510,10 @@ true x_serial_bus_project pt_struct - t_iq_none - int + iq_none + iq_none X_SERIAL_BUS - Src/DebugTools/Src/myXilinx/x_serial_bus.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/x_serial_bus.c false false @@ -3522,10 +3522,10 @@ true xeeprom_controll_fast pt_uint16 - t_iq_none - int + iq_none + iq_none unsigned int - Src/DebugTools/Src/myXilinx/Spartan2E_Functions.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/Spartan2E_Functions.c false false @@ -3534,10 +3534,10 @@ true xeeprom_controll_store pt_uint16 - t_iq_none - int + iq_none + iq_none unsigned int - Src/DebugTools/Src/myXilinx/Spartan2E_Functions.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/Spartan2E_Functions.c false false @@ -3546,10 +3546,10 @@ true xpwm_time pt_struct - t_iq_none - int + iq_none + iq_none XPWM_TIME - Src/DebugTools/Src/myXilinx/xp_write_xpwm_time.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/xp_write_xpwm_time.c false false @@ -3558,10 +3558,10 @@ true zadan_Id_min pt_int32 - t_iq - int + iq + iq_none _iq - Src/DebugTools/Src/VectorControl/pwm_vector_regul.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/VectorControl/pwm_vector_regul.c false false @@ -3570,78 +3570,54 @@ true zero_ADC pt_arr_int16 - t_iq_none - int + iq_none + iq_none int[20] - Src/DebugTools/Src/main/adc_tools.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/adc_tools.c false false - false + true true Bender.KOhms pt_uint16 - t_iq_none + iq_none iq_none unsigned int - Src/DebugTools/Src/myLibs/bender.c - false - false - - - false - true - Bender.Times - pt_uint16 - t_iq_none - iq_none - unsigned int - Src/DebugTools/Src/myLibs/bender.c - false - false - - - false - false - project.cds_tk.plane_address - pt_uint16 - t_iq_none - iq_none - UInt16 - Src/DebugTools/Src/myXilinx/xp_project.c + Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/bender.c false false - Src/myXilinx/xp_project.h - Src/myXilinx/RS_Functions_modbus.h Src/main/vector.h - Src/main/errors.h + Src/myXilinx/RS_Functions_modbus.h Src/main/adc_tools.h - Src/VectorControl/pwm_vector_regul.h - Src/myXilinx/xp_write_xpwm_time.h - Src/myLibs/log_can.h - Src/main/f281xpwm.h + Src/main/errors.h Src/main/v_pwm24.h + Src/main/f281xpwm.h + Src/myXilinx/xp_project.h Src/main/rotation_speed.h Src/VectorControl/teta_calc.h Src/VectorControl/dq_to_alphabeta_cos.h - Src/myXilinx/xp_controller.h - Src/myXilinx/x_parallel_bus.h - Src/myXilinx/xp_rotation_sensor.h - Src/myXilinx/xPeriphSP6_loader.h - Src/myXilinx/Spartan2E_Functions.h - Src/myXilinx/x_serial_bus.h + Src/myXilinx/xp_write_xpwm_time.h + Src/myLibs/log_can.h + Src/VectorControl/pwm_vector_regul.h Src/myXilinx/RS_Functions.h Src/myLibs/detect_phase_break2.h + Src/myLibs/svgen_dq.h + Src/myXilinx/x_parallel_bus.h + Src/myXilinx/Spartan2E_Functions.h + Src/myXilinx/x_serial_bus.h + Src/myXilinx/xp_controller.h + Src/myXilinx/xp_rotation_sensor.h + Src/myXilinx/xPeriphSP6_loader.h Src/myLibs/log_to_memory.h - Src/myLibs/log_params.h Src/main/global_time.h Src/myLibs/CAN_Setup.h + Src/myLibs/log_params.h Src/myXilinx/CRC_Functions.h - Src/myLibs/svgen_dq.h Src/myLibs/pid_reg3.h Src/myLibs/IQmathLib.h Src/main/doors_control.h @@ -4721,4 +4697,4 @@ Src/main/adc_tools.c - \ No newline at end of file +