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

Method supports_merged_bin

ci/compiler/pio.py:1369–1378  ·  view source on GitHub ↗

Check if board supports merged binary generation. Returns: True if the board platform supports merged binary generation

(self)

Source from the content-addressed store, hash-verified

1367 return False
1368
1369 def supports_merged_bin(self) -> bool:
1370 """Check if board supports merged binary generation.
1371
1372 Returns:
1373 True if the board platform supports merged binary generation
1374 """
1375 supported_platforms = ["espressif32", "espressif8266"]
1376 return any(
1377 plat in str(self.board.platform).lower() for plat in supported_platforms
1378 )
1379
1380 def _artifacts_dir(self, env_name: str) -> Path:
1381 # fbuild emits artifacts (firmware.*, bootloader.bin, partitions.bin,

Callers 4

compile_board_examplesFunction · 0.95
build_with_merged_binMethod · 0.95
test_supports_merged_binFunction · 0.95

Calls 1

anyFunction · 0.85

Tested by 2

test_supports_merged_binFunction · 0.76