ERC
typeCAD provides a built in ERC function.
Electrical Rules Checker
typeCAD replicates the functionality of the KiCAD ERC. After Schematic::create()
has been called, you can call Schematic::erc()
and it will check your schematic for any connection errors.
It uses the same KiCAD basic rules as shown in this picture.
KiCAD includes a lot of other rules, but the majority of them are not relevant to typeCAD.
Here’s a simple example.
import { Component, PCB, Power, Schematic } from '@typecad/typecad';
let typecad = new Schematic('erc');
typecad.create();
typecad.erc();
ERC error: power_in pin VR1:5 not driven by a power_out pin. Use [pin].type = 'power_out' to designate a power_out pin
ERC 1 errors, 0 warnings
If ERC returns an error, the build process is stopped. The code under ::erc
will not be executed.
Pin Types
ERC works primarily by checking pin type against each other. The types are the standard KiCAD pin types: power_in
, power_out
, passive
etc. A power_in
pin must be connected to a power_out
pin, for example.
Pin type are typically set in component files, generated by typeCAD tooling. The information for pin types is taken from the symbol files, but the files are not always correct. Many symbols that come from outside the KiCAD library will have all the types set to passive
.
Pin types can be corrected manually in the component files, or they can be set in code like this:
import { Component } from '@typecad/typecad';
let bt1 = new Component({ footprint: 'Battery:BatteryHolder_Keystone_3008_1x2450', prefix: 'BT', mpn: '3008TR' });
bt1.pin(1).type = 'power_out';
bt1.pin(2).type = 'power_out';
This example shows changing a battery holder’s pins to power_out
since they were set to passive
originally.
Extending ERC
typeCAD is entirely TypeScript, so you can extend the ERC function to check for your own rules. You’ll want to look at how the ERC function is implemented in erc.ts.
You’ll see it takes a Schematic
object, and returns an array of errors. The code itself is just a long list of if statements comparing pin types. Adjusting to your needs would be simple, just bring the new function into your own project so they aren’t lost when you npm update
.