├── saleae_trigger ├── demo.gif ├── Makefile ├── capture.py └── readme.md ├── pcb_clip ├── mechanical │ ├── clip.SLDASM │ └── clip_base.SLDPRT ├── documentation │ ├── clip render.JPG │ └── pcb clip PCB template.pdf ├── pcb │ ├── clip_adapter_2.0mm.PcbDoc │ ├── clip_adapter_1.27mm.PcbDoc │ ├── clip_adapter_2.54mm.PCBDwf │ ├── clip_adapter_2.54mm.PcbDoc │ ├── clip_template.PrjPcb │ └── clip.OutJob └── releases │ ├── 2021-06-25 clip top.stl │ ├── 2021-05-09 clip base.STL │ ├── 2021-05-09 clip top.STL │ ├── 2021-05-10 clip_2.0mm.zip │ ├── 2021-05-10 clip_1.27mm.zip │ ├── 2021-05-10 clip_2.54mm.zip │ └── 2021-06-25 clip bottom.stl ├── power_tree ├── small_board_dcdc.png ├── real_example_dcdc.png ├── small_board_linear.png ├── real_example_linear.png ├── example.dot ├── example.json ├── power.py └── readme.md ├── lcsc_background └── lcsc background.pdf └── LICENSE /saleae_trigger/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinkinlabs/small_design_tools/HEAD/saleae_trigger/demo.gif -------------------------------------------------------------------------------- /pcb_clip/mechanical/clip.SLDASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinkinlabs/small_design_tools/HEAD/pcb_clip/mechanical/clip.SLDASM -------------------------------------------------------------------------------- /power_tree/small_board_dcdc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinkinlabs/small_design_tools/HEAD/power_tree/small_board_dcdc.png -------------------------------------------------------------------------------- /power_tree/real_example_dcdc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinkinlabs/small_design_tools/HEAD/power_tree/real_example_dcdc.png -------------------------------------------------------------------------------- /power_tree/small_board_linear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinkinlabs/small_design_tools/HEAD/power_tree/small_board_linear.png -------------------------------------------------------------------------------- /lcsc_background/lcsc background.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinkinlabs/small_design_tools/HEAD/lcsc_background/lcsc background.pdf -------------------------------------------------------------------------------- /pcb_clip/mechanical/clip_base.SLDPRT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinkinlabs/small_design_tools/HEAD/pcb_clip/mechanical/clip_base.SLDPRT -------------------------------------------------------------------------------- /power_tree/real_example_linear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinkinlabs/small_design_tools/HEAD/power_tree/real_example_linear.png -------------------------------------------------------------------------------- /pcb_clip/documentation/clip render.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinkinlabs/small_design_tools/HEAD/pcb_clip/documentation/clip render.JPG -------------------------------------------------------------------------------- /pcb_clip/pcb/clip_adapter_2.0mm.PcbDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinkinlabs/small_design_tools/HEAD/pcb_clip/pcb/clip_adapter_2.0mm.PcbDoc -------------------------------------------------------------------------------- /pcb_clip/pcb/clip_adapter_1.27mm.PcbDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinkinlabs/small_design_tools/HEAD/pcb_clip/pcb/clip_adapter_1.27mm.PcbDoc -------------------------------------------------------------------------------- /pcb_clip/pcb/clip_adapter_2.54mm.PCBDwf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinkinlabs/small_design_tools/HEAD/pcb_clip/pcb/clip_adapter_2.54mm.PCBDwf -------------------------------------------------------------------------------- /pcb_clip/pcb/clip_adapter_2.54mm.PcbDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinkinlabs/small_design_tools/HEAD/pcb_clip/pcb/clip_adapter_2.54mm.PcbDoc -------------------------------------------------------------------------------- /pcb_clip/releases/2021-06-25 clip top.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinkinlabs/small_design_tools/HEAD/pcb_clip/releases/2021-06-25 clip top.stl -------------------------------------------------------------------------------- /pcb_clip/releases/2021-05-09 clip base.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinkinlabs/small_design_tools/HEAD/pcb_clip/releases/2021-05-09 clip base.STL -------------------------------------------------------------------------------- /pcb_clip/releases/2021-05-09 clip top.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinkinlabs/small_design_tools/HEAD/pcb_clip/releases/2021-05-09 clip top.STL -------------------------------------------------------------------------------- /pcb_clip/releases/2021-05-10 clip_2.0mm.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinkinlabs/small_design_tools/HEAD/pcb_clip/releases/2021-05-10 clip_2.0mm.zip -------------------------------------------------------------------------------- /pcb_clip/releases/2021-05-10 clip_1.27mm.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinkinlabs/small_design_tools/HEAD/pcb_clip/releases/2021-05-10 clip_1.27mm.zip -------------------------------------------------------------------------------- /pcb_clip/releases/2021-05-10 clip_2.54mm.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinkinlabs/small_design_tools/HEAD/pcb_clip/releases/2021-05-10 clip_2.54mm.zip -------------------------------------------------------------------------------- /pcb_clip/releases/2021-06-25 clip bottom.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinkinlabs/small_design_tools/HEAD/pcb_clip/releases/2021-06-25 clip bottom.stl -------------------------------------------------------------------------------- /pcb_clip/documentation/pcb clip PCB template.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinkinlabs/small_design_tools/HEAD/pcb_clip/documentation/pcb clip PCB template.pdf -------------------------------------------------------------------------------- /saleae_trigger/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # This is a project Makefile. It is assumed the directory this Makefile resides in is a 3 | # project subdirectory. 4 | # 5 | 6 | PROJECT_NAME := example 7 | 8 | include $(IDF_PATH)/make/project.mk 9 | 10 | cap-mon: $(call prereq_if_explicit,%flash) 11 | python3 ./capture.py 12 | ${MAKE} monitor 13 | 14 | -------------------------------------------------------------------------------- /saleae_trigger/capture.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python3 2 | 3 | # https://github.com/ppannuto/python-saleae 4 | # pip3 install saleae 5 | import saleae 6 | 7 | # Set to localhost if Logic is running on the same computer that you are 8 | # running the script on. 9 | #host = "192.168.178.19" 10 | host = "localhost" 11 | 12 | s = saleae.Saleae(host=host) 13 | s.capture_start() 14 | 15 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 Blinkinlabs, LLC 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /power_tree/example.dot: -------------------------------------------------------------------------------- 1 | digraph test { 2 | rankdir=LR; 3 | splines=false; 4 | rank="same"; 5 | 6 | node [fixedsize="true", width="3", height="1", shape="polygon",sides=4] 7 | graph [style="invis"] "5V wall wart" [label="5V wall wart\ninput: 7.16W (1.43A@5.00V)",style="filled"]; 8 | "5V wall wart":e -> "12V supply for control boards":w []; 9 | "12V supply for control boards" [label="12V supply for control boards\ninput: 1.41W (0.28A@5.00V)\noutput: 1.20W (0.10A@12.00V)\nEfficiency:85% waste:0.21W",style="filled"]; 10 | "12V supply for control boards":e -> "button controller":w []; 11 | "button controller" [label="button controller\n1.20W (0.10A@12.00V)"]; 12 | "5V wall wart":e -> "LED buffer":w []; 13 | "LED buffer" [label="LED buffer\n0.25W (0.05A@5.00V)"]; 14 | "5V wall wart":e -> "3.3V linear supply":w []; 15 | "3.3V linear supply" [label="3.3V linear supply\ninput: 5.50W (1.10A@5.00V)\noutput: 3.63W (1.10A@3.30V)\nEfficiency:66% waste:1.87W",style="filled"]; 16 | "3.3V linear supply":e -> "ESP32, BLE enabled":w []; 17 | "ESP32, BLE enabled" [label="ESP32, BLE enabled\n0.82W (0.25A@3.30V)"]; 18 | "3.3V linear supply":e -> "microSD card, writing":w []; 19 | "microSD card, writing" [label="microSD card, writing\n0.66W (0.20A@3.30V)"]; 20 | "3.3V linear supply":e -> "FPGA IO pins":w []; 21 | "FPGA IO pins" [label="FPGA IO pins\n0.17W (0.05A@3.30V)"]; 22 | "3.3V linear supply":e -> "RS422 transceiver, short condition":w []; 23 | "RS422 transceiver, short condition" [label="RS422 transceiver, short condition\n1.32W (0.40A@3.30V)"]; 24 | "3.3V linear supply":e -> "1.2V linear supply":w []; 25 | "1.2V linear supply" [label="1.2V linear supply\ninput: 0.66W (0.20A@3.30V)\noutput: 0.24W (0.20A@1.20V)\nEfficiency:36% waste:0.42W",style="filled"]; 26 | "1.2V linear supply":e -> "FPGA core":w []; 27 | "FPGA core" [label="FPGA core\n0.24W (0.20A@1.20V)"]; 28 | } -------------------------------------------------------------------------------- /saleae_trigger/readme.md: -------------------------------------------------------------------------------- 1 | # Integrate your Saleae logic analyzer into your build process. 2 | 3 | ![](demo.gif) 4 | 5 | The Saleae logic analyzer is quite convenient for debugging your embedded design, but when you're hours into hunting down a bug, manually clicking start just before you load new code onto your device gets old. There's a simple way around this! The Logic 1.2.29 software has a simple remote control interface, complete with a convenient Python library to interface with it. You *can* use this to perform automated testing, but let's start with just automating our debugging a little. 6 | 7 | ## Requirements: 8 | * Saleae logic analyzer 9 | * [Logic 1.2.29](https://support.saleae.com/logic-software/legacy-software/older-software-releases) 10 | 11 | ## Guide 12 | 13 | 1. Install Logic 1.2.29 (or the newer 2.x version once scripting is added back in), and run it. 14 | 2. Connect your logic analyzer to your computer, and to your dev board. 15 | 3. Configure logic with appropriate capture settings (note: if you often use the same settings, you can either save the setup in Logic, or use the Python scripting interface to recreate it automatically). 16 | 4. Enable the scripting interface in Logic by choosing Options->Preferences, then the 'Developer' tab, and make sure 'Enable scripting socket server' is enabled, and the port is set to the default 10429. 17 | 5. Run the 'capture.py' script to verify that the capture is triggered as expected. 18 | 6. Add the capture script to your build system, to automatically start a capture whenever new firmware is updated (or whenever else is appropriate). An example Makefile for ESP-IDF 3.3 is provided as an example; you can use the 'make cap-mon' target to start a capture, then reset the esp32, and view the console log. 19 | 7. Optional: if your device has a serial output, you can capture it along with the signals you are looking at for a quick&rudimentary way to correlate events to code. 20 | -------------------------------------------------------------------------------- /power_tree/example.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "powersupply", 3 | "name": "5V wall wart", 4 | "voltage": 5, 5 | "loads" : [ 6 | { 7 | "type": "dcdc", 8 | "name": "12V supply for control boards", 9 | "voltage": 12, 10 | "efficiency": 0.85, 11 | "loads": [ 12 | { 13 | "type": "load", 14 | "name": "button controller", 15 | "max_current": 0.1 16 | } 17 | ] 18 | }, 19 | { 20 | "type": "load", 21 | "name": "LED buffer", 22 | "max_current": 0.05 23 | }, 24 | { 25 | "type": "linear", 26 | "name": "3.3V linear supply", 27 | "voltage": 3.3, 28 | "loads" : [ 29 | { 30 | "type": "load", 31 | "name": "ESP32, BLE enabled", 32 | "max_current": 0.25 33 | }, 34 | { 35 | "type": "load", 36 | "name": "microSD card, writing", 37 | "max_current": 0.2 38 | }, 39 | { 40 | "type": "load", 41 | "name": "FPGA IO pins", 42 | "max_current": 0.05 43 | }, 44 | { 45 | "type": "load", 46 | "name": "RS422 transceiver, short condition", 47 | "max_current": 0.4 48 | }, 49 | { 50 | "type": "linear", 51 | "name": "1.2V linear supply", 52 | "voltage": 1.2, 53 | "loads" : [ 54 | { 55 | "type": "load", 56 | "name": "FPGA core", 57 | "max_current": 0.2 58 | } 59 | ] 60 | } 61 | ] 62 | } 63 | ] 64 | } -------------------------------------------------------------------------------- /power_tree/power.py: -------------------------------------------------------------------------------- 1 | import json 2 | 3 | # types supported: 4 | # "input": input from an external supply (wall wart, etc) 5 | # "dcdc": DC-DC switching regulator, either boost or buck. These are assumed to have a fixed efficiency 6 | # "linear": Linear regulator. The efficiency of these is determined by the difference between the input and output voltages. 7 | # "load": Something that sinks power, modeled as a current sink 8 | 9 | class powersupply: 10 | def __init__(self, name, voltage, loads): 11 | self.name = name 12 | self.voltage = voltage 13 | self.loads = loads 14 | 15 | def maxWattage(self, supply): 16 | state = {} 17 | 18 | state["efficiency"] = 1 19 | 20 | # Output load is equal to voltage * sum of current to all loads 21 | state["output_power"] = sum([load.maxWattage(self)["input_power"] for load in self.loads]) 22 | 23 | state["output_voltage"] = self.voltage 24 | state["output_current"] = state["output_power"]/state["output_voltage"] 25 | 26 | state["input_voltage"] = state["output_voltage"] 27 | state["input_power"] = state["output_power"] 28 | state["input_current"] = state["output_current"] 29 | 30 | return state 31 | 32 | class dcdc: 33 | def __init__(self, name, voltage, efficiency, loads): 34 | self.name = name 35 | self.voltage = voltage 36 | self.efficiency = efficiency 37 | self.loads = loads 38 | 39 | def maxWattage(self, supply): 40 | """ Calculate the maximum expected load on this supply, in Watts """ 41 | 42 | state = {} 43 | 44 | state["efficiency"] = self.efficiency 45 | 46 | # Output load is equal to voltage * sum of current to all loads 47 | state["output_power"] = sum([load.maxWattage(self)["input_power"] for load in self.loads]) 48 | 49 | state["output_voltage"] = self.voltage 50 | state["output_current"] = state["output_power"]/state["output_voltage"] 51 | 52 | state["input_voltage"] = supply.voltage 53 | state["input_power"] = state["output_power"]/state["efficiency"] 54 | state["input_current"] = state["input_power"]/state["input_voltage"] 55 | 56 | return state 57 | 58 | class linear: 59 | def __init__(self, name, voltage, loads): 60 | self.name = name 61 | self.voltage = voltage 62 | self.loads = loads 63 | 64 | def maxWattage(self, supply): 65 | """ Calculate the maximum expected load on this supply, in Watts """ 66 | 67 | state = {} 68 | 69 | # # Efficiency is the ratio of output voltage to input voltage 70 | state["efficiency"] = self.voltage/supply.voltage 71 | 72 | # Output load is equal to voltage * sum of current to all loads 73 | state["output_power"] = sum([load.maxWattage(self)["input_power"] for load in self.loads]) 74 | 75 | state["output_voltage"] = self.voltage 76 | state["output_current"] = state["output_power"]/state["output_voltage"] 77 | 78 | state["input_voltage"] = supply.voltage 79 | state["input_power"] = state["output_power"]/state["efficiency"] 80 | state["input_current"] = state["input_power"]/state["input_voltage"] 81 | 82 | return state 83 | 84 | class load: 85 | def __init__(self, name, max_current): 86 | self.name = name 87 | self.max_current = max_current 88 | 89 | def maxWattage(self, supply): 90 | """ Calculate the maximum expected load, in Watts """ 91 | # l = self.max_current*supply.voltage 92 | # return self.max_current*supply.voltage 93 | 94 | state = {} 95 | state["input_voltage"] = supply.voltage 96 | state["input_current"] = self.max_current 97 | state["input_power"] = state["input_voltage"] * state["input_current"] 98 | 99 | return state 100 | 101 | def decode_tree(dct): 102 | if "type" not in dct: 103 | # TODO: Raise exception 104 | return dct 105 | 106 | t = dct.pop("type") 107 | if t == "powersupply": 108 | return powersupply(**dct) 109 | elif t == "dcdc": 110 | return dcdc(**dct) 111 | elif t == "linear": 112 | return linear(**dct) 113 | elif t == "load": 114 | return load(**dct) 115 | 116 | with open('example.json', 'r') as json_file: 117 | powertree = json.load(json_file, object_hook=decode_tree) 118 | 119 | def write_dot_node(node, supply, file): 120 | # if this is a voltage supply 121 | if hasattr(node,"loads"): 122 | state = node.maxWattage(supply) 123 | 124 | if supply==None: 125 | file.write(' "{}" [label="{}\\ninput: {:.2f}W ({:.2f}A@{:.2f}V)",style="filled"];\n' 126 | .format(node.name,node.name, 127 | state["input_power"],state["input_current"],state["input_voltage"], 128 | ) 129 | ) 130 | 131 | else: 132 | file.write(' "{}" [label="{}\\ninput: {:.2f}W ({:.2f}A@{:.2f}V)\\noutput: {:.2f}W ({:.2f}A@{:.2f}V)\\nEfficiency:{:.0f}% waste:{:.2f}W",style="filled"];\n' 133 | .format(node.name,node.name, 134 | state["input_power"],state["input_current"],state["input_voltage"], 135 | state["output_power"],state["output_current"],state["output_voltage"], 136 | state["efficiency"]*100,state["input_power"]-state["output_power"] 137 | ) 138 | ) 139 | 140 | for load in node.loads: 141 | file.write(' "{}":e -> "{}":w [];\n'.format(node.name,load.name)) 142 | write_dot_node(load, node, file) 143 | else: 144 | state = node.maxWattage(supply) 145 | file.write(' "{}" [label="{}\\n{:.2f}W ({:.2f}A@{:.2f}V)"];\n' 146 | .format(node.name,node.name,state["input_power"],state["input_current"],state["input_voltage"])) 147 | 148 | 149 | dotfile_header="""digraph test { 150 | rankdir=LR; 151 | splines=false; 152 | rank="same"; 153 | 154 | node [fixedsize="true", width="3", height="1", shape="polygon",sides=4] 155 | graph [style="invis"]""" 156 | 157 | with open('example.dot', 'w') as dotfile: 158 | dotfile.write(dotfile_header) 159 | 160 | write_dot_node(powertree, None, dotfile) 161 | 162 | dotfile.write("}") -------------------------------------------------------------------------------- /power_tree/readme.md: -------------------------------------------------------------------------------- 1 | # Power Tree Generator 2 | 3 | Here is a small tool to generate a power usage tree for your electronics circuit design from a JSON description. 4 | 5 | ![](real_example_dcdc.png) 6 | 7 | If you're designing a circuit board with more than just a few components, it can get frustrating to manually calculate how much power each component uses, and how much load is expected on the board power supplies. Furthermore, when you're making a new design, you might want to sketch out a few different designs to see if you can get away with simple linear regulators, or if you'll need more complex DC-DC coverters, etc. There are fancier tools such as [PowerCad](https://www.analog.com/en/design-center/ltpowercad.html), but they can be overkill for small designs. 8 | 9 | # Requirements 10 | 11 | You'll need some version of Python 3, and GraphViz. If you're using [Visual Studio Code](https://code.visualstudio.com/), you can get everything you need with the [Graphiz](https://marketplace.visualstudio.com/items?itemName=joaompinto.vscode-graphviz) and [Python](https://marketplace.visualstudio.com/items?itemName=ms-python.python). 12 | 13 | If you're using Ubuntu/Debian, try 'sudo apt install graphviz python3' 14 | 15 | # Example Usage 16 | 17 | The tool accepts a JSON file as an input. For example, here's a JSON file for a small board, that is powered by a 5V USB plug, and has a single linear voltage regulator, which powers two modules: 18 | 19 | ``` 20 | { 21 | "type": "powersupply", 22 | "name": "5V USB plug", 23 | "voltage": 5, 24 | "loads" : [ 25 | { 26 | "type": "linear", 27 | "name": "3.3V regulator", 28 | "voltage": 3.3, 29 | "loads": [ 30 | { 31 | "type": "load", 32 | "name": "ESP32 (WiFi transmit)", 33 | "max_current": 0.25 34 | }, 35 | { 36 | "type": "load", 37 | "name": "Accelerometer", 38 | "max_current": 0.02 39 | } 40 | ] 41 | } 42 | ] 43 | } 44 | ``` 45 | 46 | The board description is organized as a series of nested objects. The top-level one should always be a 'powersupply', which represents power coming from some external source. The power supply then can have one or more things powered by it, which are either voltage regulators ('linear' or 'dcdc'), or things that you want to power ('loads'). 47 | 48 | For this example, I want to know the worst-case power usage of the board, so I looked at the ESP32 datasheet and saw that the maximum current it will draw is 0.25A when it is transmitting on WiFi, and the accelerometer draws .02A when making a sample. You could also input an 'average' current draw here, to evaluate the normal use case. 49 | 50 | Save these contents into a file called 'example.json', then run power.py to generate a dot file, then dot to actually make the diagram. Alternatively, if you're using VSCode, open power.py, press F5 to run the tool, then open example.dot, and press ctrl+shift+v to render a preview. Either way, you should get a diagram similar to this: 51 | 52 | ![](small_board_linear.png) 53 | 54 | The tool automatically makes a block diagram with arrows to show connectivity, and also calculates the power usage at every node, as well as the power loss in the regulator. Note that it doesn't model more complex things such as loss along a wire, etc; it's just for getting a ballpark estimate of the power use. 55 | 56 | Also notice that it automatically calculated the efficiency and power loss in the linear regulator. It does this by assuming the regulator is a perfect linear regulator, and only loses power from the difference between the input and output voltages. 57 | 58 | That's probably fine for this system, since it's powered by the wall. If we wanted more efficiency, we could try to replace the linear regulator with a cheap DC-DC buck converter. In this case, we have to specify the efficiency of the buck converter: 59 | 60 | ``` 61 | { 62 | "type": "powersupply", 63 | "name": "5V USB plug", 64 | "voltage": 5, 65 | "loads" : [ 66 | { 67 | "type": "dcdc", 68 | "name": "3.3V regulator", 69 | "efficiency": 0.85, 70 | "voltage": 3.3, 71 | "loads": [ 72 | { 73 | "type": "load", 74 | "name": "ESP32 (WiFi transmit)", 75 | "max_current": 0.25 76 | }, 77 | { 78 | "type": "load", 79 | "name": "Accelerometer", 80 | "max_current": 0.025 81 | } 82 | ] 83 | } 84 | ] 85 | } 86 | ``` 87 | 88 | which gives this result: 89 | 90 | ![](small_board_dcdc.png) 91 | 92 | It's better, but 70mA is not very significiant for a wall-powered device, so it's probably not worth doing. If it were battey powered, though, it might be worth replacing the linear regulator with a more efficeint buck converter. 93 | 94 | # Real use case 95 | 96 | Here's a description for a more complicated board: 97 | ``` 98 | { 99 | "type": "powersupply", 100 | "name": "5V wall wart", 101 | "voltage": 5, 102 | "loads" : [ 103 | { 104 | "type": "dcdc", 105 | "name": "12V supply for control boards", 106 | "voltage": 12, 107 | "efficiency": 0.85, 108 | "loads": [ 109 | { 110 | "type": "load", 111 | "name": "button controller", 112 | "max_current": 0.1 113 | } 114 | ] 115 | }, 116 | { 117 | "type": "load", 118 | "name": "LED buffer", 119 | "max_current": 0.05 120 | }, 121 | { 122 | "type": "linear", 123 | "name": "3.3V linear supply", 124 | "voltage": 3.3, 125 | "loads" : [ 126 | { 127 | "type": "load", 128 | "name": "ESP32, BLE enabled", 129 | "max_current": 0.25 130 | }, 131 | { 132 | "type": "load", 133 | "name": "microSD card, writing", 134 | "max_current": 0.2 135 | }, 136 | { 137 | "type": "load", 138 | "name": "FPGA IO pins", 139 | "max_current": 0.05 140 | }, 141 | { 142 | "type": "load", 143 | "name": "RS422 transceiver, short condition", 144 | "max_current": 0.4 145 | }, 146 | { 147 | "type": "linear", 148 | "name": "1.2V linear supply", 149 | "voltage": 1.2, 150 | "loads" : [ 151 | { 152 | "type": "load", 153 | "name": "FPGA core", 154 | "max_current": 0.2 155 | } 156 | ] 157 | } 158 | ] 159 | } 160 | ] 161 | } 162 | ``` 163 | 164 | Which gives us this board: 165 | 166 | ![](real_example_linear.png) 167 | 168 | This board was initially designed with the assumption that the ESP would not have a radio enabled, and without considering the worst-case power usage of the RS422 transmitter. Unfortunately, as designed now, the 3.3V supply likely has too big of a load, and should be replaced with a dc-dc converter. As above, that can be done by modifying a power supply definition: 169 | 170 | ``` 171 | "type": "dcdc", 172 | "name": "3.3V supply", 173 | "voltage": 3.3, 174 | "efficiency": 0.9, 175 | "loads" : [ 176 | ``` 177 | 178 | This brings down the waste power significantly, and should result in the board being more stable. 179 | 180 | ![](real_example_dcdc.png) 181 | 182 | # Conclusion 183 | 184 | This tool is designed to make quick sketches of your power design, without getting too bogged down in the details. It's always a good idea to desgin in some margin to your designs, and to test them once they're built to make sure the theory lines up with reality. If this has been helpful to you, please let us know! 185 | -------------------------------------------------------------------------------- /pcb_clip/pcb/clip_template.PrjPcb: -------------------------------------------------------------------------------- 1 | [Design] 2 | Version=1.0 3 | HierarchyMode=0 4 | ChannelRoomNamingStyle=0 5 | ReleasesFolder= 6 | ChannelDesignatorFormatString=$Component_$RoomName 7 | ChannelRoomLevelSeperator=_ 8 | OpenOutputs=1 9 | ArchiveProject=0 10 | TimestampOutput=0 11 | SeparateFolders=0 12 | TemplateLocationPath= 13 | PinSwapBy_Netlabel=1 14 | PinSwapBy_Pin=1 15 | AllowPortNetNames=0 16 | AllowSheetEntryNetNames=1 17 | AppendSheetNumberToLocalNets=0 18 | NetlistSinglePinNets=0 19 | DefaultConfiguration=Sources 20 | UserID=0xFFFFFFFF 21 | DefaultPcbProtel=1 22 | DefaultPcbPcad=0 23 | ReorderDocumentsOnCompile=1 24 | NameNetsHierarchically=0 25 | PowerPortNamesTakePriority=0 26 | PushECOToAnnotationFile=1 27 | DItemRevisionGUID= 28 | ReportSuppressedErrorsInMessages=0 29 | FSMCodingStyle=eFMSDropDownList_OneProcess 30 | FSMEncodingStyle=eFMSDropDownList_OneHot 31 | OutputPath= 32 | LogFolderPath= 33 | ManagedProjectGUID= 34 | IncludeDesignInRelease=0 35 | 36 | [Preferences] 37 | PrefsVaultGUID= 38 | PrefsRevisionGUID= 39 | 40 | [Document1] 41 | DocumentPath=clip.OutJob 42 | AnnotationEnabled=1 43 | AnnotateStartValue=1 44 | AnnotationIndexControlEnabled=0 45 | AnnotateSuffix= 46 | AnnotateScope=All 47 | AnnotateOrder=-1 48 | DoLibraryUpdate=1 49 | DoDatabaseUpdate=1 50 | ClassGenCCAutoEnabled=1 51 | ClassGenCCAutoRoomEnabled=1 52 | ClassGenNCAutoScope=None 53 | DItemRevisionGUID= 54 | GenerateClassCluster=0 55 | DocumentUniqueId= 56 | 57 | [Document2] 58 | DocumentPath=clip_adapter_2.54mm.PcbDoc 59 | AnnotationEnabled=1 60 | AnnotateStartValue=1 61 | AnnotationIndexControlEnabled=0 62 | AnnotateSuffix= 63 | AnnotateScope=All 64 | AnnotateOrder=-1 65 | DoLibraryUpdate=1 66 | DoDatabaseUpdate=1 67 | ClassGenCCAutoEnabled=1 68 | ClassGenCCAutoRoomEnabled=1 69 | ClassGenNCAutoScope=None 70 | DItemRevisionGUID= 71 | GenerateClassCluster=0 72 | DocumentUniqueId=LVNXPMJN 73 | 74 | [Document3] 75 | DocumentPath=clip_adapter_2.54mm.PCBDwf 76 | AnnotationEnabled=1 77 | AnnotateStartValue=1 78 | AnnotationIndexControlEnabled=0 79 | AnnotateSuffix= 80 | AnnotateScope=All 81 | AnnotateOrder=-1 82 | DoLibraryUpdate=1 83 | DoDatabaseUpdate=1 84 | ClassGenCCAutoEnabled=1 85 | ClassGenCCAutoRoomEnabled=1 86 | ClassGenNCAutoScope=None 87 | DItemRevisionGUID= 88 | GenerateClassCluster=0 89 | DocumentUniqueId= 90 | 91 | [Configuration1] 92 | Name=Sources 93 | ParameterCount=0 94 | ConstraintFileCount=0 95 | ReleaseItemId= 96 | Variant=[No Variations] 97 | OutputJobsCount=0 98 | ContentTypeGUID=CB6F2064-E317-11DF-B822-12313F0024A2 99 | ConfigurationType=Source 100 | 101 | [OutputGroup1] 102 | Name=Netlist Outputs 103 | Description= 104 | TargetPrinter=Brother HL-L2370DN series Printer 105 | PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 106 | OutputType1=CadnetixNetlist 107 | OutputName1=Cadnetix Netlist 108 | OutputDocumentPath1= 109 | OutputVariantName1= 110 | OutputDefault1=0 111 | OutputType2=CalayNetlist 112 | OutputName2=Calay Netlist 113 | OutputDocumentPath2= 114 | OutputVariantName2= 115 | OutputDefault2=0 116 | OutputType3=EDIF 117 | OutputName3=EDIF for PCB 118 | OutputDocumentPath3= 119 | OutputVariantName3= 120 | OutputDefault3=0 121 | OutputType4=EESofNetlist 122 | OutputName4=EESof Netlist 123 | OutputDocumentPath4= 124 | OutputVariantName4= 125 | OutputDefault4=0 126 | OutputType5=IntergraphNetlist 127 | OutputName5=Intergraph Netlist 128 | OutputDocumentPath5= 129 | OutputVariantName5= 130 | OutputDefault5=0 131 | OutputType6=MentorBoardStationNetlist 132 | OutputName6=Mentor BoardStation Netlist 133 | OutputDocumentPath6= 134 | OutputVariantName6= 135 | OutputDefault6=0 136 | OutputType7=MultiWire 137 | OutputName7=MultiWire 138 | OutputDocumentPath7= 139 | OutputVariantName7= 140 | OutputDefault7=0 141 | OutputType8=OrCadPCB2Netlist 142 | OutputName8=Orcad/PCB2 Netlist 143 | OutputDocumentPath8= 144 | OutputVariantName8= 145 | OutputDefault8=0 146 | OutputType9=PADSNetlist 147 | OutputName9=PADS ASCII Netlist 148 | OutputDocumentPath9= 149 | OutputVariantName9= 150 | OutputDefault9=0 151 | OutputType10=Pcad 152 | OutputName10=Pcad for PCB 153 | OutputDocumentPath10= 154 | OutputVariantName10= 155 | OutputDefault10=0 156 | OutputType11=PCADNetlist 157 | OutputName11=PCAD Netlist 158 | OutputDocumentPath11= 159 | OutputVariantName11= 160 | OutputDefault11=0 161 | OutputType12=PCADnltNetlist 162 | OutputName12=PCADnlt Netlist 163 | OutputDocumentPath12= 164 | OutputVariantName12= 165 | OutputDefault12=0 166 | OutputType13=Protel2Netlist 167 | OutputName13=Protel2 Netlist 168 | OutputDocumentPath13= 169 | OutputVariantName13= 170 | OutputDefault13=0 171 | OutputType14=ProtelNetlist 172 | OutputName14=Protel 173 | OutputDocumentPath14= 174 | OutputVariantName14= 175 | OutputDefault14=0 176 | OutputType15=RacalNetlist 177 | OutputName15=Racal Netlist 178 | OutputDocumentPath15= 179 | OutputVariantName15= 180 | OutputDefault15=0 181 | OutputType16=RINFNetlist 182 | OutputName16=RINF Netlist 183 | OutputDocumentPath16= 184 | OutputVariantName16= 185 | OutputDefault16=0 186 | OutputType17=SciCardsNetlist 187 | OutputName17=SciCards Netlist 188 | OutputDocumentPath17= 189 | OutputVariantName17= 190 | OutputDefault17=0 191 | OutputType18=TangoNetlist 192 | OutputName18=Tango Netlist 193 | OutputDocumentPath18= 194 | OutputVariantName18= 195 | OutputDefault18=0 196 | OutputType19=TelesisNetlist 197 | OutputName19=Telesis Netlist 198 | OutputDocumentPath19= 199 | OutputVariantName19= 200 | OutputDefault19=0 201 | OutputType20=WireListNetlist 202 | OutputName20=WireList Netlist 203 | OutputDocumentPath20= 204 | OutputVariantName20= 205 | OutputDefault20=0 206 | OutputType21=XSpiceNetlist 207 | OutputName21=XSpice Netlist 208 | OutputDocumentPath21= 209 | OutputVariantName21= 210 | OutputDefault21=0 211 | 212 | [OutputGroup2] 213 | Name=Simulator Outputs 214 | Description= 215 | TargetPrinter=Brother HL-L2370DN series Printer 216 | PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 217 | OutputType1=AdvSimNetlist 218 | OutputName1=Mixed Sim 219 | OutputDocumentPath1= 220 | OutputVariantName1= 221 | OutputDefault1=0 222 | 223 | [OutputGroup3] 224 | Name=Documentation Outputs 225 | Description= 226 | TargetPrinter=Virtual Printer 227 | PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 228 | OutputType1=Composite 229 | OutputName1=Composite Drawing 230 | OutputDocumentPath1= 231 | OutputVariantName1= 232 | OutputDefault1=0 233 | PageOptions1=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 234 | OutputType2=PCB 3D Print 235 | OutputName2=PCB 3D Print 236 | OutputDocumentPath2= 237 | OutputVariantName2=[No Variations] 238 | OutputDefault2=0 239 | PageOptions2=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 240 | OutputType3=PCB 3D Video 241 | OutputName3=PCB 3D Video 242 | OutputDocumentPath3= 243 | OutputVariantName3=[No Variations] 244 | OutputDefault3=0 245 | PageOptions3=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 246 | OutputType4=PCB Print 247 | OutputName4=PCB Prints 248 | OutputDocumentPath4= 249 | OutputVariantName4= 250 | OutputDefault4=0 251 | PageOptions4=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 252 | OutputType5=PCBDrawing 253 | OutputName5=Draftsman 254 | OutputDocumentPath5= 255 | OutputVariantName5=[No Variations] 256 | OutputDefault5=0 257 | PageOptions5=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 258 | OutputType6=PCBLIB Print 259 | OutputName6=PCBLIB Prints 260 | OutputDocumentPath6= 261 | OutputVariantName6= 262 | OutputDefault6=0 263 | PageOptions6=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 264 | OutputType7=PDF3D 265 | OutputName7=PDF3D 266 | OutputDocumentPath7= 267 | OutputVariantName7=[No Variations] 268 | OutputDefault7=0 269 | PageOptions7=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 270 | OutputType8=PDF3D MBA 271 | OutputName8=PDF3D MBA 272 | OutputDocumentPath8= 273 | OutputVariantName8= 274 | OutputDefault8=0 275 | PageOptions8=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 276 | OutputType9=Report Print 277 | OutputName9=Report Prints 278 | OutputDocumentPath9= 279 | OutputVariantName9= 280 | OutputDefault9=0 281 | PageOptions9=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 282 | OutputType10=Schematic Print 283 | OutputName10=Schematic Prints 284 | OutputDocumentPath10= 285 | OutputVariantName10= 286 | OutputDefault10=0 287 | PageOptions10=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 288 | OutputType11=SimView Print 289 | OutputName11=SimView Prints 290 | OutputDocumentPath11= 291 | OutputVariantName11= 292 | OutputDefault11=0 293 | PageOptions11=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 294 | 295 | [OutputGroup4] 296 | Name=Assembly Outputs 297 | Description= 298 | TargetPrinter=Brother HL-L2370DN series Printer 299 | PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 300 | OutputType1=Assembly 301 | OutputName1=Assembly Drawings 302 | OutputDocumentPath1= 303 | OutputVariantName1=[No Variations] 304 | OutputDefault1=0 305 | PageOptions1=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 306 | OutputType2=Pick Place 307 | OutputName2=Generates pick and place files 308 | OutputDocumentPath2= 309 | OutputVariantName2=[No Variations] 310 | OutputDefault2=0 311 | OutputType3=Test Points For Assembly 312 | OutputName3=Test Point Report 313 | OutputDocumentPath3= 314 | OutputVariantName3=[No Variations] 315 | OutputDefault3=0 316 | 317 | [OutputGroup5] 318 | Name=Fabrication Outputs 319 | Description= 320 | TargetPrinter=Brother HL-L2370DN series Printer 321 | PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 322 | OutputType1=Board Stack Report 323 | OutputName1=Report Board Stack 324 | OutputDocumentPath1= 325 | OutputVariantName1= 326 | OutputDefault1=0 327 | PageOptions1=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 328 | OutputType2=CompositeDrill 329 | OutputName2=Composite Drill Drawing 330 | OutputDocumentPath2= 331 | OutputVariantName2= 332 | OutputDefault2=0 333 | PageOptions2=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 334 | OutputType3=Drill 335 | OutputName3=Drill Drawing/Guides 336 | OutputDocumentPath3= 337 | OutputVariantName3= 338 | OutputDefault3=0 339 | PageOptions3=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 340 | OutputType4=Final 341 | OutputName4=Final Artwork Prints 342 | OutputDocumentPath4= 343 | OutputVariantName4=[No Variations] 344 | OutputDefault4=0 345 | PageOptions4=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 346 | OutputType5=Gerber 347 | OutputName5=Gerber Files 348 | OutputDocumentPath5= 349 | OutputVariantName5=[No Variations] 350 | OutputDefault5=0 351 | OutputType6=Gerber X2 352 | OutputName6=Gerber X2 Files 353 | OutputDocumentPath6= 354 | OutputVariantName6= 355 | OutputDefault6=0 356 | OutputType7=IPC2581 357 | OutputName7=IPC-2581 Files 358 | OutputDocumentPath7= 359 | OutputVariantName7= 360 | OutputDefault7=0 361 | OutputType8=Mask 362 | OutputName8=Solder/Paste Mask Prints 363 | OutputDocumentPath8= 364 | OutputVariantName8= 365 | OutputDefault8=0 366 | PageOptions8=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 367 | OutputType9=NC Drill 368 | OutputName9=NC Drill Files 369 | OutputDocumentPath9= 370 | OutputVariantName9= 371 | OutputDefault9=0 372 | OutputType10=ODB 373 | OutputName10=ODB++ Files 374 | OutputDocumentPath10= 375 | OutputVariantName10=[No Variations] 376 | OutputDefault10=0 377 | OutputType11=Plane 378 | OutputName11=Power-Plane Prints 379 | OutputDocumentPath11= 380 | OutputVariantName11= 381 | OutputDefault11=0 382 | PageOptions11=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 383 | OutputType12=Test Points 384 | OutputName12=Test Point Report 385 | OutputDocumentPath12= 386 | OutputVariantName12= 387 | OutputDefault12=0 388 | 389 | [OutputGroup6] 390 | Name=Report Outputs 391 | Description= 392 | TargetPrinter=Brother HL-L2370DN series Printer 393 | PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 394 | OutputType1=BOM_PartType 395 | OutputName1=Bill of Materials 396 | OutputDocumentPath1= 397 | OutputVariantName1=[No Variations] 398 | OutputDefault1=0 399 | PageOptions1=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 400 | OutputType2=ComponentCrossReference 401 | OutputName2=Component Cross Reference Report 402 | OutputDocumentPath2= 403 | OutputVariantName2=[No Variations] 404 | OutputDefault2=0 405 | OutputType3=ReportHierarchy 406 | OutputName3=Report Project Hierarchy 407 | OutputDocumentPath3= 408 | OutputVariantName3=[No Variations] 409 | OutputDefault3=0 410 | OutputType4=Script 411 | OutputName4=Script Output 412 | OutputDocumentPath4= 413 | OutputVariantName4=[No Variations] 414 | OutputDefault4=0 415 | OutputType5=SimpleBOM 416 | OutputName5=Simple BOM 417 | OutputDocumentPath5= 418 | OutputVariantName5=[No Variations] 419 | OutputDefault5=0 420 | OutputType6=SinglePinNetReporter 421 | OutputName6=Report Single Pin Nets 422 | OutputDocumentPath6= 423 | OutputVariantName6=[No Variations] 424 | OutputDefault6=0 425 | 426 | [OutputGroup7] 427 | Name=Other Outputs 428 | Description= 429 | TargetPrinter=Brother HL-L2370DN series Printer 430 | PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 431 | OutputType1=Text Print 432 | OutputName1=Text Print 433 | OutputDocumentPath1= 434 | OutputVariantName1= 435 | OutputDefault1=0 436 | PageOptions1=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 437 | OutputType2=Text Print 438 | OutputName2=Text Print 439 | OutputDocumentPath2= 440 | OutputVariantName2= 441 | OutputDefault2=0 442 | PageOptions2=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 443 | OutputType3=Text Print 444 | OutputName3=Text Print 445 | OutputDocumentPath3= 446 | OutputVariantName3= 447 | OutputDefault3=0 448 | PageOptions3=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 449 | OutputType4=Text Print 450 | OutputName4=Text Print 451 | OutputDocumentPath4= 452 | OutputVariantName4= 453 | OutputDefault4=0 454 | PageOptions4=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 455 | OutputType5=Text Print 456 | OutputName5=Text Print 457 | OutputDocumentPath5= 458 | OutputVariantName5= 459 | OutputDefault5=0 460 | PageOptions5=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 461 | OutputType6=Text Print 462 | OutputName6=Text Print 463 | OutputDocumentPath6= 464 | OutputVariantName6= 465 | OutputDefault6=0 466 | PageOptions6=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 467 | OutputType7=Text Print 468 | OutputName7=Text Print 469 | OutputDocumentPath7= 470 | OutputVariantName7= 471 | OutputDefault7=0 472 | PageOptions7=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 473 | OutputType8=Text Print 474 | OutputName8=Text Print 475 | OutputDocumentPath8= 476 | OutputVariantName8= 477 | OutputDefault8=0 478 | PageOptions8=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 479 | OutputType9=Text Print 480 | OutputName9=Text Print 481 | OutputDocumentPath9= 482 | OutputVariantName9= 483 | OutputDefault9=0 484 | PageOptions9=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 485 | OutputType10=Text Print 486 | OutputName10=Text Print 487 | OutputDocumentPath10= 488 | OutputVariantName10= 489 | OutputDefault10=0 490 | PageOptions10=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 491 | OutputType11=Text Print 492 | OutputName11=Text Print 493 | OutputDocumentPath11= 494 | OutputVariantName11= 495 | OutputDefault11=0 496 | PageOptions11=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 497 | OutputType12=Text Print 498 | OutputName12=Text Print 499 | OutputDocumentPath12= 500 | OutputVariantName12= 501 | OutputDefault12=0 502 | PageOptions12=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 503 | OutputType13=Text Print 504 | OutputName13=Text Print 505 | OutputDocumentPath13= 506 | OutputVariantName13= 507 | OutputDefault13=0 508 | PageOptions13=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 509 | OutputType14=Text Print 510 | OutputName14=Text Print 511 | OutputDocumentPath14= 512 | OutputVariantName14= 513 | OutputDefault14=0 514 | PageOptions14=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 515 | OutputType15=Text Print 516 | OutputName15=Text Print 517 | OutputDocumentPath15= 518 | OutputVariantName15= 519 | OutputDefault15=0 520 | PageOptions15=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 521 | OutputType16=Text Print 522 | OutputName16=Text Print 523 | OutputDocumentPath16= 524 | OutputVariantName16= 525 | OutputDefault16=0 526 | PageOptions16=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 527 | OutputType17=Text Print 528 | OutputName17=Text Print 529 | OutputDocumentPath17= 530 | OutputVariantName17= 531 | OutputDefault17=0 532 | PageOptions17=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 533 | OutputType18=Text Print 534 | OutputName18=Text Print 535 | OutputDocumentPath18= 536 | OutputVariantName18= 537 | OutputDefault18=0 538 | PageOptions18=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 539 | OutputType19=Text Print 540 | OutputName19=Text Print 541 | OutputDocumentPath19= 542 | OutputVariantName19= 543 | OutputDefault19=0 544 | PageOptions19=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 545 | OutputType20=Text Print 546 | OutputName20=Text Print 547 | OutputDocumentPath20= 548 | OutputVariantName20= 549 | OutputDefault20=0 550 | PageOptions20=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 551 | OutputType21=Text Print 552 | OutputName21=Text Print 553 | OutputDocumentPath21= 554 | OutputVariantName21= 555 | OutputDefault21=0 556 | PageOptions21=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 557 | OutputType22=Text Print 558 | OutputName22=Text Print 559 | OutputDocumentPath22= 560 | OutputVariantName22= 561 | OutputDefault22=0 562 | PageOptions22=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 563 | OutputType23=Text Print 564 | OutputName23=Text Print 565 | OutputDocumentPath23= 566 | OutputVariantName23= 567 | OutputDefault23=0 568 | PageOptions23=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 569 | OutputType24=Text Print 570 | OutputName24=Text Print 571 | OutputDocumentPath24= 572 | OutputVariantName24= 573 | OutputDefault24=0 574 | PageOptions24=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 575 | OutputType25=Text Print 576 | OutputName25=Text Print 577 | OutputDocumentPath25= 578 | OutputVariantName25= 579 | OutputDefault25=0 580 | PageOptions25=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 581 | OutputType26=Text Print 582 | OutputName26=Text Print 583 | OutputDocumentPath26= 584 | OutputVariantName26= 585 | OutputDefault26=0 586 | PageOptions26=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 587 | OutputType27=Text Print 588 | OutputName27=Text Print 589 | OutputDocumentPath27= 590 | OutputVariantName27= 591 | OutputDefault27=0 592 | PageOptions27=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 593 | OutputType28=Text Print 594 | OutputName28=Text Print 595 | OutputDocumentPath28= 596 | OutputVariantName28= 597 | OutputDefault28=0 598 | PageOptions28=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 599 | OutputType29=Text Print 600 | OutputName29=Text Print 601 | OutputDocumentPath29= 602 | OutputVariantName29= 603 | OutputDefault29=0 604 | PageOptions29=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 605 | 606 | [OutputGroup8] 607 | Name=Validation Outputs 608 | Description= 609 | TargetPrinter=Brother HL-L2370DN series Printer 610 | PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 611 | OutputType1=BOM_Violations 612 | OutputName1=BOM Checks Report 613 | OutputDocumentPath1= 614 | OutputVariantName1= 615 | OutputDefault1=0 616 | OutputType2=Component states check 617 | OutputName2=Server's components states check 618 | OutputDocumentPath2= 619 | OutputVariantName2= 620 | OutputDefault2=0 621 | OutputType3=Configuration compliance 622 | OutputName3=Environment configuration compliance check 623 | OutputDocumentPath3= 624 | OutputVariantName3= 625 | OutputDefault3=0 626 | OutputType4=Design Rules Check 627 | OutputName4=Design Rules Check 628 | OutputDocumentPath4= 629 | OutputVariantName4= 630 | OutputDefault4=0 631 | PageOptions4=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 632 | OutputType5=Differences Report 633 | OutputName5=Differences Report 634 | OutputDocumentPath5= 635 | OutputVariantName5= 636 | OutputDefault5=0 637 | PageOptions5=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 638 | OutputType6=Electrical Rules Check 639 | OutputName6=Electrical Rules Check 640 | OutputDocumentPath6= 641 | OutputVariantName6= 642 | OutputDefault6=0 643 | PageOptions6=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 644 | OutputType7=Footprint Comparison Report 645 | OutputName7=Footprint Comparison Report 646 | OutputDocumentPath7= 647 | OutputVariantName7= 648 | OutputDefault7=0 649 | 650 | [OutputGroup9] 651 | Name=Export Outputs 652 | Description= 653 | TargetPrinter=Brother HL-L2370DN series Printer 654 | PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 655 | OutputType1=Ansoft Neutral 656 | OutputName1=Ansoft Neutral (AutoPCB) 657 | OutputDocumentPath1= 658 | OutputVariantName1= 659 | OutputDefault1=0 660 | OutputType2=AutoCAD dwg/dxf PCB 661 | OutputName2=AutoCAD dwg/dxf File PCB 662 | OutputDocumentPath2= 663 | OutputVariantName2= 664 | OutputDefault2=0 665 | OutputType3=AutoCAD dwg/dxf Schematic 666 | OutputName3=AutoCAD dwg/dxf File Schematic 667 | OutputDocumentPath3= 668 | OutputVariantName3= 669 | OutputDefault3=0 670 | OutputType4=ExportIDF 671 | OutputName4=Export IDF 672 | OutputDocumentPath4= 673 | OutputVariantName4= 674 | OutputDefault4=0 675 | OutputType5=ExportPARASOLID 676 | OutputName5=Export PARASOLID 677 | OutputDocumentPath5= 678 | OutputVariantName5=[No Variations] 679 | OutputDefault5=0 680 | OutputType6=ExportSTEP 681 | OutputName6=Export STEP 682 | OutputDocumentPath6= 683 | OutputVariantName6=[No Variations] 684 | OutputDefault6=0 685 | OutputType7=ExportVRML 686 | OutputName7=Export VRML 687 | OutputDocumentPath7= 688 | OutputVariantName7=[No Variations] 689 | OutputDefault7=0 690 | OutputType8=HyperLynx 691 | OutputName8=HyperLynx (AutoPCB) 692 | OutputDocumentPath8= 693 | OutputVariantName8= 694 | OutputDefault8=0 695 | OutputType9=MBAExportPARASOLID 696 | OutputName9=Export PARASOLID 697 | OutputDocumentPath9= 698 | OutputVariantName9= 699 | OutputDefault9=0 700 | OutputType10=MBAExportSTEP 701 | OutputName10=Export STEP 702 | OutputDocumentPath10= 703 | OutputVariantName10= 704 | OutputDefault10=0 705 | OutputType11=Orcad v7 Capture Design 706 | OutputName11=Orcad v7 Capture Design (AutoSCH) 707 | OutputDocumentPath11= 708 | OutputVariantName11= 709 | OutputDefault11=0 710 | OutputType12=P-CAD ASCII 711 | OutputName12=P-CAD ASCII (AutoPCB) 712 | OutputDocumentPath12= 713 | OutputVariantName12= 714 | OutputDefault12=0 715 | OutputType13=P-CAD V16 Schematic Design 716 | OutputName13=P-CAD V16 Schematic Design (AutoSCH) 717 | OutputDocumentPath13= 718 | OutputVariantName13= 719 | OutputDefault13=0 720 | OutputType14=Save As/Export PCB 721 | OutputName14=Save As/Export PCB 722 | OutputDocumentPath14= 723 | OutputVariantName14= 724 | OutputDefault14=0 725 | OutputType15=Save As/Export Schematic 726 | OutputName15=Save As/Export Schematic 727 | OutputDocumentPath15= 728 | OutputVariantName15= 729 | OutputDefault15=0 730 | OutputType16=SiSoft 731 | OutputName16=SiSoft (AutoPCB) 732 | OutputDocumentPath16= 733 | OutputVariantName16= 734 | OutputDefault16=0 735 | OutputType17=Specctra Design PCB 736 | OutputName17=Specctra Design PCB 737 | OutputDocumentPath17= 738 | OutputVariantName17= 739 | OutputDefault17=0 740 | 741 | [OutputGroup10] 742 | Name=PostProcess Outputs 743 | Description= 744 | TargetPrinter=Brother HL-L2370DN series Printer 745 | PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 746 | OutputType1=Copy Files 747 | OutputName1=Copy Files 748 | OutputDocumentPath1= 749 | OutputVariantName1= 750 | OutputDefault1=0 751 | 752 | [Modification Levels] 753 | Type1=1 754 | Type2=1 755 | Type3=1 756 | Type4=1 757 | Type5=1 758 | Type6=1 759 | Type7=1 760 | Type8=1 761 | Type9=1 762 | Type10=1 763 | Type11=1 764 | Type12=1 765 | Type13=1 766 | Type14=1 767 | Type15=1 768 | Type16=1 769 | Type17=1 770 | Type18=1 771 | Type19=1 772 | Type20=1 773 | Type21=1 774 | Type22=1 775 | Type23=1 776 | Type24=1 777 | Type25=1 778 | Type26=1 779 | Type27=1 780 | Type28=1 781 | Type29=1 782 | Type30=1 783 | Type31=1 784 | Type32=1 785 | Type33=1 786 | Type34=1 787 | Type35=1 788 | Type36=1 789 | Type37=1 790 | Type38=1 791 | Type39=1 792 | Type40=1 793 | Type41=1 794 | Type42=1 795 | Type43=1 796 | Type44=1 797 | Type45=1 798 | Type46=1 799 | Type47=1 800 | Type48=1 801 | Type49=1 802 | Type50=1 803 | Type51=1 804 | Type52=1 805 | Type53=1 806 | Type54=1 807 | Type55=1 808 | Type56=1 809 | Type57=1 810 | Type58=1 811 | Type59=1 812 | Type60=1 813 | Type61=1 814 | Type62=1 815 | Type63=1 816 | Type64=1 817 | Type65=1 818 | Type66=1 819 | Type67=1 820 | Type68=1 821 | Type69=1 822 | Type70=1 823 | Type71=1 824 | Type72=1 825 | Type73=1 826 | Type74=1 827 | Type75=1 828 | Type76=1 829 | Type77=1 830 | Type78=1 831 | Type79=1 832 | Type80=1 833 | Type81=1 834 | Type82=1 835 | Type83=1 836 | Type84=1 837 | Type85=1 838 | Type86=1 839 | Type87=1 840 | Type88=1 841 | Type89=1 842 | Type90=1 843 | Type91=1 844 | Type92=1 845 | Type93=1 846 | Type94=1 847 | Type95=1 848 | Type96=1 849 | Type97=1 850 | Type98=1 851 | Type99=1 852 | Type100=1 853 | Type101=1 854 | Type102=1 855 | Type103=1 856 | Type104=1 857 | Type105=1 858 | Type106=1 859 | Type107=1 860 | Type108=1 861 | Type109=1 862 | Type110=1 863 | Type111=1 864 | Type112=1 865 | Type113=1 866 | Type114=1 867 | Type115=1 868 | Type116=1 869 | Type117=1 870 | Type118=1 871 | Type119=1 872 | 873 | [Difference Levels] 874 | Type1=1 875 | Type2=1 876 | Type3=1 877 | Type4=1 878 | Type5=1 879 | Type6=1 880 | Type7=1 881 | Type8=1 882 | Type9=1 883 | Type10=1 884 | Type11=1 885 | Type12=1 886 | Type13=1 887 | Type14=1 888 | Type15=1 889 | Type16=1 890 | Type17=1 891 | Type18=1 892 | Type19=1 893 | Type20=1 894 | Type21=1 895 | Type22=1 896 | Type23=1 897 | Type24=1 898 | Type25=1 899 | Type26=1 900 | Type27=1 901 | Type28=1 902 | Type29=1 903 | Type30=1 904 | Type31=1 905 | Type32=1 906 | Type33=1 907 | Type34=1 908 | Type35=1 909 | Type36=1 910 | Type37=1 911 | Type38=1 912 | Type39=1 913 | Type40=1 914 | Type41=1 915 | Type42=1 916 | Type43=1 917 | Type44=1 918 | Type45=1 919 | Type46=1 920 | Type47=1 921 | Type48=1 922 | Type49=1 923 | Type50=1 924 | Type51=1 925 | Type52=1 926 | Type53=1 927 | Type54=1 928 | Type55=1 929 | Type56=1 930 | Type57=1 931 | Type58=1 932 | Type59=1 933 | Type60=1 934 | Type61=1 935 | Type62=1 936 | Type63=1 937 | Type64=1 938 | Type65=1 939 | Type66=1 940 | Type67=1 941 | Type68=1 942 | 943 | [Electrical Rules Check] 944 | Type1=1 945 | Type2=1 946 | Type3=2 947 | Type4=1 948 | Type5=2 949 | Type6=2 950 | Type7=0 951 | Type8=1 952 | Type9=1 953 | Type10=1 954 | Type11=2 955 | Type12=0 956 | Type13=0 957 | Type14=1 958 | Type15=1 959 | Type16=1 960 | Type17=1 961 | Type18=1 962 | Type19=1 963 | Type20=0 964 | Type21=0 965 | Type22=0 966 | Type23=0 967 | Type24=1 968 | Type25=2 969 | Type26=0 970 | Type27=2 971 | Type28=1 972 | Type29=1 973 | Type30=1 974 | Type31=1 975 | Type32=2 976 | Type33=0 977 | Type34=2 978 | Type35=1 979 | Type36=2 980 | Type37=1 981 | Type38=2 982 | Type39=2 983 | Type40=2 984 | Type41=0 985 | Type42=2 986 | Type43=1 987 | Type44=0 988 | Type45=0 989 | Type46=0 990 | Type47=0 991 | Type48=0 992 | Type49=0 993 | Type50=2 994 | Type51=0 995 | Type52=0 996 | Type53=1 997 | Type54=1 998 | Type55=1 999 | Type56=2 1000 | Type57=1 1001 | Type58=1 1002 | Type59=2 1003 | Type60=0 1004 | Type61=0 1005 | Type62=0 1006 | Type63=0 1007 | Type64=0 1008 | Type65=2 1009 | Type66=3 1010 | Type67=2 1011 | Type68=2 1012 | Type69=2 1013 | Type70=2 1014 | Type71=2 1015 | Type72=2 1016 | Type73=2 1017 | Type74=1 1018 | Type75=2 1019 | Type76=1 1020 | Type77=1 1021 | Type78=1 1022 | Type79=1 1023 | Type80=2 1024 | Type81=3 1025 | Type82=3 1026 | Type83=3 1027 | Type84=3 1028 | Type85=3 1029 | Type86=2 1030 | Type87=2 1031 | Type88=2 1032 | Type89=1 1033 | Type90=1 1034 | Type91=3 1035 | Type92=3 1036 | Type93=2 1037 | Type94=2 1038 | Type95=2 1039 | Type96=2 1040 | Type97=2 1041 | Type98=0 1042 | Type99=1 1043 | Type100=2 1044 | Type101=0 1045 | Type102=2 1046 | Type103=2 1047 | Type104=1 1048 | Type105=2 1049 | Type106=2 1050 | Type107=2 1051 | Type108=2 1052 | Type109=1 1053 | Type110=1 1054 | Type111=1 1055 | Type112=1 1056 | Type113=1 1057 | Type114=2 1058 | Type115=2 1059 | Type116=2 1060 | Type117=3 1061 | Type118=3 1062 | Type119=3 1063 | MultiChannelAlternate=2 1064 | AlternateItemFail=3 1065 | Type122=2 1066 | 1067 | [ERC Connection Matrix] 1068 | L1=NNNNNNNNNNNWNNNWW 1069 | L2=NNWNNNNWWWNWNWNWN 1070 | L3=NWEENEEEENEWNEEWN 1071 | L4=NNENNNWEENNWNENWN 1072 | L5=NNNNNNNNNNNNNNNNN 1073 | L6=NNENNNNEENNWNENWN 1074 | L7=NNEWNNWEENNWNENWN 1075 | L8=NWEENEENEEENNEENN 1076 | L9=NWEENEEEENEWNEEWW 1077 | L10=NWNNNNNENNEWNNEWN 1078 | L11=NNENNNNEEENWNENWN 1079 | L12=WWWWNWWNWWWNWWWNN 1080 | L13=NNNNNNNNNNNWNNNWW 1081 | L14=NWEENEEEENEWNEEWW 1082 | L15=NNENNNNEEENWNENWW 1083 | L16=WWWWNWWNWWWNWWWNW 1084 | L17=WNNNNNNNWNNNWWWWN 1085 | 1086 | [Annotate] 1087 | SortOrder=3 1088 | SortLocation=0 1089 | ReplaceSubparts=0 1090 | MatchParameter1=Comment 1091 | MatchStrictly1=1 1092 | MatchParameter2=Library Reference 1093 | MatchStrictly2=1 1094 | PhysicalNamingFormat=$Component_$RoomName 1095 | GlobalIndexSortOrder=3 1096 | GlobalIndexSortLocation=0 1097 | 1098 | [PrjClassGen] 1099 | CompClassManualEnabled=0 1100 | CompClassManualRoomEnabled=0 1101 | NetClassAutoBusEnabled=1 1102 | NetClassAutoCompEnabled=0 1103 | NetClassAutoNamedHarnessEnabled=0 1104 | NetClassManualEnabled=1 1105 | NetClassSeparateForBusSections=0 1106 | 1107 | [LibraryUpdateOptions] 1108 | SelectedOnly=0 1109 | UpdateVariants=1 1110 | UpdateToLatestRevision=1 1111 | PartTypes=0 1112 | FullReplace=1 1113 | UpdateDesignatorLock=1 1114 | UpdatePartIDLock=1 1115 | PreserveParameterLocations=1 1116 | PreserveParameterVisibility=1 1117 | DoGraphics=1 1118 | DoParameters=1 1119 | DoModels=1 1120 | AddParameters=0 1121 | RemoveParameters=0 1122 | AddModels=1 1123 | RemoveModels=1 1124 | UpdateCurrentModels=1 1125 | 1126 | [DatabaseUpdateOptions] 1127 | SelectedOnly=0 1128 | UpdateVariants=1 1129 | UpdateToLatestRevision=1 1130 | PartTypes=0 1131 | 1132 | [Comparison Options] 1133 | ComparisonOptions0=Kind=Net|MinPercent=75|MinMatch=3|ShowMatch=-1|Confirm=-1|UseName=-1|InclAllRules=0 1134 | ComparisonOptions1=Kind=Net Class|MinPercent=75|MinMatch=3|ShowMatch=-1|Confirm=-1|UseName=-1|InclAllRules=0 1135 | ComparisonOptions2=Kind=Component Class|MinPercent=75|MinMatch=3|ShowMatch=-1|Confirm=-1|UseName=-1|InclAllRules=0 1136 | ComparisonOptions3=Kind=Rule|MinPercent=75|MinMatch=3|ShowMatch=-1|Confirm=-1|UseName=-1|InclAllRules=0 1137 | ComparisonOptions4=Kind=Differential Pair|MinPercent=50|MinMatch=1|ShowMatch=0|Confirm=0|UseName=0|InclAllRules=0 1138 | ComparisonOptions5=Kind=Structure Class|MinPercent=75|MinMatch=3|ShowMatch=-1|Confirm=-1|UseName=-1|InclAllRules=0 1139 | 1140 | [SmartPDF] 1141 | PageOptions=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 1142 | 1143 | -------------------------------------------------------------------------------- /pcb_clip/pcb/clip.OutJob: -------------------------------------------------------------------------------- 1 | [OutputJobFile] 2 | Version=1.0 3 | Caption= 4 | Description= 5 | VaultGUID= 6 | ItemGUID= 7 | ItemHRID= 8 | RevisionGUID= 9 | RevisionId= 10 | VaultHRID= 11 | AutoItemHRID= 12 | NextRevId= 13 | FolderGUID= 14 | LifeCycleDefinitionGUID= 15 | RevisionNamingSchemeGUID= 16 | 17 | [OutputGroup1] 18 | Name=Blinkinlabs.OutJob 19 | Description= 20 | TargetOutputMedium=Folder Structure 21 | VariantName=[No Variations] 22 | VariantScope=1 23 | CurrentConfigurationName= 24 | TargetPrinter=Brother HL-L2370DN series Printer 25 | PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=0 26 | OutputMedium1=Print Job 27 | OutputMedium1_Type=Printer 28 | OutputMedium1_Printer=Canon MG4200 series Printer WS 29 | OutputMedium1_PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 30 | OutputMedium2=PDF 31 | OutputMedium2_Type=Publish 32 | OutputMedium3=Folder Structure 33 | OutputMedium3_Type=GeneratedFiles 34 | OutputType1=Gerber 35 | OutputName1=Gerber Files 36 | OutputCategory1=Fabrication 37 | OutputDocumentPath1= 38 | OutputVariantName1= 39 | OutputEnabled1=1 40 | OutputEnabled1_OutputMedium1=0 41 | OutputEnabled1_OutputMedium2=0 42 | OutputEnabled1_OutputMedium3=1 43 | OutputDefault1=0 44 | Configuration1_Name1=OutputConfigurationParameter1 45 | Configuration1_Item1=AddToAllLayerClasses.Set= |AddToAllPlots.Set=SerializeLayerHash.Version~2,ClassName~TLayerToBoolean|CentrePlots=False|DrillDrawingSymbol=GraphicsSymbol|DrillDrawingSymbolSize=200000|EmbeddedApertures=True|FilmBorderSize=10000000|FilmXSize=200000000|FilmYSize=160000000|FlashAllFills=False|FlashPadShapes=True|G54OnApertureChange=False|GenerateDRCRulesFile=True|GenerateDRCRulesFile=True|GenerateReliefShapes=True|GerberUnit=Metric|GerberUnit=Metric|IncludeUnconnectedMidLayerPads=False|LayerClassesMirror.Set= |LayerClassesPlot.Set= |LeadingAndTrailingZeroesMode=SuppressLeadingZeroes|MaxApertureSize=2500000|MinusApertureTolerance=39|MinusApertureTolerance=39|Mirror.Set=SerializeLayerHash.Version~2,ClassName~TLayerToBoolean|MirrorDrillDrawingPlots=False|MirrorDrillGuidePlots=False|NoRegularPolygons=False|NumberOfDecimals=4|NumberOfDecimals=4|OptimizeChangeLocationCommands=True|OptimizeChangeLocationCommands=True|OriginPosition=Relative|Panelize=False|Plot.Set=SerializeLayerHash.Version~2,ClassName~TLayerToBoolean,16973830~1,16973832~1,16973834~1,16777217~1,16777218~1,16777219~1,16842751~1,16973835~1,16973833~1,16973831~1,16908289~1,16908290~1,16908296~1|PlotPositivePlaneLayers=False|PlotUsedDrillDrawingLayerPairs=False|PlotUsedDrillGuideLayerPairs=False|PlusApertureTolerance=39|PlusApertureTolerance=39|Record=GerberView|SoftwareArcs=False|Sorted=False|Sorted=False 46 | OutputType2=NC Drill 47 | OutputName2=NC Drill Files 48 | OutputCategory2=Fabrication 49 | OutputDocumentPath2= 50 | OutputVariantName2= 51 | OutputEnabled2=1 52 | OutputEnabled2_OutputMedium1=0 53 | OutputEnabled2_OutputMedium2=0 54 | OutputEnabled2_OutputMedium3=2 55 | OutputDefault2=0 56 | Configuration2_Name1=OutputConfigurationParameter1 57 | Configuration2_Item1=BoardEdgeRoutToolDia=2000000|GenerateBoardEdgeRout=False|GenerateDrilledSlotsG85=False|GenerateEIADrillFile=False|GenerateSeparatePlatedNonPlatedFiles=False|NumberOfDecimals=4|NumberOfUnits=4|OptimizeChangeLocationCommands=True|OriginPosition=Relative|Record=DrillView|Units=Metric|ZeroesMode=SuppressTrailingZeroes 58 | OutputType3=Design Rules Check 59 | OutputName3=Design Rules Check 60 | OutputCategory3=Validation 61 | OutputDocumentPath3= 62 | OutputVariantName3= 63 | OutputEnabled3=1 64 | OutputEnabled3_OutputMedium1=0 65 | OutputEnabled3_OutputMedium2=5 66 | OutputEnabled3_OutputMedium3=3 67 | OutputDefault3=0 68 | PageOptions3=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=0|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=1|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 69 | Configuration3_Name1=OutputConfigurationParameter1 70 | Configuration3_Item1=?? 71 | OutputType4=Electrical Rules Check 72 | OutputName4=Electrical Rules Check 73 | OutputCategory4=Validation 74 | OutputDocumentPath4= 75 | OutputVariantName4= 76 | OutputEnabled4=1 77 | OutputEnabled4_OutputMedium1=0 78 | OutputEnabled4_OutputMedium2=6 79 | OutputEnabled4_OutputMedium3=4 80 | OutputDefault4=0 81 | PageOptions4=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=0|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=1|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 82 | Configuration4_Name1=OutputConfigurationParameter1 83 | Configuration4_Item1=ERCClassColumnOrder=0|ERCClassColumnSort=0|ERCClassColumnVisibility=True|ERCConnectionMatrixL1=NNNNNNNNNNNWNNNWW|ERCConnectionMatrixL10=NWNNNNNENNEWNNEWN|ERCConnectionMatrixL11=NNENNNNEEENWNENWN|ERCConnectionMatrixL12=WWWWNWWNWWWNWWWNN|ERCConnectionMatrixL13=NNNNNNNNNNNWNNNWW|ERCConnectionMatrixL14=NWEENEEEENEWNEEWW|ERCConnectionMatrixL15=NNENNNNEEENWNENWW|ERCConnectionMatrixL16=WWWWNWWNWWWNWWWNW|ERCConnectionMatrixL17=WNNNNNNNWNNNWWWWN|ERCConnectionMatrixL2=NNWNNNNWWWNWNWNWN|ERCConnectionMatrixL3=NWEENEEEENEWNEEWN|ERCConnectionMatrixL4=NNENNNWEENNWNENWN|ERCConnectionMatrixL5=NNNNNNNNNNNNNNNNN|ERCConnectionMatrixL6=NNENNNNEENNWNENWN|ERCConnectionMatrixL7=NNEWNNWEENNWNENWN|ERCConnectionMatrixL8=NWEENEENEEENNEENN|ERCConnectionMatrixL9=NWEENEEEENEWNEEWW|ERCDocumentColumnOrder=1|ERCDocumentColumnSort=0|ERCDocumentColumnVisibility=True|ERCMessageColumnOrder=2|ERCMessageColumnSort=0|ERCMessageColumnVisibility=True|ERCReportGrouping=2|ERCReportMode=0|ERCReportSuppressedErrors=False|ERCType1=1|ERCType10=1|ERCType100=2|ERCType101=1|ERCType102=2|ERCType103=2|ERCType104=1|ERCType105=2|ERCType106=2|ERCType107=2|ERCType108=2|ERCType109=1|ERCType11=2|ERCType110=1|ERCType111=1|ERCType112=1|ERCType113=1|ERCType12=2|ERCType13=2|ERCType14=1|ERCType15=1|ERCType16=1|ERCType17=1|ERCType18=1|ERCType19=1|ERCType2=1|ERCType20=1|ERCType21=1|ERCType22=1|ERCType23=1|ERCType24=1|ERCType25=2|ERCType26=2|ERCType27=2|ERCType28=1|ERCType29=1|ERCType3=2|ERCType30=1|ERCType31=1|ERCType32=2|ERCType33=2|ERCType34=2|ERCType35=1|ERCType36=2|ERCType37=1|ERCType38=2|ERCType39=2|ERCType4=1|ERCType40=2|ERCType41=0|ERCType42=2|ERCType43=1|ERCType44=1|ERCType45=2|ERCType46=1|ERCType47=2|ERCType48=2|ERCType49=1|ERCType5=2|ERCType50=2|ERCType51=1|ERCType52=1|ERCType53=1|ERCType54=1|ERCType55=1|ERCType56=2|ERCType57=1|ERCType58=1|ERCType59=2|ERCType6=2|ERCType60=1|ERCType61=2|ERCType62=2|ERCType63=1|ERCType64=0|ERCType65=2|ERCType66=3|ERCType67=2|ERCType68=2|ERCType69=2|ERCType7=1|ERCType70=2|ERCType71=2|ERCType72=2|ERCType73=2|ERCType74=1|ERCType75=2|ERCType76=1|ERCType77=1|ERCType78=1|ERCType79=1|ERCType8=1|ERCType80=2|ERCType81=3|ERCType82=3|ERCType83=3|ERCType84=3|ERCType85=3|ERCType86=2|ERCType87=2|ERCType88=2|ERCType89=1|ERCType9=1|ERCType90=1|ERCType91=3|ERCType92=3|ERCType93=2|ERCType94=2|ERCType95=2|ERCType96=2|ERCType97=2|ERCType98=0|ERCType99=1|ERCValidationErrorLevel=1|Record=ERCReportView 84 | OutputType5=BOM_PartType 85 | OutputName5=Bill of Materials 86 | OutputCategory5=Report 87 | OutputDocumentPath5= 88 | OutputVariantName5= 89 | OutputEnabled5=1 90 | OutputEnabled5_OutputMedium1=0 91 | OutputEnabled5_OutputMedium2=4 92 | OutputEnabled5_OutputMedium3=5 93 | OutputDefault5=0 94 | PageOptions5=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=0|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 95 | Configuration5_Name1=ColumnNameFormat 96 | Configuration5_Item1=CaptionAsName 97 | Configuration5_Name2=General 98 | Configuration5_Item2=OpenExported=False|AddToProject=False|ReportBOMViolationsInMessages=False|ForceFit=False|NotFitted=False|Database=False|DatabasePriority=False|IncludePcbData=False|IncludeVaultData=False|IncludeCloudData=False|IncludeDocumentData=True|IncludeAlternatives=False|ShowExportOptions=True|TemplateFilename=|TemplateVaultGuid=|TemplateRevisionGuid=|BatchMode=2|FormWidth=2151|FormHeight=661|SupplierProdQty=1|SupplierAutoQty=False|SupplierUseCachedPricing=False|SupplierCurrency=|SolutionsPerItem=1|SuppliersPerSolution=1|ViewType=1|UseDirectApi=False|BomSetName= 99 | Configuration5_Name3=GroupOrder 100 | Configuration5_Item3=Comment=True|Footprint=True 101 | Configuration5_Name4=OutputConfigurationParameter1 102 | Configuration5_Item4=ncyDistance=250000|GenerateCSVFormat=True|GenerateIPCFormat=False|GenerateSpreadSheetFormat=False|GenerateTextFormat=False|OriginPosition=Relative|OutlineLayer=56|OutputAdjancencies=False|OutputBoardOutline=False|OutputTraces=False|Record=TestPointView|ReportBottomLayerTestpoints=True|ReportTopLayerTestpoints=True|Units=Imperial 103 | Configuration5_Name5=SortOrder 104 | Configuration5_Item5=Designator=Up|Comment=Up 105 | Configuration5_Name6=VisibleOrder 106 | Configuration5_Item6=Designator=91|Comment=176|Manufacturer=133|PartNumber=100|Digi-Key Part Number=100|LCSC PartNumber=100|Description=280|Pins=54|Quantity=45|Model:Footprint=218|Case/Package=138 107 | Configuration5_Name7=VisibleOrder_Flat 108 | Configuration5_Item7=Designator=91|Comment=176|Manufacturer=133|PartNumber=100|Digi-Key Part Number=100|LCSC PartNumber=100|Description=280|Pins=54|Quantity=45|Model:Footprint=218|Case/Package=138 109 | OutputType6=Schematic Print 110 | OutputName6=Schematic Prints 111 | OutputCategory6=Documentation 112 | OutputDocumentPath6= 113 | OutputVariantName6= 114 | OutputEnabled6=0 115 | OutputEnabled6_OutputMedium1=0 116 | OutputEnabled6_OutputMedium2=2 117 | OutputEnabled6_OutputMedium3=0 118 | OutputDefault6=0 119 | PageOptions6=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=0|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 120 | Configuration6_Name1=OutputConfigurationParameter1 121 | Configuration6_Item1=Record=SchPrintView|ShowNoERC=True|ShowParamSet=True|ShowProbe=True|ShowBlanket=True|NoERCSymbolsToShow="Thin Cross","Thick Cross","Small Cross",Checkbox,Triangle|ShowNote=True|ShowNoteCollapsed=True|ShowOpenEnds=True|ExpandDesignator=True|ExpandNetLabel=False|ExpandPort=False|ExpandSheetNum=False|ExpandDocNum=False|PrintArea=0|PrintAreaRect.X1=0|PrintAreaRect.Y1=0|PrintAreaRect.X2=0|PrintAreaRect.Y2=0 122 | OutputType7=PCB 3D Print 123 | OutputName7=PCB 3D Print 124 | OutputCategory7=Documentation 125 | OutputDocumentPath7= 126 | OutputVariantName7= 127 | OutputEnabled7=0 128 | OutputEnabled7_OutputMedium1=0 129 | OutputEnabled7_OutputMedium2=1 130 | OutputEnabled7_OutputMedium3=0 131 | OutputDefault7=0 132 | PageOptions7=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=4.32|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 133 | Configuration7_Name1=OutputConfigurationParameter1 134 | Configuration7_Item1=Record=Pcb3DPrintView|ResX=300|ResY=300|ViewX=31646990|ViewY=32513014|LookAtX=37398480|LookAtY=22399768|LookAtZ=-8.25|UpX=0|UpY=1|UpZ=0|FOV=0|QuatX=-3.72529029846191E-9|QuatY=-1.86264514923096E-9|QuatZ=-1.86264514923096E-9|QuatW=0.999999940395355|Zoom=4.04145853970422E-5|UnitsPercent=True|UnitsDPI=True|LockResAspect=True|ViewConfigType=.config_3d|CustomCamera=False|ViewFromTop=True|ScreenWidth=0|ScreenHeight=0|ViewConfig=RECORD\3Board\2CFGALL.CONFIGURATIONKIND\33\2CFGALL.CONFIGURATIONDESC\3Altium%203D%20White\2CFGALL.COMPONENTBODYREFPOINTCOLOR\316777215\2CFGALL.COMPONENTBODYSNAPPOINTCOLOR\316777215\2CFGALL.SHOWCOMPONENTSNAPMARKERS\3FALSE\2CFG3D.POSITIVETOPSOLDERMASK\3TRUE\2CFG3D.POSITIVEBOTTOMSOLDERMASK\3TRUE\2CFG3D.SHOWCOMPONENTBODIES\3TRUE\2CFG3D.SHOWCOMPONENTSTEPMODELS\3TRUE\2CFG3D.COMPONENTMODELPREFERENCE\30\2CFG3D.SHOWCOMPONENTAXES\3TRUE\2CFG3D.SHOWBOARDCORE\3TRUE\2CFG3D.SHOWBOARDPREPREG\3TRUE\2CFG3D.SHOWTOPSILKSCREEN\3TRUE\2CFG3D.SHOWBOTSILKSCREEN\3TRUE\2CFG3D.SHOWORIGINMARKER\3FALSE\2CFG3D.EYEDIST\32000\2CFG3D.SHOWCUTOUTS\3TRUE\2CFG3D.SHOWROUTETOOLPATH\3TRUE\2CFG3D.SHOWROOMS3D\3FALSE\2CFG3D.USESYSCOLORSFOR3D\3FALSE\2CFG3D.WORKSPACECOLOR\38553110\2CFG3D.BOARDCORECOLOR\313565180\2CFG3D.BOARDPREPREGCOLOR\30\2CFG3D.TOPSOLDERMASKCOLOR\314277081\2CFG3D.BOTSOLDERMASKCOLOR\313421772\2CFG3D.COPPERCOLOR\35360095\2CFG3D.TOPSILKSCREENCOLOR\34408131\2CFG3D.BOTSILKSCREENCOLOR\34408131\2CFG3D.WORKSPACELUMINANCEVARIATION\330\2CFG3D.WORKSPACEBEGINCOLOR\316777215\2CFG3D.WORKSPACEENDCOLOR\316777215\2CFG3D.WORKSPACECOLOROPACITY\31.000000\2CFG3D.BOARDCORECOLOROPACITY\30.828659\2CFG3D.BOARDPREPREGCOLOROPACITY\30.500000\2CFG3D.TOPSOLDERMASKCOLOROPACITY\30.620000\2CFG3D.BOTSOLDERMASKCOLOROPACITY\30.620000\2CFG3D.COPPERCOLOROPACITY\31.000000\2CFG3D.TOPSILKSCREENCOLOROPACITY\31.000000\2CFG3D.BOTSILKSCREENCOLOROPACITY\31.000000\2CFG3D.BOARDTHICKNESSSCALING\31.000000\2CFG3D.SHOWMECHANICALLAYERS\3FALSE\2CFG3D.MECHANICALLAYERSOPACITY\31.000000 135 | OutputType8=PCB Print 136 | OutputName8=PCB Prints 137 | OutputCategory8=Documentation 138 | OutputDocumentPath8= 139 | OutputVariantName8= 140 | OutputEnabled8=0 141 | OutputEnabled8_OutputMedium1=0 142 | OutputEnabled8_OutputMedium2=3 143 | OutputEnabled8_OutputMedium3=0 144 | OutputDefault8=0 145 | PageOptions8=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 146 | Configuration8_Name1=OutputConfigurationParameter1 147 | Configuration8_Item1=DesignatorDisplayMode=Physical|PrintArea=DesignExtent|PrintAreaLowerLeftCornerX=0|PrintAreaLowerLeftCornerY=0|PrintAreaUpperRightCornerX=0|PrintAreaUpperRightCornerY=0|Record=PcbPrintView 148 | Configuration8_Name2=OutputConfigurationParameter2 149 | Configuration8_Item2=IncludeBoardCutouts=False|IncludeBottomLayerComponents=True|IncludeMultiLayerComponents=True|IncludeTopLayerComponents=True|IncludeViewports=True|Index=0|Mirror=False|Name=Multilayer Composite Print|PadNumberFontSize=14|Record=PcbPrintOut|ShowHoles=True|ShowPadNets=False|ShowPadNumbers=False|SubstituteFonts=False 150 | Configuration8_Name3=OutputConfigurationParameter3 151 | Configuration8_Item3=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=TopOverlay|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer 152 | Configuration8_Name4=OutputConfigurationParameter4 153 | Configuration8_Item4=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=TopLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer 154 | Configuration8_Name5=OutputConfigurationParameter5 155 | Configuration8_Item5=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=BottomLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer 156 | Configuration8_Name6=OutputConfigurationParameter6 157 | Configuration8_Item6=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=MultiLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer 158 | Configuration8_Name7=OutputConfigurationParameter7 159 | Configuration8_Item7=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=BottomOverlay|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer 160 | Configuration8_Name8=OutputConfigurationParameter8 161 | Configuration8_Item8=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=KeepOutLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer 162 | Configuration8_Name9=OutputConfigurationParameter9 163 | Configuration8_Item9=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical1|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer 164 | Configuration8_Name10=OutputConfigurationParameter10 165 | Configuration8_Item10=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical8|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer 166 | Configuration8_Name11=OutputConfigurationParameter11 167 | Configuration8_Item11=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical2|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer 168 | Configuration8_Name12=OutputConfigurationParameter12 169 | Configuration8_Item12=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical10|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer 170 | PcbPrintPreferences8=SubsititueFont_Default=True|SubsititueFont_Serif=True|SubsititueFont_SansSerif=True|PrintKeepOuts=False|NetColorOverride=True|PrintPositivePlaneLayers=False|V7_M0.Name=Mechanical Layer 1|V7_M0.Value=True|V7_M1.Name=Mechanical Layer 2|V7_M1.Value=True|V7_M2.Name=Mechanical Layer 3|V7_M2.Value=True|V7_M3.Name=Mechanical Layer 4|V7_M3.Value=True|V7_M4.Name=Mechanical Layer 5|V7_M4.Value=True|V7_M5.Name=Mechanical Layer 6|V7_M5.Value=True|V7_M6.Name=Mechanical Layer 7|V7_M6.Value=True|V7_M7.Name=Mechanical Layer 8|V7_M7.Value=True|V7_M8.Name=Mechanical Layer 9|V7_M8.Value=True|V7_M9.Name=Mechanical Layer 10|V7_M9.Value=True|V7_M10.Name=Mechanical Layer 11|V7_M10.Value=True|V7_M11.Name=Mechanical Layer 12|V7_M11.Value=True|V7_M12.Name=Mechanical Layer 13|V7_M12.Value=True|V7_M13.Name=Mechanical Layer 14|V7_M13.Value=True|V7_M14.Name=Mechanical Layer 15|V7_M14.Value=True|V7_M15.Name=Mechanical Layer 16|V7_M15.Value=True|V7_G0.Name=Top Layer|V7_G0.Value=30|V7_G1.Name=Mid Layer 1|V7_G1.Value=60|V7_G2.Name=Mid Layer 2|V7_G2.Value=90|V7_G3.Name=Mid Layer 3|V7_G3.Value=120|V7_G4.Name=Mid Layer 4|V7_G4.Value=150|V7_G5.Name=Mid Layer 5|V7_G5.Value=180|V7_G6.Name=Mid Layer 6|V7_G6.Value=210|V7_G7.Name=Mid Layer 7|V7_G7.Value=60|V7_G8.Name=Mid Layer 8|V7_G8.Value=90|V7_G9.Name=Mid Layer 9|V7_G9.Value=120|V7_G10.Name=Mid Layer 10|V7_G10.Value=150|V7_G11.Name=Mid Layer 11|V7_G11.Value=180|V7_G12.Name=Mid Layer 12|V7_G12.Value=210|V7_G13.Name=Mid Layer 13|V7_G13.Value=60|V7_G14.Name=Mid Layer 14|V7_G14.Value=95|V7_G15.Name=Mid Layer 15|V7_G15.Value=60|V7_G16.Name=Mid Layer 16|V7_G16.Value=90|V7_G17.Name=Mid Layer 17|V7_G17.Value=120|V7_G18.Name=Mid Layer 18|V7_G18.Value=150|V7_G19.Name=Mid Layer 19|V7_G19.Value=180|V7_G20.Name=Mid Layer 20|V7_G20.Value=210|V7_G21.Name=Mid Layer 21|V7_G21.Value=60|V7_G22.Name=Mid Layer 22|V7_G22.Value=90|V7_G23.Name=Mid Layer 23|V7_G23.Value=120|V7_G24.Name=Mid Layer 24|V7_G24.Value=150|V7_G25.Name=Mid Layer 25|V7_G25.Value=180|V7_G26.Name=Mid Layer 26|V7_G26.Value=210|V7_G27.Name=Mid Layer 27|V7_G27.Value=60|V7_G28.Name=Mid Layer 28|V7_G28.Value=95|V7_G29.Name=Mid Layer 29|V7_G29.Value=60|V7_G30.Name=Mid Layer 30|V7_G30.Value=95|V7_G31.Name=Bottom Layer|V7_G31.Value=90|V7_G32.Name=Top Overlay|V7_G32.Value=192|V7_G33.Name=Bottom Overlay|V7_G33.Value=140|V7_G34.Name=Top Paste|V7_G34.Value=0|V7_G35.Name=Bottom Paste|V7_G35.Value=0|V7_G36.Name=Top Solder Mask|V7_G36.Value=0|V7_G37.Name=Bottom Solder Mask|V7_G37.Value=0|V7_G38.Name=Drill Guide|V7_G38.Value=0|V7_G39.Name=Keep Out Layer|V7_G39.Value=120|V7_G40.Name=Drill Drawing|V7_G40.Value=0|V7_G41.Name=Multi Layer|V7_G41.Value=0|V7_G42.Name=Connect Layer|V7_G42.Value=0|V7_G43.Name=BackGround|V7_G43.Value=255|V7_G44.Name=DRC Errors|V7_G44.Value=0|V7_G45.Name=Highlight Layer|V7_G45.Value=0|V7_G46.Name=Grid Color 1|V7_G46.Value=0|V7_G47.Name=Grid Color 10|V7_G47.Value=0|V7_G48.Name=Pad Hole Layer|V7_G48.Value=210|V7_G49.Name=Via Hole Layer|V7_G49.Value=210|V7_G50.Name=Mechanical Layers|V7_G50.Value=90|V7_G51.Name=Internal Plane Layers|V7_G51.Value=0|V7_G52.Name=Internal Plane 1|V7_G52.Value=0|V7_G53.Name=Internal Plane 2|V7_G53.Value=0|V7_G54.Name=Internal Plane 3|V7_G54.Value=0|V7_G55.Name=Internal Plane 4|V7_G55.Value=0|V7_G56.Name=Internal Plane 5|V7_G56.Value=0|V7_G57.Name=Internal Plane 6|V7_G57.Value=0|V7_G58.Name=Internal Plane 7|V7_G58.Value=0|V7_G59.Name=Internal Plane 8|V7_G59.Value=0|V7_G60.Name=Internal Plane 9|V7_G60.Value=0|V7_G61.Name=Internal Plane 10|V7_G61.Value=0|V7_G62.Name=Internal Plane 11|V7_G62.Value=0|V7_G63.Name=Internal Plane 12|V7_G63.Value=0|V7_G64.Name=Internal Plane 13|V7_G64.Value=0|V7_G65.Name=Internal Plane 14|V7_G65.Value=0|V7_G66.Name=Internal Plane 15|V7_G66.Value=0|V7_G67.Name=Internal Plane 16|V7_G67.Value=0|V7_G68.Name=Mechanical Layer 1|V7_G68.Value=90|V7_G69.Name=Mechanical Layer 2|V7_G69.Value=90|V7_G70.Name=Mechanical Layer 3|V7_G70.Value=90|V7_G71.Name=Mechanical Layer 4|V7_G71.Value=90|V7_G72.Name=Mechanical Layer 5|V7_G72.Value=90|V7_G73.Name=Mechanical Layer 6|V7_G73.Value=90|V7_G74.Name=Mechanical Layer 7|V7_G74.Value=90|V7_G75.Name=Mechanical Layer 8|V7_G75.Value=90|V7_G76.Name=Mechanical Layer 9|V7_G76.Value=90|V7_G77.Name=Mechanical Layer 10|V7_G77.Value=90|V7_G78.Name=Mechanical Layer 11|V7_G78.Value=90|V7_G79.Name=Mechanical Layer 12|V7_G79.Value=90|V7_G80.Name=Mechanical Layer 13|V7_G80.Value=90|V7_G81.Name=Mechanical Layer 14|V7_G81.Value=90|V7_G82.Name=Mechanical Layer 15|V7_G82.Value=90|V7_G83.Name=Mechanical Layer 16|V7_G83.Value=90|Mechanical1=True|Mechanical2=True|Mechanical3=True|Mechanical4=True|Mechanical5=True|Mechanical6=True|Mechanical7=True|Mechanical8=True|Mechanical9=True|Mechanical10=True|Mechanical11=True|Mechanical12=True|Mechanical13=True|Mechanical14=True|Mechanical15=True|Mechanical16=True|Gray Level For TopLayer=30|Gray Level For MidLayer1=60|Gray Level For MidLayer2=90|Gray Level For MidLayer3=120|Gray Level For MidLayer4=150|Gray Level For MidLayer5=180|Gray Level For MidLayer6=210|Gray Level For MidLayer7=60|Gray Level For MidLayer8=90|Gray Level For MidLayer9=120|Gray Level For MidLayer10=150|Gray Level For MidLayer11=180|Gray Level For MidLayer12=210|Gray Level For MidLayer13=60|Gray Level For MidLayer14=95|Gray Level For MidLayer15=60|Gray Level For MidLayer16=90|Gray Level For MidLayer17=120|Gray Level For MidLayer18=150|Gray Level For MidLayer19=180|Gray Level For MidLayer20=210|Gray Level For MidLayer21=60|Gray Level For MidLayer22=90|Gray Level For MidLayer23=120|Gray Level For MidLayer24=150|Gray Level For MidLayer25=180|Gray Level For MidLayer26=210|Gray Level For MidLayer27=60|Gray Level For MidLayer28=95|Gray Level For MidLayer29=60|Gray Level For MidLayer30=95|Gray Level For BottomLayer=90|Gray Level For TopOverlay=192|Gray Level For BottomOverlay=140|Gray Level For TopPaste=0|Gray Level For BottomPaste=0|Gray Level For TopSolder=0|Gray Level For BottomSolder=0|Gray Level For InternalPlane1=0|Gray Level For InternalPlane2=0|Gray Level For InternalPlane3=0|Gray Level For InternalPlane4=0|Gray Level For InternalPlane5=0|Gray Level For InternalPlane6=0|Gray Level For InternalPlane7=0|Gray Level For InternalPlane8=0|Gray Level For InternalPlane9=0|Gray Level For InternalPlane10=0|Gray Level For InternalPlane11=0|Gray Level For InternalPlane12=0|Gray Level For InternalPlane13=0|Gray Level For InternalPlane14=0|Gray Level For InternalPlane15=0|Gray Level For InternalPlane16=0|Gray Level For DrillGuide=0|Gray Level For KeepOutLayer=120|Gray Level For Mechanical1=90|Gray Level For Mechanical2=90|Gray Level For Mechanical3=90|Gray Level For Mechanical4=90|Gray Level For Mechanical5=90|Gray Level For Mechanical6=90|Gray Level For Mechanical7=90|Gray Level For Mechanical8=90|Gray Level For Mechanical9=90|Gray Level For Mechanical10=90|Gray Level For Mechanical11=90|Gray Level For Mechanical12=90|Gray Level For Mechanical13=90|Gray Level For Mechanical14=90|Gray Level For Mechanical15=90|Gray Level For Mechanical16=90|Gray Level For DrillDrawing=0|Gray Level For MultiLayer=0|Gray Level For ConnectLayer=0|Gray Level For BackGroundLayer=255|Gray Level For DRCErrorLayer=0|Gray Level For HighlightLayer=0|Gray Level For GridColor1=0|Gray Level For GridColor10=0|Gray Level For PadHoleLayer=210|Gray Level For ViaHoleLayer=210|Color For TopLayer=255|Color For MidLayer1=32768|Color For MidLayer2=65280|Color For MidLayer3=8388608|Color For MidLayer4=16776960|Color For MidLayer5=8388736|Color For MidLayer6=16711935|Color For MidLayer7=32896|Color For MidLayer8=65535|Color For MidLayer9=8421504|Color For MidLayer10=32768|Color For MidLayer11=8388736|Color For MidLayer12=8421376|Color For MidLayer13=12632256|Color For MidLayer14=128|Color For MidLayer15=32768|Color For MidLayer16=65280|Color For MidLayer17=8388608|Color For MidLayer18=16776960|Color For MidLayer19=8388736|Color For MidLayer20=16711935|Color For MidLayer21=32896|Color For MidLayer22=65535|Color For MidLayer23=8421504|Color For MidLayer24=32768|Color For MidLayer25=8388736|Color For MidLayer26=8421376|Color For MidLayer27=12632256|Color For MidLayer28=8421376|Color For MidLayer29=12632256|Color For MidLayer30=128|Color For BottomLayer=16711680|Color For TopOverlay=32768|Color For BottomOverlay=7585984|Color For TopPaste=8388736|Color For BottomPaste=128|Color For TopSolder=3162822|Color For BottomSolder=7307173|Color For InternalPlane1=32768|Color For InternalPlane2=128|Color For InternalPlane3=8388736|Color For InternalPlane4=8421376|Color For InternalPlane5=32768|Color For InternalPlane6=128|Color For InternalPlane7=8388736|Color For InternalPlane8=8421376|Color For InternalPlane9=32768|Color For InternalPlane10=128|Color For InternalPlane11=8388736|Color For InternalPlane12=8421376|Color For InternalPlane13=32768|Color For InternalPlane14=128|Color For InternalPlane15=8388736|Color For InternalPlane16=8421376|Color For DrillGuide=128|Color For KeepOutLayer=8388736|Color For Mechanical1=8388736|Color For Mechanical2=8421376|Color For Mechanical3=32768|Color For Mechanical4=0|Color For Mechanical5=8388736|Color For Mechanical6=8421376|Color For Mechanical7=32768|Color For Mechanical8=0|Color For Mechanical9=8388736|Color For Mechanical10=8421376|Color For Mechanical11=32768|Color For Mechanical12=0|Color For Mechanical13=8388736|Color For Mechanical14=8421376|Color For Mechanical15=32768|Color For Mechanical16=0|Color For DrillDrawing=3408013|Color For MultiLayer=8421504|Color For ConnectLayer=8421376|Color For BackGroundLayer=15269887|Color For DRCErrorLayer=65280|Color For HighlightLayer=65535|Color For GridColor1=12632256|Color For GridColor10=11913679|Color For PadHoleLayer=6899487|Color For ViaHoleLayer=9279142 171 | OutputType9=ExportSTEP 172 | OutputName9=Export STEP 173 | OutputCategory9=Export 174 | OutputDocumentPath9= 175 | OutputVariantName9= 176 | OutputEnabled9=1 177 | OutputEnabled9_OutputMedium1=0 178 | OutputEnabled9_OutputMedium2=0 179 | OutputEnabled9_OutputMedium3=7 180 | OutputDefault9=0 181 | Configuration9_Name1=OutputConfigurationParameter1 182 | Configuration9_Item1=Record=ExportSTEPView|ExportComponentOptions=0|ExportModelsOption=2|ExportHolesOption=0|CanSelectPrimitives=False|IncludeMechanicalPadHoles=True|IncludeElectricalPadHoles=True|IncludeFreePadHoles=True|ExportFoldedBoard=True|ExportFoldedBoardRate=0|ComponentSuffixType=0|ComponentSuffix= |ExportCopperOption=0|ExportCopperLayer=0|ExportPadAndViaBarrelsOnly=False|IgnoreBoardCopperLayerColors=False|ExportAsSinglePart=False|IncludeCoverLayer=True 183 | OutputType10=Pick Place 184 | OutputName10=Generates pick and place files 185 | OutputCategory10=Assembly 186 | OutputDocumentPath10= 187 | OutputVariantName10= 188 | OutputEnabled10=1 189 | OutputEnabled10_OutputMedium1=0 190 | OutputEnabled10_OutputMedium2=0 191 | OutputEnabled10_OutputMedium3=6 192 | OutputDefault10=0 193 | Configuration10_Name1=OutputConfigurationParameter1 194 | Configuration10_Item1=Record=PickPlaceView|Units=Metric|GenerateCSVFormat=True|GenerateTextFormat=False|ShowUnits=False|Separator=.|ExcludeFilterParam=False|IncludeVariations=False|Filter= |FilterActive=False|Column#1=Name:Designator,Fixed:True,Metric:False,Visible:True,Sort:None,Position:0|Column#2=Name:Comment,Fixed:True,Metric:False,Visible:True,Sort:None,Position:10|Column#3=Name:Layer,Fixed:True,Metric:False,Visible:True,Sort:None,Position:8|Column#4=Name:Footprint,Fixed:True,Metric:False,Visible:True,Sort:None,Position:1|Column#5=Name:Footprint Description,Fixed:True,Metric:False,Visible:False,Sort:None,Position:11|Column#6=Name:Center-X,Fixed:True,Metric:True,Visible:True,Sort:None,Position:2|Column#7=Name:Center-Y,Fixed:True,Metric:True,Visible:True,Sort:Descending,SortIndex:0,Position:3|Column#8=Name:Rotation,Fixed:True,Metric:False,Visible:True,Sort:None,Position:9|Column#9=Name:Description,Fixed:True,Metric:False,Visible:False,Sort:None,Position:12|Column#10=Name:ComponentKind,Fixed:True,Metric:False,Visible:False,Sort:None,Position:13|Column#11=Name:Height,Fixed:True,Metric:True,Visible:False,Sort:None,Position:14|Column#12=Name:Ref-X,Fixed:True,Metric:True,Visible:True,Sort:None,Position:4|Column#13=Name:Ref-Y,Fixed:True,Metric:True,Visible:True,Sort:None,Position:5|Column#14=Name:Pad-X,Fixed:True,Metric:True,Visible:True,Sort:None,Position:6|Column#15=Name:Pad-Y,Fixed:True,Metric:True,Visible:True,Sort:None,Position:7|Column#16=Name:Variation,Fixed:True,Metric:False,Visible:False,Sort:None,Position:15|Column#17=Name:Power,Fixed:False,Metric:False,Visible:False,Sort:None,Position:18|Column#18=Name:Technology,Fixed:False,Metric:False,Visible:False,Sort:None,Position:19|Column#19=Name:Tolerance,Fixed:False,Metric:False,Visible:False,Sort:None,Position:20|Column#20=Name:Case-EIA,Fixed:False,Metric:False,Visible:False,Sort:None,Position:16|Column#21=Name:Case-Metric,Fixed:False,Metric:False,Visible:False,Sort:None,Position:17|Column#22=Name:Value,Fixed:False,Metric:False,Visible:False,Sort:None,Position:21|Column#23=Name:ComponentLink3Description,Fixed:False,Metric:False,Visible:False,Sort:None,Position:27|Column#24=Name:ComponentLink2URL,Fixed:False,Metric:False,Visible:False,Sort:None,Position:26|Column#25=Name:Pitch,Fixed:False,Metric:False,Visible:False,Sort:None,Position:38|Column#26=Name:Rated Voltage,Fixed:False,Metric:False,Visible:False,Sort:None,Position:39|Column#27=Name:Manufacturer,Fixed:False,Metric:False,Visible:False,Sort:None,Position:30|Column#28=Name:Temperature Range,Fixed:False,Metric:False,Visible:False,Sort:None,Position:41|Column#29=Name:Orientation,Fixed:False,Metric:False,Visible:False,Sort:None,Position:33|Column#30=Name:RoHS,Fixed:False,Metric:False,Visible:False,Sort:None,Position:40|Column#31=Name:PartNumber,Fixed:False,Metric:False,Visible:False,Sort:None,Position:37|Column#32=Name:ComponentLink2Description,Fixed:False,Metric:False,Visible:False,Sort:None,Position:25|Column#33=Name:Max Thickness,Fixed:False,Metric:False,Visible:False,Sort:None,Position:31|Column#34=Name:Mounting Technology,Fixed:False,Metric:False,Visible:False,Sort:None,Position:32|Column#35=Name:PackageDescription,Fixed:False,Metric:False,Visible:False,Sort:None,Position:34|Column#36=Name:ComponentLink1URL,Fixed:False,Metric:False,Visible:False,Sort:None,Position:24|Column#37=Name:Color,Fixed:False,Metric:False,Visible:False,Sort:None,Position:22|Column#38=Name:PackageReference,Fixed:False,Metric:False,Visible:False,Sort:None,Position:35|Column#39=Name:ComponentLink3URL,Fixed:False,Metric:False,Visible:False,Sort:None,Position:28|Column#40=Name:ComponentLink1Description,Fixed:False,Metric:False,Visible:False,Sort:None,Position:23|Column#41=Name:DatasheetVersion,Fixed:False,Metric:False,Visible:False,Sort:None,Position:29|Column#42=Name:PackageVersion,Fixed:False,Metric:False,Visible:False,Sort:None,Position:36 195 | OutputType11=Assembly 196 | OutputName11=Assembly Drawings 197 | OutputCategory11=Assembly 198 | OutputDocumentPath11= 199 | OutputVariantName11= 200 | OutputEnabled11=0 201 | OutputEnabled11_OutputMedium1=0 202 | OutputEnabled11_OutputMedium2=7 203 | OutputEnabled11_OutputMedium3=0 204 | OutputDefault11=0 205 | PageOptions11=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 206 | Configuration11_Name1=OutputConfigurationParameter1 207 | Configuration11_Item1=DesignatorDisplayMode=Logical|PrintArea=DesignExtent|PrintAreaLowerLeftCornerX=0|PrintAreaLowerLeftCornerY=0|PrintAreaUpperRightCornerX=0|PrintAreaUpperRightCornerY=0|Record=PcbPrintView 208 | Configuration11_Name2=OutputConfigurationParameter2 209 | Configuration11_Item2=IncludeBoardCutouts=False|IncludeBottomLayerComponents=True|IncludeMultiLayerComponents=True|IncludeTopLayerComponents=True|IncludeViewports=True|Index=0|Mirror=False|Name=Top LayerAssembly Drawing|PadNumberFontSize=14|Record=PcbPrintOut|ShowHoles=False|ShowPadNets=False|ShowPadNumbers=False|SubstituteFonts=True 210 | Configuration11_Name3=OutputConfigurationParameter3 211 | Configuration11_Item3=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical8|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer 212 | Configuration11_Name4=OutputConfigurationParameter4 213 | Configuration11_Item4=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical2|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer 214 | Configuration11_Name5=OutputConfigurationParameter5 215 | Configuration11_Item5=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=TopLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer 216 | Configuration11_Name6=OutputConfigurationParameter6 217 | Configuration11_Item6=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical1|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer 218 | Configuration11_Name7=OutputConfigurationParameter7 219 | Configuration11_Item7=IncludeBoardCutouts=False|IncludeBottomLayerComponents=True|IncludeMultiLayerComponents=True|IncludeTopLayerComponents=True|IncludeViewports=True|Index=1|Mirror=True|Name=Bottom LayerAssembly Drawing|PadNumberFontSize=14|Record=PcbPrintOut|ShowHoles=False|ShowPadNets=False|ShowPadNumbers=False|SubstituteFonts=True 220 | Configuration11_Name8=OutputConfigurationParameter8 221 | Configuration11_Item8=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical9|Polygon=Full|PrintOutIndex=1|Record=PcbPrintLayer 222 | Configuration11_Name9=OutputConfigurationParameter9 223 | Configuration11_Item9=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical3|Polygon=Full|PrintOutIndex=1|Record=PcbPrintLayer 224 | Configuration11_Name10=OutputConfigurationParameter10 225 | Configuration11_Item10=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=BottomLayer|Polygon=Full|PrintOutIndex=1|Record=PcbPrintLayer 226 | Configuration11_Name11=OutputConfigurationParameter11 227 | Configuration11_Item11=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical1|Polygon=Full|PrintOutIndex=1|Record=PcbPrintLayer 228 | PcbPrintPreferences11=SubsititueFont_Default=True|SubsititueFont_Serif=True|SubsititueFont_SansSerif=True|PrintKeepOuts=False|NetColorOverride=True|PrintPositivePlaneLayers=False|V7_M0.Name=Mechanical Layer 1|V7_M0.Value=True|V7_M1.Name=Mechanical Layer 2|V7_M1.Value=True|V7_M2.Name=Mechanical Layer 3|V7_M2.Value=True|V7_M3.Name=Mechanical Layer 4|V7_M3.Value=True|V7_M4.Name=Mechanical Layer 5|V7_M4.Value=True|V7_M5.Name=Mechanical Layer 6|V7_M5.Value=True|V7_M6.Name=Mechanical Layer 7|V7_M6.Value=True|V7_M7.Name=Mechanical Layer 8|V7_M7.Value=True|V7_M8.Name=Mechanical Layer 9|V7_M8.Value=True|V7_M9.Name=Mechanical Layer 10|V7_M9.Value=True|V7_M10.Name=Mechanical Layer 11|V7_M10.Value=True|V7_M11.Name=Mechanical Layer 12|V7_M11.Value=True|V7_M12.Name=Mechanical Layer 13|V7_M12.Value=True|V7_M13.Name=Mechanical Layer 14|V7_M13.Value=True|V7_M14.Name=Mechanical Layer 15|V7_M14.Value=True|V7_M15.Name=Mechanical Layer 16|V7_M15.Value=True|V7_G0.Name=Top Layer|V7_G0.Value=192|V7_G1.Name=Mid Layer 1|V7_G1.Value=60|V7_G2.Name=Mid Layer 2|V7_G2.Value=90|V7_G3.Name=Mid Layer 3|V7_G3.Value=120|V7_G4.Name=Mid Layer 4|V7_G4.Value=150|V7_G5.Name=Mid Layer 5|V7_G5.Value=180|V7_G6.Name=Mid Layer 6|V7_G6.Value=210|V7_G7.Name=Mid Layer 7|V7_G7.Value=60|V7_G8.Name=Mid Layer 8|V7_G8.Value=90|V7_G9.Name=Mid Layer 9|V7_G9.Value=120|V7_G10.Name=Mid Layer 10|V7_G10.Value=150|V7_G11.Name=Mid Layer 11|V7_G11.Value=180|V7_G12.Name=Mid Layer 12|V7_G12.Value=210|V7_G13.Name=Mid Layer 13|V7_G13.Value=60|V7_G14.Name=Mid Layer 14|V7_G14.Value=95|V7_G15.Name=Mid Layer 15|V7_G15.Value=60|V7_G16.Name=Mid Layer 16|V7_G16.Value=90|V7_G17.Name=Mid Layer 17|V7_G17.Value=120|V7_G18.Name=Mid Layer 18|V7_G18.Value=150|V7_G19.Name=Mid Layer 19|V7_G19.Value=180|V7_G20.Name=Mid Layer 20|V7_G20.Value=210|V7_G21.Name=Mid Layer 21|V7_G21.Value=60|V7_G22.Name=Mid Layer 22|V7_G22.Value=90|V7_G23.Name=Mid Layer 23|V7_G23.Value=120|V7_G24.Name=Mid Layer 24|V7_G24.Value=150|V7_G25.Name=Mid Layer 25|V7_G25.Value=180|V7_G26.Name=Mid Layer 26|V7_G26.Value=210|V7_G27.Name=Mid Layer 27|V7_G27.Value=60|V7_G28.Name=Mid Layer 28|V7_G28.Value=95|V7_G29.Name=Mid Layer 29|V7_G29.Value=60|V7_G30.Name=Mid Layer 30|V7_G30.Value=95|V7_G31.Name=Bottom Layer|V7_G31.Value=192|V7_G32.Name=Top Overlay|V7_G32.Value=192|V7_G33.Name=Bottom Overlay|V7_G33.Value=140|V7_G34.Name=Top Paste|V7_G34.Value=0|V7_G35.Name=Bottom Paste|V7_G35.Value=0|V7_G36.Name=Top Solder Mask|V7_G36.Value=0|V7_G37.Name=Bottom Solder Mask|V7_G37.Value=0|V7_G38.Name=Drill Guide|V7_G38.Value=0|V7_G39.Name=Keep Out Layer|V7_G39.Value=120|V7_G40.Name=Drill Drawing|V7_G40.Value=0|V7_G41.Name=Multi Layer|V7_G41.Value=0|V7_G42.Name=Connect Layer|V7_G42.Value=0|V7_G43.Name=BackGround|V7_G43.Value=255|V7_G44.Name=DRC Errors|V7_G44.Value=0|V7_G45.Name=Highlight Layer|V7_G45.Value=0|V7_G46.Name=Grid Color 1|V7_G46.Value=0|V7_G47.Name=Grid Color 10|V7_G47.Value=0|V7_G48.Name=Pad Hole Layer|V7_G48.Value=210|V7_G49.Name=Via Hole Layer|V7_G49.Value=210|V7_G50.Name=Mechanical Layers|V7_G50.Value=90|V7_G51.Name=Internal Plane Layers|V7_G51.Value=0|V7_G52.Name=Internal Plane 1|V7_G52.Value=0|V7_G53.Name=Internal Plane 2|V7_G53.Value=0|V7_G54.Name=Internal Plane 3|V7_G54.Value=0|V7_G55.Name=Internal Plane 4|V7_G55.Value=0|V7_G56.Name=Internal Plane 5|V7_G56.Value=0|V7_G57.Name=Internal Plane 6|V7_G57.Value=0|V7_G58.Name=Internal Plane 7|V7_G58.Value=0|V7_G59.Name=Internal Plane 8|V7_G59.Value=0|V7_G60.Name=Internal Plane 9|V7_G60.Value=0|V7_G61.Name=Internal Plane 10|V7_G61.Value=0|V7_G62.Name=Internal Plane 11|V7_G62.Value=0|V7_G63.Name=Internal Plane 12|V7_G63.Value=0|V7_G64.Name=Internal Plane 13|V7_G64.Value=0|V7_G65.Name=Internal Plane 14|V7_G65.Value=0|V7_G66.Name=Internal Plane 15|V7_G66.Value=0|V7_G67.Name=Internal Plane 16|V7_G67.Value=0|V7_G68.Name=Mechanical Layer 1|V7_G68.Value=90|V7_G69.Name=Mechanical Layer 2|V7_G69.Value=90|V7_G70.Name=Mechanical Layer 3|V7_G70.Value=90|V7_G71.Name=Mechanical Layer 4|V7_G71.Value=128|V7_G72.Name=Mechanical Layer 5|V7_G72.Value=128|V7_G73.Name=Mechanical Layer 6|V7_G73.Value=90|V7_G74.Name=Mechanical Layer 7|V7_G74.Value=90|V7_G75.Name=Mechanical Layer 8|V7_G75.Value=90|V7_G76.Name=Mechanical Layer 9|V7_G76.Value=0|V7_G77.Name=Mechanical Layer 10|V7_G77.Value=0|V7_G78.Name=Mechanical Layer 11|V7_G78.Value=90|V7_G79.Name=Mechanical Layer 12|V7_G79.Value=90|V7_G80.Name=Mechanical Layer 13|V7_G80.Value=90|V7_G81.Name=Mechanical Layer 14|V7_G81.Value=90|V7_G82.Name=Mechanical Layer 15|V7_G82.Value=90|V7_G83.Name=Mechanical Layer 16|V7_G83.Value=90|Mechanical1=True|Mechanical2=True|Mechanical3=True|Mechanical4=True|Mechanical5=True|Mechanical6=True|Mechanical7=True|Mechanical8=True|Mechanical9=True|Mechanical10=True|Mechanical11=True|Mechanical12=True|Mechanical13=True|Mechanical14=True|Mechanical15=True|Mechanical16=True|Gray Level For TopLayer=192|Gray Level For MidLayer1=60|Gray Level For MidLayer2=90|Gray Level For MidLayer3=120|Gray Level For MidLayer4=150|Gray Level For MidLayer5=180|Gray Level For MidLayer6=210|Gray Level For MidLayer7=60|Gray Level For MidLayer8=90|Gray Level For MidLayer9=120|Gray Level For MidLayer10=150|Gray Level For MidLayer11=180|Gray Level For MidLayer12=210|Gray Level For MidLayer13=60|Gray Level For MidLayer14=95|Gray Level For MidLayer15=60|Gray Level For MidLayer16=90|Gray Level For MidLayer17=120|Gray Level For MidLayer18=150|Gray Level For MidLayer19=180|Gray Level For MidLayer20=210|Gray Level For MidLayer21=60|Gray Level For MidLayer22=90|Gray Level For MidLayer23=120|Gray Level For MidLayer24=150|Gray Level For MidLayer25=180|Gray Level For MidLayer26=210|Gray Level For MidLayer27=60|Gray Level For MidLayer28=95|Gray Level For MidLayer29=60|Gray Level For MidLayer30=95|Gray Level For BottomLayer=192|Gray Level For TopOverlay=192|Gray Level For BottomOverlay=140|Gray Level For TopPaste=0|Gray Level For BottomPaste=0|Gray Level For TopSolder=0|Gray Level For BottomSolder=0|Gray Level For InternalPlane1=0|Gray Level For InternalPlane2=0|Gray Level For InternalPlane3=0|Gray Level For InternalPlane4=0|Gray Level For InternalPlane5=0|Gray Level For InternalPlane6=0|Gray Level For InternalPlane7=0|Gray Level For InternalPlane8=0|Gray Level For InternalPlane9=0|Gray Level For InternalPlane10=0|Gray Level For InternalPlane11=0|Gray Level For InternalPlane12=0|Gray Level For InternalPlane13=0|Gray Level For InternalPlane14=0|Gray Level For InternalPlane15=0|Gray Level For InternalPlane16=0|Gray Level For DrillGuide=0|Gray Level For KeepOutLayer=120|Gray Level For Mechanical1=90|Gray Level For Mechanical2=90|Gray Level For Mechanical3=90|Gray Level For Mechanical4=128|Gray Level For Mechanical5=128|Gray Level For Mechanical6=90|Gray Level For Mechanical7=90|Gray Level For Mechanical8=90|Gray Level For Mechanical9=0|Gray Level For Mechanical10=0|Gray Level For Mechanical11=90|Gray Level For Mechanical12=90|Gray Level For Mechanical13=90|Gray Level For Mechanical14=90|Gray Level For Mechanical15=90|Gray Level For Mechanical16=90|Gray Level For DrillDrawing=0|Gray Level For MultiLayer=0|Gray Level For ConnectLayer=0|Gray Level For BackGroundLayer=255|Gray Level For DRCErrorLayer=0|Gray Level For HighlightLayer=0|Gray Level For GridColor1=0|Gray Level For GridColor10=0|Gray Level For PadHoleLayer=210|Gray Level For ViaHoleLayer=210|Color For TopLayer=255|Color For MidLayer1=32768|Color For MidLayer2=65280|Color For MidLayer3=8388608|Color For MidLayer4=16776960|Color For MidLayer5=8388736|Color For MidLayer6=16711935|Color For MidLayer7=32896|Color For MidLayer8=65535|Color For MidLayer9=8421504|Color For MidLayer10=32768|Color For MidLayer11=8388736|Color For MidLayer12=8421376|Color For MidLayer13=12632256|Color For MidLayer14=128|Color For MidLayer15=32768|Color For MidLayer16=65280|Color For MidLayer17=8388608|Color For MidLayer18=16776960|Color For MidLayer19=8388736|Color For MidLayer20=16711935|Color For MidLayer21=32896|Color For MidLayer22=65535|Color For MidLayer23=8421504|Color For MidLayer24=32768|Color For MidLayer25=8388736|Color For MidLayer26=8421376|Color For MidLayer27=12632256|Color For MidLayer28=8421376|Color For MidLayer29=12632256|Color For MidLayer30=128|Color For BottomLayer=16711680|Color For TopOverlay=32768|Color For BottomOverlay=7585984|Color For TopPaste=8388736|Color For BottomPaste=128|Color For TopSolder=3162822|Color For BottomSolder=7307173|Color For InternalPlane1=32768|Color For InternalPlane2=128|Color For InternalPlane3=8388736|Color For InternalPlane4=8421376|Color For InternalPlane5=32768|Color For InternalPlane6=128|Color For InternalPlane7=8388736|Color For InternalPlane8=8421376|Color For InternalPlane9=32768|Color For InternalPlane10=128|Color For InternalPlane11=8388736|Color For InternalPlane12=8421376|Color For InternalPlane13=32768|Color For InternalPlane14=128|Color For InternalPlane15=8388736|Color For InternalPlane16=8421376|Color For DrillGuide=128|Color For KeepOutLayer=8388736|Color For Mechanical1=8388736|Color For Mechanical2=8421376|Color For Mechanical3=32768|Color For Mechanical4=0|Color For Mechanical5=8388736|Color For Mechanical6=8421376|Color For Mechanical7=32768|Color For Mechanical8=0|Color For Mechanical9=8388736|Color For Mechanical10=8421376|Color For Mechanical11=32768|Color For Mechanical12=0|Color For Mechanical13=8388736|Color For Mechanical14=8421376|Color For Mechanical15=32768|Color For Mechanical16=0|Color For DrillDrawing=3408013|Color For MultiLayer=8421504|Color For ConnectLayer=8421376|Color For BackGroundLayer=15269887|Color For DRCErrorLayer=65280|Color For HighlightLayer=65535|Color For GridColor1=12632256|Color For GridColor10=11913679|Color For PadHoleLayer=6899487|Color For ViaHoleLayer=9279142 229 | OutputType12=PCB Print 230 | OutputName12=Stencil 231 | OutputCategory12=Documentation 232 | OutputDocumentPath12= 233 | OutputVariantName12= 234 | OutputEnabled12=0 235 | OutputEnabled12_OutputMedium1=0 236 | OutputEnabled12_OutputMedium2=8 237 | OutputEnabled12_OutputMedium3=0 238 | OutputDefault12=0 239 | PageOptions12=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 240 | Configuration12_Name1=OutputConfigurationParameter1 241 | Configuration12_Item1=DesignatorDisplayMode=Physical|PrintArea=DesignExtent|PrintAreaLowerLeftCornerX=0|PrintAreaLowerLeftCornerY=0|PrintAreaUpperRightCornerX=0|PrintAreaUpperRightCornerY=0|Record=PcbPrintView 242 | Configuration12_Name2=OutputConfigurationParameter2 243 | Configuration12_Item2=IncludeBoardCutouts=False|IncludeBottomLayerComponents=True|IncludeMultiLayerComponents=True|IncludeTopLayerComponents=True|IncludeViewports=True|Index=0|Mirror=False|Name=Top Stencil|PadNumberFontSize=14|Record=PcbPrintOut|ShowHoles=False|ShowPadNets=False|ShowPadNumbers=False|SubstituteFonts=False 244 | Configuration12_Name3=OutputConfigurationParameter3 245 | Configuration12_Item3=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=TopPaste|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer 246 | Configuration12_Name4=OutputConfigurationParameter4 247 | Configuration12_Item4=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical1|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer 248 | Configuration12_Name5=OutputConfigurationParameter5 249 | Configuration12_Item5=IncludeBoardCutouts=False|IncludeBottomLayerComponents=True|IncludeMultiLayerComponents=True|IncludeTopLayerComponents=True|IncludeViewports=True|Index=1|Mirror=False|Name=Bottom Stencil|PadNumberFontSize=14|Record=PcbPrintOut|ShowHoles=False|ShowPadNets=False|ShowPadNumbers=False|SubstituteFonts=False 250 | Configuration12_Name6=OutputConfigurationParameter6 251 | Configuration12_Item6=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=BottomPaste|Polygon=Full|PrintOutIndex=1|Record=PcbPrintLayer 252 | Configuration12_Name7=OutputConfigurationParameter7 253 | Configuration12_Item7=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical1|Polygon=Full|PrintOutIndex=1|Record=PcbPrintLayer 254 | PcbPrintPreferences12= 255 | 256 | [PublishSettings] 257 | OutputFilePath2=C:\Users\matt\Dropbox\Ventilator Project\PCB\sensor_module\pcb\Project Outputs for sensor_module\Job1.PDF 258 | ReleaseManaged2=1 259 | OutputBasePath2=Project Outputs for button board 260 | OutputPathMedia2= 261 | OutputPathMediaValue2= 262 | OutputPathOutputer2=[Output Type] 263 | OutputPathOutputerPrefix2= 264 | OutputPathOutputerValue2= 265 | OutputFileName2=Job1.PDF 266 | OutputFileNameMulti2= 267 | UseOutputNameForMulti2=1 268 | OutputFileNameSpecial2= 269 | OpenOutput2=1 270 | PromptOverwrite2=1 271 | PublishMethod2=0 272 | ZoomLevel2=50 273 | FitSCHPrintSizeToDoc2=1 274 | FitPCBPrintSizeToDoc2=1 275 | GenerateNetsInfo2=1 276 | MarkPins2=1 277 | MarkNetLabels2=1 278 | MarkPortsId2=1 279 | GenerateTOC2=1 280 | ShowComponentParameters2=1 281 | GlobalBookmarks2=0 282 | PDFACompliance2=Disabled 283 | PDFVersion2=Default 284 | OutputFilePath3=C:\Users\matt\Blinkinlabs-Repos\tfh-pixels\button board\button board\Project Outputs for button board\ 285 | ReleaseManaged3=1 286 | OutputBasePath3=Project Outputs for button board 287 | OutputPathMedia3= 288 | OutputPathMediaValue3= 289 | OutputPathOutputer3=[Output Type] 290 | OutputPathOutputerPrefix3= 291 | OutputPathOutputerValue3= 292 | OutputFileName3= 293 | OutputFileNameMulti3= 294 | UseOutputNameForMulti3=1 295 | OutputFileNameSpecial3= 296 | OpenOutput3=1 297 | 298 | [GeneratedFilesSettings] 299 | RelativeOutputPath2=C:\Users\matt\Dropbox\Ventilator Project\PCB\sensor_module\pcb\Project Outputs for sensor_module\Job1.PDF 300 | OpenOutputs2=1 301 | RelativeOutputPath3=C:\Users\matt\Blinkinlabs-Repos\tfh-pixels\button board\button board\Project Outputs for button board\ 302 | OpenOutputs3=1 303 | AddToProject3=0 304 | TimestampFolder3=0 305 | UseOutputName3=0 306 | OpenODBOutput3=0 307 | OpenGerberOutput3=1 308 | OpenNCDrillOutput3=1 309 | OpenIPCOutput3=0 310 | EnableReload3=0 311 | 312 | --------------------------------------------------------------------------------