Lines Matching refs:path
147 def download_pin_tool_data(path: Path) -> None:
151 dst = path / "pin_tool"
164 def download_cmsis_pack(path: Path, family: str) -> None:
168 dst = path / "pack" / family
181 def parse_svd(peripherals, path: Path, family: str) -> None:
182 for svd_path in (path / "pack" / family / "SVD" / family.upper()).glob("*.svd"):
218 def parse_pin_tool(peripherals, path: Path, family: str):
219 …for pin_tool in (path / "pin_tool" / "platform" / "hwconf_data" / "pin_tool" / family).glob("*/POR…
248 def write_header(path: Path, family, peripherals: dict, abuses: list) -> None:
312 path.mkdir(parents=True, exist_ok=True)
313 (path / f"{family}-pinctrl.h").write_text("\n".join(lines))