readout_program/doc_builder/renderers/render_ids_exc_map.py

9 lines
288 B
Python
Raw Normal View History

2026-07-28 12:34:12 +08:00
"""EXC 通道模块基地址表渲染器。"""
from render_ids import _load_ids, render_mapping_exc_table
def render(filepath):
"""返回 EXC 通道模块基地址 HTML 表格(不含标题和描述)。"""
data = _load_ids(filepath)
return render_mapping_exc_table(data)