circuit-json 0.0.390 → 0.0.392
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/README.md +36 -0
- package/dist/index.d.mts +470 -32
- package/dist/index.mjs +1413 -1363
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -485,6 +485,42 @@ interface SourcePort {
|
|
|
485
485
|
subcircuit_id?: string
|
|
486
486
|
subcircuit_connectivity_map_key?: string
|
|
487
487
|
must_be_connected?: boolean
|
|
488
|
+
provides_power?: boolean
|
|
489
|
+
requires_power?: boolean
|
|
490
|
+
provides_ground?: boolean
|
|
491
|
+
requires_ground?: boolean
|
|
492
|
+
provides_voltage?: string | number
|
|
493
|
+
requires_voltage?: string | number
|
|
494
|
+
do_not_connect?: boolean
|
|
495
|
+
include_in_board_pinout?: boolean
|
|
496
|
+
can_use_internal_pullup?: boolean
|
|
497
|
+
is_using_internal_pullup?: boolean
|
|
498
|
+
needs_external_pullup?: boolean
|
|
499
|
+
can_use_internal_pulldown?: boolean
|
|
500
|
+
is_using_internal_pulldown?: boolean
|
|
501
|
+
needs_external_pulldown?: boolean
|
|
502
|
+
can_use_open_drain?: boolean
|
|
503
|
+
is_using_open_drain?: boolean
|
|
504
|
+
can_use_push_pull?: boolean
|
|
505
|
+
is_using_push_pull?: boolean
|
|
506
|
+
should_have_decoupling_capacitor?: boolean
|
|
507
|
+
recommended_decoupling_capacitor_capacitance?: string | number
|
|
508
|
+
is_configured_for_i2c_sda?: boolean
|
|
509
|
+
is_configured_for_i2c_scl?: boolean
|
|
510
|
+
is_configured_for_spi_mosi?: boolean
|
|
511
|
+
is_configured_for_spi_miso?: boolean
|
|
512
|
+
is_configured_for_spi_sck?: boolean
|
|
513
|
+
is_configured_for_spi_cs?: boolean
|
|
514
|
+
is_configured_for_uart_tx?: boolean
|
|
515
|
+
is_configured_for_uart_rx?: boolean
|
|
516
|
+
supports_i2c_sda?: boolean
|
|
517
|
+
supports_i2c_scl?: boolean
|
|
518
|
+
supports_spi_mosi?: boolean
|
|
519
|
+
supports_spi_miso?: boolean
|
|
520
|
+
supports_spi_sck?: boolean
|
|
521
|
+
supports_spi_cs?: boolean
|
|
522
|
+
supports_uart_tx?: boolean
|
|
523
|
+
supports_uart_rx?: boolean
|
|
488
524
|
}
|
|
489
525
|
```
|
|
490
526
|
|