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

Function print_defines

ci/util/build_info_analyzer.py:349–355  ·  view source on GitHub ↗

Print platform defines in a formatted way.

(defines: list[str], board_name: str)

Source from the content-addressed store, hash-verified

347
348
349def print_defines(defines: list[str], board_name: str):
350 """Print platform defines in a formatted way."""
351 print(f"\n📋 Platform Defines for {board_name.upper()}:")
352 print("=" * 50)
353 for define in defines:
354 print(f" {define}")
355 print(f"\nTotal: {len(defines)} defines")
356
357
358def print_compiler_info(compiler_info: CompilerInfo, board_name: str):

Callers 1

mainFunction · 0.85

Calls 1

printFunction · 0.50

Tested by

no test coverage detected