"Houston, we have a problem...."
Hi everyone,
1.) I'm trying to generate the following gerbers variant of assembly from a batch file with the last version of eagle 7.1.0 and beta 7.1.1.
The eaglecon command -A return me a problem and not generate the gerbers as desidered.
The normal "total" assembly is good and also the manual generating by the eaglecad sw is ok.
Anyone can help me?
the batch commands are the following
rem ----------------------------------------------------------------------------
rem GENERAZIONE FILE GERBER VARIANTI
rem ----------------------------------------------------------------------------
IF NOT (%variant_1%) == (0) (
eaglecon.exe -A%variant_1% -X+ -N+ -dGERBER_RS274X -o%gerber_top_assembly_variant1% %brd_path% Milling tDocu
eaglecon.exe -A%variant_1% -X+ -N+ -dGERBER_RS274X -o%gerber_bottom_assembly_variant1% %brd_path% Milling bDocu
)
IF NOT (%variant_2%) == (0) (
eaglecon.exe -A%variant_2% -X+ -N+ -dGERBER_RS274X -o%gerber_top_assembly_variant2% %brd_path% Milling tDocu
eaglecon.exe -A%variant_2% -X+ -N+ -dGERBER_RS274X -o%gerber_bottom_assembly_variant2% %brd_path% Milling bDocu
)
IF NOT (%variant_3%) == (0) (
eaglecon.exe -A%variant_3% -X+ -N+ -dGERBER_RS274X -o%gerber_top_assembly_variant3% %brd_path% Milling tDocu
eaglecon.exe -A%variant_3% -X+ -N+ -dGERBER_RS274X -o%gerber_bottom_assembly_variant3% %brd_path% Milling bDocu
)
The error is:
2.) I've another problem if I try to generate a gerber with the -X parameter, the eagle soft crash. To solve the problem I used the -X+ case. It's right?