STM32G474RB firmware for solar buck converter with MPPT, CC control, Vfly compensation, and adaptive deadtime. Includes Textual TUI debug console for real-time telemetry, parameter tuning, and SQLite logging. Added pyproject.toml for uv: `cd code64 && uv run debug-console` Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
20 lines
417 B
TOML
20 lines
417 B
TOML
[project]
|
|
name = "lvsolar-debug-console"
|
|
version = "0.1.0"
|
|
description = "Debug console TUI for LVSolarBuck STM32 firmware"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"pyserial>=3.5",
|
|
"textual>=0.40.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
debug-console = "debug_console.__main__:main"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["debug_console"]
|