исходники перенесены в Src. итоговый файл - DebugVarEdit.exe

улучшена таблица (растянута и форматирована)
добавлен скрипт для компиляции .exe
новые переменные можно добавлять в xml через .c напрямую (записываешь в .c он видит новую переменную и записывает в xml)
можно удалять переменные из xml по del в окне выбора всех переменных

надо подумать как реализовать выбор массивов и пофиксить баги:
- кривая запись пути к файлу переменной в xml
This commit is contained in:
2025-07-09 08:51:17 +03:00
parent 4517087194
commit 0b50c31aa8
18 changed files with 2736 additions and 2505 deletions

Binary file not shown.

Binary file not shown.

View File

@@ -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)
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()

View File

@@ -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 (в <variables>), добавляем её и сохраняем 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("// Этот файл сгенерирован автоматически")

View File

@@ -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', '')

Binary file not shown.

34
build/build_and_clean.py Normal file
View File

@@ -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("Сборка завершилась с ошибкой.")

View File

@@ -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" }, \
};

File diff suppressed because it is too large Load Diff

1872
vars.xml
View File

@@ -1,5 +1,5 @@
<?xml version='1.0' encoding='utf-8'?>
<analysis proj_path="E:/.WORK/TMS/TMS_new_bus" makefile_path="Debug/makefile" structs_path="Src/DebugTools/structs.xml">
<?xml version="1.0" ?>
<analysis proj_path="E:\.WORK\TMS\TMS_new_bus" makefile_path="E:\.WORK\TMS\TMS_new_bus\Debug\makefile" structs_path="E:\.WORK\TMS\TMS_new_bus\Src\DebugTools\structs.xml">
<variables>
<var name="ADC0finishAddr">
<show_var>false</show_var>
@@ -9,7 +9,7 @@
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/myXilinx/x_example_all.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/x_example_all.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -21,19 +21,19 @@
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/myXilinx/x_example_all.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/x_example_all.c</file>
<extern>false</extern>
<static>false</static>
</var>
<var name="ADC1finishAddr">
<show_var>false</show_var>
<enable>false</enable>
<enable>true</enable>
<shortname>ADC1finishAddr</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/myXilinx/x_example_all.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/x_example_all.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -45,7 +45,7 @@
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/myXilinx/x_example_all.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/x_example_all.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -57,7 +57,7 @@
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/myXilinx/x_example_all.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/x_example_all.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -69,7 +69,7 @@
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/myXilinx/x_example_all.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/x_example_all.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -81,7 +81,7 @@
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int[2][16]</type>
<file>Src/DebugTools/Src/main/adc_tools.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/adc_tools.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -93,7 +93,7 @@
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int[2][16]</type>
<file>Src/DebugTools/Src/main/adc_tools.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/adc_tools.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -105,7 +105,7 @@
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/myXilinx/RS_Functions.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/RS_Functions.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -117,7 +117,7 @@
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/myLibs/CAN_Setup.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/CAN_Setup.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -129,7 +129,7 @@
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>BENDER[2]</type>
<file>Src/DebugTools/Src/myLibs/bender.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/bender.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -138,10 +138,10 @@
<enable>true</enable>
<shortname>CAN_answer_wait</shortname>
<pt_type>pt_arr_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int[32]</type>
<file>Src/DebugTools/Src/myLibs/CAN_Setup.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/CAN_Setup.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -150,10 +150,10 @@
<enable>true</enable>
<shortname>CAN_count_cycle_input_units</shortname>
<pt_type>pt_arr_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int[8]</type>
<file>Src/DebugTools/Src/myLibs/CAN_Setup.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/CAN_Setup.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -162,10 +162,10 @@
<enable>true</enable>
<shortname>CAN_no_answer</shortname>
<pt_type>pt_arr_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int[32]</type>
<file>Src/DebugTools/Src/myLibs/CAN_Setup.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/CAN_Setup.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -174,10 +174,10 @@
<enable>true</enable>
<shortname>CAN_refresh_cicle</shortname>
<pt_type>pt_arr_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int[32]</type>
<file>Src/DebugTools/Src/myLibs/CAN_Setup.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/CAN_Setup.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -189,7 +189,7 @@
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int[32]</type>
<file>Src/DebugTools/Src/myLibs/CAN_Setup.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/CAN_Setup.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -198,10 +198,10 @@
<enable>true</enable>
<shortname>CAN_timeout</shortname>
<pt_type>pt_arr_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int[32]</type>
<file>Src/DebugTools/Src/myLibs/CAN_Setup.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/CAN_Setup.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -210,10 +210,10 @@
<enable>true</enable>
<shortname>CAN_timeout_cicle</shortname>
<pt_type>pt_arr_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int[32]</type>
<file>Src/DebugTools/Src/myLibs/CAN_Setup.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/CAN_Setup.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -222,10 +222,10 @@
<enable>true</enable>
<shortname>CNTRL_ADDR</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/myXilinx/RS_Functions.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/RS_Functions.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -234,10 +234,10 @@
<enable>true</enable>
<shortname>CNTRL_ADDR_UNIVERSAL</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>const int</type>
<file>Src/DebugTools/Src/myXilinx/RS_Functions.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/RS_Functions.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -246,10 +246,10 @@
<enable>true</enable>
<shortname>CONST_15</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<iq_type>iq</iq_type>
<return_type>iq_none</return_type>
<type>_iq</type>
<file>Src/DebugTools/Src/myLibs/mathlib.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/mathlib.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -258,10 +258,10 @@
<enable>true</enable>
<shortname>CONST_23</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<iq_type>iq</iq_type>
<return_type>iq_none</return_type>
<type>_iq</type>
<file>Src/DebugTools/Src/myLibs/mathlib.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/mathlib.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -270,10 +270,10 @@
<enable>true</enable>
<shortname>CanOpenUnites</shortname>
<pt_type>pt_arr_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int[30]</type>
<file>Src/DebugTools/Src/myLibs/CAN_Setup.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/CAN_Setup.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -282,10 +282,10 @@
<enable>true</enable>
<shortname>CanTimeOutErrorTR</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/myLibs/CAN_Setup.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/CAN_Setup.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -294,10 +294,10 @@
<enable>true</enable>
<shortname>Controll</shortname>
<pt_type>pt_union</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>XControll_reg</type>
<file>Src/DebugTools/Src/myXilinx/Spartan2E_Functions.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/Spartan2E_Functions.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -306,10 +306,10 @@
<enable>true</enable>
<shortname>Dpwm</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/main/PWMTMSHandle.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/PWMTMSHandle.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -318,10 +318,10 @@
<enable>true</enable>
<shortname>Dpwm2</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/main/PWMTMSHandle.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/PWMTMSHandle.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -330,10 +330,10 @@
<enable>true</enable>
<shortname>Dpwm4</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/main/PWMTMSHandle.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/PWMTMSHandle.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -342,10 +342,10 @@
<enable>true</enable>
<shortname>EvaTimer1InterruptCount</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/main/281xEvTimersInit.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/281xEvTimersInit.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -354,10 +354,10 @@
<enable>true</enable>
<shortname>EvaTimer2InterruptCount</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/main/281xEvTimersInit.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/281xEvTimersInit.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -366,10 +366,10 @@
<enable>true</enable>
<shortname>EvbTimer3InterruptCount</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/main/281xEvTimersInit.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/281xEvTimersInit.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -378,10 +378,10 @@
<enable>true</enable>
<shortname>EvbTimer4InterruptCount</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/main/281xEvTimersInit.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/281xEvTimersInit.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -390,10 +390,10 @@
<enable>true</enable>
<shortname>Fpwm</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/main/PWMTMSHandle.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/PWMTMSHandle.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -402,22 +402,22 @@
<enable>true</enable>
<shortname>Gott</shortname>
<pt_type>pt_arr_int8</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>char[8][16]</type>
<file>Src/DebugTools/Src/myLibs/bender.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/bender.c</file>
<extern>false</extern>
<static>True</static>
<static>true</static>
</var>
<var name="IN0finishAddr">
<show_var>false</show_var>
<enable>true</enable>
<shortname>IN0finishAddr</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/myXilinx/x_example_all.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/x_example_all.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -426,10 +426,10 @@
<enable>true</enable>
<shortname>IN0startAddr</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/myXilinx/x_example_all.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/x_example_all.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -438,10 +438,10 @@
<enable>true</enable>
<shortname>IN1finishAddr</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/myXilinx/x_example_all.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/x_example_all.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -450,10 +450,10 @@
<enable>true</enable>
<shortname>IN1startAddr</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/myXilinx/x_example_all.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/x_example_all.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -462,10 +462,10 @@
<enable>true</enable>
<shortname>IN2finishAddr</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/myXilinx/x_example_all.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/x_example_all.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -474,10 +474,10 @@
<enable>true</enable>
<shortname>IN2startAddr</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/myXilinx/x_example_all.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/x_example_all.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -486,10 +486,10 @@
<enable>true</enable>
<shortname>IQ_OUT_NOM</shortname>
<pt_type>pt_float</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>float</type>
<file>Src/DebugTools/Src/main/params_i_out.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/params_i_out.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -498,10 +498,10 @@
<enable>true</enable>
<shortname>I_OUT_1_6_NOMINAL_IQ</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>long</type>
<file>Src/DebugTools/Src/main/params_i_out.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/params_i_out.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -510,10 +510,10 @@
<enable>true</enable>
<shortname>I_OUT_1_8_NOMINAL_IQ</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>long</type>
<file>Src/DebugTools/Src/main/params_i_out.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/params_i_out.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -522,10 +522,10 @@
<enable>true</enable>
<shortname>I_OUT_NOMINAL</shortname>
<pt_type>pt_float</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>float</type>
<file>Src/DebugTools/Src/main/params_i_out.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/params_i_out.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -534,10 +534,10 @@
<enable>true</enable>
<shortname>I_OUT_NOMINAL_IQ</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>long</type>
<file>Src/DebugTools/Src/main/params_i_out.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/params_i_out.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -546,10 +546,10 @@
<enable>true</enable>
<shortname>I_ZPT_NOMINAL_IQ</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>long</type>
<file>Src/DebugTools/Src/main/params_i_out.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/params_i_out.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -558,10 +558,10 @@
<enable>true</enable>
<shortname>Id_out_max_full</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<iq_type>iq</iq_type>
<return_type>iq_none</return_type>
<type>_iq</type>
<file>Src/DebugTools/Src/VectorControl/regul_power.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/VectorControl/regul_power.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -570,10 +570,10 @@
<enable>true</enable>
<shortname>Id_out_max_low_speed</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<iq_type>iq</iq_type>
<return_type>iq_none</return_type>
<type>_iq</type>
<file>Src/DebugTools/Src/VectorControl/regul_power.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/VectorControl/regul_power.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -582,10 +582,10 @@
<enable>true</enable>
<shortname>Iq_out_max</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<iq_type>iq</iq_type>
<return_type>iq_none</return_type>
<type>_iq</type>
<file>Src/DebugTools/Src/main/params_i_out.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/params_i_out.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -594,10 +594,10 @@
<enable>true</enable>
<shortname>Iq_out_nom</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<iq_type>iq</iq_type>
<return_type>iq_none</return_type>
<type>_iq</type>
<file>Src/DebugTools/Src/main/params_i_out.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/params_i_out.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -606,10 +606,10 @@
<enable>true</enable>
<shortname>K_LEM_ADC</shortname>
<pt_type>pt_arr_uint32</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>const unsigned long[20]</type>
<file>Src/DebugTools/Src/main/adc_tools.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/adc_tools.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -618,10 +618,10 @@
<enable>true</enable>
<shortname>KmodTerm</shortname>
<pt_type>pt_float</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>float</type>
<file>Src/DebugTools/Src/myXilinx/RS_Functions.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/RS_Functions.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -630,10 +630,10 @@
<enable>true</enable>
<shortname>ROTfinishAddr</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/myXilinx/x_example_all.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/x_example_all.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -642,10 +642,10 @@
<enable>true</enable>
<shortname>RS_Len</shortname>
<pt_type>pt_arr_uint16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>unsigned int[70]</type>
<file>Src/DebugTools/Src/myXilinx/RS_Functions.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/RS_Functions.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -654,10 +654,10 @@
<enable>true</enable>
<shortname>R_ADC</shortname>
<pt_type>pt_arr_uint16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>const unsigned int[20]</type>
<file>Src/DebugTools/Src/main/adc_tools.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/adc_tools.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -666,10 +666,10 @@
<enable>true</enable>
<shortname>RotPlaneStartAddr</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/myXilinx/x_example_all.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/x_example_all.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -678,10 +678,10 @@
<enable>true</enable>
<shortname>SQRT_32</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<iq_type>iq</iq_type>
<return_type>iq_none</return_type>
<type>_iq</type>
<file>Src/DebugTools/Src/myLibs/mathlib.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/mathlib.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -690,10 +690,10 @@
<enable>true</enable>
<shortname>Unites</shortname>
<pt_type>pt_arr_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int[8][128]</type>
<file>Src/DebugTools/Src/myLibs/CAN_Setup.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/CAN_Setup.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -702,10 +702,10 @@
<enable>true</enable>
<shortname>VAR_FREQ_PWM_XTICS</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/main/PWMTools.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/PWMTools.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -714,10 +714,10 @@
<enable>true</enable>
<shortname>VAR_PERIOD_MAX_XTICS</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/main/PWMTools.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/PWMTools.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -726,10 +726,10 @@
<enable>true</enable>
<shortname>VAR_PERIOD_MIN_BR_XTICS</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/main/PWMTools.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/PWMTools.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -738,10 +738,10 @@
<enable>true</enable>
<shortname>VAR_PERIOD_MIN_XTICS</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/main/PWMTools.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/PWMTools.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -750,10 +750,10 @@
<enable>true</enable>
<shortname>Zpwm</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/main/PWMTMSHandle.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/PWMTMSHandle.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -762,10 +762,10 @@
<enable>true</enable>
<shortname>a</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>WINDING</type>
<file>Src/DebugTools/Src/main/PWMTools.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/PWMTools.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -774,10 +774,10 @@
<enable>true</enable>
<shortname>addrToSent</shortname>
<pt_type>pt_union</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>volatile AddrToSent</type>
<file>Src/DebugTools/Src/myXilinx/xPeriphSP6_loader.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/xPeriphSP6_loader.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -786,10 +786,10 @@
<enable>true</enable>
<shortname>adr_read_from_modbus3</shortname>
<pt_type>pt_uint16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>unsigned int</type>
<file>Src/DebugTools/Src/myXilinx/RS_Functions_modbus.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/RS_Functions_modbus.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -798,10 +798,10 @@
<enable>true</enable>
<shortname>alarm_log_can</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>ALARM_LOG_CAN</type>
<file>Src/DebugTools/Src/myLibs/alarm_log_can.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/alarm_log_can.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -810,10 +810,10 @@
<enable>true</enable>
<shortname>alarm_log_can_setup</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>ALARM_LOG_CAN_SETUP</type>
<file>Src/DebugTools/Src/myLibs/CAN_Setup.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/CAN_Setup.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -822,10 +822,10 @@
<enable>true</enable>
<shortname>analog</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>ANALOG_VALUE</type>
<file>Src/DebugTools/Src/main/adc_tools.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/adc_tools.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -834,10 +834,10 @@
<enable>true</enable>
<shortname>ar_sa_all</shortname>
<pt_type>pt_arr_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int[3][6][4][7]</type>
<file>Src/DebugTools/Src/main/v_pwm24.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/v_pwm24.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -846,10 +846,10 @@
<enable>true</enable>
<shortname>ar_tph</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<iq_type>iq</iq_type>
<return_type>iq_none</return_type>
<type>_iq[7]</type>
<file>Src/DebugTools/Src/main/v_pwm24.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/v_pwm24.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -858,34 +858,34 @@
<enable>true</enable>
<shortname>biTemperatureLimits</shortname>
<pt_type>pt_arr_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int[12]</type>
<file>Src/DebugTools/Src/main/init_protect_levels.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/init_protect_levels.c</file>
<extern>false</extern>
<static>True</static>
<static>true</static>
</var>
<var name="biTemperatureWarnings">
<show_var>false</show_var>
<enable>true</enable>
<shortname>biTemperatureWarnings</shortname>
<pt_type>pt_arr_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int[12]</type>
<file>Src/DebugTools/Src/main/init_protect_levels.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/init_protect_levels.c</file>
<extern>false</extern>
<static>True</static>
<static>true</static>
</var>
<var name="block_size_counter_fast">
<show_var>false</show_var>
<enable>true</enable>
<shortname>block_size_counter_fast</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/myLibs/log_to_memory.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/log_to_memory.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -894,10 +894,10 @@
<enable>true</enable>
<shortname>block_size_counter_slow</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/myLibs/log_to_memory.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/log_to_memory.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -906,10 +906,10 @@
<enable>true</enable>
<shortname>break_result_1</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<iq_type>iq</iq_type>
<return_type>iq_none</return_type>
<type>_iq</type>
<file>Src/DebugTools/Src/main/break_regul.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/break_regul.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -918,10 +918,10 @@
<enable>true</enable>
<shortname>break_result_2</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<iq_type>iq</iq_type>
<return_type>iq_none</return_type>
<type>_iq</type>
<file>Src/DebugTools/Src/main/break_regul.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/break_regul.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -930,10 +930,10 @@
<enable>true</enable>
<shortname>break_result_3</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<iq_type>iq</iq_type>
<return_type>iq_none</return_type>
<type>_iq</type>
<file>Src/DebugTools/Src/main/break_regul.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/break_regul.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -942,10 +942,10 @@
<enable>true</enable>
<shortname>break_result_4</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<iq_type>iq</iq_type>
<return_type>iq_none</return_type>
<type>_iq</type>
<file>Src/DebugTools/Src/main/break_regul.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/break_regul.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -954,34 +954,34 @@
<enable>true</enable>
<shortname>bvTemperatureLimits</shortname>
<pt_type>pt_arr_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int[12]</type>
<file>Src/DebugTools/Src/main/init_protect_levels.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/init_protect_levels.c</file>
<extern>false</extern>
<static>True</static>
<static>true</static>
</var>
<var name="bvTemperatureWarnings">
<show_var>false</show_var>
<enable>true</enable>
<shortname>bvTemperatureWarnings</shortname>
<pt_type>pt_arr_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int[12]</type>
<file>Src/DebugTools/Src/main/init_protect_levels.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/init_protect_levels.c</file>
<extern>false</extern>
<static>True</static>
<static>true</static>
</var>
<var name="byte">
<show_var>false</show_var>
<enable>true</enable>
<shortname>byte</shortname>
<pt_type>pt_union</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>Byte</type>
<file>Src/DebugTools/Src/myXilinx/xPeriphSP6_loader.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/xPeriphSP6_loader.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -990,10 +990,10 @@
<enable>true</enable>
<shortname>c_s</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>long</type>
<file>Src/DebugTools/Src/main/rotation_speed.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/rotation_speed.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1002,10 +1002,10 @@
<enable>true</enable>
<shortname>calibration1</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/main/isolation.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/isolation.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1014,10 +1014,10 @@
<enable>true</enable>
<shortname>calibration2</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/main/isolation.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/isolation.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1026,10 +1026,10 @@
<enable>true</enable>
<shortname>callfunc</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>test_functions</type>
<file>Src/DebugTools/Src/main/Main.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/Main.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1038,10 +1038,10 @@
<enable>true</enable>
<shortname>canopen_can_setup</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>CANOPEN_CAN_SETUP</type>
<file>Src/DebugTools/Src/myLibs/CAN_Setup.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/CAN_Setup.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1050,10 +1050,10 @@
<enable>true</enable>
<shortname>capnum0</shortname>
<pt_type>pt_uint16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>unsigned int</type>
<file>Src/DebugTools/Src/main/sync_tools.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/sync_tools.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1062,10 +1062,10 @@
<enable>true</enable>
<shortname>capnum1</shortname>
<pt_type>pt_uint16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>unsigned int</type>
<file>Src/DebugTools/Src/main/sync_tools.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/sync_tools.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1074,10 +1074,10 @@
<enable>true</enable>
<shortname>capnum2</shortname>
<pt_type>pt_uint16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>unsigned int</type>
<file>Src/DebugTools/Src/main/sync_tools.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/sync_tools.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1086,10 +1086,10 @@
<enable>true</enable>
<shortname>capnum3</shortname>
<pt_type>pt_uint16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>unsigned int</type>
<file>Src/DebugTools/Src/main/sync_tools.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/sync_tools.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1098,10 +1098,10 @@
<enable>true</enable>
<shortname>chNum</shortname>
<pt_type>pt_uint16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>unsigned int</type>
<file>Src/DebugTools/Src/myXilinx/x_example_all.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/x_example_all.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1110,10 +1110,10 @@
<enable>true</enable>
<shortname>chanell1</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>BREAK_PHASE_I</type>
<file>Src/DebugTools/Src/main/detect_phase.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/detect_phase.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1122,10 +1122,10 @@
<enable>true</enable>
<shortname>chanell2</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>BREAK_PHASE_I</type>
<file>Src/DebugTools/Src/main/detect_phase.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/detect_phase.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1134,10 +1134,10 @@
<enable>true</enable>
<shortname>cmd_3_or_16</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/myXilinx/RS_Functions_modbus.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/RS_Functions_modbus.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1146,70 +1146,70 @@
<enable>true</enable>
<shortname>cmd_crc</shortname>
<pt_type>pt_arr_int8</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>char[4]</type>
<file>Src/DebugTools/Src/myLibs/bender.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/bender.c</file>
<extern>false</extern>
<static>True</static>
<static>true</static>
</var>
<var name="cmd_finish1">
<show_var>false</show_var>
<enable>true</enable>
<shortname>cmd_finish1</shortname>
<pt_type>pt_int8</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>char</type>
<file>Src/DebugTools/Src/myLibs/bender.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/bender.c</file>
<extern>false</extern>
<static>True</static>
<static>true</static>
</var>
<var name="cmd_finish2">
<show_var>false</show_var>
<enable>true</enable>
<shortname>cmd_finish2</shortname>
<pt_type>pt_int8</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>char</type>
<file>Src/DebugTools/Src/myLibs/bender.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/bender.c</file>
<extern>false</extern>
<static>True</static>
<static>true</static>
</var>
<var name="cmd_start">
<show_var>false</show_var>
<enable>true</enable>
<shortname>cmd_start</shortname>
<pt_type>pt_arr_int8</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>char[5]</type>
<file>Src/DebugTools/Src/myLibs/bender.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/bender.c</file>
<extern>false</extern>
<static>True</static>
<static>true</static>
</var>
<var name="cmd_txt">
<show_var>false</show_var>
<enable>true</enable>
<shortname>cmd_txt</shortname>
<pt_type>pt_arr_int8</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>char[4][8]</type>
<file>Src/DebugTools/Src/myLibs/bender.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/bender.c</file>
<extern>false</extern>
<static>True</static>
<static>true</static>
</var>
<var name="compress_size">
<show_var>false</show_var>
<enable>true</enable>
<shortname>compress_size</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/myLibs/alarm_log_can.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/alarm_log_can.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1218,10 +1218,10 @@
<enable>true</enable>
<shortname>controlReg</shortname>
<pt_type>pt_union</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>ControlReg</type>
<file>Src/DebugTools/Src/myXilinx/xPeriphSP6_loader.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/xPeriphSP6_loader.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1230,10 +1230,10 @@
<enable>true</enable>
<shortname>cos_fi</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>COS_FI_STRUCT</type>
<file>Src/DebugTools/Src/VectorControl/pwm_vector_regul.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/VectorControl/pwm_vector_regul.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1242,10 +1242,10 @@
<enable>true</enable>
<shortname>count_error_sync</shortname>
<pt_type>pt_uint16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>unsigned int</type>
<file>Src/DebugTools/Src/main/sync_tools.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/sync_tools.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1254,10 +1254,10 @@
<enable>true</enable>
<shortname>count_modbus_table_changed</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/myLibs/modbus_fill_table.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/modbus_fill_table.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1266,10 +1266,10 @@
<enable>true</enable>
<shortname>count_run_pch</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/main/PWMTools.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/PWMTools.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1278,22 +1278,22 @@
<enable>true</enable>
<shortname>counterSBWriteErrors</shortname>
<pt_type>pt_uint16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>unsigned int</type>
<file>Src/DebugTools/Src/myXilinx/x_serial_bus.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/x_serial_bus.c</file>
<extern>false</extern>
<static>True</static>
<static>true</static>
</var>
<var name="crc_16_tab">
<show_var>false</show_var>
<enable>true</enable>
<shortname>crc_16_tab</shortname>
<pt_type>pt_arr_uint16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>WORD[256]</type>
<file>Src/DebugTools/Src/myXilinx/CRC_Functions.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/CRC_Functions.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1302,10 +1302,10 @@
<enable>true</enable>
<shortname>crypt</shortname>
<pt_type>pt_arr_int8</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>char[34]</type>
<file>Src/DebugTools/Src/myLibs/bender.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/bender.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1314,22 +1314,22 @@
<enable>true</enable>
<shortname>cur_position_buf_modbus16</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/myLibs/message_modbus.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/message_modbus.c</file>
<extern>false</extern>
<static>True</static>
<static>true</static>
</var>
<var name="cur_position_buf_modbus16_can">
<show_var>false</show_var>
<enable>true</enable>
<shortname>cur_position_buf_modbus16_can</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/myLibs/message_modbus.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/message_modbus.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1338,22 +1338,22 @@
<enable>true</enable>
<shortname>cur_position_buf_modbus3</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/myLibs/message_modbus.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/message_modbus.c</file>
<extern>false</extern>
<static>True</static>
<static>true</static>
</var>
<var name="cycle">
<show_var>false</show_var>
<enable>true</enable>
<shortname>cycle</shortname>
<pt_type>pt_arr_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>CYCLE[32]</type>
<file>Src/DebugTools/Src/myLibs/CAN_Setup.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/CAN_Setup.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1362,58 +1362,58 @@
<enable>true</enable>
<shortname>data_to_umu1_7f</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/main/init_protect_levels.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/init_protect_levels.c</file>
<extern>false</extern>
<static>True</static>
<static>true</static>
</var>
<var name="data_to_umu1_8">
<show_var>false</show_var>
<enable>true</enable>
<shortname>data_to_umu1_8</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/main/init_protect_levels.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/init_protect_levels.c</file>
<extern>false</extern>
<static>True</static>
<static>true</static>
</var>
<var name="data_to_umu2_7f">
<show_var>false</show_var>
<enable>true</enable>
<shortname>data_to_umu2_7f</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/main/init_protect_levels.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/init_protect_levels.c</file>
<extern>false</extern>
<static>True</static>
<static>true</static>
</var>
<var name="data_to_umu2_8">
<show_var>false</show_var>
<enable>true</enable>
<shortname>data_to_umu2_8</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/main/init_protect_levels.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/init_protect_levels.c</file>
<extern>false</extern>
<static>True</static>
<static>true</static>
</var>
<var name="delta_capnum">
<show_var>false</show_var>
<enable>true</enable>
<shortname>delta_capnum</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/main/sync_tools.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/sync_tools.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1422,10 +1422,10 @@
<enable>true</enable>
<shortname>delta_error</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/main/sync_tools.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/sync_tools.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1434,10 +1434,10 @@
<enable>true</enable>
<shortname>doors</shortname>
<pt_type>pt_union</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>volatile DOORS_STATUS</type>
<file>Src/DebugTools/Src/main/doors_control.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/doors_control.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1446,22 +1446,22 @@
<enable>true</enable>
<shortname>dq_to_ab</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>DQ_TO_ALPHABETA</type>
<file>Src/DebugTools/Src/main/v_pwm24.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/v_pwm24.c</file>
<extern>false</extern>
<static>True</static>
<static>true</static>
</var>
<var name="enable_can">
<show_var>false</show_var>
<enable>true</enable>
<shortname>enable_can</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/myLibs/message_modbus.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/message_modbus.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1470,10 +1470,10 @@
<enable>true</enable>
<shortname>enable_can_recive_after_units_box</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/myLibs/CAN_Setup.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/CAN_Setup.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1482,10 +1482,10 @@
<enable>true</enable>
<shortname>err_level_adc</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<iq_type>iq</iq_type>
<return_type>iq_none</return_type>
<type>_iq</type>
<file>Src/DebugTools/Src/main/adc_tools.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/adc_tools.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1494,10 +1494,10 @@
<enable>true</enable>
<shortname>err_level_adc_on_go</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<iq_type>iq</iq_type>
<return_type>iq_none</return_type>
<type>_iq</type>
<file>Src/DebugTools/Src/main/adc_tools.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/adc_tools.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1506,10 +1506,10 @@
<enable>true</enable>
<shortname>err_main</shortname>
<pt_type>pt_uint16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>unsigned int</type>
<file>Src/DebugTools/Src/main/Main.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/Main.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1518,10 +1518,10 @@
<enable>true</enable>
<shortname>err_modbus16</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/myXilinx/RS_Functions_modbus.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/RS_Functions_modbus.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1530,10 +1530,10 @@
<enable>true</enable>
<shortname>err_modbus3</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/myXilinx/RS_Functions_modbus.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/RS_Functions_modbus.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1542,10 +1542,10 @@
<enable>true</enable>
<shortname>errors</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>ERRORS</type>
<file>Src/DebugTools/Src/main/errors.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/errors.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1554,10 +1554,10 @@
<enable>true</enable>
<shortname>f</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>FLAG</type>
<file>Src/DebugTools/Src/main/Main.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/Main.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1566,10 +1566,10 @@
<enable>true</enable>
<shortname>fail</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>volatile int</type>
<file>Src/DebugTools/Src/myXilinx/xPeriphSP6_loader.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/xPeriphSP6_loader.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1578,10 +1578,10 @@
<enable>true</enable>
<shortname>faults</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>FAULTS</type>
<file>Src/DebugTools/Src/main/errors.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/errors.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1590,10 +1590,10 @@
<enable>true</enable>
<shortname>fifo</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>FIFO</type>
<file>Src/DebugTools/Src/myLibs/CAN_Setup.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/CAN_Setup.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1602,10 +1602,10 @@
<enable>true</enable>
<shortname>filter</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>ANALOG_VALUE</type>
<file>Src/DebugTools/Src/main/adc_tools.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/adc_tools.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1614,10 +1614,10 @@
<enable>true</enable>
<shortname>flag_buf</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/main/rotation_speed.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/rotation_speed.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1626,10 +1626,10 @@
<enable>true</enable>
<shortname>flag_enable_can_from_mpu</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/myLibs/CAN_Setup.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/CAN_Setup.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1638,10 +1638,10 @@
<enable>true</enable>
<shortname>flag_enable_can_from_terminal</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/myLibs/CAN_Setup.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/CAN_Setup.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1650,10 +1650,10 @@
<enable>true</enable>
<shortname>flag_on_off_pch</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/main/PWMTools.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/PWMTools.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1662,10 +1662,10 @@
<enable>true</enable>
<shortname>flag_received_first_mess_from_MPU</shortname>
<pt_type>pt_uint16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>unsigned int</type>
<file>Src/DebugTools/Src/myXilinx/RS_Functions_modbus.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/RS_Functions_modbus.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1674,10 +1674,10 @@
<enable>true</enable>
<shortname>flag_reverse</shortname>
<pt_type>pt_uint16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>unsigned int</type>
<file>Src/DebugTools/Src/myLibs/modbus_read_table.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/modbus_read_table.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1686,10 +1686,10 @@
<enable>true</enable>
<shortname>flag_send_answer_rs</shortname>
<pt_type>pt_uint16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>unsigned int</type>
<file>Src/DebugTools/Src/myXilinx/RS_Functions_modbus.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/RS_Functions_modbus.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1698,10 +1698,10 @@
<enable>true</enable>
<shortname>flag_test_tabe_filled</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/myLibs/modbus_fill_table.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/modbus_fill_table.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1710,10 +1710,10 @@
<enable>true</enable>
<shortname>flag_we_int_pwm_on</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/main/PWMTools.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/PWMTools.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1722,10 +1722,10 @@
<enable>true</enable>
<shortname>freq1</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<iq_type>iq</iq_type>
<return_type>iq_none</return_type>
<type>_iq</type>
<file>Src/DebugTools/Src/main/PWMTools.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/PWMTools.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1734,10 +1734,10 @@
<enable>true</enable>
<shortname>freqTerm</shortname>
<pt_type>pt_float</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>float</type>
<file>Src/DebugTools/Src/myXilinx/RS_Functions.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/RS_Functions.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1746,10 +1746,10 @@
<enable>true</enable>
<shortname>global_time</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>GLOBAL_TIME</type>
<file>Src/DebugTools/Src/main/global_time.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/global_time.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1758,10 +1758,10 @@
<enable>true</enable>
<shortname>hb_logs_data</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/myLibs/log_to_memory.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/log_to_memory.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1770,10 +1770,10 @@
<enable>true</enable>
<shortname>i</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/main/PWMTools.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/PWMTools.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1782,10 +1782,10 @@
<enable>true</enable>
<shortname>i1_out</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>BREAK2_PHASE</type>
<file>Src/DebugTools/Src/main/errors.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/errors.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1794,10 +1794,10 @@
<enable>true</enable>
<shortname>i2_out</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>BREAK2_PHASE</type>
<file>Src/DebugTools/Src/main/errors.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/errors.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1806,10 +1806,10 @@
<enable>true</enable>
<shortname>init_log</shortname>
<pt_type>pt_arr_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int[3]</type>
<file>Src/DebugTools/Src/myLibs/log_can.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/log_can.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1818,10 +1818,10 @@
<enable>true</enable>
<shortname>iq19_k_norm_ADC</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq19</iq_type>
<return_type>int</return_type>
<iq_type>iq19</iq_type>
<return_type>iq_none</return_type>
<type>_iq19[20]</type>
<file>Src/DebugTools/Src/main/adc_tools.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/adc_tools.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1830,10 +1830,10 @@
<enable>true</enable>
<shortname>iq19_zero_ADC</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq19</iq_type>
<return_type>int</return_type>
<iq_type>iq19</iq_type>
<return_type>iq_none</return_type>
<type>_iq19[20]</type>
<file>Src/DebugTools/Src/main/adc_tools.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/adc_tools.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1842,10 +1842,10 @@
<enable>true</enable>
<shortname>iq_alfa_coef</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<iq_type>iq</iq_type>
<return_type>iq_none</return_type>
<type>_iq</type>
<file>Src/DebugTools/Src/main/v_pwm24.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/v_pwm24.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1854,10 +1854,10 @@
<enable>true</enable>
<shortname>iq_k_norm_ADC</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<iq_type>iq</iq_type>
<return_type>iq_none</return_type>
<type>_iq[20]</type>
<file>Src/DebugTools/Src/main/adc_tools.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/adc_tools.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1866,10 +1866,10 @@
<enable>true</enable>
<shortname>iq_logpar</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>IQ_LOGSPARAMS</type>
<file>Src/DebugTools/Src/myLibs/log_to_memory.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/log_to_memory.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1878,10 +1878,10 @@
<enable>true</enable>
<shortname>iq_max</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<iq_type>iq</iq_type>
<return_type>iq_none</return_type>
<type>_iq</type>
<file>Src/DebugTools/Src/myLibs/svgen_dq_v2.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/svgen_dq_v2.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1890,10 +1890,10 @@
<enable>true</enable>
<shortname>iq_norm_ADC</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<iq_type>iq</iq_type>
<return_type>iq_none</return_type>
<type>_iq[20]</type>
<file>Src/DebugTools/Src/main/adc_tools.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/adc_tools.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1902,10 +1902,10 @@
<enable>true</enable>
<shortname>isolation1</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>ISOLATION</type>
<file>Src/DebugTools/Src/main/isolation.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/isolation.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1914,10 +1914,10 @@
<enable>true</enable>
<shortname>isolation2</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>ISOLATION</type>
<file>Src/DebugTools/Src/main/isolation.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/isolation.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1926,10 +1926,10 @@
<enable>true</enable>
<shortname>k1</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<iq_type>iq</iq_type>
<return_type>iq_none</return_type>
<type>_iq</type>
<file>Src/DebugTools/Src/main/PWMTools.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/PWMTools.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1938,10 +1938,10 @@
<enable>true</enable>
<shortname>kI_D</shortname>
<pt_type>pt_float</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>float</type>
<file>Src/DebugTools/Src/VectorControl/pwm_vector_regul.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/VectorControl/pwm_vector_regul.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1950,10 +1950,10 @@
<enable>true</enable>
<shortname>kI_D_Inv31</shortname>
<pt_type>pt_float</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>float</type>
<file>Src/DebugTools/Src/VectorControl/pwm_vector_regul.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/VectorControl/pwm_vector_regul.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1962,10 +1962,10 @@
<enable>true</enable>
<shortname>kI_Q</shortname>
<pt_type>pt_float</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>float</type>
<file>Src/DebugTools/Src/VectorControl/pwm_vector_regul.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/VectorControl/pwm_vector_regul.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1974,10 +1974,10 @@
<enable>true</enable>
<shortname>kI_Q_Inv31</shortname>
<pt_type>pt_float</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>float</type>
<file>Src/DebugTools/Src/VectorControl/pwm_vector_regul.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/VectorControl/pwm_vector_regul.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1986,10 +1986,10 @@
<enable>true</enable>
<shortname>kP_D</shortname>
<pt_type>pt_float</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>float</type>
<file>Src/DebugTools/Src/VectorControl/pwm_vector_regul.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/VectorControl/pwm_vector_regul.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -1998,10 +1998,10 @@
<enable>true</enable>
<shortname>kP_D_Inv31</shortname>
<pt_type>pt_float</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>float</type>
<file>Src/DebugTools/Src/VectorControl/pwm_vector_regul.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/VectorControl/pwm_vector_regul.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2010,10 +2010,10 @@
<enable>true</enable>
<shortname>kP_Q</shortname>
<pt_type>pt_float</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>float</type>
<file>Src/DebugTools/Src/VectorControl/pwm_vector_regul.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/VectorControl/pwm_vector_regul.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2022,10 +2022,10 @@
<enable>true</enable>
<shortname>kP_Q_Inv31</shortname>
<pt_type>pt_float</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>float</type>
<file>Src/DebugTools/Src/VectorControl/pwm_vector_regul.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/VectorControl/pwm_vector_regul.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2034,22 +2034,22 @@
<enable>true</enable>
<shortname>kan</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/myLibs/bender.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/bender.c</file>
<extern>false</extern>
<static>True</static>
<static>true</static>
</var>
<var name="koef_Base_stop_run">
<show_var>false</show_var>
<enable>true</enable>
<shortname>koef_Base_stop_run</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<iq_type>iq</iq_type>
<return_type>iq_none</return_type>
<type>_iq</type>
<file>Src/DebugTools/Src/main/break_regul.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/break_regul.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2058,10 +2058,10 @@
<enable>true</enable>
<shortname>koef_Iabc_filter</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<iq_type>iq</iq_type>
<return_type>iq_none</return_type>
<type>_iq</type>
<file>Src/DebugTools/Src/main/adc_tools.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/adc_tools.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2070,10 +2070,10 @@
<enable>true</enable>
<shortname>koef_Im_filter</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<iq_type>iq</iq_type>
<return_type>iq_none</return_type>
<type>_iq</type>
<file>Src/DebugTools/Src/main/adc_tools.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/adc_tools.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2082,10 +2082,10 @@
<enable>true</enable>
<shortname>koef_Im_filter_long</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<iq_type>iq</iq_type>
<return_type>iq_none</return_type>
<type>_iq</type>
<file>Src/DebugTools/Src/main/adc_tools.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/adc_tools.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2094,10 +2094,10 @@
<enable>true</enable>
<shortname>koef_K_stop_run</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<iq_type>iq</iq_type>
<return_type>iq_none</return_type>
<type>_iq</type>
<file>Src/DebugTools/Src/main/break_regul.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/break_regul.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2106,10 +2106,10 @@
<enable>true</enable>
<shortname>koef_Krecup</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<iq_type>iq</iq_type>
<return_type>iq_none</return_type>
<type>_iq</type>
<file>Src/DebugTools/Src/main/break_regul.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/break_regul.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2118,10 +2118,10 @@
<enable>true</enable>
<shortname>koef_Min_recup</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<iq_type>iq</iq_type>
<return_type>iq_none</return_type>
<type>_iq</type>
<file>Src/DebugTools/Src/main/break_regul.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/break_regul.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2130,10 +2130,10 @@
<enable>true</enable>
<shortname>koef_TemperBSU_long_filter</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<iq_type>iq</iq_type>
<return_type>iq_none</return_type>
<type>_iq</type>
<file>Src/DebugTools/Src/main/adc_tools.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/adc_tools.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2142,10 +2142,10 @@
<enable>true</enable>
<shortname>koef_Ud_fast_filter</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<iq_type>iq</iq_type>
<return_type>iq_none</return_type>
<type>_iq</type>
<file>Src/DebugTools/Src/main/adc_tools.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/adc_tools.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2154,10 +2154,10 @@
<enable>true</enable>
<shortname>koef_Ud_long_filter</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<iq_type>iq</iq_type>
<return_type>iq_none</return_type>
<type>_iq</type>
<file>Src/DebugTools/Src/main/adc_tools.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/adc_tools.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2166,10 +2166,10 @@
<enable>true</enable>
<shortname>koef_Wlong</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<iq_type>iq</iq_type>
<return_type>iq_none</return_type>
<type>_iq</type>
<file>Src/DebugTools/Src/main/adc_tools.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/adc_tools.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2178,10 +2178,10 @@
<enable>true</enable>
<shortname>koef_Wout_filter</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<iq_type>iq</iq_type>
<return_type>iq_none</return_type>
<type>_iq</type>
<file>Src/DebugTools/Src/main/rotation_speed.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/rotation_speed.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2190,10 +2190,10 @@
<enable>true</enable>
<shortname>koef_Wout_filter_long</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<iq_type>iq</iq_type>
<return_type>iq_none</return_type>
<type>_iq</type>
<file>Src/DebugTools/Src/main/rotation_speed.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/rotation_speed.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2202,10 +2202,10 @@
<enable>true</enable>
<shortname>koeff_Fs_filter</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>long</type>
<file>Src/DebugTools/Src/VectorControl/pwm_vector_regul.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/VectorControl/pwm_vector_regul.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2214,10 +2214,10 @@
<enable>true</enable>
<shortname>koeff_Idq_filter</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>long</type>
<file>Src/DebugTools/Src/VectorControl/pwm_vector_regul.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/VectorControl/pwm_vector_regul.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2226,10 +2226,10 @@
<enable>true</enable>
<shortname>koeff_Iq_filter</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<iq_type>iq</iq_type>
<return_type>iq_none</return_type>
<type>_iq</type>
<file>Src/DebugTools/Src/VectorControl/regul_power.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/VectorControl/regul_power.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2238,10 +2238,10 @@
<enable>true</enable>
<shortname>koeff_Iq_filter_slow</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>long</type>
<file>Src/DebugTools/Src/VectorControl/pwm_vector_regul.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/VectorControl/pwm_vector_regul.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2250,10 +2250,10 @@
<enable>true</enable>
<shortname>koeff_Ud_filter</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>long</type>
<file>Src/DebugTools/Src/VectorControl/pwm_vector_regul.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/VectorControl/pwm_vector_regul.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2262,10 +2262,10 @@
<enable>true</enable>
<shortname>koeff_Uq_filter</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>long</type>
<file>Src/DebugTools/Src/VectorControl/pwm_vector_regul.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/VectorControl/pwm_vector_regul.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2274,22 +2274,22 @@
<enable>true</enable>
<shortname>kom</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/myLibs/bender.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/bender.c</file>
<extern>false</extern>
<static>True</static>
<static>true</static>
</var>
<var name="length">
<show_var>false</show_var>
<enable>true</enable>
<shortname>length</shortname>
<pt_type>pt_uint32</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>volatile unsigned long</type>
<file>Src/DebugTools/Src/myXilinx/xPeriphSP6_loader.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/xPeriphSP6_loader.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2298,10 +2298,10 @@
<enable>true</enable>
<shortname>level_on_off_break</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<iq_type>iq</iq_type>
<return_type>iq_none</return_type>
<type>_iq[13][2]</type>
<file>Src/DebugTools/Src/main/break_tools.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/break_tools.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2310,10 +2310,10 @@
<enable>true</enable>
<shortname>log_can</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>logcan_TypeDef</type>
<file>Src/DebugTools/Src/myLibs/log_can.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/log_can.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2322,10 +2322,10 @@
<enable>true</enable>
<shortname>log_can_setup</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>LOG_CAN_SETUP</type>
<file>Src/DebugTools/Src/myLibs/CAN_Setup.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/CAN_Setup.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2334,10 +2334,10 @@
<enable>true</enable>
<shortname>log_params</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>TYPE_LOG_PARAMS</type>
<file>Src/DebugTools/Src/myLibs/log_params.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/log_params.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2346,10 +2346,10 @@
<enable>true</enable>
<shortname>logbuf_sync1</shortname>
<pt_type>pt_arr_int32</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>long[10]</type>
<file>Src/DebugTools/Src/main/sync_tools.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/sync_tools.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2358,10 +2358,10 @@
<enable>true</enable>
<shortname>logpar</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>LOGSPARAMS</type>
<file>Src/DebugTools/Src/myLibs/log_to_memory.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/log_to_memory.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2370,34 +2370,34 @@
<enable>true</enable>
<shortname>mPWM_a</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/main/PWMTMSHandle.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/PWMTMSHandle.c</file>
<extern>false</extern>
<static>True</static>
<static>true</static>
</var>
<var name="mPWM_b">
<show_var>false</show_var>
<enable>true</enable>
<shortname>mPWM_b</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/main/PWMTMSHandle.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/PWMTMSHandle.c</file>
<extern>false</extern>
<static>True</static>
<static>true</static>
</var>
<var name="m_PWM">
<show_var>false</show_var>
<enable>true</enable>
<shortname>m_PWM</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/main/PWMTMSHandle.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/PWMTMSHandle.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2406,10 +2406,10 @@
<enable>true</enable>
<shortname>mailboxs_can_setup</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>MAILBOXS_CAN_SETUP</type>
<file>Src/DebugTools/Src/myLibs/CAN_Setup.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/CAN_Setup.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2418,10 +2418,10 @@
<enable>true</enable>
<shortname>manufactorerAndProductID</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/myXilinx/xPeriphSP6_loader.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/xPeriphSP6_loader.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2430,10 +2430,10 @@
<enable>true</enable>
<shortname>modbus_table_can_in</shortname>
<pt_type>pt_ptr_union</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>MODBUS_REG_STRUCT *</type>
<file>Src/DebugTools/Src/myLibs/modbus_table.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/modbus_table.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2442,10 +2442,10 @@
<enable>true</enable>
<shortname>modbus_table_can_out</shortname>
<pt_type>pt_ptr_union</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>MODBUS_REG_STRUCT *</type>
<file>Src/DebugTools/Src/myLibs/modbus_table.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/modbus_table.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2454,10 +2454,10 @@
<enable>true</enable>
<shortname>modbus_table_in</shortname>
<pt_type>pt_arr_union</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>MODBUS_REG_STRUCT[450]</type>
<file>Src/DebugTools/Src/myLibs/modbus_table.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/modbus_table.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2466,10 +2466,10 @@
<enable>true</enable>
<shortname>modbus_table_out</shortname>
<pt_type>pt_arr_union</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>MODBUS_REG_STRUCT[450]</type>
<file>Src/DebugTools/Src/myLibs/modbus_table.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/modbus_table.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2478,10 +2478,10 @@
<enable>true</enable>
<shortname>modbus_table_rs_in</shortname>
<pt_type>pt_ptr_union</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>MODBUS_REG_STRUCT *</type>
<file>Src/DebugTools/Src/myLibs/modbus_table.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/modbus_table.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2490,10 +2490,10 @@
<enable>true</enable>
<shortname>modbus_table_rs_out</shortname>
<pt_type>pt_ptr_union</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>MODBUS_REG_STRUCT *</type>
<file>Src/DebugTools/Src/myLibs/modbus_table.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/modbus_table.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2502,10 +2502,10 @@
<enable>true</enable>
<shortname>modbus_table_test</shortname>
<pt_type>pt_arr_union</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>MODBUS_REG_STRUCT[450]</type>
<file>Src/DebugTools/Src/myLibs/modbus_table.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/modbus_table.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2514,10 +2514,10 @@
<enable>true</enable>
<shortname>mpu_can_setup</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>MPU_CAN_SETUP</type>
<file>Src/DebugTools/Src/myLibs/CAN_Setup.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/CAN_Setup.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2526,106 +2526,106 @@
<enable>true</enable>
<shortname>mzz_limit_100</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/myLibs/modbus_read_table.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/modbus_read_table.c</file>
<extern>false</extern>
<static>True</static>
<static>true</static>
</var>
<var name="mzz_limit_1000">
<show_var>false</show_var>
<enable>true</enable>
<shortname>mzz_limit_1000</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/myLibs/modbus_read_table.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/modbus_read_table.c</file>
<extern>false</extern>
<static>True</static>
<static>true</static>
</var>
<var name="mzz_limit_1100">
<show_var>false</show_var>
<enable>true</enable>
<shortname>mzz_limit_1100</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/myLibs/modbus_read_table.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/modbus_read_table.c</file>
<extern>false</extern>
<static>True</static>
<static>true</static>
</var>
<var name="mzz_limit_1200">
<show_var>false</show_var>
<enable>true</enable>
<shortname>mzz_limit_1200</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/myLibs/modbus_read_table.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/modbus_read_table.c</file>
<extern>false</extern>
<static>True</static>
<static>true</static>
</var>
<var name="mzz_limit_1400">
<show_var>false</show_var>
<enable>true</enable>
<shortname>mzz_limit_1400</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/myLibs/modbus_read_table.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/modbus_read_table.c</file>
<extern>false</extern>
<static>True</static>
<static>true</static>
</var>
<var name="mzz_limit_1500">
<show_var>false</show_var>
<enable>true</enable>
<shortname>mzz_limit_1500</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/myLibs/modbus_read_table.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/modbus_read_table.c</file>
<extern>false</extern>
<static>True</static>
<static>true</static>
</var>
<var name="mzz_limit_2000">
<show_var>false</show_var>
<enable>true</enable>
<shortname>mzz_limit_2000</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/myLibs/modbus_read_table.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/modbus_read_table.c</file>
<extern>false</extern>
<static>True</static>
<static>true</static>
</var>
<var name="mzz_limit_500">
<show_var>false</show_var>
<enable>true</enable>
<shortname>mzz_limit_500</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/myLibs/modbus_read_table.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/modbus_read_table.c</file>
<extern>false</extern>
<static>True</static>
<static>true</static>
</var>
<var name="new_cycle_fifo">
<show_var>false</show_var>
<enable>true</enable>
<shortname>new_cycle_fifo</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>NEW_CYCLE_FIFO</type>
<file>Src/DebugTools/Src/myLibs/CAN_Setup.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/CAN_Setup.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2634,10 +2634,10 @@
<enable>true</enable>
<shortname>no_write</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/myLibs/log_to_memory.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/log_to_memory.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2646,10 +2646,10 @@
<enable>true</enable>
<shortname>no_write_slow</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/myLibs/log_to_memory.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/log_to_memory.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2658,10 +2658,10 @@
<enable>true</enable>
<shortname>number_modbus_table_changed</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/myLibs/modbus_fill_table.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/modbus_fill_table.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2670,10 +2670,10 @@
<enable>true</enable>
<shortname>optical_read_data</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>OPTICAL_BUS_DATA</type>
<file>Src/DebugTools/Src/main/optical_bus.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/optical_bus.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2682,10 +2682,10 @@
<enable>true</enable>
<shortname>optical_write_data</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>OPTICAL_BUS_DATA</type>
<file>Src/DebugTools/Src/main/optical_bus.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/optical_bus.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2694,10 +2694,10 @@
<enable>true</enable>
<shortname>options_controller</shortname>
<pt_type>pt_arr_union</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>MODBUS_REG_STRUCT[200]</type>
<file>Src/DebugTools/Src/myXilinx/RS_Functions_modbus.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/RS_Functions_modbus.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2706,10 +2706,10 @@
<enable>true</enable>
<shortname>pidCur_Ki</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<iq_type>iq</iq_type>
<return_type>iq_none</return_type>
<type>_iq</type>
<file>Src/DebugTools/Src/main/v_pwm24.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/v_pwm24.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2718,10 +2718,10 @@
<enable>true</enable>
<shortname>pidD</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>PIDREG3</type>
<file>Src/DebugTools/Src/VectorControl/pwm_vector_regul.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/VectorControl/pwm_vector_regul.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2730,10 +2730,10 @@
<enable>true</enable>
<shortname>pidD2</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>PIDREG3</type>
<file>Src/DebugTools/Src/VectorControl/pwm_vector_regul.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/VectorControl/pwm_vector_regul.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2742,10 +2742,10 @@
<enable>true</enable>
<shortname>pidFvect</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>PIDREG3</type>
<file>Src/DebugTools/Src/VectorControl/regul_turns.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/VectorControl/regul_turns.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2754,10 +2754,10 @@
<enable>true</enable>
<shortname>pidFvectKi_test</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/main/message2.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/message2.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2766,10 +2766,10 @@
<enable>true</enable>
<shortname>pidFvectKp_test</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/main/message2.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/message2.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2778,10 +2778,10 @@
<enable>true</enable>
<shortname>pidPvect</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>PIDREG3</type>
<file>Src/DebugTools/Src/VectorControl/regul_power.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/VectorControl/regul_power.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2790,10 +2790,10 @@
<enable>true</enable>
<shortname>pidQ</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>PIDREG3</type>
<file>Src/DebugTools/Src/VectorControl/pwm_vector_regul.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/VectorControl/pwm_vector_regul.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2802,10 +2802,10 @@
<enable>true</enable>
<shortname>pidQ2</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>PIDREG3</type>
<file>Src/DebugTools/Src/VectorControl/pwm_vector_regul.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/VectorControl/pwm_vector_regul.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2814,10 +2814,10 @@
<enable>true</enable>
<shortname>pidReg_koeffs</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>PIDREG_KOEFFICIENTS</type>
<file>Src/DebugTools/Src/VectorControl/pwm_vector_regul.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/VectorControl/pwm_vector_regul.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2826,10 +2826,10 @@
<enable>true</enable>
<shortname>pidTetta</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>PIDREG3</type>
<file>Src/DebugTools/Src/VectorControl/teta_calc.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/VectorControl/teta_calc.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2838,10 +2838,10 @@
<enable>true</enable>
<shortname>power_ratio</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>POWER_RATIO</type>
<file>Src/DebugTools/Src/myLibs/modbus_read_table.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/modbus_read_table.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2850,10 +2850,10 @@
<enable>true</enable>
<shortname>prev_flag_buf</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/main/rotation_speed.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/rotation_speed.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2862,10 +2862,10 @@
<enable>true</enable>
<shortname>prev_status_received</shortname>
<pt_type>pt_uint16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>unsigned int</type>
<file>Src/DebugTools/Src/myLibs/log_can.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/log_can.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2874,10 +2874,10 @@
<enable>true</enable>
<shortname>project</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>T_project</type>
<file>Src/DebugTools/Src/myXilinx/xp_project.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/xp_project.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2886,10 +2886,10 @@
<enable>true</enable>
<shortname>pwmd</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>PWMGEND</type>
<file>Src/DebugTools/Src/main/PWMTMSHandle.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/PWMTMSHandle.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2898,10 +2898,10 @@
<enable>true</enable>
<shortname>r_c_sbus</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>T_controller_read</type>
<file>Src/DebugTools/Src/myXilinx/x_serial_bus.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/x_serial_bus.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2910,10 +2910,10 @@
<enable>true</enable>
<shortname>r_controller</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>T_controller_read</type>
<file>Src/DebugTools/Src/myXilinx/xp_hwp.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/xp_hwp.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2922,10 +2922,10 @@
<enable>true</enable>
<shortname>refo</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>FIFO</type>
<file>Src/DebugTools/Src/myLibs/CAN_Setup.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/CAN_Setup.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2934,10 +2934,10 @@
<enable>true</enable>
<shortname>reply</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>TMS_TO_TERMINAL_STRUCT</type>
<file>Src/DebugTools/Src/myXilinx/RS_Functions_modbus.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/RS_Functions_modbus.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2946,10 +2946,10 @@
<enable>true</enable>
<shortname>reply_test_all</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>TMS_TO_TERMINAL_TEST_ALL_STRUCT</type>
<file>Src/DebugTools/Src/myXilinx/RS_Functions_modbus.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/RS_Functions_modbus.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2958,10 +2958,10 @@
<enable>true</enable>
<shortname>return_var</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>long</type>
<file>Src/DebugTools/Src/main/Main.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/Main.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2970,10 +2970,10 @@
<enable>true</enable>
<shortname>rmp_freq</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>RMP_MY1</type>
<file>Src/DebugTools/Src/main/PWMTools.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/PWMTools.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2982,10 +2982,10 @@
<enable>true</enable>
<shortname>rmp_wrot</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>RMP_MY1</type>
<file>Src/DebugTools/Src/main/rotation_speed.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/rotation_speed.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -2994,10 +2994,10 @@
<enable>true</enable>
<shortname>rotation_sensor</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>T_rotation_sensor</type>
<file>Src/DebugTools/Src/myXilinx/xp_rotation_sensor.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/xp_rotation_sensor.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -3006,10 +3006,10 @@
<enable>true</enable>
<shortname>rotor</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>ROTOR_VALUE</type>
<file>Src/DebugTools/Src/main/rotation_speed.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/rotation_speed.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -3018,10 +3018,10 @@
<enable>true</enable>
<shortname>rs_a</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>RS_DATA_STRUCT</type>
<file>Src/DebugTools/Src/myXilinx/RS_Functions.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/RS_Functions.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -3030,10 +3030,10 @@
<enable>true</enable>
<shortname>rs_b</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>RS_DATA_STRUCT</type>
<file>Src/DebugTools/Src/myXilinx/RS_Functions.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/RS_Functions.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -3042,10 +3042,10 @@
<enable>true</enable>
<shortname>sincronisationFault</shortname>
<pt_type>pt_uint16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>unsigned int</type>
<file>Src/DebugTools/Src/myLibs/modbus_read_table.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/modbus_read_table.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -3054,10 +3054,10 @@
<enable>true</enable>
<shortname>size_cmd15</shortname>
<pt_type>pt_int8</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>char</type>
<file>Src/DebugTools/Src/myXilinx/RS_Functions.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/RS_Functions.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -3066,10 +3066,10 @@
<enable>true</enable>
<shortname>size_cmd16</shortname>
<pt_type>pt_int8</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>char</type>
<file>Src/DebugTools/Src/myXilinx/RS_Functions.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/RS_Functions.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -3078,10 +3078,10 @@
<enable>true</enable>
<shortname>size_fast_done</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/myLibs/log_to_memory.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/log_to_memory.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -3090,10 +3090,10 @@
<enable>true</enable>
<shortname>size_slow_done</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/myLibs/log_to_memory.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/log_to_memory.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -3102,10 +3102,10 @@
<enable>true</enable>
<shortname>stop_log</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/myLibs/log_to_memory.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/log_to_memory.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -3114,10 +3114,10 @@
<enable>true</enable>
<shortname>stop_log_slow</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/myLibs/log_to_memory.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/log_to_memory.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -3126,10 +3126,10 @@
<enable>true</enable>
<shortname>svgen_dq_1</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>SVGENDQ</type>
<file>Src/DebugTools/Src/main/v_pwm24.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/v_pwm24.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -3138,10 +3138,10 @@
<enable>true</enable>
<shortname>svgen_dq_2</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>SVGENDQ</type>
<file>Src/DebugTools/Src/main/v_pwm24.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/v_pwm24.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -3150,10 +3150,10 @@
<enable>true</enable>
<shortname>svgen_pwm24_1</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>SVGEN_PWM24</type>
<file>Src/DebugTools/Src/main/v_pwm24.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/v_pwm24.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -3162,10 +3162,10 @@
<enable>true</enable>
<shortname>svgen_pwm24_2</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>SVGEN_PWM24</type>
<file>Src/DebugTools/Src/main/v_pwm24.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/v_pwm24.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -3174,10 +3174,10 @@
<enable>true</enable>
<shortname>temp</shortname>
<pt_type>pt_uint16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>unsigned int</type>
<file>Src/DebugTools/Src/main/sync_tools.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/sync_tools.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -3186,10 +3186,10 @@
<enable>true</enable>
<shortname>temperature_limit_koeff</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<iq_type>iq</iq_type>
<return_type>iq_none</return_type>
<type>_iq</type>
<file>Src/DebugTools/Src/main/errors_temperature.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/errors_temperature.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -3198,10 +3198,10 @@
<enable>true</enable>
<shortname>temperature_warning_BI1</shortname>
<pt_type>pt_union</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>INVERTER_TEMPERATURES</type>
<file>Src/DebugTools/Src/main/errors.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/errors.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -3210,10 +3210,10 @@
<enable>true</enable>
<shortname>temperature_warning_BI2</shortname>
<pt_type>pt_union</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>INVERTER_TEMPERATURES</type>
<file>Src/DebugTools/Src/main/errors.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/errors.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -3222,10 +3222,10 @@
<enable>true</enable>
<shortname>temperature_warning_BV1</shortname>
<pt_type>pt_union</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>RECTIFIER_TEMPERATURES</type>
<file>Src/DebugTools/Src/main/errors.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/errors.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -3234,10 +3234,10 @@
<enable>true</enable>
<shortname>temperature_warning_BV2</shortname>
<pt_type>pt_union</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>RECTIFIER_TEMPERATURES</type>
<file>Src/DebugTools/Src/main/errors.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/errors.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -3246,10 +3246,10 @@
<enable>true</enable>
<shortname>terminal_can_setup</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>TERMINAL_CAN_SETUP</type>
<file>Src/DebugTools/Src/myLibs/CAN_Setup.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/CAN_Setup.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -3258,10 +3258,10 @@
<enable>true</enable>
<shortname>tetta_calc</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>TETTA_CALC</type>
<file>Src/DebugTools/Src/VectorControl/teta_calc.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/VectorControl/teta_calc.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -3270,10 +3270,10 @@
<enable>true</enable>
<shortname>timCNT_alg</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/myXilinx/Spartan2E_Functions.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/Spartan2E_Functions.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -3282,10 +3282,10 @@
<enable>true</enable>
<shortname>timCNT_prev</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/myXilinx/Spartan2E_Functions.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/Spartan2E_Functions.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -3294,10 +3294,10 @@
<enable>true</enable>
<shortname>time</shortname>
<pt_type>pt_uint16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>unsigned int</type>
<file>Src/DebugTools/Src/myXilinx/Spartan2E_Functions.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/Spartan2E_Functions.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -3306,34 +3306,34 @@
<enable>true</enable>
<shortname>timePauseBENDER_Messages</shortname>
<pt_type>pt_uint16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>unsigned int</type>
<file>Src/DebugTools/Src/main/main22220.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/main22220.c</file>
<extern>false</extern>
<static>True</static>
<static>true</static>
</var>
<var name="timePauseCAN_Messages">
<show_var>false</show_var>
<enable>true</enable>
<shortname>timePauseCAN_Messages</shortname>
<pt_type>pt_uint16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>unsigned int</type>
<file>Src/DebugTools/Src/main/main22220.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/main22220.c</file>
<extern>false</extern>
<static>True</static>
<static>true</static>
</var>
<var name="time_alg">
<show_var>false</show_var>
<enable>true</enable>
<shortname>time_alg</shortname>
<pt_type>pt_float</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>float</type>
<file>Src/DebugTools/Src/myXilinx/Spartan2E_Functions.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/Spartan2E_Functions.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -3342,10 +3342,10 @@
<enable>true</enable>
<shortname>time_pause_enable_can_from_mpu</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>long</type>
<file>Src/DebugTools/Src/myLibs/CAN_Setup.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/CAN_Setup.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -3354,10 +3354,10 @@
<enable>true</enable>
<shortname>time_pause_enable_can_from_terminal</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>long</type>
<file>Src/DebugTools/Src/myLibs/CAN_Setup.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/CAN_Setup.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -3366,10 +3366,10 @@
<enable>true</enable>
<shortname>time_pause_logs</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/myLibs/log_can.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/log_can.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -3378,10 +3378,10 @@
<enable>true</enable>
<shortname>time_pause_titles</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int</type>
<file>Src/DebugTools/Src/myLibs/log_can.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/log_can.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -3390,10 +3390,10 @@
<enable>true</enable>
<shortname>tryNumb</shortname>
<pt_type>pt_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>volatile int</type>
<file>Src/DebugTools/Src/myXilinx/xPeriphSP6_loader.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/xPeriphSP6_loader.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -3402,10 +3402,10 @@
<enable>true</enable>
<shortname>unites_can_setup</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>UNITES_CAN_SETUP</type>
<file>Src/DebugTools/Src/myLibs/CAN_Setup.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/CAN_Setup.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -3414,10 +3414,10 @@
<enable>true</enable>
<shortname>var_numb</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>long</type>
<file>Src/DebugTools/Src/main/Main.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/Main.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -3426,10 +3426,10 @@
<enable>true</enable>
<shortname>vect_control</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>VECTOR_CONTROL</type>
<file>Src/DebugTools/Src/VectorControl/pwm_vector_regul.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/VectorControl/pwm_vector_regul.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -3438,10 +3438,10 @@
<enable>true</enable>
<shortname>water_cooler</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>WaterCooler</type>
<file>Src/DebugTools/Src/myLibs/can_watercool.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/can_watercool.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -3450,10 +3450,10 @@
<enable>true</enable>
<shortname>winding_displacement</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<iq_type>iq</iq_type>
<return_type>iq_none</return_type>
<type>_iq</type>
<file>Src/DebugTools/Src/main/v_pwm24.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/v_pwm24.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -3462,10 +3462,10 @@
<enable>true</enable>
<shortname>word</shortname>
<pt_type>pt_union</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>Word</type>
<file>Src/DebugTools/Src/myXilinx/xPeriphSP6_loader.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/xPeriphSP6_loader.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -3474,10 +3474,10 @@
<enable>true</enable>
<shortname>wordReversed</shortname>
<pt_type>pt_union</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>WordReversed</type>
<file>Src/DebugTools/Src/myXilinx/xPeriphSP6_loader.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/xPeriphSP6_loader.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -3486,10 +3486,10 @@
<enable>true</enable>
<shortname>wordToReverse</shortname>
<pt_type>pt_union</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>WordToReverse</type>
<file>Src/DebugTools/Src/myXilinx/xPeriphSP6_loader.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/xPeriphSP6_loader.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -3498,10 +3498,10 @@
<enable>true</enable>
<shortname>x_parallel_bus_project</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>X_PARALLEL_BUS</type>
<file>Src/DebugTools/Src/myXilinx/x_parallel_bus.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/x_parallel_bus.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -3510,10 +3510,10 @@
<enable>true</enable>
<shortname>x_serial_bus_project</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>X_SERIAL_BUS</type>
<file>Src/DebugTools/Src/myXilinx/x_serial_bus.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/x_serial_bus.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -3522,10 +3522,10 @@
<enable>true</enable>
<shortname>xeeprom_controll_fast</shortname>
<pt_type>pt_uint16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>unsigned int</type>
<file>Src/DebugTools/Src/myXilinx/Spartan2E_Functions.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/Spartan2E_Functions.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -3534,10 +3534,10 @@
<enable>true</enable>
<shortname>xeeprom_controll_store</shortname>
<pt_type>pt_uint16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>unsigned int</type>
<file>Src/DebugTools/Src/myXilinx/Spartan2E_Functions.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/Spartan2E_Functions.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -3546,10 +3546,10 @@
<enable>true</enable>
<shortname>xpwm_time</shortname>
<pt_type>pt_struct</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>XPWM_TIME</type>
<file>Src/DebugTools/Src/myXilinx/xp_write_xpwm_time.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myXilinx/xp_write_xpwm_time.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -3558,10 +3558,10 @@
<enable>true</enable>
<shortname>zadan_Id_min</shortname>
<pt_type>pt_int32</pt_type>
<iq_type>t_iq</iq_type>
<return_type>int</return_type>
<iq_type>iq</iq_type>
<return_type>iq_none</return_type>
<type>_iq</type>
<file>Src/DebugTools/Src/VectorControl/pwm_vector_regul.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/VectorControl/pwm_vector_regul.c</file>
<extern>false</extern>
<static>false</static>
</var>
@@ -3570,78 +3570,54 @@
<enable>true</enable>
<shortname>zero_ADC</shortname>
<pt_type>pt_arr_int16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>int</return_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>int[20]</type>
<file>Src/DebugTools/Src/main/adc_tools.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/main/adc_tools.c</file>
<extern>false</extern>
<static>false</static>
</var>
<var name="Bender.KOhms">
<show_var>false</show_var>
<show_var>true</show_var>
<enable>true</enable>
<shortname>Bender.KOhms</shortname>
<pt_type>pt_uint16</pt_type>
<iq_type>t_iq_none</iq_type>
<iq_type>iq_none</iq_type>
<return_type>iq_none</return_type>
<type>unsigned int</type>
<file>Src/DebugTools/Src/myLibs/bender.c</file>
<extern>false</extern>
<static>false</static>
</var>
<var name="Bender.Times">
<show_var>false</show_var>
<enable>true</enable>
<shortname>Bender.Times</shortname>
<pt_type>pt_uint16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>iq_none</return_type>
<type>unsigned int</type>
<file>Src/DebugTools/Src/myLibs/bender.c</file>
<extern>false</extern>
<static>false</static>
</var>
<var name="project.cds_tk.plane_address">
<show_var>false</show_var>
<enable>false</enable>
<shortname>project.cds_tk.plane_address</shortname>
<pt_type>pt_uint16</pt_type>
<iq_type>t_iq_none</iq_type>
<return_type>iq_none</return_type>
<type>UInt16</type>
<file>Src/DebugTools/Src/myXilinx/xp_project.c</file>
<file>Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/DebugTools/Src/myLibs/bender.c</file>
<extern>false</extern>
<static>false</static>
</var>
</variables>
<includes>
<file>Src/myXilinx/xp_project.h</file>
<file>Src/myXilinx/RS_Functions_modbus.h</file>
<file>Src/main/vector.h</file>
<file>Src/main/errors.h</file>
<file>Src/myXilinx/RS_Functions_modbus.h</file>
<file>Src/main/adc_tools.h</file>
<file>Src/VectorControl/pwm_vector_regul.h</file>
<file>Src/myXilinx/xp_write_xpwm_time.h</file>
<file>Src/myLibs/log_can.h</file>
<file>Src/main/f281xpwm.h</file>
<file>Src/main/errors.h</file>
<file>Src/main/v_pwm24.h</file>
<file>Src/main/f281xpwm.h</file>
<file>Src/myXilinx/xp_project.h</file>
<file>Src/main/rotation_speed.h</file>
<file>Src/VectorControl/teta_calc.h</file>
<file>Src/VectorControl/dq_to_alphabeta_cos.h</file>
<file>Src/myXilinx/xp_controller.h</file>
<file>Src/myXilinx/x_parallel_bus.h</file>
<file>Src/myXilinx/xp_rotation_sensor.h</file>
<file>Src/myXilinx/xPeriphSP6_loader.h</file>
<file>Src/myXilinx/Spartan2E_Functions.h</file>
<file>Src/myXilinx/x_serial_bus.h</file>
<file>Src/myXilinx/xp_write_xpwm_time.h</file>
<file>Src/myLibs/log_can.h</file>
<file>Src/VectorControl/pwm_vector_regul.h</file>
<file>Src/myXilinx/RS_Functions.h</file>
<file>Src/myLibs/detect_phase_break2.h</file>
<file>Src/myLibs/svgen_dq.h</file>
<file>Src/myXilinx/x_parallel_bus.h</file>
<file>Src/myXilinx/Spartan2E_Functions.h</file>
<file>Src/myXilinx/x_serial_bus.h</file>
<file>Src/myXilinx/xp_controller.h</file>
<file>Src/myXilinx/xp_rotation_sensor.h</file>
<file>Src/myXilinx/xPeriphSP6_loader.h</file>
<file>Src/myLibs/log_to_memory.h</file>
<file>Src/myLibs/log_params.h</file>
<file>Src/main/global_time.h</file>
<file>Src/myLibs/CAN_Setup.h</file>
<file>Src/myLibs/log_params.h</file>
<file>Src/myXilinx/CRC_Functions.h</file>
<file>Src/myLibs/svgen_dq.h</file>
<file>Src/myLibs/pid_reg3.h</file>
<file>Src/myLibs/IQmathLib.h</file>
<file>Src/main/doors_control.h</file>
@@ -4721,4 +4697,4 @@
<file>Src/main/adc_tools.c</file>
</var>
</externs>
</analysis>
</analysis>