@modular-circuit/perc 0.2.11 → 0.2.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -896,7 +896,11 @@ var SpiLinkTester = class extends CompositePortLinkTesterBase {
896
896
  const sck_tester = new DigitalLinkTester(this.ctx, [controller.sck, ...peripherals.map((device) => device.sck)]);
897
897
  const miso_tester = new DigitalLinkTester(this.ctx, [controller.miso, ...peripherals.map((device) => device.miso)]);
898
898
  const mosi_tester = new DigitalLinkTester(this.ctx, [controller.mosi, ...peripherals.map((device) => device.mosi)]);
899
- for (const tst of [sck_tester, miso_tester, mosi_tester]) tst.test();
899
+ const CS_OR_SS_tester = new DigitalLinkTester(this.ctx, [
900
+ controller.CS_OR_SS,
901
+ ...peripherals.map((device) => device.CS_OR_SS)
902
+ ]);
903
+ for (const tst of [sck_tester, miso_tester, mosi_tester, CS_OR_SS_tester]) tst.test();
900
904
  }
901
905
  init_link() {
902
906
  const controllers = [];
package/dist/index.mjs CHANGED
@@ -836,7 +836,11 @@ var SpiLinkTester = class extends CompositePortLinkTesterBase {
836
836
  const sck_tester = new DigitalLinkTester(this.ctx, [controller.sck, ...peripherals.map((device) => device.sck)]);
837
837
  const miso_tester = new DigitalLinkTester(this.ctx, [controller.miso, ...peripherals.map((device) => device.miso)]);
838
838
  const mosi_tester = new DigitalLinkTester(this.ctx, [controller.mosi, ...peripherals.map((device) => device.mosi)]);
839
- for (const tst of [sck_tester, miso_tester, mosi_tester]) tst.test();
839
+ const CS_OR_SS_tester = new DigitalLinkTester(this.ctx, [
840
+ controller.CS_OR_SS,
841
+ ...peripherals.map((device) => device.CS_OR_SS)
842
+ ]);
843
+ for (const tst of [sck_tester, miso_tester, mosi_tester, CS_OR_SS_tester]) tst.test();
840
844
  }
841
845
  init_link() {
842
846
  const controllers = [];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@modular-circuit/perc",
3
- "version": "0.2.11",
3
+ "version": "0.2.13",
4
4
  "description": "Programmable Electronic Circuit Check",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -27,9 +27,9 @@
27
27
  },
28
28
  "dependencies": {
29
29
  "zod": "^4.3.6",
30
- "@modular-circuit/electronics-model": "0.2.7",
31
- "@modular-circuit/ir": "0.2.5",
32
- "@modular-circuit/utils": "0.2.5"
30
+ "@modular-circuit/electronics-model": "0.2.9",
31
+ "@modular-circuit/ir": "0.2.7",
32
+ "@modular-circuit/utils": "0.2.7"
33
33
  },
34
34
  "scripts": {
35
35
  "clean": "rimraf dist",