dda793c0ef
- Introduced `kicad_cli.sh` for local and Docker-based kicad-cli execution. - Created `schops.py` for schematic operations including ERC, BOM, netlist exports, and bulk edits. - Added README.md for schops with installation and usage instructions. - Included requirements.txt for necessary Python packages. - Implemented rules engine for applying field defaults and renaming nets. - Added tests for rules engine functionality. - Introduced scope guard script to enforce file modification policies based on PR labels. - Created watch script to monitor KiCad files and trigger hardware gate on changes.
22 lines
366 B
INI
22 lines
366 B
INI
[platformio]
|
|
default_envs = esp32s3_arduino
|
|
|
|
[env]
|
|
monitor_speed = 115200
|
|
test_framework = unity
|
|
build_flags = -D TEMPLATE_BUILD=1
|
|
|
|
[env:esp32s3_arduino]
|
|
platform = espressif32
|
|
board = esp32-s3-devkitc-1
|
|
framework = arduino
|
|
|
|
[env:esp32_arduino]
|
|
platform = espressif32
|
|
board = esp32dev
|
|
framework = arduino
|
|
|
|
[env:native]
|
|
platform = native
|
|
build_flags = -D UNIT_TEST=1
|