commit e2d91496258a5c31effe7738af360c2204c6032c Author: drjones Date: Wed May 20 10:03:46 2026 -0700 chore: import local project into Gitea diff --git a/._.gitignore b/._.gitignore new file mode 100644 index 0000000..613fad7 Binary files /dev/null and b/._.gitignore differ diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7af57dd --- /dev/null +++ b/.gitignore @@ -0,0 +1,35 @@ +# OS / tooling +.DS_Store +Thumbs.db + +# Editors +.cursor/ + +# Secrets +.env +.env.* +!.env.example +!.env.template + +# Python +__pycache__/ +*.py[cod] +.venv/ +venv/ + +# Node / frontend +node_modules/ +dist/ + +# Typical embedded / tooling noise +*.log + +# Builds (adjust per subtree if needed) +**/build/.ninja_deps +**/build/.ninja_log +build/ + +# Vendor SDK checkouts +esp-idf/ +**/esp-idf/ +managed_components/ diff --git a/ESP32-C5-J4CK3D b/ESP32-C5-J4CK3D new file mode 160000 index 0000000..6ac017c --- /dev/null +++ b/ESP32-C5-J4CK3D @@ -0,0 +1 @@ +Subproject commit 6ac017c0f98805e0582aa260fc682baed2baa774 diff --git a/README.md b/README.md new file mode 100644 index 0000000..6579fa3 --- /dev/null +++ b/README.md @@ -0,0 +1,18 @@ +# esp32c5 — multi-target workspace + +| Path | Notes | +|------|-------| +| `ESP32-C5-J4CK3D` | ESP32-C5–centric project | +| `esp-idf/` | Embedded Espressif IDF tree / helper checkout | +| `mater/` / `slave/` | Paired sketches (inspect each tree for README) | + +## Build + +Activate **ESP-IDF** (`export.ps1` / `. export.sh`). From the project you intend to compile: + +```bash +idf.py set-target esp32c5 # after confirming support in that project +idf.py build flash monitor +``` + +Use the subdirectory’s **`sdkconfig`** / docs for PHY, partitioning, secure boot flags, etc.