feat(schematic): add TPS61088 5V-to-12V boost converter reference schematic

Python generator script produces a KiCad 9 schematic for the TPS61088
boost converter circuit (5V input, 12V/2A output) with feedback divider,
compensation network, bootstrap cap, and input/output filtering.
Includes a nix flake for the build environment.
This commit is contained in:
2026-04-20 13:15:28 -04:00
parent 9f00fe4a9b
commit e3873251b3
3 changed files with 2774 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
{
description = "KiCad schematic generator for TPS61088 boost converter";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
};
outputs = { self, nixpkgs }:
let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
in
{
devShells.${system}.default = pkgs.mkShell {
buildInputs = [
pkgs.python313
];
};
};
}