--scan's walk was unwalkable on POSIX: probe rates have no termios B-constant, so the first off-nominal probe raised out of the loop. The port speaks termios2 BOTHER now (red-proven on a pty at 9984 Bd), the probe's open lives inside the walk's error handling, an fd no longer leaks on an unmakeable rate, and the swallowed unknown-signature reply is named at timeout instead of reported as silence. CMakePresets.json's generator emits the submodule toolchain path it had drifted from — a hand edit on a generated file, exactly the class rule 10 exists for — and presets.generated gates the pair from here on (the marker CMake rejects at the presets root stayed out; the check is the guard). The over-slot image guard the tsb runner gained reaches the pureboot runner too; the GPIO bridge's delivery comment states the hardware truth (RXC at the stop bit's sampling point); the hardware suite gains the scan check — the one place the rate physics is real; and the libavr pin advances over both audit rounds. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
104 lines
3.7 KiB
Python
Executable File
104 lines
3.7 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
"""Regenerate CMakePresets.json — one uniform pipeline per chip.
|
|
|
|
Every chip gets generated-mode configure/build/test presets and a workflow
|
|
running all three. Reflect-mode presets (configure + build, no tests — the
|
|
port's TUs compile identically; the sims prove nothing new there) exist for
|
|
libavr's reflect spot set only, mirroring its rule: the full reflect matrix
|
|
is never built, one chip per hardware class and pack vintage is.
|
|
|
|
Run from the repo root: tools/make_presets.py — or with --check, which
|
|
verifies the committed file matches this generator and edits nothing (the
|
|
ctest entry `presets.generated` runs that, so drift reds the gate).
|
|
"""
|
|
|
|
import json
|
|
import os
|
|
import sys
|
|
|
|
CHIPS = [
|
|
"attiny13", "attiny13a", "attiny25", "attiny45", "attiny85",
|
|
"atmega8", "atmega8a", "atmega16", "atmega16a", "atmega32", "atmega32a",
|
|
"atmega48", "atmega48a", "atmega48p", "atmega48pa",
|
|
"atmega88", "atmega88a", "atmega88p", "atmega88pa",
|
|
"atmega168", "atmega168a", "atmega168p", "atmega168pa",
|
|
"atmega328", "atmega328p",
|
|
"atmega164a", "atmega164p", "atmega164pa",
|
|
"atmega324a", "atmega324p", "atmega324pa",
|
|
"atmega644", "atmega644a", "atmega644p", "atmega644pa",
|
|
"atmega1284", "atmega1284p",
|
|
]
|
|
|
|
# libavr's REFLECT_SPOT (tools/check.sh): one chip per hardware class and
|
|
# pack vintage.
|
|
REFLECT_SPOT = [
|
|
"attiny13a", "attiny85", "atmega8", "atmega16a", "atmega32a",
|
|
"atmega48pa", "atmega88", "atmega168pa", "atmega328p", "atmega164a",
|
|
"atmega644p", "atmega1284",
|
|
]
|
|
|
|
|
|
def main():
|
|
configure = [{
|
|
"name": "base",
|
|
"hidden": True,
|
|
"generator": "Ninja",
|
|
"binaryDir": "${sourceDir}/build/${presetName}",
|
|
"toolchainFile": "${sourceDir}/libavr/cmake/avr-toolchain.cmake",
|
|
"cacheVariables": {
|
|
"CMAKE_BUILD_TYPE": "Release",
|
|
"CMAKE_EXPORT_COMPILE_COMMANDS": "ON",
|
|
"CMAKE_COLOR_DIAGNOSTICS": "ON",
|
|
},
|
|
}]
|
|
build, test, workflows = [], [], []
|
|
|
|
def add(chip, mode):
|
|
name = f"{chip}-{mode}"
|
|
configure.append({
|
|
"name": name,
|
|
"inherits": "base",
|
|
"cacheVariables": {
|
|
"LIBAVR_MCU": chip,
|
|
"LIBAVR_REFLECT": "ON" if mode == "reflect" else "OFF",
|
|
},
|
|
})
|
|
build.append({"name": name, "configurePreset": name})
|
|
steps = [{"type": "configure", "name": name}, {"type": "build", "name": name}]
|
|
if mode == "generated":
|
|
test.append({"name": name, "configurePreset": name, "output": {"outputOnFailure": True}})
|
|
steps.append({"type": "test", "name": name})
|
|
workflows.append({"name": name, "steps": steps})
|
|
|
|
for chip in CHIPS:
|
|
add(chip, "generated")
|
|
for chip in REFLECT_SPOT:
|
|
add(chip, "reflect")
|
|
|
|
# CMake rejects unknown fields in the presets root, $comment included, so
|
|
# the file cannot carry a generated-file marker; the --check ctest is the
|
|
# whole of rule 10's guard here.
|
|
presets = {
|
|
"version": 8,
|
|
"configurePresets": configure,
|
|
"buildPresets": build,
|
|
"testPresets": test,
|
|
"workflowPresets": workflows,
|
|
}
|
|
rendered = json.dumps(presets, indent=1) + "\n"
|
|
path = os.path.join(os.path.dirname(os.path.abspath(__file__)), "..", "CMakePresets.json")
|
|
if "--check" in sys.argv[1:]:
|
|
current = open(path).read() if os.path.exists(path) else ""
|
|
if current != rendered:
|
|
print("CMakePresets.json does not match its generator — run tools/make_presets.py")
|
|
return 1
|
|
return 0
|
|
with open(path, "w") as f:
|
|
f.write(rendered)
|
|
print(f"{len(CHIPS)} chips, {len(REFLECT_SPOT)} reflect: {os.path.normpath(path)}")
|
|
return 0
|
|
|
|
|
|
if __name__ == "__main__":
|
|
sys.exit(main())
|