mirror of
https://github.com/novatic14/MANPADS-System-Launcher-and-Rocket.git
synced 2026-03-27 16:05:40 +00:00
- Rename .txt firmware files to proper extensions (.cpp, .ino, .py) so GitHub provides syntax highlighting and IDEs detect them correctly - Add PlatformIO project configs (platformio.ini) for both Rocket and Launcher firmware with all library dependencies pinned, enabling one-command builds: `pio run -e rocket -t upload` - Add requirements.txt for the Python telemetry dashboard - Add .gitignore for PlatformIO, Arduino IDE, Python, and editor artifacts - Add docs/WIRING.md with complete pin assignments, I2C addresses, servo calibration values, and UDP protocol reference (reverse-engineered from firmware source) - Rename Simulation/fdsdf.png to OpenRocket_3D_View.png No functional changes to any firmware or software code.
35 lines
318 B
Plaintext
35 lines
318 B
Plaintext
# === PlatformIO ===
|
|
.pio/
|
|
.pioenvs/
|
|
.piolibdeps/
|
|
|
|
# === Arduino IDE ===
|
|
build/
|
|
*.elf
|
|
*.bin
|
|
*.hex
|
|
*.map
|
|
|
|
# === Python ===
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.egg-info/
|
|
dist/
|
|
venv/
|
|
.venv/
|
|
env/
|
|
|
|
# === IDE / Editor ===
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# === Fusion 360 recovery ===
|
|
*.f3z.bak
|
|
*.f3z.tmp
|