Thursday, April 26, 2018

Pin Swapping

Pin Swapping

Problem: Cannot be Swapped ?














Solution:  Project Options > Options Tab > Allow for Pin Swapping











Pin Swap Methods:


Controlling How the Swaps are Performed on the Schematic

In the PCB editor pin, pair and part swaps are performed by exchanging nets on component pads and corresponding copper. When the changes are merged into the schematics there are two ways that a pin swap can be handled, either by swapping the pins on the component symbol, or by swapping net labels on the wires attached to the pins. Each approach has its advantages and disadvantages.
Performing the swap on the schematic by swapping net labels can only be done if the connectivity is established through the net labels, that is, if the pins are not hard-wired together. The advantage of this approach is that the component symbol does not change, and can be updated from the library at a later date. This approach is the best choice for a complex component, such as an FPGA.

Notes:

Pins and tracks must NOT be fully routed or be connected (shorted) to other nets.

That's It !

Monday, April 2, 2018

Allegro - Convert Binary to ASCII

REM Convert Allegro Binary to Allegro ASCII (*.brd to *.alg)
REM Place *.brd file, Allegro2Altium.bat and AllegroExportViews.txt in C:\A2A
REM Run the A2A.bat file in the C:\A2A folder on a PC with Allegro Installed

REM Open a Command Prompt > chdir C:\A2A
REM Enter: A2A.bat

REM For large designs the process can take several minutes.
REM You can minimize the Command window to the Task Bar.
REM Do not close the Command Window until the conversion is finished.

ECHO on
Allegro2Altium "*.brd"

click on images to view















Notes:

Allegro2Altium.bat and AllegroExportViews.txt can be found at: 

"C:\Program Files\Altium\AD19\System\AllegroExportViews.txt"
"C:\Program Files\Altium\AD19\System\Allegro2Altium.bat"

Refer to: Allegro Import | Online Documentation for Altium Products

Tip:

"Just remember... when using the Import Wizard, there will be several forms that open to allow you to select the file(s) you are converting.
In the case of the Allegro files, the first form will accept the Design (*.BRD or *.ALG) files, the second form will import Constraints files and the third form will import the footprint (*.DRA) files.

During the import process, if you are only interested in importing the *.DRA files, skip past the first two forms and then only import the footprint files."  Thank you James Jackson


Related:




That's it !