Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

allegro skill file for silk screen ref des. orientation

Status
Not open for further replies.

shaul

Junior Member level 1
Joined
Oct 25, 2001
Messages
17
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
51
skill file for allegro

any one have an allegro skill file for silk screen ref des. orientation ?
 

I have one.

wish you luck. :?
 

I would check the Cadence web site. I remembered they have lots of Skill codes program for AL_Le_G_R__o.
 

Iwould process the REF DES/ASSEMBLY and
and REF DES/SILKSCREEN _TOP/_BOTTOM
layers which are processed later to silkscreen.
This will give Silkscreen and assembly drawing nice readable.

You need to have an offest correction depending on the font height/rotation/etc..This will work.
I belive there was sometimes a reference code at the sourcelink .. can't find it now....

something like this:

axlClearSelSet()
axlSetFindFilter( ?enabled (list "noall" "invisible" "text") ?onButtons (list "text"))
text_list = axlGetSelSet( axlAddSelectAll())
axlCloseFindFilter()

foreach( text_db text_list
cond(
(text_db->layer == "REF DES/ASSEMBLY_TOP"
process_text( text_db "top")
)
(text_db->layer == "REF DES/ASSEMBLY_BOTTOM"
process_text( text_db "bot")
)
(text_db->layer == "REF DES/SILKSCREEN_TOP"
process_text( text_db "top")
)
(text_db->layer == "REF DES/SILKSCREEN_BOTTOM"
process_text( text_db "bot")
)
); cond
); foreach
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top