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.
18 lines
279 B
C++
18 lines
279 B
C++
#include <Arduino.h>
|
|
|
|
static uint32_t last_ms = 0;
|
|
|
|
void setup() {
|
|
Serial.begin(115200);
|
|
delay(200);
|
|
Serial.println("[base] boot");
|
|
}
|
|
|
|
void loop() {
|
|
const uint32_t now = millis();
|
|
if (now - last_ms >= 1000) {
|
|
last_ms = now;
|
|
Serial.println("[base] tick");
|
|
}
|
|
}
|