Wednesday, June 22, 2022

Draftsman Templates

When setting template sources note that there are Document Options for the entire document or the current sheet at the top of the Properties Panel.


Example for a size B Fab Drawing:

Create sheet 1, sheet 2 DwsDot

Create a DwfDot using sheet 1 and sheet 2 DwsDot.

Add fab notes and logos to the DwfDot.

Then save the DwfDot as PCBDwf.

Add the PCBDwf to your project.

That's it !

Saturday, June 18, 2022

Spectra Do file

#Example Syntax Spectra Do File
limit way 250
# Via to Via clearance for 5/5 Trace and Space
rule pcb (clearance 17 (type via_via)
select all wires
select net GND
protect selected
select all nets
unselect net GND
# Unselect Specific Classes
unselect class ( )
route 5
filter 1
clean 2
recorner diagonal

Monday, June 13, 2022

Working with the Query Language in Altium Designer

Working with the Query Language in Altium Designer 22

Example: Schematic Query to Find Cross Reference Ports with no xRefs

IsPort And Not (HasParameter('CrossRef','*'))

That's it !