MCPcopy Create free account
hub / github.com/FastLED/FastLED / get_merged_bin_path

Method get_merged_bin_path

ci/compiler/pio.py:1389–1399  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

_artifacts_dirMethod · 0.95

Tested by

no test coverage detected