.\" sch-rnd - manual\\n Copyright (C) 2022 Tibor 'Igor2' Palinkas\\n .\"\\n .\"This program is free software; you can redistribute it and/or modify\\n .\"it under the terms of the GNU General Public License as published by\\n .\"the Free Software Foundation; either version 2 of the License, or\\n .\"(at your option) any later version.\\n .\"\\n .\"This program is distributed in the hope that it will be useful,\\n .\"but WITHOUT ANY WARRANTY; without even the implied warranty of\\n .\"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\\n .\"GNU General Public License for more details.\\n .\"\\n .\"You should have received a copy of the GNU General Public License along\\n .\"with this program; if not, write to the Free Software Foundation, Inc.,\\n .\"51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\\n .\"\\n .\"Contact: sch-rnd-man[removethis]@igor2.repo.hu .TH boxsym-rnd 5 2022-03-28 "" "sch-rnd manual" .SH NAME boxsym-rnd - boxsym description syntax .SH DESCRIPTION A boxsym file specifies symbol attributes and pins (terminals) for a single box symbol or for a set of inhomogenousely slotted box symbols. When slotted symbols are generated, one symbol file is generated for each slot containing only the pins defined for the given slot (file name suffixed with slot name) and a monolith symbol is generated (using the original file name) with all pins in one large box. .SS Syntax .PP The boxsym syntax is a plain text, line based, hierarchical file format with a syntax similar to tEDAx. Leading whitespace in lines are ignored. Empty lines and lines starting with a hashmark (#) are ignored. The first word of a line is a command. .PP If the command is .BR begin , the rest of the lines until the matching .BR end line are read as a nested level of hierarchy. The syntax allows "begin in begin" (nesting to any depth). The second word of begin and end are the type of the nested subtree. .PP Commands issued outside of any begin-end blocks are said to be made in global scope. .SS Refdes .PP There can be only one refdes line, in global scope. The argument is a single word, the refdes attribute. If no refdes is specified, the default refdes is used. .SS Attributes .PP Attributes are symbol attributes. Attributes specified in the global scope will be present in every symbol generated from the file. Attributes specified for a slot will be present in the slot's symbol and in the monolith symbol. .PP An attribute is defined in the following form: .PP .BR attr \fIkey\fR \fIvalue\fR .PP Key is a single word, value is anything up to the end of the line. This defintion creates the attribute and places a dyntext+floater text object printing the value of the attribute. If command is .BR attr_both , the text object is created to print key=value. If command is .BR attr_invis the attribute is still created but no text object is made. .SS Other global settings .PP A line starting with text_size_mult followed by a decimal number (greater than zero) changes text pixel length allocation factor. Increasing values will allocate more pixels to each text in length (text height is not affected). .SS Defining pins .PP Pins are defined using a pin subtree: begin pin pinname, then lines defining pin properties and then an end pin. Pinname should be the textual, human readable name of the pin (also used as an input for the optional devmap), not the physical pin number. .PP For example: .PP .nf begin pin Vcc num 14 loc top end pin begin pin B num 2:5:10:13 loc left dir in invcirc funcmap end pin .fi .PP Within the pin block the .BR num line specifies the physical footprint pin number; for a pin participating in a slot this should be a colon separated list of pin number per slot. .PP The mandatory .BR loc line specifies the location of the pin, the side of the box on which it should be placed, one of: left, right, top or bottom. .PP If a .BR dir line is present, extra "pin direction" graphics is drawn for the pin inside of the box. Values are in or out .PP If .BR invcirc is present, the pin will have a small circle near the box to indicate the pin is inverted. .PP If .BR label is present its value (anything written after "label") is printed within the box next to the pin instead of the pin name. .PP If .BR funcmap is present, the label is replaced with a dyntext that prints abstract attribute funcmap/name. This is useful for symbols that are going to use a funcmap (alternate pin function mapping). The funcmap file is normally also referenced from the component, setting the funcmap attribute to the funcmap file name. .SS Arranging pins .PP By default pins are listed per side (loc), tightly packed, in order of appearance in the file from the start of the side. This can be changed using pinalign lines in global or slot scope: .PP .nf pinalign left center .fi .PP will arrange left side pins on the center (vertically). .SS Defining a single box symbol The simplest form of box symbols emit a single file that has a single large box with all pins. The boxsym definition for such symbols contain the above described constructs and no "begin slot" subtrees. .SS Defining inhomogenous slot symbol In an multi-box, inhomogenous slot symbol there are different symbols representing different sections of the component. .PP The typical example is an MCU which is split up into a couple of boxes: a few boxes per port groups and another few per peripheral types. Each box represents a slot that appears only once in the MCU. .PP Another typical example is logic ICs, e.g. 7400 implemented in two different slot symbols: one for power (Vcc and gnd), presents once in the component, and one for a 3 pin gate, same box used 4 times for 4 different slots. .PP An inhomogenous slot symbol does not have any pin in global scope, but defines one or more "begin slot slotname" subtrees for all the different type of slots. If the same slot appears multiple times in the component, it needs to be defined only once (and multiple pin numbers assigned in pin definitions.) .SH EXAMPLE .SS Single box LDO .PP .nf refdes U?? attr_invis sym-source sch-rnd default symbol lib attr_invis sym-copyright (C) 2022 Tibor 'Igor2' Palinkas attr_invis sym-license-dist GPLv2+ attr_invis sym-license-use Public Domain pinalign bottom center pinalign left center pinalign right center shape box shape_fill yes begin pin in num 1 loc left end pin begin pin gnd num 2 loc bottom end pin begin pin out num 3 loc right end pin .fi .SS Inhomogenous slot 7400 .PP .nf refdes U?? pinalign right center pinalign bottom center pinalign top center attr device 7400 begin slot power shape box shape_fill yes begin pin Vcc num 14 loc top end pin begin pin gnd num 7 loc bottom end pin pinalign top center pinalign bottom center end slot begin slot logic attr device 7400 attr_both slot 1 begin pin A num 1:4:9:12 loc left dir in end pin begin pin B num 2:5:10:13 loc left dir in end pin begin pin Z num 3:6:8:11 loc right dir out invcirc end pin pinalign left center pinalign right center end slot .fi .SH SEE ALSO boxsym-rnd(1)