Check if board supports merged binary generation. Returns: True if the board platform supports merged binary generation
(self)
| 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, |