diff options
author | xengineering <me@xengineering.eu> | 2025-04-11 17:54:26 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2025-05-24 12:01:44 +0200 |
commit | 69cf3c6a1c9977ea255b3738eefca8065fd2a4f4 (patch) | |
tree | 261e9c39b74d0713deec260e43f4befdb4b0fcbd | |
parent | a82bdbbec681cec0c6f5304318b6010f1752dbf6 (diff) | |
download | iot-contact-69cf3c6a1c9977ea255b3738eefca8065fd2a4f4.tar iot-contact-69cf3c6a1c9977ea255b3738eefca8065fd2a4f4.tar.zst iot-contact-69cf3c6a1c9977ea255b3738eefca8065fd2a4f4.zip |
web: Deploy iot-contact.kicad_pcb
This can be used to order the PCB depending on the manufacturers
software capabilities.
-rw-r--r-- | artifacts/meson.build | 1 | ||||
-rw-r--r-- | pcb/meson.build | 3 | ||||
-rw-r--r-- | web/index.html | 1 |
3 files changed, 5 insertions, 0 deletions
diff --git a/artifacts/meson.build b/artifacts/meson.build index 278c695..ac15661 100644 --- a/artifacts/meson.build +++ b/artifacts/meson.build @@ -6,6 +6,7 @@ artifacts = [ simulation, update_image, factory_image, + kicad_pcb, ] foreach artifact : artifacts diff --git a/pcb/meson.build b/pcb/meson.build index 293b2a1..4feecce 100644 --- a/pcb/meson.build +++ b/pcb/meson.build @@ -36,3 +36,6 @@ bom = custom_target( depend_files: schematic_files, build_by_default: true, ) + +fs = import('fs') +kicad_pcb = fs.copyfile(meson.current_source_dir() / 'iot-contact.kicad_pcb') diff --git a/web/index.html b/web/index.html index e5bf005..f8d76ed 100644 --- a/web/index.html +++ b/web/index.html @@ -12,6 +12,7 @@ <h4>Printed circuit board</h4> <ul> + <li><a href="iot-contact.kicad_pcb">iot-contact.kicad_pcb</a></li> <li><a href="schematic.pdf">schematic.pdf</a></li> <li><a href="bill-of-materials.csv">bill-of-materials.csv</a></li> </ul> |