Schematic Files

This optional section of the board file defines the schematic files for the board and associated configuration.

Syntax

SCHEMATICS
    "filename"
      {
        PAGE pageNum
            ROTATION := angle;
        END;
      }
      ...
    END;
    ...
END;

The optional page entries specify rotations for each page within the schematic. Valid angles are 0, 90, 180 and 270.

Example

SCHEMATIC
    "Main.pdf"
    END;
    "Additional.pdf"
        PAGE 1
            ROTATION := 90;
        END;
        PAGE 1
            ROTATION := 270;
        END;
    END;
END;