Get path to merged binary if it exists. Args: example: Example name (unused but kept for API consistency) Returns: Path to merged.bin if it exists, None otherwise
(self, example: str)
| 1387 | return self.build_dir / ".pio" / "build" / env_name |
| 1388 | |
| 1389 | def get_merged_bin_path(self, example: str) -> Optional[Path]: |
| 1390 | """Get path to merged binary if it exists. |
| 1391 | |
| 1392 | Args: |
| 1393 | example: Example name (unused but kept for API consistency) |
| 1394 | |
| 1395 | Returns: |
| 1396 | Path to merged.bin if it exists, None otherwise |
| 1397 | """ |
| 1398 | merged_bin = self._artifacts_dir(self.board.board_name) / "merged.bin" |
| 1399 | return merged_bin if merged_bin.exists() else None |
| 1400 | |
| 1401 | def build_with_merged_bin( |
| 1402 | self, example: str, output_path: Optional[Path] = None |
nothing calls this directly
no test coverage detected