This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
"""DAQ_REG 寄存器表渲染器。"""
from render_ids import _load_ids, render_daq_reg_table
def render(filepath):
"""返回 DAQ_REG 寄存器汇总表 + 位域明细 HTML(不含标题和描述)。"""
data = _load_ids(filepath)
return render_daq_reg_table(data)