Update data: 5 units
Browse files- engineering/pcb_layout_kicad_1/base/input
- engineering/pcb_layout_kicad_1/base/software
- engineering/power_10kv_feeder_reliability_001/base/input
- engineering/power_10kv_feeder_reliability_001/base/software
- engineering/robotics_blender_tabletop_reconstruction/base/input
tasks/engineering/pcb_layout_kicad_1/base/software/OpenKiCad.bat
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
@echo off
|
| 2 |
+
setlocal
|
| 3 |
+
for %%P in (
|
| 4 |
+
"%LOCALAPPDATA%\Programs\KiCad\10.0\bin\kicad.exe"
|
| 5 |
+
"C:\Softwares\KiCad\10.0\bin\kicad.exe"
|
| 6 |
+
"C:\Program Files\KiCad\10.0\bin\kicad.exe"
|
| 7 |
+
"%LOCALAPPDATA%\Programs\KiCad\9.0\bin\kicad.exe"
|
| 8 |
+
"C:\Softwares\KiCad\9.0\bin\kicad.exe"
|
| 9 |
+
"C:\Program Files\KiCad\9.0\bin\kicad.exe"
|
| 10 |
+
"%LOCALAPPDATA%\Programs\KiCad\8.0\bin\kicad.exe"
|
| 11 |
+
"C:\Softwares\KiCad\8.0\bin\kicad.exe"
|
| 12 |
+
"C:\Program Files\KiCad\8.0\bin\kicad.exe"
|
| 13 |
+
) do (
|
| 14 |
+
if exist %%~P (
|
| 15 |
+
start "" %%~P %*
|
| 16 |
+
exit /b 0
|
| 17 |
+
)
|
| 18 |
+
)
|
| 19 |
+
start "" kicad.exe %*
|
tasks/engineering/power_10kv_feeder_reliability_001/base/software/bootstrap_uv_env.sh
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/usr/bin/env bash
|
| 2 |
+
set -euo pipefail
|
| 3 |
+
|
| 4 |
+
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
| 5 |
+
ROOT_DIR="$(cd "${SCRIPT_DIR}/.." && pwd)"
|
| 6 |
+
|
| 7 |
+
cd "${ROOT_DIR}/input"
|
| 8 |
+
uv sync --locked
|