Compare commits
No commits in common. "master" and "kirdy_LD_adapter_rev0_1" have entirely different histories.
master
...
kirdy_LD_a
10
flake.lock
generated
10
flake.lock
generated
@ -9,20 +9,20 @@
|
|||||||
"rev": "72686f5556785c9aa13678dc42757dddfb7d7c23",
|
"rev": "72686f5556785c9aa13678dc42757dddfb7d7c23",
|
||||||
"revCount": 2,
|
"revCount": 2,
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://git.m-labs.hk/M-Labs/KiCAD_BOM_Generator.git"
|
"url": "https://git.m-labs.hk/linuswck/KiCAD_BOM_Generator.git"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://git.m-labs.hk/M-Labs/KiCAD_BOM_Generator.git"
|
"url": "https://git.m-labs.hk/linuswck/KiCAD_BOM_Generator.git"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"nixpkgs": {
|
"nixpkgs": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1703467016,
|
"lastModified": 1702233072,
|
||||||
"narHash": "sha256-/5A/dNPhbQx/Oa2d+Get174eNI3LERQ7u6WTWOlR1eQ=",
|
"narHash": "sha256-H5G2wgbim2Ku6G6w+NSaQaauv6B6DlPhY9fMvArKqRo=",
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "d02d818f22c777aa4e854efc3242ec451e5d462a",
|
"rev": "781e2a9797ecf0f146e81425c822dca69fe4a348",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
62
flake.nix
62
flake.nix
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.11";
|
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.11";
|
||||||
inputs.kicad_bom_generator = {
|
inputs.kicad_bom_generator = {
|
||||||
url = "git+https://git.m-labs.hk/M-Labs/KiCAD_BOM_Generator.git";
|
url = "git+https://git.m-labs.hk/linuswck/KiCAD_BOM_Generator.git";
|
||||||
flake = false;
|
flake = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -9,7 +9,9 @@
|
|||||||
let
|
let
|
||||||
pkgs = import nixpkgs { system = "x86_64-linux"; };
|
pkgs = import nixpkgs { system = "x86_64-linux"; };
|
||||||
|
|
||||||
adapter_production_files = variant: pkgs.stdenv.mkDerivation {
|
build = { variant }:
|
||||||
|
let
|
||||||
|
production_files = pkgs.stdenv.mkDerivation {
|
||||||
name = "production-files";
|
name = "production-files";
|
||||||
src = ./kirdy_LD_adapter_${variant};
|
src = ./kirdy_LD_adapter_${variant};
|
||||||
|
|
||||||
@ -17,9 +19,9 @@
|
|||||||
|
|
||||||
buildPhase = ''
|
buildPhase = ''
|
||||||
# kicad-cli requires the use of $HOME
|
# kicad-cli requires the use of $HOME
|
||||||
TMP_DIR="$(mktemp --tmpdir -d kicad-kirdy.XXXXXXX)"
|
export HOME=/tmp
|
||||||
export HOME=$TMP_DIR
|
|
||||||
|
|
||||||
|
if [ "${variant}" != "copper_plate" ]; then
|
||||||
SCH=kirdy_LD_adapter_${variant}.kicad_sch
|
SCH=kirdy_LD_adapter_${variant}.kicad_sch
|
||||||
PCB=kirdy_LD_adapter_${variant}.kicad_pcb
|
PCB=kirdy_LD_adapter_${variant}.kicad_pcb
|
||||||
|
|
||||||
@ -44,55 +46,39 @@
|
|||||||
kicad-cli pcb export drill $PCB -u mm --generate-map --map-format gerberx2 -o ./$PREFIX"_gerber_drill"/
|
kicad-cli pcb export drill $PCB -u mm --generate-map --map-format gerberx2 -o ./$PREFIX"_gerber_drill"/
|
||||||
|
|
||||||
zip -r -j $PREFIX"_gerber_drill" $PREFIX"_gerber_drill"
|
zip -r -j $PREFIX"_gerber_drill" $PREFIX"_gerber_drill"
|
||||||
|
else
|
||||||
|
PCB=kirdy_LD_adapter_${variant}.kicad_pcb
|
||||||
|
|
||||||
|
# Get Revision Number from the Title Block in KiCAD PCB
|
||||||
|
REV=$(cat $PCB | grep rev | cut -d'"' -f 2)
|
||||||
|
PREFIX=kirdy_LD_adapter_${variant}_$REV
|
||||||
|
|
||||||
|
export KICAD7_3DMODEL_DIR=${pkgs.kicad.libraries.packages3d}/share/kicad/3dmodels
|
||||||
|
kicad-cli pcb export step $PCB --subst-models --force -o $PREFIX.step
|
||||||
|
fi
|
||||||
'';
|
'';
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
mkdir -p $out/production_files
|
mkdir -p $out/production_files
|
||||||
|
if [ ${variant} != "copper_plate" ]; then
|
||||||
cp $PREFIX"_bom".csv $out/production_files/$PREFIX"_bom".csv
|
cp $PREFIX"_bom".csv $out/production_files/$PREFIX"_bom".csv
|
||||||
cp $PREFIX.pdf $out/production_files/$PREFIX.pdf
|
cp $PREFIX.pdf $out/production_files/$PREFIX.pdf
|
||||||
cp $PREFIX"_pos".csv $out/production_files/$PREFIX"_pos.csv"
|
cp $PREFIX"_pos".csv $out/production_files/$PREFIX"_pos.csv"
|
||||||
cp $PREFIX.step $out/production_files/$PREFIX.step
|
cp $PREFIX.step $out/production_files/$PREFIX.step
|
||||||
cp $PREFIX"_gerber_drill".zip $out/production_files/$PREFIX"_gerber_drill".zip
|
cp $PREFIX"_gerber_drill".zip $out/production_files/$PREFIX"_gerber_drill".zip
|
||||||
|
else
|
||||||
cp $PREFIX.step $out/production_files/$PREFIX.step
|
cp $PREFIX.step $out/production_files/$PREFIX.step
|
||||||
|
fi
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
in { "LD_adapter_${variant}" = production_files; };
|
||||||
|
|
||||||
copper_plate_production_files = pkgs.stdenv.mkDerivation {
|
in rec {
|
||||||
name = "production-files";
|
|
||||||
src = ./kirdy_LD_adapter_copper_plate;
|
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgs.kicad pkgs.python3 ];
|
|
||||||
|
|
||||||
buildPhase = ''
|
|
||||||
# kicad-cli requires the use of $HOME
|
|
||||||
TMP_DIR="$(mktemp --tmpdir -d kicad-kirdy.XXXXXXX)"
|
|
||||||
export HOME=$TMP_DIR
|
|
||||||
|
|
||||||
PCB=kirdy_LD_adapter_copper_plate.kicad_pcb
|
|
||||||
|
|
||||||
# Get Revision Number from the Title Block in KiCAD PCB
|
|
||||||
REV=$(cat $PCB | grep rev | cut -d'"' -f 2)
|
|
||||||
PREFIX=kirdy_LD_adapter_copper_plate_$REV
|
|
||||||
|
|
||||||
export KICAD7_3DMODEL_DIR=${pkgs.kicad.libraries.packages3d}/share/kicad/3dmodels
|
|
||||||
kicad-cli pcb export step $PCB --subst-models --force -o $PREFIX.step
|
|
||||||
'';
|
|
||||||
|
|
||||||
installPhase = ''
|
|
||||||
mkdir -p $out/production_files
|
|
||||||
cp $PREFIX.step $out/production_files/$PREFIX.step
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
|
|
||||||
in {
|
|
||||||
formatter.x86_64-linux = nixpkgs.legacyPackages.x86_64-linux.nixfmt;
|
formatter.x86_64-linux = nixpkgs.legacyPackages.x86_64-linux.nixfmt;
|
||||||
|
|
||||||
packages.x86_64-linux = {
|
packages.x86_64-linux = (build { variant = "type_1"; })
|
||||||
"LD_adapter_type_1_PCB" = adapter_production_files "type_1";
|
// (build { variant = "type_2"; })
|
||||||
"LD_adapter_type_2_PCB" = adapter_production_files "type_2";
|
// (build { variant = "copper_plate"; });
|
||||||
"LD_adapter_copper_plate" = copper_plate_production_files;
|
|
||||||
};
|
|
||||||
|
|
||||||
devShells.x86_64-linux.default =
|
devShells.x86_64-linux.default =
|
||||||
let pkgs = nixpkgs.legacyPackages.x86_64-linux;
|
let pkgs = nixpkgs.legacyPackages.x86_64-linux;
|
||||||
|
@ -6,9 +6,8 @@
|
|||||||
|
|
||||||
(paper "A4")
|
(paper "A4")
|
||||||
(title_block
|
(title_block
|
||||||
(rev "v0_1rc2")
|
(rev "v0_1rc1")
|
||||||
(comment 1 "v0_1rc1: Changed the location of silkscreen markings of Bias-T Modulation Input")
|
(comment 1 "v0_1rc1: Changed the location of silkscreen markings of Bias-T Modulation Input")
|
||||||
(comment 2 "v0_1rc2: Correct Silkscreen Markings of LD9 and LD11")
|
|
||||||
)
|
)
|
||||||
|
|
||||||
(layers
|
(layers
|
||||||
@ -2762,19 +2761,19 @@
|
|||||||
(gr_text "Use Bias-T" (at -40.4 -1.39 270) (layer "B.SilkS") (tstamp 27273078-f90b-42d9-aa8d-6b3b1a0d97c4)
|
(gr_text "Use Bias-T" (at -40.4 -1.39 270) (layer "B.SilkS") (tstamp 27273078-f90b-42d9-aa8d-6b3b1a0d97c4)
|
||||||
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify left mirror))
|
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify left mirror))
|
||||||
)
|
)
|
||||||
(gr_text "LD-: 11" (at -32.258 4.582) (layer "B.SilkS") (tstamp 4cc0ef08-f92c-4c13-bdf4-4ed9b0d668f1)
|
(gr_text "LD-: 9" (at -32.258 4.582) (layer "B.SilkS") (tstamp 4cc0ef08-f92c-4c13-bdf4-4ed9b0d668f1)
|
||||||
(effects (font (size 1 1) (thickness 0.15)) (justify left mirror))
|
(effects (font (size 1 1) (thickness 0.15)) (justify left mirror))
|
||||||
)
|
)
|
||||||
(gr_text "PD+: 3" (at -27.25 11.01) (layer "B.SilkS") (tstamp c5025ffb-4132-40ad-9ba2-5a426d255675)
|
(gr_text "PD+: 3" (at -27.25 11.01) (layer "B.SilkS") (tstamp c5025ffb-4132-40ad-9ba2-5a426d255675)
|
||||||
(effects (font (size 1 1) (thickness 0.15)) (justify left mirror))
|
(effects (font (size 1 1) (thickness 0.15)) (justify left mirror))
|
||||||
)
|
)
|
||||||
(gr_text "Kirdy Adapter for Type-1 Laser Diode \nRev: 0_1rc2" (at 41.148 32.014) (layer "B.SilkS") (tstamp d9185641-8167-4841-b540-088303848472)
|
(gr_text "Kirdy Adapter for Type-1 Laser Diode \nRev: 0_1" (at 41.148 32.014) (layer "B.SilkS") (tstamp d9185641-8167-4841-b540-088303848472)
|
||||||
(effects (font (size 1 1) (thickness 0.15)) (justify left mirror))
|
(effects (font (size 1 1) (thickness 0.15)) (justify left mirror))
|
||||||
)
|
)
|
||||||
(gr_text "PD-: 7" (at -27.25 9.01) (layer "B.SilkS") (tstamp e9305944-d283-4481-a373-483045d7de6d)
|
(gr_text "PD-: 7" (at -27.25 9.01) (layer "B.SilkS") (tstamp e9305944-d283-4481-a373-483045d7de6d)
|
||||||
(effects (font (size 1 1) (thickness 0.15)) (justify left mirror))
|
(effects (font (size 1 1) (thickness 0.15)) (justify left mirror))
|
||||||
)
|
)
|
||||||
(gr_text "LD-: 9" (at -32.258 1.998) (layer "B.SilkS") (tstamp f8a1f124-6566-4a42-92b0-87395200e1f8)
|
(gr_text "LD-: 11" (at -32.258 1.998) (layer "B.SilkS") (tstamp f8a1f124-6566-4a42-92b0-87395200e1f8)
|
||||||
(effects (font (size 1 1) (thickness 0.15)) (justify left mirror))
|
(effects (font (size 1 1) (thickness 0.15)) (justify left mirror))
|
||||||
)
|
)
|
||||||
(gr_text "Type-1 LD" (at 0 29.01) (layer "F.SilkS") (tstamp 6b833559-6474-4221-aa6a-78219e45b6af)
|
(gr_text "Type-1 LD" (at 0 29.01) (layer "F.SilkS") (tstamp 6b833559-6474-4221-aa6a-78219e45b6af)
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -528,39 +528,4 @@
|
|||||||
)
|
)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
(symbol "thermal_sheet" (in_bom yes) (on_board no)
|
|
||||||
(property "Reference" "Thermal?" (at 5.08 1.27 0)
|
|
||||||
(effects (font (size 1.27 1.27)))
|
|
||||||
)
|
|
||||||
(property "Value" "245-7321" (at 20.32 -3.81 0)
|
|
||||||
(effects (font (size 1.27 1.27)))
|
|
||||||
)
|
|
||||||
(property "Footprint" "" (at 0 0 0)
|
|
||||||
(effects (font (size 1.27 1.27)) hide)
|
|
||||||
)
|
|
||||||
(property "Datasheet" "" (at 0 0 0)
|
|
||||||
(effects (font (size 1.27 1.27)) hide)
|
|
||||||
)
|
|
||||||
(property "MFR_PN" "245-7321" (at 0 0 0)
|
|
||||||
(effects (font (size 1.27 1.27)) hide)
|
|
||||||
)
|
|
||||||
(property "Comment" "Cut it to roughly 13mm x 23mm" (at 25.4 -6.35 0)
|
|
||||||
(effects (font (size 1.27 1.27)) (justify right))
|
|
||||||
)
|
|
||||||
(property "Sim.Enable" "0" (at 0 0 0)
|
|
||||||
(effects (font (size 1.27 1.27)) hide)
|
|
||||||
)
|
|
||||||
(property "ki_description" "RS PRO Self-Adhesive Thermal Interface Sheet, 0.11mm Thick, 1000W/m·K, Graphite, 90 x 115mm" (at 0 0 0)
|
|
||||||
(effects (font (size 1.27 1.27)) hide)
|
|
||||||
)
|
|
||||||
(symbol "thermal_sheet_1_1"
|
|
||||||
(rectangle (start 0 0) (end 25.4 -2.54)
|
|
||||||
(stroke (width 0) (type default))
|
|
||||||
(fill (type background))
|
|
||||||
)
|
|
||||||
(text "Thermal Interface Sheet" (at 12.7 -1.27 0)
|
|
||||||
(effects (font (size 1.27 1.27)))
|
|
||||||
)
|
|
||||||
)
|
|
||||||
)
|
|
||||||
)
|
)
|
||||||
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user