chore: import local project into Gitea
This commit is contained in:
BIN
._.gitignore
Normal file
BIN
._.gitignore
Normal file
Binary file not shown.
35
.gitignore
vendored
Normal file
35
.gitignore
vendored
Normal file
@@ -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/
|
||||||
1
ESP32-C5-J4CK3D
Submodule
1
ESP32-C5-J4CK3D
Submodule
Submodule ESP32-C5-J4CK3D added at 6ac017c0f9
18
README.md
Normal file
18
README.md
Normal file
@@ -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.
|
||||||
Reference in New Issue
Block a user