Initial commit
2
.gitattributes
vendored
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
# Auto detect text files and perform LF normalization
|
||||
* text=auto
|
||||
BIN
3D/CH7410-2032.stl
Normal file
BIN
3D/KP-1A/1.stl
Normal file
BIN
3D/KP-1A/1b.stl
Normal file
BIN
3D/KP-1A/2.stl
Normal file
BIN
3D/KP-1A/2b.stl
Normal file
BIN
3D/KP-1A/3.stl
Normal file
BIN
3D/KP-1A/4.stl
Normal file
BIN
3D/KP-1A/5.stl
Normal file
BIN
3D/Knob.STL
Normal file
BIN
3D/L3.stl
Normal file
327
3D/OpenScad Modules/Прочная коробочка с крышкой.scad
Normal file
|
|
@ -0,0 +1,327 @@
|
|||
/* LICENSE
|
||||
|
||||
This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license
|
||||
https://creativecommons.org/licenses/by-sa/4.0/legalcode
|
||||
|
||||
Author: Christof Dornbierer, christof.dornbierer@gmail.com
|
||||
Date: 02/19/2021
|
||||
License: CC BY-SA 4.0
|
||||
|
||||
Tips: https://paypal.me/dornies :-)
|
||||
*/
|
||||
|
||||
|
||||
/* USAGE
|
||||
ruggedBox(....);
|
||||
|
||||
Parameters
|
||||
length --> outside length of box without ribs
|
||||
width --> outside width of box without ribs
|
||||
height --> outside height of box
|
||||
fillet --> fillet radius (default:4)
|
||||
shell --> shell thickness (default: 3)
|
||||
rib --> rib thickness (default: 10)
|
||||
top=false --> render top or bottom part of box
|
||||
clearance=0.3 --> clearance for joints (default: 0.3)
|
||||
fillHeight=0 --> fill box up to that height e.g. to allow cut outs (default: 0)
|
||||
|
||||
*/
|
||||
|
||||
|
||||
$fn=64;
|
||||
|
||||
//outside length without ribs
|
||||
outSideLength=55;
|
||||
|
||||
//outside width without ribs
|
||||
outSideWidth=55;
|
||||
|
||||
//outside height
|
||||
outSideHeight=50;
|
||||
|
||||
//shell thickness
|
||||
shellThickness=3; // [3:9]
|
||||
|
||||
//rib thickness
|
||||
ribThickness=10; // [6:20]
|
||||
|
||||
//fillet radius
|
||||
filletRadius=4; // [4:20]
|
||||
|
||||
//show example
|
||||
showExample=false;
|
||||
|
||||
//show example combined
|
||||
showExampleCombined=1;
|
||||
|
||||
|
||||
//calculated heights top split box
|
||||
heiBottom=0.7*outSideHeight;
|
||||
heiTop=outSideHeight-heiBottom;
|
||||
|
||||
|
||||
//EXAMPLE
|
||||
if(showExample){
|
||||
|
||||
//bottom
|
||||
color([0.5,0.5,1])
|
||||
translate([0,outSideWidth+4*shellThickness,0])
|
||||
ruggedBox(length=outSideLength, width=outSideWidth, height=heiBottom, fillet=filletRadius, shell=shellThickness, rib=ribThickness, top=false, fillHeight=0);
|
||||
|
||||
//top
|
||||
color([1,1,1])
|
||||
translate([0,2*outSideWidth+8*shellThickness,0])
|
||||
ruggedBox(length=outSideLength, width=outSideWidth, height=heiTop, fillet=filletRadius, shell=shellThickness, rib=ribThickness, top=true);
|
||||
|
||||
}
|
||||
|
||||
if(showExampleCombined){
|
||||
//bottom
|
||||
color([0.5,0.5,1])
|
||||
ruggedBox(length=outSideLength, width=outSideWidth, height=heiBottom, fillet=filletRadius, shell=shellThickness, top=false, fillHeight=0);
|
||||
|
||||
//top
|
||||
color([1,1,1])
|
||||
translate([-outSideLength/2-heiTop-shellThickness,0,outSideHeight+outSideLength/2-heiTop+shellThickness])
|
||||
rotate([0,270,180])
|
||||
ruggedBox(length=outSideLength, width=outSideWidth, height=heiTop, fillet=filletRadius, shell=shellThickness, top=true);
|
||||
}
|
||||
|
||||
|
||||
|
||||
//main module
|
||||
module ruggedBox(length, width, height, fillet=4, shell=3, rib=10, top=false, clearance=0.3, fillHeight=0){
|
||||
union(){
|
||||
difference(){
|
||||
union(){
|
||||
translate([-length/2+fillet+shell, -width/2+fillet+shell,0])
|
||||
union(){
|
||||
//lower part
|
||||
minkowski()
|
||||
{
|
||||
cube([length-2*fillet-2*shell,width-2*fillet-2*shell,height-shell]);
|
||||
cylinder(r1=fillet, r2=fillet+shell,h=shell);
|
||||
}
|
||||
|
||||
//upper part
|
||||
translate([0,0,height-2*shell])
|
||||
minkowski()
|
||||
{
|
||||
cube([length-2*fillet-2*shell,width-2*fillet-2*shell,shell]);
|
||||
cylinder(r1=fillet+shell, r2=fillet+2*shell,h=shell);
|
||||
}
|
||||
|
||||
}
|
||||
//ribs
|
||||
oneRibY(length, width, height, fillet, shell, rib);
|
||||
mirror([1,0,0])oneRibY(length, width, height, fillet, shell, rib);
|
||||
oneRibX(length, width, height, fillet, shell, rib);
|
||||
mirror([0,1,0])oneRibX(length, width, height, fillet, shell, rib);
|
||||
|
||||
//top rabbet
|
||||
if(top==true)topRabbet(length, width, height, fillet, shell);
|
||||
}
|
||||
|
||||
//inside cut out
|
||||
translate([-length/2+fillet+shell, -width/2+fillet+shell,shell+fillHeight])
|
||||
minkowski()
|
||||
{
|
||||
cube([length-2*fillet-2*shell,width-2*fillet-2*shell,height-2*shell+0.1]);
|
||||
cylinder(r=fillet, h=shell);
|
||||
}
|
||||
|
||||
//buttom rabbet cutout
|
||||
if(top==false)bottomRabbet(length, width, height, fillet, shell);
|
||||
|
||||
//bottom hinge cutout
|
||||
if(top==false){
|
||||
translate([-length/2-shell,0,height])
|
||||
rotate([90,90,0])
|
||||
cylinder(d=2*shell+2*clearance, h=width-2*fillet+rib-8*shell+2*clearance, center=true);
|
||||
|
||||
}
|
||||
|
||||
//top hinge cutout
|
||||
if(top==true){
|
||||
translate([-length/2-shell,0,height])
|
||||
rotate([90,90,0])
|
||||
cylinder(d=2*shell+2*clearance, h=width-2*fillet-rib-8*shell+2*clearance, center=true);
|
||||
translate([-length/2-shell,0,height])
|
||||
rotate([90,90,0])
|
||||
cylinder(d=shell+2*clearance, h=width-2*fillet-6*shell, center=true);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
//bottom hinge
|
||||
if(top==false){
|
||||
translate([-length/2-shell,0,height])
|
||||
rotate([90,90,0])
|
||||
cylinder(d=2*shell, h=width-2*fillet-rib-8*shell, center=true);
|
||||
|
||||
translate([-length/2-shell,-(width-2*fillet-rib-8.2*shell)/2,height])
|
||||
sphere(d=shell);
|
||||
|
||||
translate([-length/2-shell,(width-2*fillet-rib-8.2*shell)/2,height])
|
||||
sphere(d=shell);
|
||||
|
||||
difference(){
|
||||
union(){
|
||||
translate([-length/2-shell-0.1*shell,0,height-2.5*shell])
|
||||
cube([1.8*shell,width-2*fillet-rib-8*shell,5*shell], center=true);
|
||||
|
||||
translate([-length/2-shell,0,height-3*shell])
|
||||
cube([2*shell,width-2*fillet-rib-8*shell,4*shell], center=true);
|
||||
}
|
||||
|
||||
translate([-length/2-shell,0,height-5*shell])
|
||||
rotate([0,-45,0])
|
||||
cube([2*shell,width,10*shell], center=true);
|
||||
}
|
||||
}
|
||||
|
||||
//top hinge
|
||||
if(top==true){
|
||||
topHingeSide(length, width, height, fillet, shell, clearance, rib);
|
||||
mirror([0,1,0])topHingeSide(length, width, height, fillet, shell, clearance, rib);
|
||||
}
|
||||
|
||||
//top snap lid
|
||||
if(top==true){
|
||||
difference(){
|
||||
union(){
|
||||
translate([length/2+1.5*shell,0,height])
|
||||
cube([shell,width-2*fillet-rib-8*shell-clearance,6*shell], center=true);
|
||||
|
||||
translate([length/2+0.5*shell,0,height-2*shell])
|
||||
cube([shell,width-2*fillet-rib-8*shell,4*shell], center=true);
|
||||
|
||||
translate([length/2+1.1*shell,0,height+1.5*shell+2*clearance])
|
||||
rotate([90,90,0])
|
||||
cylinder(d=shell, h=width-2*fillet-rib-8*shell-clearance, center=true);
|
||||
}
|
||||
|
||||
translate([length/2+shell,0,height-4*shell])
|
||||
rotate([0,45,0])
|
||||
cube([2*shell,width,10*shell], center=true);
|
||||
|
||||
translate([length/2+shell,(width-2*fillet-rib-8*shell)/2,height+4*shell])
|
||||
rotate([45,0,0])
|
||||
cube([10*shell,3*shell,10*shell], center=true);
|
||||
|
||||
translate([length/2+shell,-(width-2*fillet-rib-8*shell)/2,height+4*shell])
|
||||
rotate([-45,0,0])
|
||||
cube([10*shell,3*shell,10*shell], center=true);
|
||||
|
||||
|
||||
translate([length/2+shell,0,height+4.8*shell])
|
||||
rotate([0,45,0])
|
||||
cube([3*shell,width,10*shell], center=true);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
//helper module for top hinge
|
||||
module topHingeSide(length, width, height, fillet, shell, clearance,rib){
|
||||
difference(){
|
||||
union(){
|
||||
translate([-length/2-shell,(width/2-fillet-4*shell+0.5*clearance),height])
|
||||
rotate([90,90,0])
|
||||
cylinder(d=2*shell, h=rib-clearance, center=true);
|
||||
|
||||
translate([-length/2-shell,(width/2-fillet-4*shell+0.5*clearance),height-2*shell])
|
||||
cube([2*shell,rib-clearance,4*shell], center=true);
|
||||
|
||||
}
|
||||
|
||||
translate([-length/2-shell,(width-2*fillet-rib-8*shell)/2,height])
|
||||
sphere(d=shell);
|
||||
|
||||
translate([-length/2-shell,(width-2*fillet-rib-8.3*shell+clearance)/2,height])
|
||||
rotate([0,-90,0])cylinder(h=shell+0.1, d=shell);
|
||||
|
||||
translate([-length/2-shell,0,height-4*shell])
|
||||
rotate([0,-45,0])
|
||||
cube([2*shell,width,10*shell], center=true);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
//helper module for bottom rabbet
|
||||
module bottomRabbet(length, width, height, fillet, shell){
|
||||
translate([-length/2+fillet+shell, -width/2+fillet+shell,height-shell/8*7])
|
||||
difference(){
|
||||
minkowski()
|
||||
{
|
||||
cube([length-2*fillet-2*shell,width-2*fillet-2*shell,shell/3*2]);
|
||||
cylinder(r1=fillet+1.1*shell, r2=fillet+1.5*shell, h=shell/3);
|
||||
}
|
||||
minkowski()
|
||||
{
|
||||
cube([length-2*fillet-2*shell,width-2*fillet-2*shell,0.001]);
|
||||
cylinder(r1=fillet+0.9*shell,r2=fillet+0.5*shell, h=shell/3);
|
||||
}
|
||||
minkowski()
|
||||
{
|
||||
cube([length-2*fillet-2*shell,width-2*fillet-2*shell,shell/2+0.001]);
|
||||
cylinder(r=fillet+0.5*shell, h=shell/2);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//helper module for top rabbet
|
||||
module topRabbet(length, width, height, fillet, shell){
|
||||
translate([-length/2+fillet+shell, -width/2+fillet+shell,height])
|
||||
difference(){
|
||||
minkowski()
|
||||
{
|
||||
cube([length-2*fillet-2*shell,width-2*fillet-2*shell,0.001]);
|
||||
cylinder(r1=fillet+1.5*shell,r2=fillet+1.1*shell, h=shell/2);
|
||||
}
|
||||
minkowski()
|
||||
{
|
||||
translate([0,0,-0.001])cube([length-2*fillet-2*shell,width-2*fillet-2*shell,0.105]);
|
||||
cylinder(r1=fillet+0.5*shell,r2=fillet+0.9*shell, h=shell/2);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//helper module for ribs
|
||||
module oneRibY(length, width, height, fillet, shell, rib){
|
||||
intersection(){
|
||||
translate([-length/2+fillet+shell, -width/2+fillet+shell,0])
|
||||
minkowski()
|
||||
{
|
||||
cube([length-2*fillet-2*shell,width-2*fillet-2*shell,height-shell]);
|
||||
cylinder(r1=fillet+shell, r2=fillet+2*shell,h=shell);
|
||||
}
|
||||
|
||||
translate([length/2-fillet-4*shell,0,1])
|
||||
cube([rib, 2*width, 2*height], center=true);
|
||||
}
|
||||
}
|
||||
|
||||
//helper module for ribs
|
||||
module oneRibX(length, width, height, fillet, shell, rib){
|
||||
intersection(){
|
||||
translate([-length/2+fillet+shell, -width/2+fillet+shell,0])
|
||||
minkowski()
|
||||
{
|
||||
cube([length-2*fillet-2*shell,width-2*fillet-2*shell,height-shell]);
|
||||
cylinder(r1=fillet+shell, r2=fillet+2*shell,h=shell);
|
||||
}
|
||||
|
||||
translate([0,width/2-fillet-4*shell,1])
|
||||
cube([2*length, rib, 2*height], center=true);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
16
3D/OpenScad Modules/Скругленный блок.scad
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
module radiusedblock(xlen,ylen,zlen,radius)
|
||||
{
|
||||
hull()
|
||||
{
|
||||
translate([radius,radius,radius]) sphere(r=radius, $fn=20);
|
||||
translate([xlen + radius , radius , radius]) sphere(r=radius, $fn=20);
|
||||
translate([radius , ylen + radius , radius]) sphere(r=radius, $fn=20);
|
||||
translate([xlen + radius , ylen + radius , radius]) sphere(r=radius, $fn=20);
|
||||
translate([radius , radius , zlen + radius]) sphere(r=radius, $fn=20);
|
||||
translate([xlen + radius , radius , zlen + radius]) sphere(r=radius, $fn=20);
|
||||
translate([radius,ylen + radius,zlen + radius]) sphere(r=radius, $fn=20);
|
||||
translate([xlen + radius,ylen + radius,zlen + radius]) sphere(r=radius, $fn=20);
|
||||
}
|
||||
}
|
||||
|
||||
radiusedblock(10,10,10,1);
|
||||
13
3D/OpenScad Modules/Удобный минковский.scad
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
/*
|
||||
nashkolxoz.ru
|
||||
made by Predsedatel
|
||||
r - радиус скругления;
|
||||
fn - $fn;
|
||||
*/
|
||||
module mink(r, fn) {
|
||||
if (fn<41){
|
||||
for (i = [0 : $children-1]) {
|
||||
minkowski() { children(i); sphere(r, $fn=fn); };
|
||||
};
|
||||
};
|
||||
};
|
||||
16
3D/OpenScad Modules/Шуруп.scad
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
/*
|
||||
nashkolxoz.ru
|
||||
made by Predsedatel
|
||||
h1 высота шурупа
|
||||
h2 высота шляпки
|
||||
h3 высота прорези под шляпку
|
||||
d1 диаметр резьбы
|
||||
d2 диаметр шляпки
|
||||
*/
|
||||
module screw(h1, h2, h3, d1, d2){
|
||||
union(){
|
||||
translate([0, 0, -0.5*(h1-h2)-h2+0.02]) cylinder((h1-h2), 0.5*d1, 0.5*d1, true, $fn=30);
|
||||
translate([0, 0, -0.5*h2+0.01]) cylinder(h2, 0.5*d1, 0.5*d2, true, $fn=40);
|
||||
translate([0, 0, 0.5*h3]) cylinder(h3, 0.5*d2, 0.5*d2, true, $fn=50);
|
||||
};
|
||||
};
|
||||
BIN
3D/g1022b.stl
Normal file
674
LICENSE
Normal file
|
|
@ -0,0 +1,674 @@
|
|||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 3, 29 June 2007
|
||||
|
||||
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The GNU General Public License is a free, copyleft license for
|
||||
software and other kinds of works.
|
||||
|
||||
The licenses for most software and other practical works are designed
|
||||
to take away your freedom to share and change the works. By contrast,
|
||||
the GNU General Public License is intended to guarantee your freedom to
|
||||
share and change all versions of a program--to make sure it remains free
|
||||
software for all its users. We, the Free Software Foundation, use the
|
||||
GNU General Public License for most of our software; it applies also to
|
||||
any other work released this way by its authors. You can apply it to
|
||||
your programs, too.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not
|
||||
price. Our General Public Licenses are designed to make sure that you
|
||||
have the freedom to distribute copies of free software (and charge for
|
||||
them if you wish), that you receive source code or can get it if you
|
||||
want it, that you can change the software or use pieces of it in new
|
||||
free programs, and that you know you can do these things.
|
||||
|
||||
To protect your rights, we need to prevent others from denying you
|
||||
these rights or asking you to surrender the rights. Therefore, you have
|
||||
certain responsibilities if you distribute copies of the software, or if
|
||||
you modify it: responsibilities to respect the freedom of others.
|
||||
|
||||
For example, if you distribute copies of such a program, whether
|
||||
gratis or for a fee, you must pass on to the recipients the same
|
||||
freedoms that you received. You must make sure that they, too, receive
|
||||
or can get the source code. And you must show them these terms so they
|
||||
know their rights.
|
||||
|
||||
Developers that use the GNU GPL protect your rights with two steps:
|
||||
(1) assert copyright on the software, and (2) offer you this License
|
||||
giving you legal permission to copy, distribute and/or modify it.
|
||||
|
||||
For the developers' and authors' protection, the GPL clearly explains
|
||||
that there is no warranty for this free software. For both users' and
|
||||
authors' sake, the GPL requires that modified versions be marked as
|
||||
changed, so that their problems will not be attributed erroneously to
|
||||
authors of previous versions.
|
||||
|
||||
Some devices are designed to deny users access to install or run
|
||||
modified versions of the software inside them, although the manufacturer
|
||||
can do so. This is fundamentally incompatible with the aim of
|
||||
protecting users' freedom to change the software. The systematic
|
||||
pattern of such abuse occurs in the area of products for individuals to
|
||||
use, which is precisely where it is most unacceptable. Therefore, we
|
||||
have designed this version of the GPL to prohibit the practice for those
|
||||
products. If such problems arise substantially in other domains, we
|
||||
stand ready to extend this provision to those domains in future versions
|
||||
of the GPL, as needed to protect the freedom of users.
|
||||
|
||||
Finally, every program is threatened constantly by software patents.
|
||||
States should not allow patents to restrict development and use of
|
||||
software on general-purpose computers, but in those that do, we wish to
|
||||
avoid the special danger that patents applied to a free program could
|
||||
make it effectively proprietary. To prevent this, the GPL assures that
|
||||
patents cannot be used to render the program non-free.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow.
|
||||
|
||||
TERMS AND CONDITIONS
|
||||
|
||||
0. Definitions.
|
||||
|
||||
"This License" refers to version 3 of the GNU General Public License.
|
||||
|
||||
"Copyright" also means copyright-like laws that apply to other kinds of
|
||||
works, such as semiconductor masks.
|
||||
|
||||
"The Program" refers to any copyrightable work licensed under this
|
||||
License. Each licensee is addressed as "you". "Licensees" and
|
||||
"recipients" may be individuals or organizations.
|
||||
|
||||
To "modify" a work means to copy from or adapt all or part of the work
|
||||
in a fashion requiring copyright permission, other than the making of an
|
||||
exact copy. The resulting work is called a "modified version" of the
|
||||
earlier work or a work "based on" the earlier work.
|
||||
|
||||
A "covered work" means either the unmodified Program or a work based
|
||||
on the Program.
|
||||
|
||||
To "propagate" a work means to do anything with it that, without
|
||||
permission, would make you directly or secondarily liable for
|
||||
infringement under applicable copyright law, except executing it on a
|
||||
computer or modifying a private copy. Propagation includes copying,
|
||||
distribution (with or without modification), making available to the
|
||||
public, and in some countries other activities as well.
|
||||
|
||||
To "convey" a work means any kind of propagation that enables other
|
||||
parties to make or receive copies. Mere interaction with a user through
|
||||
a computer network, with no transfer of a copy, is not conveying.
|
||||
|
||||
An interactive user interface displays "Appropriate Legal Notices"
|
||||
to the extent that it includes a convenient and prominently visible
|
||||
feature that (1) displays an appropriate copyright notice, and (2)
|
||||
tells the user that there is no warranty for the work (except to the
|
||||
extent that warranties are provided), that licensees may convey the
|
||||
work under this License, and how to view a copy of this License. If
|
||||
the interface presents a list of user commands or options, such as a
|
||||
menu, a prominent item in the list meets this criterion.
|
||||
|
||||
1. Source Code.
|
||||
|
||||
The "source code" for a work means the preferred form of the work
|
||||
for making modifications to it. "Object code" means any non-source
|
||||
form of a work.
|
||||
|
||||
A "Standard Interface" means an interface that either is an official
|
||||
standard defined by a recognized standards body, or, in the case of
|
||||
interfaces specified for a particular programming language, one that
|
||||
is widely used among developers working in that language.
|
||||
|
||||
The "System Libraries" of an executable work include anything, other
|
||||
than the work as a whole, that (a) is included in the normal form of
|
||||
packaging a Major Component, but which is not part of that Major
|
||||
Component, and (b) serves only to enable use of the work with that
|
||||
Major Component, or to implement a Standard Interface for which an
|
||||
implementation is available to the public in source code form. A
|
||||
"Major Component", in this context, means a major essential component
|
||||
(kernel, window system, and so on) of the specific operating system
|
||||
(if any) on which the executable work runs, or a compiler used to
|
||||
produce the work, or an object code interpreter used to run it.
|
||||
|
||||
The "Corresponding Source" for a work in object code form means all
|
||||
the source code needed to generate, install, and (for an executable
|
||||
work) run the object code and to modify the work, including scripts to
|
||||
control those activities. However, it does not include the work's
|
||||
System Libraries, or general-purpose tools or generally available free
|
||||
programs which are used unmodified in performing those activities but
|
||||
which are not part of the work. For example, Corresponding Source
|
||||
includes interface definition files associated with source files for
|
||||
the work, and the source code for shared libraries and dynamically
|
||||
linked subprograms that the work is specifically designed to require,
|
||||
such as by intimate data communication or control flow between those
|
||||
subprograms and other parts of the work.
|
||||
|
||||
The Corresponding Source need not include anything that users
|
||||
can regenerate automatically from other parts of the Corresponding
|
||||
Source.
|
||||
|
||||
The Corresponding Source for a work in source code form is that
|
||||
same work.
|
||||
|
||||
2. Basic Permissions.
|
||||
|
||||
All rights granted under this License are granted for the term of
|
||||
copyright on the Program, and are irrevocable provided the stated
|
||||
conditions are met. This License explicitly affirms your unlimited
|
||||
permission to run the unmodified Program. The output from running a
|
||||
covered work is covered by this License only if the output, given its
|
||||
content, constitutes a covered work. This License acknowledges your
|
||||
rights of fair use or other equivalent, as provided by copyright law.
|
||||
|
||||
You may make, run and propagate covered works that you do not
|
||||
convey, without conditions so long as your license otherwise remains
|
||||
in force. You may convey covered works to others for the sole purpose
|
||||
of having them make modifications exclusively for you, or provide you
|
||||
with facilities for running those works, provided that you comply with
|
||||
the terms of this License in conveying all material for which you do
|
||||
not control copyright. Those thus making or running the covered works
|
||||
for you must do so exclusively on your behalf, under your direction
|
||||
and control, on terms that prohibit them from making any copies of
|
||||
your copyrighted material outside their relationship with you.
|
||||
|
||||
Conveying under any other circumstances is permitted solely under
|
||||
the conditions stated below. Sublicensing is not allowed; section 10
|
||||
makes it unnecessary.
|
||||
|
||||
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
||||
|
||||
No covered work shall be deemed part of an effective technological
|
||||
measure under any applicable law fulfilling obligations under article
|
||||
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
||||
similar laws prohibiting or restricting circumvention of such
|
||||
measures.
|
||||
|
||||
When you convey a covered work, you waive any legal power to forbid
|
||||
circumvention of technological measures to the extent such circumvention
|
||||
is effected by exercising rights under this License with respect to
|
||||
the covered work, and you disclaim any intention to limit operation or
|
||||
modification of the work as a means of enforcing, against the work's
|
||||
users, your or third parties' legal rights to forbid circumvention of
|
||||
technological measures.
|
||||
|
||||
4. Conveying Verbatim Copies.
|
||||
|
||||
You may convey verbatim copies of the Program's source code as you
|
||||
receive it, in any medium, provided that you conspicuously and
|
||||
appropriately publish on each copy an appropriate copyright notice;
|
||||
keep intact all notices stating that this License and any
|
||||
non-permissive terms added in accord with section 7 apply to the code;
|
||||
keep intact all notices of the absence of any warranty; and give all
|
||||
recipients a copy of this License along with the Program.
|
||||
|
||||
You may charge any price or no price for each copy that you convey,
|
||||
and you may offer support or warranty protection for a fee.
|
||||
|
||||
5. Conveying Modified Source Versions.
|
||||
|
||||
You may convey a work based on the Program, or the modifications to
|
||||
produce it from the Program, in the form of source code under the
|
||||
terms of section 4, provided that you also meet all of these conditions:
|
||||
|
||||
a) The work must carry prominent notices stating that you modified
|
||||
it, and giving a relevant date.
|
||||
|
||||
b) The work must carry prominent notices stating that it is
|
||||
released under this License and any conditions added under section
|
||||
7. This requirement modifies the requirement in section 4 to
|
||||
"keep intact all notices".
|
||||
|
||||
c) You must license the entire work, as a whole, under this
|
||||
License to anyone who comes into possession of a copy. This
|
||||
License will therefore apply, along with any applicable section 7
|
||||
additional terms, to the whole of the work, and all its parts,
|
||||
regardless of how they are packaged. This License gives no
|
||||
permission to license the work in any other way, but it does not
|
||||
invalidate such permission if you have separately received it.
|
||||
|
||||
d) If the work has interactive user interfaces, each must display
|
||||
Appropriate Legal Notices; however, if the Program has interactive
|
||||
interfaces that do not display Appropriate Legal Notices, your
|
||||
work need not make them do so.
|
||||
|
||||
A compilation of a covered work with other separate and independent
|
||||
works, which are not by their nature extensions of the covered work,
|
||||
and which are not combined with it such as to form a larger program,
|
||||
in or on a volume of a storage or distribution medium, is called an
|
||||
"aggregate" if the compilation and its resulting copyright are not
|
||||
used to limit the access or legal rights of the compilation's users
|
||||
beyond what the individual works permit. Inclusion of a covered work
|
||||
in an aggregate does not cause this License to apply to the other
|
||||
parts of the aggregate.
|
||||
|
||||
6. Conveying Non-Source Forms.
|
||||
|
||||
You may convey a covered work in object code form under the terms
|
||||
of sections 4 and 5, provided that you also convey the
|
||||
machine-readable Corresponding Source under the terms of this License,
|
||||
in one of these ways:
|
||||
|
||||
a) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by the
|
||||
Corresponding Source fixed on a durable physical medium
|
||||
customarily used for software interchange.
|
||||
|
||||
b) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by a
|
||||
written offer, valid for at least three years and valid for as
|
||||
long as you offer spare parts or customer support for that product
|
||||
model, to give anyone who possesses the object code either (1) a
|
||||
copy of the Corresponding Source for all the software in the
|
||||
product that is covered by this License, on a durable physical
|
||||
medium customarily used for software interchange, for a price no
|
||||
more than your reasonable cost of physically performing this
|
||||
conveying of source, or (2) access to copy the
|
||||
Corresponding Source from a network server at no charge.
|
||||
|
||||
c) Convey individual copies of the object code with a copy of the
|
||||
written offer to provide the Corresponding Source. This
|
||||
alternative is allowed only occasionally and noncommercially, and
|
||||
only if you received the object code with such an offer, in accord
|
||||
with subsection 6b.
|
||||
|
||||
d) Convey the object code by offering access from a designated
|
||||
place (gratis or for a charge), and offer equivalent access to the
|
||||
Corresponding Source in the same way through the same place at no
|
||||
further charge. You need not require recipients to copy the
|
||||
Corresponding Source along with the object code. If the place to
|
||||
copy the object code is a network server, the Corresponding Source
|
||||
may be on a different server (operated by you or a third party)
|
||||
that supports equivalent copying facilities, provided you maintain
|
||||
clear directions next to the object code saying where to find the
|
||||
Corresponding Source. Regardless of what server hosts the
|
||||
Corresponding Source, you remain obligated to ensure that it is
|
||||
available for as long as needed to satisfy these requirements.
|
||||
|
||||
e) Convey the object code using peer-to-peer transmission, provided
|
||||
you inform other peers where the object code and Corresponding
|
||||
Source of the work are being offered to the general public at no
|
||||
charge under subsection 6d.
|
||||
|
||||
A separable portion of the object code, whose source code is excluded
|
||||
from the Corresponding Source as a System Library, need not be
|
||||
included in conveying the object code work.
|
||||
|
||||
A "User Product" is either (1) a "consumer product", which means any
|
||||
tangible personal property which is normally used for personal, family,
|
||||
or household purposes, or (2) anything designed or sold for incorporation
|
||||
into a dwelling. In determining whether a product is a consumer product,
|
||||
doubtful cases shall be resolved in favor of coverage. For a particular
|
||||
product received by a particular user, "normally used" refers to a
|
||||
typical or common use of that class of product, regardless of the status
|
||||
of the particular user or of the way in which the particular user
|
||||
actually uses, or expects or is expected to use, the product. A product
|
||||
is a consumer product regardless of whether the product has substantial
|
||||
commercial, industrial or non-consumer uses, unless such uses represent
|
||||
the only significant mode of use of the product.
|
||||
|
||||
"Installation Information" for a User Product means any methods,
|
||||
procedures, authorization keys, or other information required to install
|
||||
and execute modified versions of a covered work in that User Product from
|
||||
a modified version of its Corresponding Source. The information must
|
||||
suffice to ensure that the continued functioning of the modified object
|
||||
code is in no case prevented or interfered with solely because
|
||||
modification has been made.
|
||||
|
||||
If you convey an object code work under this section in, or with, or
|
||||
specifically for use in, a User Product, and the conveying occurs as
|
||||
part of a transaction in which the right of possession and use of the
|
||||
User Product is transferred to the recipient in perpetuity or for a
|
||||
fixed term (regardless of how the transaction is characterized), the
|
||||
Corresponding Source conveyed under this section must be accompanied
|
||||
by the Installation Information. But this requirement does not apply
|
||||
if neither you nor any third party retains the ability to install
|
||||
modified object code on the User Product (for example, the work has
|
||||
been installed in ROM).
|
||||
|
||||
The requirement to provide Installation Information does not include a
|
||||
requirement to continue to provide support service, warranty, or updates
|
||||
for a work that has been modified or installed by the recipient, or for
|
||||
the User Product in which it has been modified or installed. Access to a
|
||||
network may be denied when the modification itself materially and
|
||||
adversely affects the operation of the network or violates the rules and
|
||||
protocols for communication across the network.
|
||||
|
||||
Corresponding Source conveyed, and Installation Information provided,
|
||||
in accord with this section must be in a format that is publicly
|
||||
documented (and with an implementation available to the public in
|
||||
source code form), and must require no special password or key for
|
||||
unpacking, reading or copying.
|
||||
|
||||
7. Additional Terms.
|
||||
|
||||
"Additional permissions" are terms that supplement the terms of this
|
||||
License by making exceptions from one or more of its conditions.
|
||||
Additional permissions that are applicable to the entire Program shall
|
||||
be treated as though they were included in this License, to the extent
|
||||
that they are valid under applicable law. If additional permissions
|
||||
apply only to part of the Program, that part may be used separately
|
||||
under those permissions, but the entire Program remains governed by
|
||||
this License without regard to the additional permissions.
|
||||
|
||||
When you convey a copy of a covered work, you may at your option
|
||||
remove any additional permissions from that copy, or from any part of
|
||||
it. (Additional permissions may be written to require their own
|
||||
removal in certain cases when you modify the work.) You may place
|
||||
additional permissions on material, added by you to a covered work,
|
||||
for which you have or can give appropriate copyright permission.
|
||||
|
||||
Notwithstanding any other provision of this License, for material you
|
||||
add to a covered work, you may (if authorized by the copyright holders of
|
||||
that material) supplement the terms of this License with terms:
|
||||
|
||||
a) Disclaiming warranty or limiting liability differently from the
|
||||
terms of sections 15 and 16 of this License; or
|
||||
|
||||
b) Requiring preservation of specified reasonable legal notices or
|
||||
author attributions in that material or in the Appropriate Legal
|
||||
Notices displayed by works containing it; or
|
||||
|
||||
c) Prohibiting misrepresentation of the origin of that material, or
|
||||
requiring that modified versions of such material be marked in
|
||||
reasonable ways as different from the original version; or
|
||||
|
||||
d) Limiting the use for publicity purposes of names of licensors or
|
||||
authors of the material; or
|
||||
|
||||
e) Declining to grant rights under trademark law for use of some
|
||||
trade names, trademarks, or service marks; or
|
||||
|
||||
f) Requiring indemnification of licensors and authors of that
|
||||
material by anyone who conveys the material (or modified versions of
|
||||
it) with contractual assumptions of liability to the recipient, for
|
||||
any liability that these contractual assumptions directly impose on
|
||||
those licensors and authors.
|
||||
|
||||
All other non-permissive additional terms are considered "further
|
||||
restrictions" within the meaning of section 10. If the Program as you
|
||||
received it, or any part of it, contains a notice stating that it is
|
||||
governed by this License along with a term that is a further
|
||||
restriction, you may remove that term. If a license document contains
|
||||
a further restriction but permits relicensing or conveying under this
|
||||
License, you may add to a covered work material governed by the terms
|
||||
of that license document, provided that the further restriction does
|
||||
not survive such relicensing or conveying.
|
||||
|
||||
If you add terms to a covered work in accord with this section, you
|
||||
must place, in the relevant source files, a statement of the
|
||||
additional terms that apply to those files, or a notice indicating
|
||||
where to find the applicable terms.
|
||||
|
||||
Additional terms, permissive or non-permissive, may be stated in the
|
||||
form of a separately written license, or stated as exceptions;
|
||||
the above requirements apply either way.
|
||||
|
||||
8. Termination.
|
||||
|
||||
You may not propagate or modify a covered work except as expressly
|
||||
provided under this License. Any attempt otherwise to propagate or
|
||||
modify it is void, and will automatically terminate your rights under
|
||||
this License (including any patent licenses granted under the third
|
||||
paragraph of section 11).
|
||||
|
||||
However, if you cease all violation of this License, then your
|
||||
license from a particular copyright holder is reinstated (a)
|
||||
provisionally, unless and until the copyright holder explicitly and
|
||||
finally terminates your license, and (b) permanently, if the copyright
|
||||
holder fails to notify you of the violation by some reasonable means
|
||||
prior to 60 days after the cessation.
|
||||
|
||||
Moreover, your license from a particular copyright holder is
|
||||
reinstated permanently if the copyright holder notifies you of the
|
||||
violation by some reasonable means, this is the first time you have
|
||||
received notice of violation of this License (for any work) from that
|
||||
copyright holder, and you cure the violation prior to 30 days after
|
||||
your receipt of the notice.
|
||||
|
||||
Termination of your rights under this section does not terminate the
|
||||
licenses of parties who have received copies or rights from you under
|
||||
this License. If your rights have been terminated and not permanently
|
||||
reinstated, you do not qualify to receive new licenses for the same
|
||||
material under section 10.
|
||||
|
||||
9. Acceptance Not Required for Having Copies.
|
||||
|
||||
You are not required to accept this License in order to receive or
|
||||
run a copy of the Program. Ancillary propagation of a covered work
|
||||
occurring solely as a consequence of using peer-to-peer transmission
|
||||
to receive a copy likewise does not require acceptance. However,
|
||||
nothing other than this License grants you permission to propagate or
|
||||
modify any covered work. These actions infringe copyright if you do
|
||||
not accept this License. Therefore, by modifying or propagating a
|
||||
covered work, you indicate your acceptance of this License to do so.
|
||||
|
||||
10. Automatic Licensing of Downstream Recipients.
|
||||
|
||||
Each time you convey a covered work, the recipient automatically
|
||||
receives a license from the original licensors, to run, modify and
|
||||
propagate that work, subject to this License. You are not responsible
|
||||
for enforcing compliance by third parties with this License.
|
||||
|
||||
An "entity transaction" is a transaction transferring control of an
|
||||
organization, or substantially all assets of one, or subdividing an
|
||||
organization, or merging organizations. If propagation of a covered
|
||||
work results from an entity transaction, each party to that
|
||||
transaction who receives a copy of the work also receives whatever
|
||||
licenses to the work the party's predecessor in interest had or could
|
||||
give under the previous paragraph, plus a right to possession of the
|
||||
Corresponding Source of the work from the predecessor in interest, if
|
||||
the predecessor has it or can get it with reasonable efforts.
|
||||
|
||||
You may not impose any further restrictions on the exercise of the
|
||||
rights granted or affirmed under this License. For example, you may
|
||||
not impose a license fee, royalty, or other charge for exercise of
|
||||
rights granted under this License, and you may not initiate litigation
|
||||
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
||||
any patent claim is infringed by making, using, selling, offering for
|
||||
sale, or importing the Program or any portion of it.
|
||||
|
||||
11. Patents.
|
||||
|
||||
A "contributor" is a copyright holder who authorizes use under this
|
||||
License of the Program or a work on which the Program is based. The
|
||||
work thus licensed is called the contributor's "contributor version".
|
||||
|
||||
A contributor's "essential patent claims" are all patent claims
|
||||
owned or controlled by the contributor, whether already acquired or
|
||||
hereafter acquired, that would be infringed by some manner, permitted
|
||||
by this License, of making, using, or selling its contributor version,
|
||||
but do not include claims that would be infringed only as a
|
||||
consequence of further modification of the contributor version. For
|
||||
purposes of this definition, "control" includes the right to grant
|
||||
patent sublicenses in a manner consistent with the requirements of
|
||||
this License.
|
||||
|
||||
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
||||
patent license under the contributor's essential patent claims, to
|
||||
make, use, sell, offer for sale, import and otherwise run, modify and
|
||||
propagate the contents of its contributor version.
|
||||
|
||||
In the following three paragraphs, a "patent license" is any express
|
||||
agreement or commitment, however denominated, not to enforce a patent
|
||||
(such as an express permission to practice a patent or covenant not to
|
||||
sue for patent infringement). To "grant" such a patent license to a
|
||||
party means to make such an agreement or commitment not to enforce a
|
||||
patent against the party.
|
||||
|
||||
If you convey a covered work, knowingly relying on a patent license,
|
||||
and the Corresponding Source of the work is not available for anyone
|
||||
to copy, free of charge and under the terms of this License, through a
|
||||
publicly available network server or other readily accessible means,
|
||||
then you must either (1) cause the Corresponding Source to be so
|
||||
available, or (2) arrange to deprive yourself of the benefit of the
|
||||
patent license for this particular work, or (3) arrange, in a manner
|
||||
consistent with the requirements of this License, to extend the patent
|
||||
license to downstream recipients. "Knowingly relying" means you have
|
||||
actual knowledge that, but for the patent license, your conveying the
|
||||
covered work in a country, or your recipient's use of the covered work
|
||||
in a country, would infringe one or more identifiable patents in that
|
||||
country that you have reason to believe are valid.
|
||||
|
||||
If, pursuant to or in connection with a single transaction or
|
||||
arrangement, you convey, or propagate by procuring conveyance of, a
|
||||
covered work, and grant a patent license to some of the parties
|
||||
receiving the covered work authorizing them to use, propagate, modify
|
||||
or convey a specific copy of the covered work, then the patent license
|
||||
you grant is automatically extended to all recipients of the covered
|
||||
work and works based on it.
|
||||
|
||||
A patent license is "discriminatory" if it does not include within
|
||||
the scope of its coverage, prohibits the exercise of, or is
|
||||
conditioned on the non-exercise of one or more of the rights that are
|
||||
specifically granted under this License. You may not convey a covered
|
||||
work if you are a party to an arrangement with a third party that is
|
||||
in the business of distributing software, under which you make payment
|
||||
to the third party based on the extent of your activity of conveying
|
||||
the work, and under which the third party grants, to any of the
|
||||
parties who would receive the covered work from you, a discriminatory
|
||||
patent license (a) in connection with copies of the covered work
|
||||
conveyed by you (or copies made from those copies), or (b) primarily
|
||||
for and in connection with specific products or compilations that
|
||||
contain the covered work, unless you entered into that arrangement,
|
||||
or that patent license was granted, prior to 28 March 2007.
|
||||
|
||||
Nothing in this License shall be construed as excluding or limiting
|
||||
any implied license or other defenses to infringement that may
|
||||
otherwise be available to you under applicable patent law.
|
||||
|
||||
12. No Surrender of Others' Freedom.
|
||||
|
||||
If conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot convey a
|
||||
covered work so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you may
|
||||
not convey it at all. For example, if you agree to terms that obligate you
|
||||
to collect a royalty for further conveying from those to whom you convey
|
||||
the Program, the only way you could satisfy both those terms and this
|
||||
License would be to refrain entirely from conveying the Program.
|
||||
|
||||
13. Use with the GNU Affero General Public License.
|
||||
|
||||
Notwithstanding any other provision of this License, you have
|
||||
permission to link or combine any covered work with a work licensed
|
||||
under version 3 of the GNU Affero General Public License into a single
|
||||
combined work, and to convey the resulting work. The terms of this
|
||||
License will continue to apply to the part which is the covered work,
|
||||
but the special requirements of the GNU Affero General Public License,
|
||||
section 13, concerning interaction through a network will apply to the
|
||||
combination as such.
|
||||
|
||||
14. Revised Versions of this License.
|
||||
|
||||
The Free Software Foundation may publish revised and/or new versions of
|
||||
the GNU General Public License from time to time. Such new versions will
|
||||
be similar in spirit to the present version, but may differ in detail to
|
||||
address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the
|
||||
Program specifies that a certain numbered version of the GNU General
|
||||
Public License "or any later version" applies to it, you have the
|
||||
option of following the terms and conditions either of that numbered
|
||||
version or of any later version published by the Free Software
|
||||
Foundation. If the Program does not specify a version number of the
|
||||
GNU General Public License, you may choose any version ever published
|
||||
by the Free Software Foundation.
|
||||
|
||||
If the Program specifies that a proxy can decide which future
|
||||
versions of the GNU General Public License can be used, that proxy's
|
||||
public statement of acceptance of a version permanently authorizes you
|
||||
to choose that version for the Program.
|
||||
|
||||
Later license versions may give you additional or different
|
||||
permissions. However, no additional obligations are imposed on any
|
||||
author or copyright holder as a result of your choosing to follow a
|
||||
later version.
|
||||
|
||||
15. Disclaimer of Warranty.
|
||||
|
||||
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
||||
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
||||
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
||||
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
||||
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
||||
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
||||
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||
|
||||
16. Limitation of Liability.
|
||||
|
||||
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
||||
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
||||
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
||||
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
||||
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
||||
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
||||
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
||||
SUCH DAMAGES.
|
||||
|
||||
17. Interpretation of Sections 15 and 16.
|
||||
|
||||
If the disclaimer of warranty and limitation of liability provided
|
||||
above cannot be given local legal effect according to their terms,
|
||||
reviewing courts shall apply local law that most closely approximates
|
||||
an absolute waiver of all civil liability in connection with the
|
||||
Program, unless a warranty or assumption of liability accompanies a
|
||||
copy of the Program in return for a fee.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest
|
||||
possible use to the public, the best way to achieve this is to make it
|
||||
free software which everyone can redistribute and change under these terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest
|
||||
to attach them to the start of each source file to most effectively
|
||||
state the exclusion of warranty; and each file should have at least
|
||||
the "copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
<one line to give the program's name and a brief idea of what it does.>
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
If the program does terminal interaction, make it output a short
|
||||
notice like this when it starts in an interactive mode:
|
||||
|
||||
<program> Copyright (C) <year> <name of author>
|
||||
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
This is free software, and you are welcome to redistribute it
|
||||
under certain conditions; type `show c' for details.
|
||||
|
||||
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||
parts of the General Public License. Of course, your program's commands
|
||||
might be different; for a GUI interface, you would use an "about box".
|
||||
|
||||
You should also get your employer (if you work as a programmer) or school,
|
||||
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
||||
For more information on this, and how to apply and follow the GNU GPL, see
|
||||
<https://www.gnu.org/licenses/>.
|
||||
|
||||
The GNU General Public License does not permit incorporating your program
|
||||
into proprietary programs. If your program is a subroutine library, you
|
||||
may consider it more useful to permit linking proprietary applications with
|
||||
the library. If this is what you want to do, use the GNU Lesser General
|
||||
Public License instead of this License. But first, please read
|
||||
<https://www.gnu.org/licenses/why-not-lgpl.html>.
|
||||
1851
Projects/BLOKS/BLOCKS.cds
Normal file
2
Projects/BLOKS/related_files/Component/0.1@CC0805.url
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
[InternetShortcut]
|
||||
URL=https://www.promelec.ru/product/109257/
|
||||
1
Projects/BLOKS/related_files/Component/10.0@CC0805.txt
Normal file
|
|
@ -0,0 +1 @@
|
|||
Чип-конденсатор 0805 10.0uF X7R 16V
|
||||
2
Projects/BLOKS/related_files/Component/10.0@CC0805.url
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
[InternetShortcut]
|
||||
URL=https://www.promelec.ru/product/188615/
|
||||
1
Projects/BLOKS/related_files/Component/10k@RC0805.txt
Normal file
|
|
@ -0,0 +1 @@
|
|||
Чип-резистор 0805 10k ±5%
|
||||
BIN
Projects/BLOKS/related_files/Component/CC0805.jpg
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
Projects/BLOKS/related_files/Component/CDRH3D16NP.jpg
Normal file
|
After Width: | Height: | Size: 26 KiB |
BIN
Projects/BLOKS/related_files/Component/RC0805.jpg
Normal file
|
After Width: | Height: | Size: 16 KiB |
BIN
Projects/BLOKS/related_files/Component/SOT-23-5.jpg
Normal file
|
After Width: | Height: | Size: 78 KiB |
BIN
Projects/BLOKS/related_files/Component/SOT-23-6.jpg
Normal file
|
After Width: | Height: | Size: 119 KiB |
BIN
Projects/BLOKS/related_files/Component/TLV70030DDC@SOT-23-5.pdf
Normal file
|
|
@ -0,0 +1 @@
|
|||
TLV70030DDC Линейный стабилизатор, 3v, 200mA
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
[InternetShortcut]
|
||||
URL=https://aliexpress.ru/item/1005002613761487.html
|
||||
BIN
Projects/BLOKS/related_files/Component/TLV70033DDC@SOT-23-5.pdf
Normal file
|
|
@ -0,0 +1 @@
|
|||
TLV700 200mA, Low-IQ, Low-Dropout Regulator for Portable Devices
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
[InternetShortcut]
|
||||
URL=https://aliexpress.ru/item/1005004437654866.html
|
||||
BIN
Projects/BLOKS/related_files/Component/USBLC6-2SC6@SOT-23-6.pdf
Normal file
|
|
@ -0,0 +1 @@
|
|||
Микросхема USBLC6-2SC6, защита USB от электростатических разрядов
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
[InternetShortcut]
|
||||
URL=https://www.promelec.ru/product/128262/
|
||||
531
Projects/BLOKS/related_files/backup/+20v.cds.b
Normal file
|
|
@ -0,0 +1,531 @@
|
|||
[options]
|
||||
|
||||
app_folder: C:\Users\Duxah\Desktop\Duxah\FreePcbDoc\FreePCBDev\Schematic Constructor\Debug
|
||||
version: 1.312
|
||||
file_version: 1.312
|
||||
project_name: "+20v.cds"
|
||||
library_folder: "c:\ðàáî÷àÿ ïàïêà\freepcb_libraries"
|
||||
full_library_folder: "c:\ðàáî÷àÿ ïàïêà\freepcb_libraries\lib_footprints"
|
||||
CAM_folder: "C:\Freeasy\Projects\Armkor2\cookies\print_layers"
|
||||
netlist_completed: "0"
|
||||
bom_options: "721056"
|
||||
page_number: "1"
|
||||
parent_index: "1"
|
||||
alignment: 0.75
|
||||
partlist_size_x: "534"
|
||||
partlist_size_y: "194"
|
||||
partlist_pos_x: "131"
|
||||
partlist_pos_y: "81"
|
||||
partlist_col_w: "960223292"
|
||||
part_search: ""
|
||||
netlist_file_path: ""
|
||||
netlist_format: 0
|
||||
page_mirror_mask: 0
|
||||
default_font: 2
|
||||
default_node_width: -1000000
|
||||
autosave_interval: 60
|
||||
m_client_rect_left: 0
|
||||
m_client_rect_right: 1158
|
||||
m_client_rect_bottom: 863
|
||||
m_client_rect_top: 0
|
||||
m_org_x: -28994
|
||||
m_org_y: -12282
|
||||
m_scale_factor: 87256
|
||||
m_attr_size: 1000000 250000 1000000 250000 1000000 250000 800000 200000 1000000 250000 1000000 250000
|
||||
units: MM
|
||||
|
||||
m_sel_mask: -1
|
||||
m_visible_layers: 524287
|
||||
m_top_layer: 8
|
||||
m_grid_style: 0
|
||||
visible_grid_spacing: 5000000.000000
|
||||
visible_grid_item: 20mil
|
||||
visible_grid_item: 50mil
|
||||
visible_grid_item: 100mil
|
||||
visible_grid_item: 125mil
|
||||
visible_grid_item: 200mil
|
||||
visible_grid_item: 250mil
|
||||
visible_grid_item: 400mil
|
||||
visible_grid_item: 500mil
|
||||
visible_grid_item: 1000mil
|
||||
visible_grid_item: 0.5mm
|
||||
visible_grid_item: 0.65mm
|
||||
visible_grid_item: 0.95mm
|
||||
visible_grid_item: 1mm
|
||||
visible_grid_item: 1.27mm
|
||||
visible_grid_item: 2mm
|
||||
visible_grid_item: 2.5mm
|
||||
visible_grid_item: 4mm
|
||||
visible_grid_item: 5mm
|
||||
visible_grid_item: 10mm
|
||||
visible_grid_item: 20mm
|
||||
visible_grid_item: 25mm
|
||||
visible_grid_item: 40mm
|
||||
visible_grid_item: 50mm
|
||||
visible_grid_item: 100mm
|
||||
|
||||
polyline_grid_spacing: 500000.000000
|
||||
placement_grid_item: 5mil
|
||||
placement_grid_item: 10mil
|
||||
placement_grid_item: 20mil
|
||||
placement_grid_item: 25mil
|
||||
placement_grid_item: 40mil
|
||||
placement_grid_item: 50mil
|
||||
placement_grid_item: 100mil
|
||||
placement_grid_item: 200mil
|
||||
placement_grid_item: 250mil
|
||||
placement_grid_item: 400mil
|
||||
placement_grid_item: 500mil
|
||||
placement_grid_item: 1000mil
|
||||
placement_grid_item: 0.001mm
|
||||
placement_grid_item: 0.01mm
|
||||
placement_grid_item: 0.1mm
|
||||
placement_grid_item: 0.2mm
|
||||
placement_grid_item: 0.25mm
|
||||
placement_grid_item: 0.4mm
|
||||
placement_grid_item: 0.5mm
|
||||
placement_grid_item: 0.65mm
|
||||
placement_grid_item: 0.95mm
|
||||
placement_grid_item: 1mm
|
||||
placement_grid_item: 1.27mm
|
||||
placement_grid_item: 2mm
|
||||
placement_grid_item: 2.5mm
|
||||
placement_grid_item: 4mm
|
||||
placement_grid_item: 5mm
|
||||
placement_grid_item: 10mm
|
||||
|
||||
text_grid_spacing: 100000.000000
|
||||
text_grid_item: 0.1mil
|
||||
text_grid_item: 0.5mil
|
||||
text_grid_item: 1mil
|
||||
text_grid_item: 2mil
|
||||
text_grid_item: 2.5mil
|
||||
text_grid_item: 3.33330709mil
|
||||
text_grid_item: 4mil
|
||||
text_grid_item: 5mil
|
||||
text_grid_item: 6.665mil
|
||||
text_grid_item: 10mil
|
||||
text_grid_item: 12.5mil
|
||||
text_grid_item: 16.665mil
|
||||
text_grid_item: 20mil
|
||||
text_grid_item: 25mil
|
||||
text_grid_item: 40mil
|
||||
text_grid_item: 50mil
|
||||
text_grid_item: 0.000001mm
|
||||
text_grid_item: 0.001mm
|
||||
text_grid_item: 0.01mm
|
||||
text_grid_item: 0.02mm
|
||||
text_grid_item: 0.04mm
|
||||
text_grid_item: 0.05mm
|
||||
text_grid_item: 0.1mm
|
||||
text_grid_item: 0.2mm
|
||||
text_grid_item: 0.25mm
|
||||
text_grid_item: 0.4mm
|
||||
text_grid_item: 0.5mm
|
||||
text_grid_item: 1mm
|
||||
|
||||
snap_angle: 45
|
||||
|
||||
m_seg_clearance: 640080
|
||||
polyline_width: 200000
|
||||
text_height: 200000
|
||||
min_text_stroke_width: 100000
|
||||
highlight_width: 127000
|
||||
cam_flags: 262114
|
||||
cam_layers: 8191
|
||||
cam_units: 1
|
||||
|
||||
report_options: 0
|
||||
apply_invert_for_pdf: 0
|
||||
drc_check_unrouted: 0
|
||||
drc_part_attr_to_attr: 50000
|
||||
drc_part_attr_to_poly: 50000
|
||||
drc_pin_attr_to_attr: 254000
|
||||
drc_pin_attr_to_poly: 254000
|
||||
|
||||
default_polyline_width:0.2mm
|
||||
n_additional_layers: 4
|
||||
layer_info: "dragging" 0 130 130 130 1
|
||||
layer_info: "background" 1 100 100 100 1
|
||||
layer_info: "visible grid" 2 51 51 51 1
|
||||
layer_info: "highlight" 3 255 255 0 1
|
||||
layer_info: "DRC error" 4 255 255 0 1
|
||||
layer_info: "ownerless line" 5 255 0 0 1
|
||||
layer_info: "part outline" 6 205 205 205 1
|
||||
layer_info: "part name" 7 205 205 205 1
|
||||
layer_info: "pin line" 8 255 255 128 1
|
||||
layer_info: "pin name" 9 255 255 128 1
|
||||
layer_info: "net polyline" 10 255 255 255 1
|
||||
layer_info: "net name" 11 255 255 255 1
|
||||
layer_info: "footprint" 12 128 255 255 1
|
||||
layer_info: "part value" 13 255 128 192 1
|
||||
layer_info: "description" 14 157 157 157 1
|
||||
layer_info: "front layer 1" 15 255 255 255 1
|
||||
layer_info: "front layer 2" 16 255 128 0 1
|
||||
layer_info: "back layer 1" 17 0 0 0 1
|
||||
layer_info: "back layer 2" 18 128 128 255 1
|
||||
|
||||
m_pdf_font_i: 1
|
||||
m_pdf_margin: 0.01
|
||||
pdf_layer_info: "dragging" 0 255 255 255 0
|
||||
pdf_layer_info: "background" 1 255 255 255 0
|
||||
pdf_layer_info: "visible grid" 2 255 255 255 0
|
||||
pdf_layer_info: "highlight" 3 255 255 0 1
|
||||
pdf_layer_info: "DRC error" 4 0 0 0 1
|
||||
pdf_layer_info: "ownerless line" 5 0 0 0 1
|
||||
pdf_layer_info: "part outline" 6 79 79 79 1
|
||||
pdf_layer_info: "part name" 7 0 0 166 1
|
||||
pdf_layer_info: "pin line" 8 0 0 0 1
|
||||
pdf_layer_info: "pin name" 9 0 0 0 1
|
||||
pdf_layer_info: "net polyline" 10 34 66 66 1
|
||||
pdf_layer_info: "net name" 11 0 0 0 1
|
||||
pdf_layer_info: "footprint" 12 166 0 0 1
|
||||
pdf_layer_info: "part value" 13 0 0 0 1
|
||||
pdf_layer_info: "description" 14 0 0 0 1
|
||||
pdf_layer_info: "front layer 1" 15 0 0 0 1
|
||||
pdf_layer_info: "front layer 2" 16 133 133 133 1
|
||||
pdf_layer_info: "back layer 1" 17 255 255 255 1
|
||||
pdf_layer_info: "back layer 2" 18 197 197 197 1
|
||||
pdf_layer_info: "back layer 3" 19 255 255 255 0
|
||||
pdf_layer_info: "back layer 4" 20 255 255 255 0
|
||||
pdf_layer_info: "back layer 5" 21 255 255 255 0
|
||||
pdf_layer_info: "back layer 6" 22 255 255 255 0
|
||||
pdf_layer_info: "back layer 7" 23 255 255 255 0
|
||||
pdf_layer_info: "back layer 8" 24 255 255 255 0
|
||||
pdf_layer_info: "back layer 9" 25 255 255 255 0
|
||||
pdf_layer_info: "back layer 10" 26 255 255 255 0
|
||||
pdf_layer_info: "back layer 11" 27 255 255 255 0
|
||||
pdf_layer_info: "back layer 12" 28 255 255 255 0
|
||||
pdf_layer_info: "back layer 13" 29 255 255 255 0
|
||||
pdf_layer_info: "back layer 14" 30 255 255 255 0
|
||||
pdf_layer_info: "undefined" 31 255 255 255 0
|
||||
|
||||
|
||||
[graphics]
|
||||
|
||||
rename_page: "Page 1"
|
||||
n_pins: 2
|
||||
rectangle: -79175000 179350000 -77825000 184150000
|
||||
ref_des: "R16" -75500000 183200000 7 90 1000000 250000 -1 -1 2 1
|
||||
footprint_name: "RC0805" -77412500 183200000 12 90 0 0 -1 -1 2 1
|
||||
part_value: "200k1%" -77225000 183200000 13 90 1000000 250000 -1 -1 2 1
|
||||
outline: 4 0 6 350000 -1 -1 -1 0
|
||||
corner: 1 -79000000 183000000 0 0
|
||||
corner: 2 -79000000 180000000 0 0
|
||||
corner: 3 -78000000 180000000 0 0
|
||||
corner: 4 -78000000 183000000 0 0
|
||||
|
||||
polyline: 2 0 8 300000 -1 -1 -1 0
|
||||
corner: 1 -78500000 183000000 0 0
|
||||
corner: 2 -78500000 184000000 0 1000000
|
||||
pin_name: "1" -78674864 183555264 9 0 0 0 -1 -1 2 1
|
||||
|
||||
polyline: 2 0 8 300000 -1 -1 -1 0
|
||||
corner: 1 -78500000 180000000 0 0
|
||||
corner: 2 -78500000 179500000 0 1
|
||||
pin_name: "2" -78472400 179101776 9 0 0 0 -1 -1 2 1
|
||||
|
||||
part_end
|
||||
|
||||
n_pins: 5
|
||||
rectangle: -101150000 177350000 -89849976 186175000
|
||||
ref_des: "DA6" -92282370 194699270 7 0 1000000 250000 -1 -1 2 1
|
||||
footprint_name: "SOT-23-5" -92282370 191249270 12 0 1000000 250000 -1 -1 2 1
|
||||
part_value: "LM2733" -92282370 192974270 13 0 1000000 250000 -1 -1 2 1
|
||||
polyline: 2 0 8 300000 -1 -1 -1 0
|
||||
corner: 1 -91500000 184000000 0 0
|
||||
corner: 2 -89999976 183999984 0 1000000
|
||||
pin_name: "1" -90972440 184700000 9 0 1000000 250000 -1 -1 2 1
|
||||
description: "SW" -93700000 183700000 14 0 800000 200000 -1 -1 2 1
|
||||
|
||||
outline: 4 0 6 350000 -1 -1 -1 0
|
||||
corner: 1 -91500000 186000000 0 0
|
||||
corner: 2 -91500000 179000000 0 0
|
||||
corner: 3 -99500000 179000000 0 0
|
||||
corner: 4 -99500000 186000000 0 0
|
||||
|
||||
polyline: 2 0 8 300000 -1 -1 -1 0
|
||||
corner: 1 -101000000 184000000 0 1
|
||||
corner: 2 -99500000 184000000 0 0
|
||||
pin_name: "5" -100863930 184400000 9 0 1000000 250000 -1 -1 2 1
|
||||
description: "VIN" -98800000 183700000 14 0 800000 200000 -1 -1 2 1
|
||||
|
||||
polyline: 2 0 8 300000 -1 -1 -1 0
|
||||
corner: 1 -101000000 181000000 0 1
|
||||
corner: 2 -99500000 181000000 0 0
|
||||
pin_name: "4" -100918540 181400000 9 0 1000000 250000 -1 -1 2 1
|
||||
description: "SHDN" -98800000 180700000 14 0 800000 200000 -1 -1 2 1
|
||||
|
||||
polyline: 2 0 8 300000 -1 -1 -1 0
|
||||
corner: 1 -91500000 181000000 0 0
|
||||
corner: 2 -90000000 181000000 0 1
|
||||
pin_name: "3" -90963930 181600000 9 0 1000000 250000 -1 -1 2 1
|
||||
description: "FB" -93500000 180700000 14 0 800000 200000 -1 -1 2 1
|
||||
|
||||
polyline: 2 0 8 300000 -1 -1 -1 0
|
||||
corner: 1 -95500000 177500000 0 1
|
||||
corner: 2 -95500000 179000000 0 0
|
||||
pin_name: "2" -96762660 177400000 9 0 1000000 250000 -1 -1 2 1
|
||||
|
||||
polyline: 2 0 6 100000 -1 -1 -1 0
|
||||
corner: 1 -98500000 182000000 0 0
|
||||
corner: 2 -96000000 182000000 0 0
|
||||
|
||||
part_end
|
||||
|
||||
n_pins: 2
|
||||
rectangle: -100150000 187825000 -92350000 188878456
|
||||
ref_des: "L3" -99006780 192796540 7 0 1000000 250000 -1 -1 2 1
|
||||
footprint_name: "RC0805" -99006780 189346540 12 0 1000000 250000 -1 -1 2 1
|
||||
part_value: "BLM" -99006780 191071540 13 0 1000000 250000 -1 -1 2 1
|
||||
polyline: 2 0 8 300000 -1 -1 -1 0
|
||||
corner: 1 -93500000 188000000 0 0
|
||||
corner: 2 -92500000 188000000 0 1
|
||||
pin_name: "1" -93505744 188828880 9 0 0 0 -1 -1 2 1
|
||||
|
||||
polyline: 2 0 8 300000 -1 -1 -1 0
|
||||
corner: 1 -99000000 188000000 0 0
|
||||
corner: 2 -100000000 188000000 0 1
|
||||
pin_name: "2" -100188464 188828880 9 0 0 0 -1 -1 2 1
|
||||
|
||||
polyline: 9 0 6 350000 -1 -1 -1 0
|
||||
corner: 1 -99000000 188000000 1 0
|
||||
corner: 2 -98296544 188703456 1 0
|
||||
corner: 3 -97593072 188000000 1 0
|
||||
corner: 4 -96889664 188703456 1 0
|
||||
corner: 5 -96186176 188000000 1 0
|
||||
corner: 6 -95482784 188703456 1 0
|
||||
corner: 7 -94779328 188000000 1 0
|
||||
corner: 8 -94075856 188703456 1 0
|
||||
corner: 9 -93372432 188000000 1 0
|
||||
|
||||
part_end
|
||||
|
||||
n_pins: 2
|
||||
rectangle: -104175000 175350000 -100825000 177650000
|
||||
ref_des: "C19" -101800000 174100000 7 0 1000000 250000 -1 -1 2 1
|
||||
footprint_name: "CC0805" -101800000 172187500 12 0 0 0 -1 -1 2 1
|
||||
part_value: "10.0" -101800000 172375000 13 0 1000000 250000 -1 -1 2 1
|
||||
polyline: 2 0 6 350000 -1 -1 -1 0
|
||||
corner: 1 -101000000 177000000 0 0
|
||||
corner: 2 -104000000 177000000 0 0
|
||||
|
||||
polyline: 2 0 6 350000 -1 -1 -1 0
|
||||
corner: 1 -101000000 176000000 0 0
|
||||
corner: 2 -104000000 176000000 0 0
|
||||
|
||||
polyline: 2 0 8 300000 -1 -1 -1 0
|
||||
corner: 1 -102500000 177000000 0 0
|
||||
corner: 2 -102500000 177500000 0 1
|
||||
pin_name: "2" -103439616 178159952 9 720 0 0 -1 -1 2 1
|
||||
|
||||
polyline: 2 0 8 300000 -1 -1 -1 0
|
||||
corner: 1 -102500000 176000000 0 0
|
||||
corner: 2 -102500000 175500000 0 1
|
||||
pin_name: "1" -103594016 174941264 9 720 0 0 -1 -1 2 1
|
||||
|
||||
part_end
|
||||
|
||||
n_pins: 2
|
||||
rectangle: -75175000 177350000 -71825000 179650000
|
||||
ref_des: "C21" -72900000 179800000 7 0 1000000 250000 -1 -1 2 1
|
||||
footprint_name: "CC0805" -72900000 177887500 12 0 0 0 -1 -1 2 1
|
||||
part_value: "4.7x50V" -72900000 176275000 13 0 1000000 250000 -1 -1 2 1
|
||||
polyline: 2 0 6 350000 -1 -1 -1 0
|
||||
corner: 1 -72000000 179000000 0 0
|
||||
corner: 2 -75000000 179000000 0 0
|
||||
|
||||
polyline: 2 0 6 350000 -1 -1 -1 0
|
||||
corner: 1 -72000000 178000000 0 0
|
||||
corner: 2 -75000000 178000000 0 0
|
||||
|
||||
polyline: 2 0 8 300000 -1 -1 -1 0
|
||||
corner: 1 -73500000 179000000 0 0
|
||||
corner: 2 -73500000 179500000 0 1
|
||||
pin_name: "2" -74439616 180159952 9 720 0 0 -1 -1 2 1
|
||||
|
||||
polyline: 2 0 8 300000 -1 -1 -1 0
|
||||
corner: 1 -73500000 178000000 0 0
|
||||
corner: 2 -73500000 177500000 0 1
|
||||
pin_name: "1" -74594016 176941264 9 720 0 0 -1 -1 2 1
|
||||
|
||||
part_end
|
||||
|
||||
n_pins: 2
|
||||
rectangle: -79175000 172350000 -77825000 176650000
|
||||
ref_des: "R18" -75500000 176599999 7 90 1000000 250000 -1 -1 2 1
|
||||
footprint_name: "RC0805" -77412500 176599999 12 90 0 0 -1 -1 2 1
|
||||
part_value: "30k1%" -77224999 176600000 13 90 1000000 250000 -1 -1 2 1
|
||||
outline: 4 0 6 350000 -1 -1 -1 0
|
||||
corner: 1 -79000000 176000000 0 0
|
||||
corner: 2 -79000000 173000000 0 0
|
||||
corner: 3 -78000000 173000000 0 0
|
||||
corner: 4 -78000000 176000000 0 0
|
||||
|
||||
polyline: 2 0 8 300000 -1 -1 -1 0
|
||||
corner: 1 -78500000 176000000 0 0
|
||||
corner: 2 -78500000 176500000 0 1
|
||||
pin_name: "1" -78674864 176555264 9 0 0 0 -1 -1 2 1
|
||||
|
||||
polyline: 2 0 8 300000 -1 -1 -1 0
|
||||
corner: 1 -78500000 173000000 0 0
|
||||
corner: 2 -78500000 172500000 0 1
|
||||
pin_name: "2" -78472400 172101776 9 0 0 0 -1 -1 2 1
|
||||
|
||||
part_end
|
||||
|
||||
n_pins: 2
|
||||
rectangle: -84675000 172350000 -83325000 176650000
|
||||
ref_des: "R17" -90000000 174700000 7 0 1000000 250000 -1 -1 2 1
|
||||
footprint_name: "RC0805" -90000000 172787500 12 0 0 0 -1 -1 2 1
|
||||
part_value: "24k1%" -90000000 172975000 13 0 1000000 250000 -1 -1 2 1
|
||||
outline: 4 0 6 350000 -1 -1 -1 0
|
||||
corner: 1 -84500000 176000000 0 0
|
||||
corner: 2 -84500000 173000000 0 0
|
||||
corner: 3 -83500000 173000000 0 0
|
||||
corner: 4 -83500000 176000000 0 0
|
||||
|
||||
polyline: 2 0 8 300000 -1 -1 -1 0
|
||||
corner: 1 -84000000 176000000 0 0
|
||||
corner: 2 -84000000 176500000 0 1
|
||||
pin_name: "1" -84174864 176555264 9 0 0 0 -1 -1 2 1
|
||||
|
||||
polyline: 2 0 8 300000 -1 -1 -1 0
|
||||
corner: 1 -84000000 173000000 0 0
|
||||
corner: 2 -84000000 172500000 0 1
|
||||
pin_name: "2" -83972400 172101776 9 0 0 0 -1 -1 2 1
|
||||
|
||||
part_end
|
||||
|
||||
n_pins: 2
|
||||
rectangle: -85675000 180350000 -82325000 182650000
|
||||
ref_des: "C20" -89000000 180900000 7 0 1000000 250000 -1 -1 2 1
|
||||
footprint_name: "CC0805" -89000000 178987500 12 0 0 0 -1 -1 2 1
|
||||
part_value: "100pF" -89000000 179175000 13 0 1000000 250000 -1 -1 2 1
|
||||
polyline: 2 0 8 300000 -1 -1 -1 0
|
||||
corner: 1 -84000000 181000000 0 0
|
||||
corner: 2 -84000000 180500000 0 1
|
||||
pin_name: "1" -85094016 179941264 9 720 0 0 -1 -1 2 1
|
||||
|
||||
polyline: 2 0 8 300000 -1 -1 -1 0
|
||||
corner: 1 -84000000 182000000 0 0
|
||||
corner: 2 -84000000 182500000 0 1
|
||||
pin_name: "2" -84939616 183159952 9 720 0 0 -1 -1 2 1
|
||||
|
||||
polyline: 2 0 6 350000 -1 -1 -1 0
|
||||
corner: 1 -82500000 181000000 0 0
|
||||
corner: 2 -85500000 181000000 0 0
|
||||
|
||||
polyline: 2 0 6 350000 -1 -1 -1 0
|
||||
corner: 1 -82500000 182000000 0 0
|
||||
corner: 2 -85500000 182000000 0 0
|
||||
|
||||
part_end
|
||||
|
||||
n_pins: 2
|
||||
rectangle: -88150000 182825000 -85325000 185175000
|
||||
ref_des: "VD3" -88899550 188499020 7 0 1000000 250000 -1 -1 2 1
|
||||
footprint_name: "MBR0520" -88899550 186386520 12 0 0 0 -1 -1 2 1
|
||||
part_value: "MBR0540" -88899550 186774020 13 0 1000000 250000 -1 -1 2 1
|
||||
polyline: 2 0 8 300000 -1 -1 -1 0
|
||||
corner: 1 -86000000 184000000 0 0
|
||||
corner: 2 -85500000 184000000 0 1
|
||||
pin_name: "2" -85400000 184400000 9 0 1000000 250000 -1 -1 2 1
|
||||
|
||||
outline: 3 0 6 350000 -1 -1 -1 0
|
||||
corner: 1 -87500000 183000000 0 0
|
||||
corner: 2 -86000000 184000000 0 0
|
||||
corner: 3 -87500000 185000000 0 0
|
||||
|
||||
polyline: 4 0 6 350000 -1 -1 -1 0
|
||||
corner: 1 -86500000 185000000 0 0
|
||||
corner: 2 -86000000 185000000 0 0
|
||||
corner: 3 -86000000 183000000 0 0
|
||||
corner: 4 -85500000 183000000 0 0
|
||||
|
||||
polyline: 2 0 8 300000 -1 -1 -1 0
|
||||
corner: 1 -88000000 184000000 0 1
|
||||
corner: 2 -87500000 184000000 0 0
|
||||
pin_name: "1" -88400000 184400000 9 0 1000000 250000 -1 -1 2 1
|
||||
|
||||
part_end
|
||||
|
||||
polyline: 4 0 10 300000 -1 -1 -1 0 0
|
||||
corner: 1 -100000000 188000000 0 1
|
||||
corner: 2 -102500000 188000000 0 0
|
||||
corner: 3 -102500000 184000000 0 0
|
||||
corner: 4 -101000000 184000000 0 1
|
||||
|
||||
polyline: 4 0 10 300000 -1 -1 -1 0 0
|
||||
corner: 1 -92500000 188000000 0 1
|
||||
corner: 2 -90000000 188000000 0 0
|
||||
corner: 3 -90000000 184000000 0 0
|
||||
corner: 4 -88000000 184000000 0 1
|
||||
|
||||
polyline: 2 0 10 300000 -1 -1 -1 0 0
|
||||
corner: 1 -84000000 180500000 0 1
|
||||
corner: 2 -84000000 176500000 0 1
|
||||
|
||||
polyline: 2 0 10 300000 -1 -1 -1 0 0
|
||||
corner: 1 -78500000 179500000 0 1
|
||||
corner: 2 -78500000 176500000 0 1
|
||||
|
||||
polyline: 2 0 10 300000 -1 -1 -1 0 0
|
||||
corner: 1 -78500000 178000000 0 1000000
|
||||
corner: 2 -84000000 178000000 0 1
|
||||
|
||||
polyline: 3 0 10 300000 -1 -1 -1 0 0
|
||||
corner: 1 -84000000 178000000 0 1000000
|
||||
corner: 2 -90000000 178000000 0 0
|
||||
corner: 3 -90000000 181000000 0 1
|
||||
|
||||
polyline: 3 0 10 300000 -1 -1 -1 0 0
|
||||
corner: 1 -85500000 184000000 0 1
|
||||
corner: 2 -73500000 184000000 0 0
|
||||
corner: 3 -73500000 179500000 0 1
|
||||
|
||||
polyline: 2 0 10 300000 -1 -1 -1 0 0
|
||||
corner: 1 -84000000 184000000 0 1000000
|
||||
corner: 2 -84000000 182500000 0 1
|
||||
|
||||
polyline: 3 0 10 300000 -1 -1 -1 0 0
|
||||
corner: 1 -73500000 177500000 0 1
|
||||
corner: 2 -73500000 171500000 0 0
|
||||
corner: 3 -102500000 171500000 0 1
|
||||
|
||||
polyline: 2 0 10 300000 -1 -1 -1 0 0
|
||||
corner: 1 -102500000 175500000 0 1
|
||||
corner: 2 -102500000 171500000 0 1
|
||||
|
||||
polyline: 2 0 10 300000 -1 -1 -1 0 0
|
||||
corner: 1 -95500000 177500000 0 1
|
||||
corner: 2 -95500000 171500000 0 1000000
|
||||
|
||||
polyline: 2 0 10 300000 -1 -1 -1 0 0
|
||||
corner: 1 -84000000 172500000 0 1
|
||||
corner: 2 -84000000 171500000 0 1000000
|
||||
|
||||
polyline: 2 0 10 300000 -1 -1 -1 0 0
|
||||
corner: 1 -78500000 172500000 0 1
|
||||
corner: 2 -78500000 171500000 0 1000000
|
||||
|
||||
polyline: 3 0 10 300000 -1 -1 -1 0 0
|
||||
corner: 1 -101000000 181000000 0 1
|
||||
corner: 2 -102500000 181000000 0 0
|
||||
corner: 3 -102500000 177500000 0 1
|
||||
|
||||
polyline: 2 0 10 300000 -1 -1 -1 0 0
|
||||
corner: 1 -102500000 184000000 0 1
|
||||
corner: 2 -102500000 181000000 0 1000000
|
||||
|
||||
polyline: 5 0 10 300000 -1 -1 -1 0 0
|
||||
corner: 1 -73500000 184000000 0 1000000
|
||||
corner: 2 -73500000 186000000 0 0
|
||||
corner: 3 -72999999 184999999 0 0
|
||||
corner: 4 -73500000 186000000 0 0
|
||||
corner: 5 -73999999 185000000 0 0
|
||||
net_name: "+19.6v" -75600000 186600000 11 0 1000000 250000 -1 -1 2 1
|
||||
|
||||
add_new_page: "Channels"
|
||||
add_new_page: "BOM"
|
||||
[end]
|
||||
341
Projects/BLOKS/related_files/backup/+EPA.cds.b
Normal file
|
|
@ -0,0 +1,341 @@
|
|||
[options]
|
||||
|
||||
version: 1.100
|
||||
file_version: 1.100
|
||||
project_name: "+EPA.cds"
|
||||
library_folder: "c:\ðàáî÷àÿ ïàïêà\freepcb_libraries"
|
||||
full_library_folder: "c:\ðàáî÷àÿ ïàïêà\freepcb_libraries\lib_footprints"
|
||||
parent_folder: "C:\FreePcbDev\Schematic Constructor\Projects\"
|
||||
CAM_folder: "C:\Freeasy\Projects\Armkor2\cookies\print_layers"
|
||||
netlist_completed: "0"
|
||||
bom_options: "721056"
|
||||
page_number: "0"
|
||||
parent_index: "1"
|
||||
alignment: 0.75
|
||||
partlist_size_x: "534"
|
||||
partlist_size_y: "194"
|
||||
partlist_pos_x: "131"
|
||||
partlist_pos_y: "81"
|
||||
partlist_col_w: "960223292"
|
||||
part_search: ""
|
||||
netlist_file_path: "C:\FreePcbDev\Schematic Constructor\Projects\BLOKS\related_files\CDS_netlist\+EPA.cds"
|
||||
netlist_page_mask: 1
|
||||
netlist_format: 0
|
||||
page_mirror_mask: 0
|
||||
default_font: 2
|
||||
default_node_width: -1000000
|
||||
autosave_interval: 60
|
||||
m_client_rect_left: 110
|
||||
m_client_rect_right: 1896
|
||||
m_client_rect_bottom: 925
|
||||
m_client_rect_top: 0
|
||||
m_org_x: -51406
|
||||
m_org_y: 121204
|
||||
m_scale_factor: 46544
|
||||
m_attr_size: 1000000 250000 1000000 250000 1000000 250000 800000 200000 1000000 250000 1000000 250000
|
||||
units: MM
|
||||
|
||||
m_sel_mask: -1
|
||||
m_visible_layers: -1
|
||||
m_top_layer: 6
|
||||
m_grid_style: 0
|
||||
visible_grid_spacing: 5000000.000000
|
||||
visible_grid_item: 20mil
|
||||
visible_grid_item: 50mil
|
||||
visible_grid_item: 100mil
|
||||
visible_grid_item: 125mil
|
||||
visible_grid_item: 200mil
|
||||
visible_grid_item: 250mil
|
||||
visible_grid_item: 400mil
|
||||
visible_grid_item: 500mil
|
||||
visible_grid_item: 1000mil
|
||||
visible_grid_item: 0.5mm
|
||||
visible_grid_item: 0.65mm
|
||||
visible_grid_item: 0.95mm
|
||||
visible_grid_item: 1mm
|
||||
visible_grid_item: 1.27mm
|
||||
visible_grid_item: 2mm
|
||||
visible_grid_item: 2.5mm
|
||||
visible_grid_item: 4mm
|
||||
visible_grid_item: 5mm
|
||||
visible_grid_item: 10mm
|
||||
visible_grid_item: 20mm
|
||||
visible_grid_item: 25mm
|
||||
visible_grid_item: 40mm
|
||||
visible_grid_item: 50mm
|
||||
visible_grid_item: 100mm
|
||||
|
||||
polyline_grid_spacing: 500000.000000
|
||||
placement_grid_item: 5mil
|
||||
placement_grid_item: 10mil
|
||||
placement_grid_item: 20mil
|
||||
placement_grid_item: 25mil
|
||||
placement_grid_item: 40mil
|
||||
placement_grid_item: 50mil
|
||||
placement_grid_item: 100mil
|
||||
placement_grid_item: 200mil
|
||||
placement_grid_item: 250mil
|
||||
placement_grid_item: 400mil
|
||||
placement_grid_item: 500mil
|
||||
placement_grid_item: 1000mil
|
||||
placement_grid_item: 0.001mm
|
||||
placement_grid_item: 0.01mm
|
||||
placement_grid_item: 0.1mm
|
||||
placement_grid_item: 0.2mm
|
||||
placement_grid_item: 0.25mm
|
||||
placement_grid_item: 0.4mm
|
||||
placement_grid_item: 0.5mm
|
||||
placement_grid_item: 0.65mm
|
||||
placement_grid_item: 0.95mm
|
||||
placement_grid_item: 1mm
|
||||
placement_grid_item: 1.27mm
|
||||
placement_grid_item: 2mm
|
||||
placement_grid_item: 2.5mm
|
||||
placement_grid_item: 4mm
|
||||
placement_grid_item: 5mm
|
||||
placement_grid_item: 10mm
|
||||
|
||||
text_grid_spacing: 100000.000000
|
||||
text_grid_item: 0.1mil
|
||||
text_grid_item: 0.5mil
|
||||
text_grid_item: 1mil
|
||||
text_grid_item: 2mil
|
||||
text_grid_item: 2.5mil
|
||||
text_grid_item: 3.33330709mil
|
||||
text_grid_item: 4mil
|
||||
text_grid_item: 5mil
|
||||
text_grid_item: 6.665mil
|
||||
text_grid_item: 10mil
|
||||
text_grid_item: 12.5mil
|
||||
text_grid_item: 16.665mil
|
||||
text_grid_item: 20mil
|
||||
text_grid_item: 25mil
|
||||
text_grid_item: 40mil
|
||||
text_grid_item: 50mil
|
||||
text_grid_item: 0.000001mm
|
||||
text_grid_item: 0.001mm
|
||||
text_grid_item: 0.01mm
|
||||
text_grid_item: 0.02mm
|
||||
text_grid_item: 0.04mm
|
||||
text_grid_item: 0.05mm
|
||||
text_grid_item: 0.1mm
|
||||
text_grid_item: 0.2mm
|
||||
text_grid_item: 0.25mm
|
||||
text_grid_item: 0.4mm
|
||||
text_grid_item: 0.5mm
|
||||
text_grid_item: 1mm
|
||||
|
||||
snap_angle: 45
|
||||
|
||||
m_seg_clearance: 640080
|
||||
polyline_width: 200000
|
||||
text_height: 200000
|
||||
min_text_stroke_width: 100000
|
||||
highlight_width: 127000
|
||||
cam_flags: 262114
|
||||
cam_layers: 8191
|
||||
cam_units: 1
|
||||
|
||||
report_options: 0
|
||||
drc_check_unrouted: 0
|
||||
drc_part_attr_to_attr: 50000
|
||||
drc_part_attr_to_poly: 50000
|
||||
drc_pin_attr_to_attr: 254000
|
||||
drc_pin_attr_to_poly: 254000
|
||||
|
||||
default_polyline_width:0.2mm
|
||||
n_additional_layers: 4
|
||||
layer_info: "dragging" 0 130 130 130 1
|
||||
layer_info: "background" 1 83 83 83 1
|
||||
layer_info: "visible grid" 2 97 97 97 1
|
||||
layer_info: "highlight" 3 255 255 0 1
|
||||
layer_info: "DRC error" 4 255 255 0 1
|
||||
layer_info: "ownerless line" 5 255 0 0 1
|
||||
layer_info: "part outline" 6 205 205 205 1
|
||||
layer_info: "part name" 7 205 205 205 1
|
||||
layer_info: "pin line" 8 255 255 128 1
|
||||
layer_info: "pin name" 9 255 255 128 1
|
||||
layer_info: "net polyline" 10 255 255 255 1
|
||||
layer_info: "net name" 11 255 255 255 1
|
||||
layer_info: "footprint" 12 128 255 255 1
|
||||
layer_info: "part value" 13 255 128 192 1
|
||||
layer_info: "description" 14 157 157 157 1
|
||||
layer_info: "front layer 1" 15 255 255 255 1
|
||||
layer_info: "front layer 2" 16 255 128 0 1
|
||||
layer_info: "back layer 1" 17 0 0 0 1
|
||||
layer_info: "back layer 2" 18 128 128 255 1
|
||||
|
||||
m_pdf_font_i: 8
|
||||
m_pdf_margin: 0.01
|
||||
m_pdf_pages: 1
|
||||
pdf_layer_info: "dragging" 0 255 255 255 0
|
||||
pdf_layer_info: "background" 1 255 255 255 0
|
||||
pdf_layer_info: "visible grid" 2 255 255 255 0
|
||||
pdf_layer_info: "highlight" 3 255 255 0 1
|
||||
pdf_layer_info: "DRC error" 4 0 0 0 1
|
||||
pdf_layer_info: "ownerless line" 5 0 0 0 1
|
||||
pdf_layer_info: "part outline" 6 0 0 0 1
|
||||
pdf_layer_info: "part name" 7 0 0 0 1
|
||||
pdf_layer_info: "pin line" 8 0 0 0 1
|
||||
pdf_layer_info: "pin name" 9 0 0 0 1
|
||||
pdf_layer_info: "net polyline" 10 0 0 0 1
|
||||
pdf_layer_info: "net name" 11 0 0 0 1
|
||||
pdf_layer_info: "footprint" 12 0 0 0 1
|
||||
pdf_layer_info: "part value" 13 0 0 0 1
|
||||
pdf_layer_info: "description" 14 0 0 0 1
|
||||
pdf_layer_info: "front layer 1" 15 0 0 0 1
|
||||
pdf_layer_info: "front layer 2" 16 133 133 133 1
|
||||
pdf_layer_info: "back layer 1" 17 255 255 255 1
|
||||
pdf_layer_info: "back layer 2" 18 197 197 197 1
|
||||
pdf_layer_info: "back layer 3" 19 255 255 255 0
|
||||
pdf_layer_info: "back layer 4" 20 255 255 255 0
|
||||
pdf_layer_info: "back layer 5" 21 255 255 255 0
|
||||
pdf_layer_info: "back layer 6" 22 255 255 255 0
|
||||
pdf_layer_info: "back layer 7" 23 255 255 255 0
|
||||
pdf_layer_info: "back layer 8" 24 255 255 255 0
|
||||
pdf_layer_info: "back layer 9" 25 255 255 255 0
|
||||
pdf_layer_info: "back layer 10" 26 255 255 255 0
|
||||
pdf_layer_info: "back layer 11" 27 255 255 255 0
|
||||
pdf_layer_info: "back layer 12" 28 255 255 255 0
|
||||
pdf_layer_info: "back layer 13" 29 255 255 255 0
|
||||
pdf_layer_info: "back layer 14" 30 255 255 255 0
|
||||
pdf_layer_info: "undefined" 31 255 255 255 0
|
||||
[graphics]
|
||||
|
||||
rename_page: "Page 1"
|
||||
n_pins: 2
|
||||
rectangle: -30675000 173850000 -27325000 176150000
|
||||
ref_des: "C27" -26600000 174200000 7 0 1000000 250000 -1 -1 2 1
|
||||
footprint_name: "CC0805" -26600000 172287500 12 0 0 0 -1 -1 2 1
|
||||
part_value: "2.2" -26600000 172475000 13 0 1000000 250000 -1 -1 2 1
|
||||
polyline: 2 0 8 300000 -1 -1 -1 0
|
||||
corner: 1 -29000000 174500000 0 0
|
||||
corner: 2 -29000000 174000000 0 1
|
||||
pin_name: "1" -30094016 173441264 9 720 0 0 -1 -1 2 1
|
||||
|
||||
polyline: 2 0 8 300000 -1 -1 -1 0
|
||||
corner: 1 -29000000 175500000 0 0
|
||||
corner: 2 -29000000 176000000 0 1
|
||||
pin_name: "2" -29939616 176659952 9 720 0 0 -1 -1 2 1
|
||||
|
||||
polyline: 2 0 6 350000 -1 -1 -1 0
|
||||
corner: 1 -27500000 174500000 0 0
|
||||
corner: 2 -30500000 174500000 0 0
|
||||
|
||||
polyline: 2 0 6 350000 -1 -1 -1 0
|
||||
corner: 1 -27500000 175500000 0 0
|
||||
corner: 2 -30500000 175500000 0 0
|
||||
|
||||
part_end
|
||||
|
||||
n_pins: 2
|
||||
rectangle: -14175000 173850000 -10825000 176150000
|
||||
ref_des: "C29" -17600000 174300000 7 0 1000000 250000 -1 -1 2 9
|
||||
footprint_name: "CC0805" -17600000 172387500 12 0 0 0 -1 -1 2 1
|
||||
part_value: "2.2" -17053900 172575000 13 0 1000000 250000 -1 -1 2 9
|
||||
polyline: 2 0 6 350000 -1 -1 -1 0
|
||||
corner: 1 -11000000 175500000 0 0
|
||||
corner: 2 -14000000 175500000 0 0
|
||||
|
||||
polyline: 2 0 6 350000 -1 -1 -1 0
|
||||
corner: 1 -11000000 174500000 0 0
|
||||
corner: 2 -14000000 174500000 0 0
|
||||
|
||||
polyline: 2 0 8 300000 -1 -1 -1 0
|
||||
corner: 1 -12500000 175500000 0 0
|
||||
corner: 2 -12500000 176000000 0 1
|
||||
pin_name: "2" -13439616 176659952 9 720 0 0 -1 -1 2 1
|
||||
|
||||
polyline: 2 0 8 300000 -1 -1 -1 0
|
||||
corner: 1 -12500000 174500000 0 0
|
||||
corner: 2 -12500000 174000000 0 1
|
||||
pin_name: "1" -13594016 173441264 9 720 0 0 -1 -1 2 1
|
||||
|
||||
part_end
|
||||
|
||||
n_pins: 4
|
||||
rectangle: -26150000 175350000 -15850000 182675000
|
||||
ref_des: "DA9" -24724600 186907470 7 0 1000000 250000 -1 -1 2 1
|
||||
footprint_name: "SOT-23-5" -24724600 183457470 12 0 1000000 250000 -1 -1 2 1
|
||||
part_value: "TLV70030DDC" -24724600 185182470 13 0 1000000 250000 -1 -1 2 1
|
||||
polyline: 2 0 8 300000 -1 -1 -1 0
|
||||
corner: 1 -26000000 178000000 0 1
|
||||
corner: 2 -25000000 178000000 0 0
|
||||
pin_name: "3" -26182394 178520096 9 0 1000000 250000 -1 -1 2 1
|
||||
description: "Ven" -24549762 177794672 14 0 800000 200000 -1 -1 2 1
|
||||
|
||||
polyline: 2 0 8 300000 -1 -1 -1 0
|
||||
corner: 1 -17000000 180500000 0 0
|
||||
corner: 2 -16000000 180500000 0 1
|
||||
pin_name: "5" -16496719 181022736 9 0 1000000 250000 -1 -1 2 1
|
||||
description: "Vout" -20514230 180172608 14 0 800000 200000 -1 -1 2 1
|
||||
|
||||
polyline: 2 0 8 300000 -1 -1 -1 0
|
||||
corner: 1 -21000000 175500000 0 1
|
||||
corner: 2 -21000000 176500000 0 0
|
||||
pin_name: "2" -20558706 175140304 9 0 1000000 250000 -1 -1 2 1
|
||||
|
||||
polyline: 2 0 8 300000 -1 -1 -1 0
|
||||
corner: 1 -26000000 180500000 0 1
|
||||
corner: 2 -25000000 180500000 0 0
|
||||
pin_name: "1" -25968404 181062576 9 0 1000000 250000 -1 -1 2 1
|
||||
description: "Vin" -24549762 180214736 14 0 800000 200000 -1 -1 2 1
|
||||
|
||||
outline: 4 0 6 350000 -1 -1 -1 0
|
||||
corner: 1 -25000000 182500000 0 0
|
||||
corner: 2 -25000000 176500000 0 0
|
||||
corner: 3 -17000000 176500000 0 0
|
||||
corner: 4 -17000000 182500000 0 0
|
||||
|
||||
part_end
|
||||
|
||||
polyline: 6 0 10 300000 -1 -1 -1 0
|
||||
corner: 1 -21000000 171499999 0 1000000
|
||||
corner: 2 -21000000 170000000 0 0
|
||||
corner: 3 -22000000 170000000 0 0
|
||||
corner: 4 -21000000 169500000 0 0
|
||||
corner: 5 -20000000 170000000 0 0
|
||||
corner: 6 -21000000 170000000 0 0
|
||||
net_name: "GND" -22100000 168900000 11 360 0 0 -1 -1 2 1
|
||||
|
||||
polyline: 2 0 10 300000 -1 -1 -1 0
|
||||
corner: 1 -26000000 180500000 0 1
|
||||
corner: 2 -29000000 180500000 0 1
|
||||
|
||||
polyline: 3 0 10 300000 -1 -1 -1 0
|
||||
corner: 1 -29000000 171500000 0 1
|
||||
corner: 2 -12500000 171500000 0 0
|
||||
corner: 3 -12500000 174000000 0 1
|
||||
|
||||
polyline: 2 0 10 300000 -1 -1 -1 0
|
||||
corner: 1 -29000000 174000000 0 1
|
||||
corner: 2 -29000000 171500000 0 1
|
||||
|
||||
polyline: 2 0 10 300000 -1 -1 -1 0
|
||||
corner: 1 -21000000 175500000 0 1
|
||||
corner: 2 -21000000 171500000 0 1000000
|
||||
|
||||
polyline: 3 0 10 300000 -1 -1 -1 0
|
||||
corner: 1 -16000000 180500000 0 1
|
||||
corner: 2 -12500000 180500000 0 0
|
||||
corner: 3 -12500000 176000000 0 1
|
||||
|
||||
polyline: 2 0 10 300000 -1 -1 -1 0
|
||||
corner: 1 -29000000 176000000 0 1
|
||||
corner: 2 -29000000 180500000 0 1
|
||||
|
||||
polyline: 5 0 10 300000 -1 -1 -1 0
|
||||
corner: 1 -12500000 180500000 0 1000000
|
||||
corner: 2 -12500000 182500000 0 0
|
||||
corner: 3 -11999999 181499999 0 0
|
||||
corner: 4 -12500000 182500000 0 0
|
||||
corner: 5 -12999999 181500000 0 0
|
||||
net_name: "+EPA" -14200000 183400000 11 0 1000000 250000 -1 -1 2 1
|
||||
|
||||
add_new_page: "Channels"
|
||||
add_new_page: "BOM"
|
||||
[merges]
|
||||
|
||||
|
||||
|
||||
[end]
|
||||
333
Projects/BLOKS/related_files/backup/+Ep(2).cds.b
Normal file
|
|
@ -0,0 +1,333 @@
|
|||
[options]
|
||||
|
||||
version: 1.100
|
||||
file_version: 1.100
|
||||
project_name: "+Ep(2).cds"
|
||||
library_folder: "c:\ðàáî÷àÿ ïàïêà\freepcb_libraries"
|
||||
full_library_folder: "c:\ðàáî÷àÿ ïàïêà\freepcb_libraries\lib_footprints"
|
||||
parent_folder: "C:\FreePcbDev\Schematic Constructor\Projects\"
|
||||
CAM_folder: "C:\Freeasy\Projects\cookies\print_layers"
|
||||
netlist_completed: "0"
|
||||
bom_options: "721056"
|
||||
page_number: "0"
|
||||
parent_index: "1"
|
||||
alignment: 0.00
|
||||
partlist_size_x: "534"
|
||||
partlist_size_y: "194"
|
||||
partlist_pos_x: "107"
|
||||
partlist_pos_y: "81"
|
||||
partlist_col_w: "960223292"
|
||||
part_search: ""
|
||||
netlist_file_path: "C:\FreePcbDev\Schematic Constructor\Projects\BLOKS\related_files\CDS_netlist\+Ep(2).cds"
|
||||
netlist_page_mask: -7
|
||||
netlist_format: 0
|
||||
page_mirror_mask: 1
|
||||
default_font: 2
|
||||
default_node_width: -1200000
|
||||
autosave_interval: 60
|
||||
m_client_rect_left: 110
|
||||
m_client_rect_right: 1896
|
||||
m_client_rect_bottom: 925
|
||||
m_client_rect_top: 0
|
||||
m_org_x: -164830
|
||||
m_org_y: 131843
|
||||
m_scale_factor: 27915
|
||||
m_attr_size: 1200000 220000 1200000 220000 1200000 220000 1200000 220000 1200000 220000 1200000 220000
|
||||
units: MM
|
||||
|
||||
m_sel_mask: 2147483647
|
||||
m_visible_layers: -1
|
||||
m_top_layer: 8
|
||||
m_grid_style: 0
|
||||
visible_grid_spacing: 5000000.000000
|
||||
visible_grid_item: 20mil
|
||||
visible_grid_item: 50mil
|
||||
visible_grid_item: 100mil
|
||||
visible_grid_item: 125mil
|
||||
visible_grid_item: 200mil
|
||||
visible_grid_item: 250mil
|
||||
visible_grid_item: 400mil
|
||||
visible_grid_item: 500mil
|
||||
visible_grid_item: 1000mil
|
||||
visible_grid_item: 0.5mm
|
||||
visible_grid_item: 0.65mm
|
||||
visible_grid_item: 0.95mm
|
||||
visible_grid_item: 1mm
|
||||
visible_grid_item: 1.27mm
|
||||
visible_grid_item: 2mm
|
||||
visible_grid_item: 2.5mm
|
||||
visible_grid_item: 4mm
|
||||
visible_grid_item: 5mm
|
||||
visible_grid_item: 10mm
|
||||
visible_grid_item: 20mm
|
||||
visible_grid_item: 25mm
|
||||
visible_grid_item: 40mm
|
||||
visible_grid_item: 50mm
|
||||
visible_grid_item: 100mm
|
||||
|
||||
polyline_grid_spacing: 250000.000000
|
||||
placement_grid_item: 5mil
|
||||
placement_grid_item: 10mil
|
||||
placement_grid_item: 20mil
|
||||
placement_grid_item: 25mil
|
||||
placement_grid_item: 40mil
|
||||
placement_grid_item: 50mil
|
||||
placement_grid_item: 100mil
|
||||
placement_grid_item: 200mil
|
||||
placement_grid_item: 250mil
|
||||
placement_grid_item: 400mil
|
||||
placement_grid_item: 500mil
|
||||
placement_grid_item: 1000mil
|
||||
placement_grid_item: 0.001mm
|
||||
placement_grid_item: 0.01mm
|
||||
placement_grid_item: 0.1mm
|
||||
placement_grid_item: 0.2mm
|
||||
placement_grid_item: 0.25mm
|
||||
placement_grid_item: 0.4mm
|
||||
placement_grid_item: 0.5mm
|
||||
placement_grid_item: 0.65mm
|
||||
placement_grid_item: 0.95mm
|
||||
placement_grid_item: 1mm
|
||||
placement_grid_item: 1.27mm
|
||||
placement_grid_item: 2mm
|
||||
placement_grid_item: 2.5mm
|
||||
placement_grid_item: 4mm
|
||||
placement_grid_item: 5mm
|
||||
placement_grid_item: 10mm
|
||||
|
||||
text_grid_spacing: 250000.000000
|
||||
text_grid_item: 0.1mil
|
||||
text_grid_item: 0.5mil
|
||||
text_grid_item: 1mil
|
||||
text_grid_item: 2mil
|
||||
text_grid_item: 2.5mil
|
||||
text_grid_item: 3.33330709mil
|
||||
text_grid_item: 4mil
|
||||
text_grid_item: 5mil
|
||||
text_grid_item: 6.665mil
|
||||
text_grid_item: 10mil
|
||||
text_grid_item: 12.5mil
|
||||
text_grid_item: 16.665mil
|
||||
text_grid_item: 20mil
|
||||
text_grid_item: 25mil
|
||||
text_grid_item: 40mil
|
||||
text_grid_item: 50mil
|
||||
text_grid_item: 0.000001mm
|
||||
text_grid_item: 0.001mm
|
||||
text_grid_item: 0.01mm
|
||||
text_grid_item: 0.02mm
|
||||
text_grid_item: 0.04mm
|
||||
text_grid_item: 0.05mm
|
||||
text_grid_item: 0.1mm
|
||||
text_grid_item: 0.2mm
|
||||
text_grid_item: 0.25mm
|
||||
text_grid_item: 0.4mm
|
||||
text_grid_item: 0.5mm
|
||||
text_grid_item: 1mm
|
||||
|
||||
snap_angle: 45
|
||||
|
||||
m_seg_clearance: 640080
|
||||
polyline_width: 200000
|
||||
text_height: 200000
|
||||
min_text_stroke_width: 100000
|
||||
highlight_width: 127000
|
||||
cam_flags: 262114
|
||||
cam_layers: 8191
|
||||
cam_units: 1
|
||||
|
||||
report_options: 0
|
||||
drc_check_unrouted: 0
|
||||
drc_part_attr_to_attr: 200000
|
||||
drc_part_attr_to_poly: 200000
|
||||
drc_pin_attr_to_attr: 254000
|
||||
drc_pin_attr_to_poly: 254000
|
||||
|
||||
default_polyline_width:0.2mm
|
||||
n_additional_layers: 4
|
||||
layer_info: "dragging" 0 130 130 130 1
|
||||
layer_info: "background" 1 83 83 83 1
|
||||
layer_info: "visible grid" 2 97 97 97 1
|
||||
layer_info: "highlight" 3 255 255 0 1
|
||||
layer_info: "DRC error" 4 255 255 0 1
|
||||
layer_info: "ownerless line" 5 255 0 0 1
|
||||
layer_info: "part outline" 6 205 205 205 1
|
||||
layer_info: "part name" 7 205 205 205 1
|
||||
layer_info: "pin line" 8 255 255 128 1
|
||||
layer_info: "pin name" 9 255 255 128 1
|
||||
layer_info: "net polyline" 10 255 255 255 1
|
||||
layer_info: "net name" 11 255 255 255 1
|
||||
layer_info: "footprint" 12 128 255 255 1
|
||||
layer_info: "part value" 13 255 128 192 1
|
||||
layer_info: "description" 14 157 157 157 1
|
||||
layer_info: "front layer 1" 15 255 255 255 1
|
||||
layer_info: "front layer 2" 16 255 128 0 1
|
||||
layer_info: "back layer 1" 17 0 0 0 1
|
||||
layer_info: "back layer 2" 18 128 128 255 1
|
||||
|
||||
m_pdf_font_i: 8
|
||||
m_pdf_margin: 0.01
|
||||
m_pdf_pages: 1
|
||||
pdf_layer_info: "dragging" 0 255 255 255 0
|
||||
pdf_layer_info: "background" 1 255 255 255 0
|
||||
pdf_layer_info: "visible grid" 2 255 255 255 0
|
||||
pdf_layer_info: "highlight" 3 255 255 0 1
|
||||
pdf_layer_info: "DRC error" 4 0 0 0 1
|
||||
pdf_layer_info: "ownerless line" 5 0 0 0 1
|
||||
pdf_layer_info: "part outline" 6 0 0 0 1
|
||||
pdf_layer_info: "part name" 7 0 0 0 1
|
||||
pdf_layer_info: "pin line" 8 0 0 0 1
|
||||
pdf_layer_info: "pin name" 9 0 0 0 1
|
||||
pdf_layer_info: "net polyline" 10 0 0 0 1
|
||||
pdf_layer_info: "net name" 11 0 0 0 1
|
||||
pdf_layer_info: "footprint" 12 0 0 0 1
|
||||
pdf_layer_info: "part value" 13 0 0 0 1
|
||||
pdf_layer_info: "description" 14 0 0 0 1
|
||||
pdf_layer_info: "front layer 1" 15 0 0 0 1
|
||||
pdf_layer_info: "front layer 2" 16 133 133 133 1
|
||||
pdf_layer_info: "back layer 1" 17 255 255 255 1
|
||||
pdf_layer_info: "back layer 2" 18 197 197 197 1
|
||||
pdf_layer_info: "back layer 3" 19 255 255 255 0
|
||||
pdf_layer_info: "back layer 4" 20 255 255 255 0
|
||||
pdf_layer_info: "back layer 5" 21 255 255 255 0
|
||||
pdf_layer_info: "back layer 6" 22 255 255 255 0
|
||||
pdf_layer_info: "back layer 7" 23 255 255 255 0
|
||||
pdf_layer_info: "back layer 8" 24 255 255 255 0
|
||||
pdf_layer_info: "back layer 9" 25 255 255 255 0
|
||||
pdf_layer_info: "back layer 10" 26 255 255 255 0
|
||||
pdf_layer_info: "back layer 11" 27 255 255 255 0
|
||||
pdf_layer_info: "back layer 12" 28 255 255 255 0
|
||||
pdf_layer_info: "back layer 13" 29 255 255 255 0
|
||||
pdf_layer_info: "back layer 14" 30 255 255 255 0
|
||||
pdf_layer_info: "undefined" 31 255 255 255 0
|
||||
[graphics]
|
||||
|
||||
rename_page: "VIST-3 (1-13)"
|
||||
n_pins: 4
|
||||
rectangle: -195375000 173875000 -176625000 184625064
|
||||
ref_des: "DA2" -190656000 189654000 7 0 1200000 220000 -1 -1 2 1
|
||||
footprint_name: "SOT-23-5" -190656000 185493998 12 0 1200000 220000 -1 -1 2 1
|
||||
part_value: "ADP165/160AUJZ-3.0" -190656000 187573999 13 0 1200000 220000 -1 -1 2 1
|
||||
outline: 4 0 6 250000 -1 -1 -1 0
|
||||
corner: 1 -191750000 184500000 0 0
|
||||
corner: 2 -191750000 176000000 0 0
|
||||
corner: 3 -180250000 176000000 0 0
|
||||
corner: 4 -180249936 184500064 0 0
|
||||
|
||||
polyline: 2 0 8 250000 -1 -1 -1 0
|
||||
corner: 1 -195250000 182000000 0 1
|
||||
corner: 2 -191750000 182000000 0 0
|
||||
pin_name: "1" -192892000 182628000 9 0 1200000 220000 -1 -1 2 1
|
||||
description: "Vin" -190886000 181404000 14 0 1200000 220000 -1 -1 2 1
|
||||
|
||||
polyline: 2 0 8 250000 -1 -1 -1 0
|
||||
corner: 1 -185750000 174000000 0 1
|
||||
corner: 2 -185750000 176000000 0 0
|
||||
pin_name: "2" -185250000 174250000 9 0 1200000 220000 -1 -1 2 1
|
||||
|
||||
polyline: 2 0 8 250000 -1 -1 -1 0
|
||||
corner: 1 -180250000 182000000 0 0
|
||||
corner: 2 -176750000 182000000 0 1200000
|
||||
pin_name: "5" -179636000 182678000 9 0 1200000 220000 -1 -1 2 1
|
||||
description: "Vout" -185406000 181404000 14 0 1200000 220000 -1 -1 2 1
|
||||
|
||||
polyline: 2 0 8 250000 -1 -1 -1 0
|
||||
corner: 1 -195250000 178000000 0 1
|
||||
corner: 2 -191750000 178000000 0 0
|
||||
pin_name: "3" -193146000 178768000 9 0 1200000 220000 -1 -1 2 1
|
||||
description: "Ven" -190886000 177594000 14 0 1200000 220000 -1 -1 2 1
|
||||
|
||||
part_end
|
||||
|
||||
n_pins: 2
|
||||
rectangle: -198624999 171624999 -194374997 174874996
|
||||
ref_des: "C3" -193522741 173848969 7 0 1200000 220000 -1 -1 2 1
|
||||
footprint_name: "CC0805" -193522741 171592967 12 0 0 0 -1 -1 2 1
|
||||
part_value: "2.2" -193522741 171768968 13 0 1200000 220000 -1 -1 2 1
|
||||
polyline: 2 0 8 250000 -1 -1 -1 0
|
||||
corner: 1 -196499996 172749997 0 0
|
||||
corner: 2 -196499999 171749999 0 1
|
||||
pin_name: "1" -198009079 171100000 9 720 0 0 -1 -1 2 1
|
||||
|
||||
polyline: 2 0 8 250000 -1 -1 -1 0
|
||||
corner: 1 -196499998 173749999 0 0
|
||||
corner: 2 -196500001 174749996 0 1
|
||||
pin_name: "2" -197796098 174850000 9 720 0 0 -1 -1 2 1
|
||||
|
||||
polyline: 2 0 6 250000 -1 -1 -1 0
|
||||
corner: 1 -194499997 172749998 0 0
|
||||
corner: 2 -198499999 172749997 0 0
|
||||
|
||||
polyline: 2 0 6 250000 -1 -1 -1 0
|
||||
corner: 1 -194500000 173749999 0 0
|
||||
corner: 2 -198499998 173749999 0 0
|
||||
|
||||
part_end
|
||||
|
||||
n_pins: 2
|
||||
rectangle: -178874999 171624999 -174624997 174874996
|
||||
ref_des: "C4" -173922741 173998969 7 0 1200000 220000 -1 -1 2 1
|
||||
footprint_name: "CC0805" -173922741 171742967 12 0 0 0 -1 -1 2 1
|
||||
part_value: "2.2" -173922741 171918968 13 0 1200000 220000 -1 -1 2 1
|
||||
polyline: 2 0 6 250000 -1 -1 -1 0
|
||||
corner: 1 -174749997 172749998 0 0
|
||||
corner: 2 -178749999 172749997 0 0
|
||||
|
||||
polyline: 2 0 6 250000 -1 -1 -1 0
|
||||
corner: 1 -174750000 173749999 0 0
|
||||
corner: 2 -178749998 173749999 0 0
|
||||
|
||||
polyline: 2 0 8 250000 -1 -1 -1 0
|
||||
corner: 1 -176749998 173749999 0 0
|
||||
corner: 2 -176750001 174749996 0 1
|
||||
pin_name: "2" -178046098 174850000 9 720 0 0 -1 -1 2 1
|
||||
|
||||
polyline: 2 0 8 250000 -1 -1 -1 0
|
||||
corner: 1 -176749996 172749997 0 0
|
||||
corner: 2 -176749999 171749999 0 1
|
||||
pin_name: "1" -178259079 171100000 9 720 0 0 -1 -1 2 1
|
||||
|
||||
part_end
|
||||
|
||||
polyline: 4 0 10 250000 -1 -1 -1 0
|
||||
corner: 1 -185750000 174000000 0 1
|
||||
corner: 2 -185750000 169250000 0 0
|
||||
corner: 3 -176750000 169250000 0 0
|
||||
corner: 4 -176750000 171750000 0 1
|
||||
|
||||
polyline: 3 0 10 250000 -1 -1 -1 0
|
||||
corner: 1 -176750000 174750000 0 1
|
||||
corner: 2 -176750000 182000000 0 0
|
||||
corner: 3 -175750000 182000000 0 1
|
||||
|
||||
polyline: 3 0 10 250000 -1 -1 -1 0
|
||||
corner: 1 -196500000 174750000 0 1
|
||||
corner: 2 -196500000 182000000 0 0
|
||||
corner: 3 -195250000 182000000 0 1
|
||||
|
||||
polyline: 2 0 10 250000 -1 -1 -1 0
|
||||
corner: 1 -195250000 178000000 0 1
|
||||
corner: 2 -196500000 178000000 0 1200000
|
||||
|
||||
polyline: 3 0 10 250000 -1 -1 -1 0
|
||||
corner: 1 -185750000 169250000 0 1200000
|
||||
corner: 2 -196500000 169250000 0 0
|
||||
corner: 3 -196500000 171750000 0 1
|
||||
|
||||
polyline: 5 0 10 250000 -1 -1 -1 0
|
||||
corner: 1 -175750000 182000000 0 1
|
||||
corner: 2 -174250000 182000000 0 0
|
||||
corner: 3 -175500000 182500000 0 0
|
||||
corner: 4 -174250000 182000000 0 0
|
||||
corner: 5 -175500000 181500000 0 0
|
||||
net_name: "+EP" -173500000 181250000 11 0 1200000 220000 -1 -1 2 1
|
||||
|
||||
add_new_page: "Ñïèñîê ìàò-îâ"
|
||||
[merges]
|
||||
|
||||
merge: "Merge-4"
|
||||
merge: "Merge-19"
|
||||
merge: "Merge-1"
|
||||
|
||||
|
||||
[end]
|
||||
398
Projects/BLOKS/related_files/backup/+Ep.cds.b
Normal file
|
|
@ -0,0 +1,398 @@
|
|||
[options]
|
||||
|
||||
version: 1.100
|
||||
file_version: 1.100
|
||||
project_name: "+Ep.cds"
|
||||
library_folder: "c:\ðàáî÷àÿ ïàïêà\freepcb_libraries"
|
||||
full_library_folder: "c:\ðàáî÷àÿ ïàïêà\freepcb_libraries\lib_footprints"
|
||||
parent_folder: "C:\FreePcbDev\Schematic Constructor\Projects\"
|
||||
CAM_folder: "C:\Freeasy\Projects\Armkor2\cookies\print_layers"
|
||||
netlist_completed: "0"
|
||||
bom_options: "721056"
|
||||
page_number: "0"
|
||||
parent_index: "1"
|
||||
alignment: 0.75
|
||||
partlist_size_x: "534"
|
||||
partlist_size_y: "194"
|
||||
partlist_pos_x: "131"
|
||||
partlist_pos_y: "81"
|
||||
partlist_col_w: "960223292"
|
||||
part_search: ""
|
||||
netlist_file_path: "C:\FreePcbDev\Schematic Constructor\Projects\BLOKS\related_files\CDS_netlist\+Ep.cds"
|
||||
netlist_page_mask: 1
|
||||
netlist_format: 0
|
||||
page_mirror_mask: 0
|
||||
default_font: 2
|
||||
default_node_width: -1000000
|
||||
autosave_interval: 60
|
||||
m_client_rect_left: 110
|
||||
m_client_rect_right: 1896
|
||||
m_client_rect_bottom: 925
|
||||
m_client_rect_top: 0
|
||||
m_org_x: -170602
|
||||
m_org_y: 141245
|
||||
m_scale_factor: 25612
|
||||
m_attr_size: 1000000 250000 1000000 250000 1000000 250000 800000 200000 1000000 250000 1000000 250000
|
||||
units: MM
|
||||
|
||||
m_sel_mask: -1
|
||||
m_visible_layers: -1
|
||||
m_top_layer: 8
|
||||
m_grid_style: 0
|
||||
visible_grid_spacing: 5000000.000000
|
||||
visible_grid_item: 20mil
|
||||
visible_grid_item: 50mil
|
||||
visible_grid_item: 100mil
|
||||
visible_grid_item: 125mil
|
||||
visible_grid_item: 200mil
|
||||
visible_grid_item: 250mil
|
||||
visible_grid_item: 400mil
|
||||
visible_grid_item: 500mil
|
||||
visible_grid_item: 1000mil
|
||||
visible_grid_item: 0.5mm
|
||||
visible_grid_item: 0.65mm
|
||||
visible_grid_item: 0.95mm
|
||||
visible_grid_item: 1mm
|
||||
visible_grid_item: 1.27mm
|
||||
visible_grid_item: 2mm
|
||||
visible_grid_item: 2.5mm
|
||||
visible_grid_item: 4mm
|
||||
visible_grid_item: 5mm
|
||||
visible_grid_item: 10mm
|
||||
visible_grid_item: 20mm
|
||||
visible_grid_item: 25mm
|
||||
visible_grid_item: 40mm
|
||||
visible_grid_item: 50mm
|
||||
visible_grid_item: 100mm
|
||||
|
||||
polyline_grid_spacing: 500000.000000
|
||||
placement_grid_item: 5mil
|
||||
placement_grid_item: 10mil
|
||||
placement_grid_item: 20mil
|
||||
placement_grid_item: 25mil
|
||||
placement_grid_item: 40mil
|
||||
placement_grid_item: 50mil
|
||||
placement_grid_item: 100mil
|
||||
placement_grid_item: 200mil
|
||||
placement_grid_item: 250mil
|
||||
placement_grid_item: 400mil
|
||||
placement_grid_item: 500mil
|
||||
placement_grid_item: 1000mil
|
||||
placement_grid_item: 0.001mm
|
||||
placement_grid_item: 0.01mm
|
||||
placement_grid_item: 0.1mm
|
||||
placement_grid_item: 0.2mm
|
||||
placement_grid_item: 0.25mm
|
||||
placement_grid_item: 0.4mm
|
||||
placement_grid_item: 0.5mm
|
||||
placement_grid_item: 0.65mm
|
||||
placement_grid_item: 0.95mm
|
||||
placement_grid_item: 1mm
|
||||
placement_grid_item: 1.27mm
|
||||
placement_grid_item: 2mm
|
||||
placement_grid_item: 2.5mm
|
||||
placement_grid_item: 4mm
|
||||
placement_grid_item: 5mm
|
||||
placement_grid_item: 10mm
|
||||
|
||||
text_grid_spacing: 100000.000000
|
||||
text_grid_item: 0.1mil
|
||||
text_grid_item: 0.5mil
|
||||
text_grid_item: 1mil
|
||||
text_grid_item: 2mil
|
||||
text_grid_item: 2.5mil
|
||||
text_grid_item: 3.33330709mil
|
||||
text_grid_item: 4mil
|
||||
text_grid_item: 5mil
|
||||
text_grid_item: 6.665mil
|
||||
text_grid_item: 10mil
|
||||
text_grid_item: 12.5mil
|
||||
text_grid_item: 16.665mil
|
||||
text_grid_item: 20mil
|
||||
text_grid_item: 25mil
|
||||
text_grid_item: 40mil
|
||||
text_grid_item: 50mil
|
||||
text_grid_item: 0.000001mm
|
||||
text_grid_item: 0.001mm
|
||||
text_grid_item: 0.01mm
|
||||
text_grid_item: 0.02mm
|
||||
text_grid_item: 0.04mm
|
||||
text_grid_item: 0.05mm
|
||||
text_grid_item: 0.1mm
|
||||
text_grid_item: 0.2mm
|
||||
text_grid_item: 0.25mm
|
||||
text_grid_item: 0.4mm
|
||||
text_grid_item: 0.5mm
|
||||
text_grid_item: 1mm
|
||||
|
||||
snap_angle: 45
|
||||
|
||||
m_seg_clearance: 640080
|
||||
polyline_width: 200000
|
||||
text_height: 200000
|
||||
min_text_stroke_width: 100000
|
||||
highlight_width: 127000
|
||||
cam_flags: 262114
|
||||
cam_layers: 8191
|
||||
cam_units: 1
|
||||
|
||||
report_options: 0
|
||||
drc_check_unrouted: 0
|
||||
drc_part_attr_to_attr: 50000
|
||||
drc_part_attr_to_poly: 50000
|
||||
drc_pin_attr_to_attr: 254000
|
||||
drc_pin_attr_to_poly: 254000
|
||||
|
||||
default_polyline_width:0.2mm
|
||||
n_additional_layers: 4
|
||||
layer_info: "dragging" 0 130 130 130 1
|
||||
layer_info: "background" 1 83 83 83 1
|
||||
layer_info: "visible grid" 2 97 97 97 1
|
||||
layer_info: "highlight" 3 255 255 0 1
|
||||
layer_info: "DRC error" 4 255 255 0 1
|
||||
layer_info: "ownerless line" 5 255 0 0 1
|
||||
layer_info: "part outline" 6 205 205 205 1
|
||||
layer_info: "part name" 7 205 205 205 1
|
||||
layer_info: "pin line" 8 255 255 128 1
|
||||
layer_info: "pin name" 9 255 255 128 1
|
||||
layer_info: "net polyline" 10 255 255 255 1
|
||||
layer_info: "net name" 11 255 255 255 1
|
||||
layer_info: "footprint" 12 128 255 255 1
|
||||
layer_info: "part value" 13 255 128 192 1
|
||||
layer_info: "description" 14 157 157 157 1
|
||||
layer_info: "front layer 1" 15 255 255 255 1
|
||||
layer_info: "front layer 2" 16 255 128 0 1
|
||||
layer_info: "back layer 1" 17 0 0 0 1
|
||||
layer_info: "back layer 2" 18 128 128 255 1
|
||||
|
||||
m_pdf_font_i: 8
|
||||
m_pdf_margin: 0.01
|
||||
m_pdf_pages: 1
|
||||
pdf_layer_info: "dragging" 0 255 255 255 0
|
||||
pdf_layer_info: "background" 1 255 255 255 0
|
||||
pdf_layer_info: "visible grid" 2 255 255 255 0
|
||||
pdf_layer_info: "highlight" 3 255 255 0 1
|
||||
pdf_layer_info: "DRC error" 4 0 0 0 1
|
||||
pdf_layer_info: "ownerless line" 5 0 0 0 1
|
||||
pdf_layer_info: "part outline" 6 0 0 0 1
|
||||
pdf_layer_info: "part name" 7 0 0 0 1
|
||||
pdf_layer_info: "pin line" 8 0 0 0 1
|
||||
pdf_layer_info: "pin name" 9 0 0 0 1
|
||||
pdf_layer_info: "net polyline" 10 0 0 0 1
|
||||
pdf_layer_info: "net name" 11 0 0 0 1
|
||||
pdf_layer_info: "footprint" 12 0 0 0 1
|
||||
pdf_layer_info: "part value" 13 0 0 0 1
|
||||
pdf_layer_info: "description" 14 0 0 0 1
|
||||
pdf_layer_info: "front layer 1" 15 0 0 0 1
|
||||
pdf_layer_info: "front layer 2" 16 133 133 133 1
|
||||
pdf_layer_info: "back layer 1" 17 255 255 255 1
|
||||
pdf_layer_info: "back layer 2" 18 197 197 197 1
|
||||
pdf_layer_info: "back layer 3" 19 255 255 255 0
|
||||
pdf_layer_info: "back layer 4" 20 255 255 255 0
|
||||
pdf_layer_info: "back layer 5" 21 255 255 255 0
|
||||
pdf_layer_info: "back layer 6" 22 255 255 255 0
|
||||
pdf_layer_info: "back layer 7" 23 255 255 255 0
|
||||
pdf_layer_info: "back layer 8" 24 255 255 255 0
|
||||
pdf_layer_info: "back layer 9" 25 255 255 255 0
|
||||
pdf_layer_info: "back layer 10" 26 255 255 255 0
|
||||
pdf_layer_info: "back layer 11" 27 255 255 255 0
|
||||
pdf_layer_info: "back layer 12" 28 255 255 255 0
|
||||
pdf_layer_info: "back layer 13" 29 255 255 255 0
|
||||
pdf_layer_info: "back layer 14" 30 255 255 255 0
|
||||
pdf_layer_info: "undefined" 31 255 255 255 0
|
||||
[graphics]
|
||||
|
||||
rename_page: "Page 1"
|
||||
n_pins: 2
|
||||
rectangle: -207175000 184350000 -203825000 186650000
|
||||
ref_des: "C9" -204700000 186900000 7 0 1000000 250000 -1 -1 2 1
|
||||
footprint_name: "CC0805" -204700000 184987500 12 0 0 0 -1 -1 2 1
|
||||
part_value: "10.0" -205020000 183455000 13 0 1000000 250000 -1 -1 2 1
|
||||
polyline: 2 0 6 350000 -1 -1 -1 0
|
||||
corner: 1 -204000000 186000000 0 0
|
||||
corner: 2 -207000000 186000000 0 0
|
||||
|
||||
polyline: 2 0 6 350000 -1 -1 -1 0
|
||||
corner: 1 -204000000 185000000 0 0
|
||||
corner: 2 -207000000 185000000 0 0
|
||||
|
||||
polyline: 2 0 8 300000 -1 -1 -1 0
|
||||
corner: 1 -205500000 186000000 0 0
|
||||
corner: 2 -205500000 186500000 0 1
|
||||
pin_name: "2" -206439616 187159952 9 720 0 0 -1 -1 2 1
|
||||
|
||||
polyline: 2 0 8 300000 -1 -1 -1 0
|
||||
corner: 1 -205500000 185000000 0 0
|
||||
corner: 2 -205500000 184500000 0 1
|
||||
pin_name: "1" -206594016 183941264 9 720 0 0 -1 -1 2 1
|
||||
|
||||
part_end
|
||||
|
||||
n_pins: 2
|
||||
rectangle: -203175000 184350000 -199825000 186650000
|
||||
ref_des: "C10" -200700000 186900000 7 0 1000000 250000 -1 -1 2 1
|
||||
footprint_name: "CC0805" -200700000 184987500 12 0 0 0 -1 -1 2 1
|
||||
part_value: "10.0" -200880000 183475000 13 0 1000000 250000 -1 -1 2 1
|
||||
polyline: 2 0 8 300000 -1 -1 -1 0
|
||||
corner: 1 -201500000 185000000 0 0
|
||||
corner: 2 -201500000 184500000 0 1
|
||||
pin_name: "1" -202594016 183941264 9 720 0 0 -1 -1 2 1
|
||||
|
||||
polyline: 2 0 8 300000 -1 -1 -1 0
|
||||
corner: 1 -201500000 186000000 0 0
|
||||
corner: 2 -201500000 186500000 0 1
|
||||
pin_name: "2" -202439616 187159952 9 720 0 0 -1 -1 2 1
|
||||
|
||||
polyline: 2 0 6 350000 -1 -1 -1 0
|
||||
corner: 1 -200000000 185000000 0 0
|
||||
corner: 2 -203000000 185000000 0 0
|
||||
|
||||
polyline: 2 0 6 350000 -1 -1 -1 0
|
||||
corner: 1 -200000000 186000000 0 0
|
||||
corner: 2 -203000000 186000000 0 0
|
||||
|
||||
part_end
|
||||
|
||||
n_pins: 2
|
||||
rectangle: -189675000 184350000 -186325000 186650000
|
||||
ref_des: "C11" -192400000 184400000 7 0 1000000 250000 -1 -1 2 1
|
||||
footprint_name: "CC0805" -192400000 182487500 12 0 0 0 -1 -1 2 1
|
||||
part_value: "2.2" -192400000 182675000 13 0 1000000 250000 -1 -1 2 1
|
||||
polyline: 2 0 6 350000 -1 -1 -1 0
|
||||
corner: 1 -186500000 186000000 0 0
|
||||
corner: 2 -189500000 186000000 0 0
|
||||
|
||||
polyline: 2 0 6 350000 -1 -1 -1 0
|
||||
corner: 1 -186500000 185000000 0 0
|
||||
corner: 2 -189500000 185000000 0 0
|
||||
|
||||
polyline: 2 0 8 300000 -1 -1 -1 0
|
||||
corner: 1 -188000000 186000000 0 0
|
||||
corner: 2 -188000000 186500000 0 1
|
||||
pin_name: "2" -188939616 187159952 9 720 0 0 -1 -1 2 1
|
||||
|
||||
polyline: 2 0 8 300000 -1 -1 -1 0
|
||||
corner: 1 -188000000 185000000 0 0
|
||||
corner: 2 -188000000 184500000 0 1
|
||||
pin_name: "1" -189094016 183941264 9 720 0 0 -1 -1 2 1
|
||||
|
||||
part_end
|
||||
|
||||
n_pins: 2
|
||||
rectangle: -186175000 184350000 -182825000 186650000
|
||||
ref_des: "C12" -183500000 183100000 7 0 1000000 250000 -1 -1 2 1
|
||||
footprint_name: "CC0805" -183500000 181187500 12 0 0 0 -1 -1 2 1
|
||||
part_value: "47.0" -183500000 181375000 13 0 1000000 250000 -1 -1 2 1
|
||||
polyline: 2 0 8 300000 -1 -1 -1 0
|
||||
corner: 1 -184500000 185000000 0 0
|
||||
corner: 2 -184500000 184500000 0 1
|
||||
pin_name: "1" -185594016 183941264 9 720 0 0 -1 -1 2 1
|
||||
|
||||
polyline: 2 0 8 300000 -1 -1 -1 0
|
||||
corner: 1 -184500000 186000000 0 0
|
||||
corner: 2 -184500000 186500000 0 1
|
||||
pin_name: "2" -185439616 187159952 9 720 0 0 -1 -1 2 1
|
||||
description: "+" -183900000 186400000 14 0 800000 200000 -1 -1 2 1
|
||||
|
||||
polyline: 2 0 6 350000 -1 -1 -1 0
|
||||
corner: 1 -183000000 185000000 0 0
|
||||
corner: 2 -186000000 185000000 0 0
|
||||
|
||||
polyline: 2 0 6 350000 -1 -1 -1 0
|
||||
corner: 1 -183000000 186000000 0 0
|
||||
corner: 2 -186000000 186000000 0 0
|
||||
|
||||
part_end
|
||||
|
||||
n_pins: 4
|
||||
rectangle: -200650000 186850000 -189350000 195675000
|
||||
ref_des: "DA2" -193949460 199825810 7 0 1000000 250000 -1 -1 2 9
|
||||
footprint_name: "SOT-23-5" -199313940 196375810 12 0 1000000 250000 -1 -1 2 9
|
||||
part_value: "TLV70033DDC" -201904740 198100810 13 0 1000000 250000 -1 -1 2 9
|
||||
outline: 4 0 6 350000 -1 -1 -1 0
|
||||
corner: 1 -199500000 195500000 0 0
|
||||
corner: 2 -199500000 189000000 0 0
|
||||
corner: 3 -190500000 189000000 0 0
|
||||
corner: 4 -190500000 195500000 0 0
|
||||
|
||||
polyline: 2 0 8 300000 -1 -1 -1 0
|
||||
corner: 1 -200500000 193500000 0 1
|
||||
corner: 2 -199500000 193500000 0 0
|
||||
pin_name: "1" -200382880 193955184 9 0 1000000 250000 -1 -1 2 1
|
||||
description: "Vin" -198839248 193136528 14 0 800000 200000 -1 -1 2 1
|
||||
|
||||
polyline: 2 0 8 300000 -1 -1 -1 0
|
||||
corner: 1 -195000000 187000000 0 1
|
||||
corner: 2 -195000000 189000000 0 0
|
||||
pin_name: "2" -194469888 187481024 9 0 1000000 250000 -1 -1 2 1
|
||||
|
||||
polyline: 2 0 8 300000 -1 -1 -1 0
|
||||
corner: 1 -190500000 193500000 0 0
|
||||
corner: 2 -189500000 193500000 0 1
|
||||
pin_name: "5" -190027632 194016288 9 0 1000000 250000 -1 -1 2 1
|
||||
description: "Vout" -194021200 193280928 14 0 800000 200000 -1 -1 2 1
|
||||
|
||||
polyline: 2 0 8 300000 -1 -1 -1 0
|
||||
corner: 1 -200500000 190500000 0 1
|
||||
corner: 2 -199500000 190500000 0 0
|
||||
pin_name: "3" -200636016 191052800 9 0 1000000 250000 -1 -1 2 1
|
||||
description: "Ven" -198839248 190239664 14 0 800000 200000 -1 -1 2 1
|
||||
|
||||
part_end
|
||||
|
||||
polyline: 5 0 10 300000 -1 -1 -1 0
|
||||
corner: 1 -184500000 193500000 0 1000000
|
||||
corner: 2 -184500000 195500000 0 0
|
||||
corner: 3 -183999999 194499999 0 0
|
||||
corner: 4 -184500000 195500000 0 0
|
||||
corner: 5 -184999999 194500000 0 0
|
||||
net_name: "+Ep" -185900000 196400000 11 0 1000000 250000 -1 -1 2 1
|
||||
|
||||
polyline: 2 0 10 300000 -1 -1 -1 0
|
||||
corner: 1 -205500000 184500000 0 1
|
||||
corner: 2 -205500000 181000000 0 1
|
||||
|
||||
polyline: 2 0 10 300000 -1 -1 -1 0
|
||||
corner: 1 -201500000 184500000 0 1
|
||||
corner: 2 -201500000 181000000 0 1000000
|
||||
|
||||
polyline: 3 0 10 300000 -1 -1 -1 0
|
||||
corner: 1 -205500000 181000000 0 1
|
||||
corner: 2 -195000000 181000000 0 0
|
||||
corner: 3 -195000000 187000000 0 1
|
||||
|
||||
polyline: 3 0 10 300000 -1 -1 -1 0
|
||||
corner: 1 -205500000 186500000 0 1
|
||||
corner: 2 -205500000 193500000 0 0
|
||||
corner: 3 -200500000 193500000 0 1
|
||||
|
||||
polyline: 2 0 10 300000 -1 -1 -1 0
|
||||
corner: 1 -201500000 186500000 0 1
|
||||
corner: 2 -201500000 193500000 0 1000000
|
||||
|
||||
polyline: 3 0 10 300000 -1 -1 -1 0
|
||||
corner: 1 -188000000 184500000 0 1
|
||||
corner: 2 -188000000 181000000 0 0
|
||||
corner: 3 -195000000 181000000 0 1000000
|
||||
|
||||
polyline: 3 0 10 300000 -1 -1 -1 0
|
||||
corner: 1 -184500000 184500000 0 1
|
||||
corner: 2 -184500000 181000000 0 0
|
||||
corner: 3 -188000000 181000000 0 1000000
|
||||
|
||||
polyline: 3 0 10 300000 -1 -1 -1 0
|
||||
corner: 1 -189500000 193500000 0 1
|
||||
corner: 2 -184500000 193500000 0 0
|
||||
corner: 3 -184500000 186500000 0 1
|
||||
|
||||
polyline: 2 0 10 300000 -1 -1 -1 0
|
||||
corner: 1 -188000000 186500000 0 1
|
||||
corner: 2 -188000000 193500000 0 1000000
|
||||
|
||||
add_new_page: "Channels"
|
||||
add_new_page: "BOM"
|
||||
[merges]
|
||||
|
||||
|
||||
|
||||
[end]
|
||||
482
Projects/BLOKS/related_files/backup/-EPA.cds.b
Normal file
|
|
@ -0,0 +1,482 @@
|
|||
[options]
|
||||
|
||||
version: 1.100
|
||||
file_version: 1.100
|
||||
project_name: "-EPA.cds"
|
||||
library_folder: "c:\ðàáî÷àÿ ïàïêà\freepcb_libraries"
|
||||
full_library_folder: "c:\ðàáî÷àÿ ïàïêà\freepcb_libraries\lib_footprints"
|
||||
parent_folder: "C:\FreePcbDev\Schematic Constructor\Projects\"
|
||||
CAM_folder: "C:\Freeasy\Projects\Armkor2\cookies\print_layers"
|
||||
netlist_completed: "0"
|
||||
bom_options: "721056"
|
||||
page_number: "0"
|
||||
parent_index: "1"
|
||||
alignment: 0.75
|
||||
partlist_size_x: "534"
|
||||
partlist_size_y: "194"
|
||||
partlist_pos_x: "131"
|
||||
partlist_pos_y: "81"
|
||||
partlist_col_w: "960223292"
|
||||
part_search: ""
|
||||
netlist_file_path: "C:\FreePcbDev\Schematic Constructor\Projects\BLOKS\related_files\CDS_netlist\-EPA.cds"
|
||||
netlist_page_mask: 1
|
||||
netlist_format: 0
|
||||
page_mirror_mask: 0
|
||||
default_font: 2
|
||||
default_node_width: -1000000
|
||||
autosave_interval: 60
|
||||
m_client_rect_left: 110
|
||||
m_client_rect_right: 1896
|
||||
m_client_rect_bottom: 925
|
||||
m_client_rect_top: 0
|
||||
m_org_x: -73940
|
||||
m_org_y: 123359
|
||||
m_scale_factor: 50463
|
||||
m_attr_size: 1000000 250000 1000000 250000 1000000 250000 800000 200000 1000000 250000 1000000 250000
|
||||
units: MM
|
||||
|
||||
m_sel_mask: -1
|
||||
m_visible_layers: -1
|
||||
m_top_layer: 10
|
||||
m_grid_style: 0
|
||||
visible_grid_spacing: 5000000.000000
|
||||
visible_grid_item: 20mil
|
||||
visible_grid_item: 50mil
|
||||
visible_grid_item: 100mil
|
||||
visible_grid_item: 125mil
|
||||
visible_grid_item: 200mil
|
||||
visible_grid_item: 250mil
|
||||
visible_grid_item: 400mil
|
||||
visible_grid_item: 500mil
|
||||
visible_grid_item: 1000mil
|
||||
visible_grid_item: 0.5mm
|
||||
visible_grid_item: 0.65mm
|
||||
visible_grid_item: 0.95mm
|
||||
visible_grid_item: 1mm
|
||||
visible_grid_item: 1.27mm
|
||||
visible_grid_item: 2mm
|
||||
visible_grid_item: 2.5mm
|
||||
visible_grid_item: 4mm
|
||||
visible_grid_item: 5mm
|
||||
visible_grid_item: 10mm
|
||||
visible_grid_item: 20mm
|
||||
visible_grid_item: 25mm
|
||||
visible_grid_item: 40mm
|
||||
visible_grid_item: 50mm
|
||||
visible_grid_item: 100mm
|
||||
|
||||
polyline_grid_spacing: 500000.000000
|
||||
placement_grid_item: 5mil
|
||||
placement_grid_item: 10mil
|
||||
placement_grid_item: 20mil
|
||||
placement_grid_item: 25mil
|
||||
placement_grid_item: 40mil
|
||||
placement_grid_item: 50mil
|
||||
placement_grid_item: 100mil
|
||||
placement_grid_item: 200mil
|
||||
placement_grid_item: 250mil
|
||||
placement_grid_item: 400mil
|
||||
placement_grid_item: 500mil
|
||||
placement_grid_item: 1000mil
|
||||
placement_grid_item: 0.001mm
|
||||
placement_grid_item: 0.01mm
|
||||
placement_grid_item: 0.1mm
|
||||
placement_grid_item: 0.2mm
|
||||
placement_grid_item: 0.25mm
|
||||
placement_grid_item: 0.4mm
|
||||
placement_grid_item: 0.5mm
|
||||
placement_grid_item: 0.65mm
|
||||
placement_grid_item: 0.95mm
|
||||
placement_grid_item: 1mm
|
||||
placement_grid_item: 1.27mm
|
||||
placement_grid_item: 2mm
|
||||
placement_grid_item: 2.5mm
|
||||
placement_grid_item: 4mm
|
||||
placement_grid_item: 5mm
|
||||
placement_grid_item: 10mm
|
||||
|
||||
text_grid_spacing: 100000.000000
|
||||
text_grid_item: 0.1mil
|
||||
text_grid_item: 0.5mil
|
||||
text_grid_item: 1mil
|
||||
text_grid_item: 2mil
|
||||
text_grid_item: 2.5mil
|
||||
text_grid_item: 3.33330709mil
|
||||
text_grid_item: 4mil
|
||||
text_grid_item: 5mil
|
||||
text_grid_item: 6.665mil
|
||||
text_grid_item: 10mil
|
||||
text_grid_item: 12.5mil
|
||||
text_grid_item: 16.665mil
|
||||
text_grid_item: 20mil
|
||||
text_grid_item: 25mil
|
||||
text_grid_item: 40mil
|
||||
text_grid_item: 50mil
|
||||
text_grid_item: 0.000001mm
|
||||
text_grid_item: 0.001mm
|
||||
text_grid_item: 0.01mm
|
||||
text_grid_item: 0.02mm
|
||||
text_grid_item: 0.04mm
|
||||
text_grid_item: 0.05mm
|
||||
text_grid_item: 0.1mm
|
||||
text_grid_item: 0.2mm
|
||||
text_grid_item: 0.25mm
|
||||
text_grid_item: 0.4mm
|
||||
text_grid_item: 0.5mm
|
||||
text_grid_item: 1mm
|
||||
|
||||
snap_angle: 45
|
||||
|
||||
m_seg_clearance: 640080
|
||||
polyline_width: 200000
|
||||
text_height: 200000
|
||||
min_text_stroke_width: 100000
|
||||
highlight_width: 127000
|
||||
cam_flags: 262114
|
||||
cam_layers: 8191
|
||||
cam_units: 1
|
||||
|
||||
report_options: 0
|
||||
drc_check_unrouted: 0
|
||||
drc_part_attr_to_attr: 50000
|
||||
drc_part_attr_to_poly: 50000
|
||||
drc_pin_attr_to_attr: 254000
|
||||
drc_pin_attr_to_poly: 254000
|
||||
|
||||
default_polyline_width:0.2mm
|
||||
n_additional_layers: 4
|
||||
layer_info: "dragging" 0 130 130 130 1
|
||||
layer_info: "background" 1 83 83 83 1
|
||||
layer_info: "visible grid" 2 97 97 97 1
|
||||
layer_info: "highlight" 3 255 255 0 1
|
||||
layer_info: "DRC error" 4 255 255 0 1
|
||||
layer_info: "ownerless line" 5 255 0 0 1
|
||||
layer_info: "part outline" 6 205 205 205 1
|
||||
layer_info: "part name" 7 205 205 205 1
|
||||
layer_info: "pin line" 8 255 255 128 1
|
||||
layer_info: "pin name" 9 255 255 128 1
|
||||
layer_info: "net polyline" 10 255 255 255 1
|
||||
layer_info: "net name" 11 255 255 255 1
|
||||
layer_info: "footprint" 12 128 255 255 1
|
||||
layer_info: "part value" 13 255 128 192 1
|
||||
layer_info: "description" 14 157 157 157 1
|
||||
layer_info: "front layer 1" 15 255 255 255 1
|
||||
layer_info: "front layer 2" 16 255 128 0 1
|
||||
layer_info: "back layer 1" 17 0 0 0 1
|
||||
layer_info: "back layer 2" 18 128 128 255 1
|
||||
|
||||
m_pdf_font_i: 8
|
||||
m_pdf_margin: 0.01
|
||||
m_pdf_pages: 1
|
||||
pdf_layer_info: "dragging" 0 255 255 255 0
|
||||
pdf_layer_info: "background" 1 255 255 255 0
|
||||
pdf_layer_info: "visible grid" 2 255 255 255 0
|
||||
pdf_layer_info: "highlight" 3 255 255 0 1
|
||||
pdf_layer_info: "DRC error" 4 0 0 0 1
|
||||
pdf_layer_info: "ownerless line" 5 0 0 0 1
|
||||
pdf_layer_info: "part outline" 6 0 0 0 1
|
||||
pdf_layer_info: "part name" 7 0 0 0 1
|
||||
pdf_layer_info: "pin line" 8 0 0 0 1
|
||||
pdf_layer_info: "pin name" 9 0 0 0 1
|
||||
pdf_layer_info: "net polyline" 10 0 0 0 1
|
||||
pdf_layer_info: "net name" 11 0 0 0 1
|
||||
pdf_layer_info: "footprint" 12 0 0 0 1
|
||||
pdf_layer_info: "part value" 13 0 0 0 1
|
||||
pdf_layer_info: "description" 14 0 0 0 1
|
||||
pdf_layer_info: "front layer 1" 15 0 0 0 1
|
||||
pdf_layer_info: "front layer 2" 16 133 133 133 1
|
||||
pdf_layer_info: "back layer 1" 17 255 255 255 1
|
||||
pdf_layer_info: "back layer 2" 18 197 197 197 1
|
||||
pdf_layer_info: "back layer 3" 19 255 255 255 0
|
||||
pdf_layer_info: "back layer 4" 20 255 255 255 0
|
||||
pdf_layer_info: "back layer 5" 21 255 255 255 0
|
||||
pdf_layer_info: "back layer 6" 22 255 255 255 0
|
||||
pdf_layer_info: "back layer 7" 23 255 255 255 0
|
||||
pdf_layer_info: "back layer 8" 24 255 255 255 0
|
||||
pdf_layer_info: "back layer 9" 25 255 255 255 0
|
||||
pdf_layer_info: "back layer 10" 26 255 255 255 0
|
||||
pdf_layer_info: "back layer 11" 27 255 255 255 0
|
||||
pdf_layer_info: "back layer 12" 28 255 255 255 0
|
||||
pdf_layer_info: "back layer 13" 29 255 255 255 0
|
||||
pdf_layer_info: "back layer 14" 30 255 255 255 0
|
||||
pdf_layer_info: "undefined" 31 255 255 255 0
|
||||
[graphics]
|
||||
|
||||
rename_page: "Page 1"
|
||||
n_pins: 2
|
||||
rectangle: -44675000 176850000 -43325000 181150000
|
||||
ref_des: "R57" -42700000 178700000 7 0 1000000 250000 -1 -1 2 1
|
||||
footprint_name: "RC0805" -42700000 176787500 12 0 0 0 -1 -1 2 1
|
||||
part_value: "150k1%" -42700000 176975000 13 0 1000000 250000 -1 -1 2 1
|
||||
outline: 4 0 6 350000 -1 -1 -1 0
|
||||
corner: 1 -44500000 180000000 0 0
|
||||
corner: 2 -44500000 177500000 0 0
|
||||
corner: 3 -43500000 177500000 0 0
|
||||
corner: 4 -43500000 180000000 0 0
|
||||
|
||||
polyline: 2 0 8 300000 -1 -1 -1 0
|
||||
corner: 1 -44000000 180000000 0 0
|
||||
corner: 2 -44000000 181000000 0 1000000
|
||||
pin_name: "1" -44174864 180555264 9 0 0 0 -1 -1 2 1
|
||||
|
||||
polyline: 2 0 8 300000 -1 -1 -1 0
|
||||
corner: 1 -44000000 177500000 0 0
|
||||
corner: 2 -44000000 177000000 0 1
|
||||
pin_name: "2" -43972400 176601776 9 0 0 0 -1 -1 2 1
|
||||
|
||||
part_end
|
||||
|
||||
n_pins: 2
|
||||
rectangle: -66175000 178850000 -62825000 181150000
|
||||
ref_des: "C23" -68400000 181100000 7 0 1000000 250000 -1 -1 2 1
|
||||
footprint_name: "CC0805" -68400000 179187500 12 0 0 0 -1 -1 2 1
|
||||
part_value: "1.0" -68400000 179375000 13 0 1000000 250000 -1 -1 2 1
|
||||
polyline: 2 0 6 350000 -1 -1 -1 0
|
||||
corner: 1 -63000000 180500000 0 0
|
||||
corner: 2 -66000000 180500000 0 0
|
||||
|
||||
polyline: 2 0 6 350000 -1 -1 -1 0
|
||||
corner: 1 -63000000 179500000 0 0
|
||||
corner: 2 -66000000 179500000 0 0
|
||||
|
||||
polyline: 2 0 8 300000 -1 -1 -1 0
|
||||
corner: 1 -64500000 180500000 0 0
|
||||
corner: 2 -64500000 181000000 0 1
|
||||
pin_name: "2" -65439616 181659952 9 720 0 0 -1 -1 2 1
|
||||
|
||||
polyline: 2 0 8 300000 -1 -1 -1 0
|
||||
corner: 1 -64500000 179500000 0 0
|
||||
corner: 2 -64500000 179000000 0 1
|
||||
pin_name: "1" -65594016 178441264 9 720 0 0 -1 -1 2 1
|
||||
|
||||
part_end
|
||||
|
||||
n_pins: 2
|
||||
rectangle: -51675000 172850000 -48325000 175150000
|
||||
ref_des: "C24" -47800000 174300000 7 0 1000000 250000 -1 -1 2 1
|
||||
footprint_name: "CC0805" -47800000 172387500 12 0 0 0 -1 -1 2 1
|
||||
part_value: "4.7" -47800000 172575000 13 0 1000000 250000 -1 -1 2 1
|
||||
polyline: 2 0 8 300000 -1 -1 -1 0
|
||||
corner: 1 -50000000 173500000 0 0
|
||||
corner: 2 -50000000 173000000 0 1
|
||||
pin_name: "1" -51094016 172441264 9 720 0 0 -1 -1 2 1
|
||||
|
||||
polyline: 2 0 8 300000 -1 -1 -1 0
|
||||
corner: 1 -50000000 174500000 0 0
|
||||
corner: 2 -50000000 175000000 0 1
|
||||
pin_name: "2" -50939616 175659952 9 720 0 0 -1 -1 2 1
|
||||
|
||||
polyline: 2 0 6 350000 -1 -1 -1 0
|
||||
corner: 1 -48500000 173500000 0 0
|
||||
corner: 2 -51500000 173500000 0 0
|
||||
|
||||
polyline: 2 0 6 350000 -1 -1 -1 0
|
||||
corner: 1 -48500000 174500000 0 0
|
||||
corner: 2 -51500000 174500000 0 0
|
||||
|
||||
part_end
|
||||
|
||||
n_pins: 2
|
||||
rectangle: -61149999 183825000 -58850000 187175000
|
||||
ref_des: "C22" -59700000 187900000 7 360 1000000 250000 -1 -1 2 1
|
||||
footprint_name: "CC0805" -59700000 185987500 12 360 0 0 -1 -1 2 1
|
||||
part_value: "4.7" -58900000 186175000 13 360 1000000 250000 -1 -1 2 1
|
||||
polyline: 2 0 6 350000 -1 -1 -1 0
|
||||
corner: 1 -59499999 184000000 0 0
|
||||
corner: 2 -59500000 187000000 0 0
|
||||
|
||||
polyline: 2 0 6 350000 -1 -1 -1 0
|
||||
corner: 1 -60500000 184000000 0 0
|
||||
corner: 2 -60500000 187000000 0 0
|
||||
|
||||
polyline: 2 0 8 300000 -1 -1 -1 0
|
||||
corner: 1 -59500000 185500000 0 0
|
||||
corner: 2 -59000000 185500000 0 1
|
||||
pin_name: "2" -58440048 186939616 9 810 0 0 -1 -1 2 1
|
||||
|
||||
polyline: 2 0 8 300000 -1 -1 -1 0
|
||||
corner: 1 -60500000 185500000 0 0
|
||||
corner: 2 -60999999 185499999 0 1
|
||||
pin_name: "1" -61558736 186594016 9 810 0 0 -1 -1 2 1
|
||||
|
||||
part_end
|
||||
|
||||
n_pins: 8
|
||||
rectangle: -61650000 174350000 -49850000 184650000
|
||||
ref_des: "DA7" -53882370 187499270 7 0 1000000 250000 -1 -1 2 1
|
||||
footprint_name: "SOT-23-5" -53882370 184049270 12 0 1000000 250000 -1 -1 2 1
|
||||
part_value: "LM27761DSG" -53882370 185774270 13 0 1000000 250000 -1 -1 2 1
|
||||
polyline: 2 0 8 300000 -1 -1 -1 0
|
||||
corner: 1 -56000000 174500000 0 1
|
||||
corner: 2 -56000000 176000000 0 0
|
||||
pin_name: "2" -55562660 174400000 9 0 1000000 250000 -1 -1 2 1
|
||||
|
||||
polyline: 2 0 8 300000 -1 -1 -1 0
|
||||
corner: 1 -52000000 177000000 0 0
|
||||
corner: 2 -50000000 177000000 0 1
|
||||
pin_name: "3" -51263930 177400000 9 0 1000000 250000 -1 -1 2 1
|
||||
description: "CP" -54000000 176700000 14 0 800000 200000 -1 -1 2 1
|
||||
|
||||
polyline: 2 0 8 300000 -1 -1 -1 0
|
||||
corner: 1 -61500000 179000000 0 1
|
||||
corner: 2 -60000000 179000000 0 0
|
||||
pin_name: "7" -61418540 179400000 9 0 1000000 250000 -1 -1 2 1
|
||||
description: "C1-" -59400000 178700000 14 0 800000 200000 -1 -1 2 1
|
||||
|
||||
polyline: 2 0 8 300000 -1 -1 -1 0
|
||||
corner: 1 -61500000 181000000 0 1
|
||||
corner: 2 -60000000 181000000 0 0
|
||||
pin_name: "8" -61363930 181400000 9 0 1000000 250000 -1 -1 2 1
|
||||
description: "C1+" -59400000 180700000 14 0 800000 200000 -1 -1 2 1
|
||||
|
||||
outline: 4 0 6 350000 -1 -1 -1 0
|
||||
corner: 1 -52000000 183000000 0 0
|
||||
corner: 2 -52000000 176000000 0 0
|
||||
corner: 3 -60000000 176000000 0 0
|
||||
corner: 4 -60000000 183000000 0 0
|
||||
|
||||
polyline: 2 0 8 300000 -1 -1 -1 0
|
||||
corner: 1 -52000000 181000000 0 0
|
||||
corner: 2 -50499976 180999984 0 1
|
||||
pin_name: "4" -51372440 181400000 9 0 1000000 250000 -1 -1 2 1
|
||||
description: "Vout" -55300000 180700000 14 0 800000 200000 -1 -1 2 1
|
||||
|
||||
polyline: 2 0 8 300000 -1 -1 -1 0
|
||||
corner: 1 -61500000 177000000 0 1
|
||||
corner: 2 -60000000 177000000 0 0
|
||||
pin_name: "6" -61418540 177400000 9 0 1000000 250000 -1 -1 2 1
|
||||
description: "EN" -59300000 176700000 14 0 800000 200000 -1 -1 2 1
|
||||
|
||||
polyline: 2 0 8 300000 -1 -1 -1 0
|
||||
corner: 1 -52000000 179000000 0 0
|
||||
corner: 2 -50499976 178999984 0 1
|
||||
pin_name: "5" -51372440 179400000 9 0 1000000 250000 -1 -1 2 1
|
||||
description: "VFB" -54800000 178700000 14 0 800000 200000 -1 -1 2 1
|
||||
|
||||
polyline: 2 0 8 300000 -1 -1 -1 0
|
||||
corner: 1 -56000000 183000000 0 0
|
||||
corner: 2 -56000000 184500000 0 1
|
||||
pin_name: "1" -55500000 183600000 9 0 1000000 250000 -1 -1 2 1
|
||||
|
||||
part_end
|
||||
|
||||
n_pins: 2
|
||||
rectangle: -44675000 171350000 -43325000 176150000
|
||||
ref_des: "R58" -42700000 174200000 7 0 1000000 250000 -1 -1 2 1
|
||||
footprint_name: "RC0805" -42700000 172287500 12 0 0 0 -1 -1 2 1
|
||||
part_value: "100k1%" -42700000 172475000 13 0 1000000 250000 -1 -1 2 1
|
||||
outline: 4 0 6 350000 -1 -1 -1 0
|
||||
corner: 1 -44500000 175500000 0 0
|
||||
corner: 2 -44500000 172500000 0 0
|
||||
corner: 3 -43500000 172500000 0 0
|
||||
corner: 4 -43500000 175500000 0 0
|
||||
|
||||
polyline: 2 0 8 300000 -1 -1 -1 0
|
||||
corner: 1 -44000000 175500000 0 0
|
||||
corner: 2 -44000000 176000000 0 1
|
||||
pin_name: "1" -44174864 176055264 9 0 0 0 -1 -1 2 1
|
||||
|
||||
polyline: 2 0 8 300000 -1 -1 -1 0
|
||||
corner: 1 -44000000 172500000 0 0
|
||||
corner: 2 -44000000 171500000 0 1000000
|
||||
pin_name: "2" -43972400 171601776 9 0 0 0 -1 -1 2 1
|
||||
|
||||
part_end
|
||||
|
||||
n_pins: 2
|
||||
rectangle: -38175000 173850000 -34825000 176150000
|
||||
ref_des: "C25" -35900000 176300000 7 0 1000000 250000 -1 -1 2 1
|
||||
footprint_name: "CC0805" -35900000 174387500 12 0 0 0 -1 -1 2 1
|
||||
part_value: "2.2" -35900000 172975000 13 0 1000000 250000 -1 -1 2 1
|
||||
polyline: 2 0 6 350000 -1 -1 -1 0
|
||||
corner: 1 -35000000 175500000 0 0
|
||||
corner: 2 -38000000 175500000 0 0
|
||||
|
||||
polyline: 2 0 6 350000 -1 -1 -1 0
|
||||
corner: 1 -35000000 174500000 0 0
|
||||
corner: 2 -38000000 174500000 0 0
|
||||
|
||||
polyline: 2 0 8 300000 -1 -1 -1 0
|
||||
corner: 1 -36500000 175500000 0 0
|
||||
corner: 2 -36500000 176000000 0 1
|
||||
pin_name: "2" -37439616 176659952 9 720 0 0 -1 -1 2 1
|
||||
|
||||
polyline: 2 0 8 300000 -1 -1 -1 0
|
||||
corner: 1 -36500000 174500000 0 0
|
||||
corner: 2 -36500000 174000000 0 1
|
||||
pin_name: "1" -37594016 173441264 9 720 0 0 -1 -1 2 1
|
||||
|
||||
part_end
|
||||
|
||||
polyline: 4 0 10 300000 -1 -1 -1 0
|
||||
corner: 1 -63000000 185499999 0 1
|
||||
corner: 2 -63000000 184000000 0 0
|
||||
corner: 3 -64000000 184000000 0 0
|
||||
corner: 4 -62000000 184000000 0 0
|
||||
net_name: "GND" -64100000 182900000 11 360 0 0 -1 -1 2 1
|
||||
|
||||
polyline: 2 0 10 300000 -1 -1 -1 0
|
||||
corner: 1 -61000000 185500000 0 1
|
||||
corner: 2 -63000000 185500000 0 1
|
||||
|
||||
polyline: 2 0 10 300000 -1 -1 -1 0
|
||||
corner: 1 -64500000 179000000 0 1
|
||||
corner: 2 -61500000 179000000 0 1
|
||||
|
||||
polyline: 2 0 10 300000 -1 -1 -1 0
|
||||
corner: 1 -64500000 181000000 0 1
|
||||
corner: 2 -61500000 181000000 0 1
|
||||
|
||||
polyline: 3 0 10 300000 -1 -1 -1 0
|
||||
corner: 1 -59000000 185500000 0 1
|
||||
corner: 2 -56000000 185500000 0 0
|
||||
corner: 3 -56000000 184500000 0 1
|
||||
|
||||
polyline: 3 0 10 300000 -1 -1 -1 0
|
||||
corner: 1 -56000000 174500000 0 1
|
||||
corner: 2 -56000000 171500000 0 0
|
||||
corner: 3 -36500000 171500000 0 1
|
||||
|
||||
polyline: 2 0 10 300000 -1 -1 -1 0
|
||||
corner: 1 -50000000 173000000 0 1
|
||||
corner: 2 -50000000 171500000 0 1000000
|
||||
|
||||
polyline: 2 0 10 300000 -1 -1 -1 0
|
||||
corner: 1 -36500000 174000000 0 1
|
||||
corner: 2 -36500000 171500000 0 1
|
||||
|
||||
polyline: 3 0 10 300000 -1 -1 -1 0
|
||||
corner: 1 -50499976 180999984 0 1
|
||||
corner: 2 -36500000 180999984 0 0
|
||||
corner: 3 -36500000 176000000 0 1
|
||||
description: "(-3v)" -42199976 181999984 14 0 800000 200000 -1 -1 2 1
|
||||
|
||||
polyline: 2 0 10 300000 -1 -1 -1 0
|
||||
corner: 1 -44000000 177000000 0 1
|
||||
corner: 2 -44000000 176000000 0 1
|
||||
|
||||
polyline: 4 0 10 300000 -1 -1 -1 0
|
||||
corner: 1 -44000000 176500000 0 1000000
|
||||
corner: 2 -46500000 176500000 0 0
|
||||
corner: 3 -46500000 179000000 0 0
|
||||
corner: 4 -50500000 179000000 0 1
|
||||
|
||||
polyline: 2 0 10 300000 -1 -1 -1 0
|
||||
corner: 1 -50000000 177000000 0 1
|
||||
corner: 2 -50000000 175000000 0 1
|
||||
|
||||
polyline: 5 0 10 300000 -1 -1 -1 0
|
||||
corner: 1 -36500000 181000000 0 1000000
|
||||
corner: 2 -36500000 183000000 0 0
|
||||
corner: 3 -36000000 181999999 0 0
|
||||
corner: 4 -36500000 183000000 0 0
|
||||
corner: 5 -36999998 182000000 0 0
|
||||
net_name: "-EPA" -38400000 183700000 11 0 1000000 250000 -1 -1 2 1
|
||||
|
||||
add_new_page: "Channels"
|
||||
add_new_page: "BOM"
|
||||
[merges]
|
||||
|
||||
|
||||
|
||||
[end]
|
||||
1851
Projects/BLOKS/related_files/backup/BLOCKS.cds.b
Normal file
654
Projects/BLOKS/related_files/backup/USB.cds.b
Normal file
|
|
@ -0,0 +1,654 @@
|
|||
[options]
|
||||
|
||||
version: 1.100
|
||||
file_version: 1.100
|
||||
project_name: "USB.cds"
|
||||
library_folder: "c:\ðàáî÷àÿ ïàïêà\freepcb_libraries"
|
||||
full_library_folder: "c:\ðàáî÷àÿ ïàïêà\freepcb_libraries\lib_footprints"
|
||||
parent_folder: "C:\FreePcbDev\Schematic Constructor\Projects\"
|
||||
CAM_folder: "C:\Freeasy\Projects\cookies\print_layers"
|
||||
netlist_completed: "0"
|
||||
bom_options: "721056"
|
||||
page_number: "0"
|
||||
parent_index: "1"
|
||||
alignment: 0.00
|
||||
partlist_size_x: "534"
|
||||
partlist_size_y: "194"
|
||||
partlist_pos_x: "107"
|
||||
partlist_pos_y: "81"
|
||||
partlist_col_w: "960223292"
|
||||
part_search: ""
|
||||
netlist_file_path: "C:\FreePcbDev\Schematic Constructor\Projects\BLOKS\related_files\CDS_netlist\USB.cds"
|
||||
netlist_page_mask: -7
|
||||
netlist_format: 0
|
||||
page_mirror_mask: 1
|
||||
default_font: 2
|
||||
default_node_width: -1200000
|
||||
autosave_interval: 60
|
||||
m_client_rect_left: 110
|
||||
m_client_rect_right: 1896
|
||||
m_client_rect_bottom: 925
|
||||
m_client_rect_top: 0
|
||||
m_org_x: -99853
|
||||
m_org_y: 13084
|
||||
m_scale_factor: 91122
|
||||
m_attr_size: 1200000 220000 1200000 220000 1200000 220000 1200000 220000 1200000 220000 1200000 220000
|
||||
units: MM
|
||||
|
||||
m_sel_mask: 2147483647
|
||||
m_visible_layers: -1
|
||||
m_top_layer: 10
|
||||
m_grid_style: 0
|
||||
visible_grid_spacing: 5000000.000000
|
||||
visible_grid_item: 20mil
|
||||
visible_grid_item: 50mil
|
||||
visible_grid_item: 100mil
|
||||
visible_grid_item: 125mil
|
||||
visible_grid_item: 200mil
|
||||
visible_grid_item: 250mil
|
||||
visible_grid_item: 400mil
|
||||
visible_grid_item: 500mil
|
||||
visible_grid_item: 1000mil
|
||||
visible_grid_item: 0.5mm
|
||||
visible_grid_item: 0.65mm
|
||||
visible_grid_item: 0.95mm
|
||||
visible_grid_item: 1mm
|
||||
visible_grid_item: 1.27mm
|
||||
visible_grid_item: 2mm
|
||||
visible_grid_item: 2.5mm
|
||||
visible_grid_item: 4mm
|
||||
visible_grid_item: 5mm
|
||||
visible_grid_item: 10mm
|
||||
visible_grid_item: 20mm
|
||||
visible_grid_item: 25mm
|
||||
visible_grid_item: 40mm
|
||||
visible_grid_item: 50mm
|
||||
visible_grid_item: 100mm
|
||||
|
||||
polyline_grid_spacing: 250000.000000
|
||||
placement_grid_item: 5mil
|
||||
placement_grid_item: 10mil
|
||||
placement_grid_item: 20mil
|
||||
placement_grid_item: 25mil
|
||||
placement_grid_item: 40mil
|
||||
placement_grid_item: 50mil
|
||||
placement_grid_item: 100mil
|
||||
placement_grid_item: 200mil
|
||||
placement_grid_item: 250mil
|
||||
placement_grid_item: 400mil
|
||||
placement_grid_item: 500mil
|
||||
placement_grid_item: 1000mil
|
||||
placement_grid_item: 0.001mm
|
||||
placement_grid_item: 0.01mm
|
||||
placement_grid_item: 0.1mm
|
||||
placement_grid_item: 0.2mm
|
||||
placement_grid_item: 0.25mm
|
||||
placement_grid_item: 0.4mm
|
||||
placement_grid_item: 0.5mm
|
||||
placement_grid_item: 0.65mm
|
||||
placement_grid_item: 0.95mm
|
||||
placement_grid_item: 1mm
|
||||
placement_grid_item: 1.27mm
|
||||
placement_grid_item: 2mm
|
||||
placement_grid_item: 2.5mm
|
||||
placement_grid_item: 4mm
|
||||
placement_grid_item: 5mm
|
||||
placement_grid_item: 10mm
|
||||
|
||||
text_grid_spacing: 250000.000000
|
||||
text_grid_item: 0.1mil
|
||||
text_grid_item: 0.5mil
|
||||
text_grid_item: 1mil
|
||||
text_grid_item: 2mil
|
||||
text_grid_item: 2.5mil
|
||||
text_grid_item: 3.33330709mil
|
||||
text_grid_item: 4mil
|
||||
text_grid_item: 5mil
|
||||
text_grid_item: 6.665mil
|
||||
text_grid_item: 10mil
|
||||
text_grid_item: 12.5mil
|
||||
text_grid_item: 16.665mil
|
||||
text_grid_item: 20mil
|
||||
text_grid_item: 25mil
|
||||
text_grid_item: 40mil
|
||||
text_grid_item: 50mil
|
||||
text_grid_item: 0.000001mm
|
||||
text_grid_item: 0.001mm
|
||||
text_grid_item: 0.01mm
|
||||
text_grid_item: 0.02mm
|
||||
text_grid_item: 0.04mm
|
||||
text_grid_item: 0.05mm
|
||||
text_grid_item: 0.1mm
|
||||
text_grid_item: 0.2mm
|
||||
text_grid_item: 0.25mm
|
||||
text_grid_item: 0.4mm
|
||||
text_grid_item: 0.5mm
|
||||
text_grid_item: 1mm
|
||||
|
||||
snap_angle: 45
|
||||
|
||||
m_seg_clearance: 640080
|
||||
polyline_width: 200000
|
||||
text_height: 200000
|
||||
min_text_stroke_width: 100000
|
||||
highlight_width: 127000
|
||||
cam_flags: 262114
|
||||
cam_layers: 8191
|
||||
cam_units: 1
|
||||
|
||||
report_options: 0
|
||||
drc_check_unrouted: 0
|
||||
drc_part_attr_to_attr: 200000
|
||||
drc_part_attr_to_poly: 200000
|
||||
drc_pin_attr_to_attr: 254000
|
||||
drc_pin_attr_to_poly: 254000
|
||||
|
||||
default_polyline_width:0.2mm
|
||||
n_additional_layers: 4
|
||||
layer_info: "dragging" 0 130 130 130 1
|
||||
layer_info: "background" 1 83 83 83 1
|
||||
layer_info: "visible grid" 2 97 97 97 1
|
||||
layer_info: "highlight" 3 255 255 0 1
|
||||
layer_info: "DRC error" 4 255 255 0 1
|
||||
layer_info: "ownerless line" 5 255 0 0 1
|
||||
layer_info: "part outline" 6 205 205 205 1
|
||||
layer_info: "part name" 7 205 205 205 1
|
||||
layer_info: "pin line" 8 255 255 128 1
|
||||
layer_info: "pin name" 9 255 255 128 1
|
||||
layer_info: "net polyline" 10 255 255 255 1
|
||||
layer_info: "net name" 11 255 255 255 1
|
||||
layer_info: "footprint" 12 128 255 255 1
|
||||
layer_info: "part value" 13 255 128 192 1
|
||||
layer_info: "description" 14 157 157 157 1
|
||||
layer_info: "front layer 1" 15 255 255 255 1
|
||||
layer_info: "front layer 2" 16 255 128 0 1
|
||||
layer_info: "back layer 1" 17 0 0 0 1
|
||||
layer_info: "back layer 2" 18 128 128 255 1
|
||||
|
||||
m_pdf_font_i: 8
|
||||
m_pdf_margin: 0.01
|
||||
m_pdf_pages: 1
|
||||
pdf_layer_info: "dragging" 0 255 255 255 0
|
||||
pdf_layer_info: "background" 1 255 255 255 0
|
||||
pdf_layer_info: "visible grid" 2 255 255 255 0
|
||||
pdf_layer_info: "highlight" 3 255 255 0 1
|
||||
pdf_layer_info: "DRC error" 4 0 0 0 1
|
||||
pdf_layer_info: "ownerless line" 5 0 0 0 1
|
||||
pdf_layer_info: "part outline" 6 0 0 0 1
|
||||
pdf_layer_info: "part name" 7 0 0 0 1
|
||||
pdf_layer_info: "pin line" 8 0 0 0 1
|
||||
pdf_layer_info: "pin name" 9 0 0 0 1
|
||||
pdf_layer_info: "net polyline" 10 0 0 0 1
|
||||
pdf_layer_info: "net name" 11 0 0 0 1
|
||||
pdf_layer_info: "footprint" 12 0 0 0 1
|
||||
pdf_layer_info: "part value" 13 0 0 0 1
|
||||
pdf_layer_info: "description" 14 0 0 0 1
|
||||
pdf_layer_info: "front layer 1" 15 0 0 0 1
|
||||
pdf_layer_info: "front layer 2" 16 133 133 133 1
|
||||
pdf_layer_info: "back layer 1" 17 255 255 255 1
|
||||
pdf_layer_info: "back layer 2" 18 197 197 197 1
|
||||
pdf_layer_info: "back layer 3" 19 255 255 255 0
|
||||
pdf_layer_info: "back layer 4" 20 255 255 255 0
|
||||
pdf_layer_info: "back layer 5" 21 255 255 255 0
|
||||
pdf_layer_info: "back layer 6" 22 255 255 255 0
|
||||
pdf_layer_info: "back layer 7" 23 255 255 255 0
|
||||
pdf_layer_info: "back layer 8" 24 255 255 255 0
|
||||
pdf_layer_info: "back layer 9" 25 255 255 255 0
|
||||
pdf_layer_info: "back layer 10" 26 255 255 255 0
|
||||
pdf_layer_info: "back layer 11" 27 255 255 255 0
|
||||
pdf_layer_info: "back layer 12" 28 255 255 255 0
|
||||
pdf_layer_info: "back layer 13" 29 255 255 255 0
|
||||
pdf_layer_info: "back layer 14" 30 255 255 255 0
|
||||
pdf_layer_info: "undefined" 31 255 255 255 0
|
||||
[graphics]
|
||||
|
||||
rename_page: "VIST-3 (1-13)"
|
||||
n_pins: 6
|
||||
rectangle: -39375000 47375000 -23625000 63125000
|
||||
ref_des: "VD1" -36759680 70266800 7 0 1200000 220000 -1 -1 2 1
|
||||
footprint_name: "SOT-23-6" -36759680 66106798 12 0 1200000 220000 -1 -1 2 1
|
||||
part_value: "USBLC6-2SC6" -36759680 68186799 13 0 1200000 220000 -1 -1 2 1
|
||||
outline: 4 0 6 250000 -1 -1 -1 0
|
||||
corner: 1 -36250000 60000000 0 0
|
||||
corner: 2 -36250000 51000000 0 0
|
||||
corner: 3 -26750000 51000000 0 0
|
||||
corner: 4 -26750000 60000000 0 0
|
||||
|
||||
polyline: 2 0 8 250000 -1 -1 -1 0
|
||||
corner: 1 -31250000 63000000 0 1
|
||||
corner: 2 -31250000 60000000 0 0
|
||||
pin_name: "5" -30550000 60600000 9 0 1200000 220000 -1 -1 2 1
|
||||
|
||||
polyline: 2 0 8 250000 -1 -1 -1 0
|
||||
corner: 1 -31250000 51000000 0 0
|
||||
corner: 2 -31250000 47500000 0 1
|
||||
pin_name: "2" -30580000 49154000 9 0 1200000 220000 -1 -1 2 1
|
||||
|
||||
polyline: 2 0 8 250000 -1 -1 -1 0
|
||||
corner: 1 -39250000 57500000 0 1
|
||||
corner: 2 -36250000 57500000 0 0
|
||||
pin_name: "1" -37488000 58218000 9 0 1200000 220000 -1 -1 2 1
|
||||
|
||||
polyline: 2 0 8 250000 -1 -1 -1 0
|
||||
corner: 1 -26750000 57500000 0 0
|
||||
corner: 2 -23750000 57500000 0 1
|
||||
pin_name: "6" -25980000 58218000 9 0 1200000 220000 -1 -1 2 1
|
||||
|
||||
polyline: 2 0 8 250000 -1 -1 -1 0
|
||||
corner: 1 -26750000 54500000 0 0
|
||||
corner: 2 -23750000 54500000 0 1
|
||||
pin_name: "4" -25980000 55118000 9 0 1200000 220000 -1 -1 2 1
|
||||
|
||||
polyline: 2 0 8 250000 -1 -1 -1 0
|
||||
corner: 1 -39250000 54500000 0 1
|
||||
corner: 2 -36250000 54500000 0 0
|
||||
pin_name: "3" -37742000 55268000 9 0 1200000 220000 -1 -1 2 1
|
||||
|
||||
polyline: 13 0 6 250000 -1 -1 -1 0
|
||||
corner: 1 -31250000 58500000 0 0
|
||||
corner: 2 -31250000 57000000 0 0
|
||||
corner: 3 -33750000 57000000 0 0
|
||||
corner: 4 -34750000 56000000 0 0
|
||||
corner: 5 -33750000 57000000 0 0
|
||||
corner: 6 -28750000 57000000 0 0
|
||||
corner: 7 -27750000 58000000 0 0
|
||||
corner: 8 -28750000 57000000 0 0
|
||||
corner: 9 -31250000 57000000 0 0
|
||||
corner: 10 -34250000 54000000 0 0
|
||||
corner: 11 -28250000 54000000 0 0
|
||||
corner: 12 -31250000 57000000 0 0
|
||||
corner: 13 -31250000 52500000 0 0
|
||||
|
||||
part_end
|
||||
|
||||
n_pins: 2
|
||||
rectangle: -61375000 59534999 -54625000 61465001
|
||||
ref_des: "R17" -59257141 64389180 7 360 1200000 220000 -1 -1 2 1
|
||||
footprint_name: "RC0805" -59257141 62133178 12 360 0 0 -1 -1 2 1
|
||||
part_value: "15k" -59257141 62309179 13 360 1200000 220000 -1 -1 2 1
|
||||
outline: 4 0 6 250000 -1 -1 -1 0
|
||||
corner: 1 -55999857 59660047 0 0
|
||||
corner: 2 -59999999 59659999 0 0
|
||||
corner: 3 -60000000 61340001 0 0
|
||||
corner: 4 -55999999 61339999 0 0
|
||||
|
||||
polyline: 2 0 8 250000 -1 -1 -1 0
|
||||
corner: 1 -56000000 60500001 0 0
|
||||
corner: 2 -54750000 60499999 0 1
|
||||
pin_name: "1" -56749999 60500000 9 90 0 0 -1 -1 2 1
|
||||
|
||||
polyline: 2 0 8 250000 -1 -1 -1 0
|
||||
corner: 1 -59999999 60500000 0 0
|
||||
corner: 2 -61250000 60500000 0 1
|
||||
pin_name: "2" -59750000 60500000 9 90 0 0 -1 -1 2 1
|
||||
|
||||
part_end
|
||||
|
||||
n_pins: 2
|
||||
rectangle: -55875000 56534999 -49125000 58465001
|
||||
ref_des: "R18" -53097141 63459180 7 360 1200000 220000 -1 -1 2 1
|
||||
footprint_name: "RC0805" -53097141 61203178 12 360 0 0 -1 -1 2 1
|
||||
part_value: "22E" -53097141 61379179 13 360 1200000 220000 -1 -1 2 1
|
||||
polyline: 2 0 8 250000 -1 -1 -1 0
|
||||
corner: 1 -54499999 57500000 0 0
|
||||
corner: 2 -55750000 57500000 0 1
|
||||
pin_name: "2" -54250000 57500000 9 90 0 0 -1 -1 2 1
|
||||
|
||||
polyline: 2 0 8 250000 -1 -1 -1 0
|
||||
corner: 1 -50500000 57500001 0 0
|
||||
corner: 2 -49250000 57499999 0 1
|
||||
pin_name: "1" -51249999 57500000 9 90 0 0 -1 -1 2 1
|
||||
|
||||
outline: 4 0 6 250000 -1 -1 -1 0
|
||||
corner: 1 -50499857 56660047 0 0
|
||||
corner: 2 -54499999 56659999 0 0
|
||||
corner: 3 -54500000 58340001 0 0
|
||||
corner: 4 -50499999 58339999 0 0
|
||||
|
||||
part_end
|
||||
|
||||
n_pins: 2
|
||||
rectangle: -50375000 53534999 -43625000 55465001
|
||||
ref_des: "R19" -48167141 51629180 7 360 1200000 220000 -1 -1 2 1
|
||||
footprint_name: "RC0805" -48167141 49373178 12 360 0 0 -1 -1 2 1
|
||||
part_value: "22E" -48167141 49549179 13 360 1200000 220000 -1 -1 2 1
|
||||
outline: 4 0 6 250000 -1 -1 -1 0
|
||||
corner: 1 -44999857 53660047 0 0
|
||||
corner: 2 -48999999 53659999 0 0
|
||||
corner: 3 -49000000 55340001 0 0
|
||||
corner: 4 -44999999 55339999 0 0
|
||||
|
||||
polyline: 2 0 8 250000 -1 -1 -1 0
|
||||
corner: 1 -45000000 54500001 0 0
|
||||
corner: 2 -43750000 54499999 0 1
|
||||
pin_name: "1" -45749999 54500000 9 90 0 0 -1 -1 2 1
|
||||
|
||||
polyline: 2 0 8 250000 -1 -1 -1 0
|
||||
corner: 1 -48999999 54500000 0 0
|
||||
corner: 2 -50250000 54500000 0 1
|
||||
pin_name: "2" -48750000 54500000 9 90 0 0 -1 -1 2 1
|
||||
|
||||
part_end
|
||||
|
||||
n_pins: 2
|
||||
rectangle: -71715000 44875000 -69784999 51625000
|
||||
ref_des: "R20" -75887141 49099181 7 0 1200000 220000 -1 -1 2 1
|
||||
footprint_name: "RC0805" -75887141 46843179 12 0 0 0 -1 -1 2 1
|
||||
part_value: "20k" -75887141 47019180 13 0 1200000 220000 -1 -1 2 1
|
||||
outline: 4 0 6 250000 -1 -1 -1 0
|
||||
corner: 1 -71589953 50250143 0 0
|
||||
corner: 2 -71590000 46250000 0 0
|
||||
corner: 3 -69909999 46250000 0 0
|
||||
corner: 4 -69910001 50250000 0 0
|
||||
|
||||
polyline: 2 0 8 250000 -1 -1 -1 0
|
||||
corner: 1 -70749999 50250000 0 0
|
||||
corner: 2 -70750001 51500000 0 1
|
||||
pin_name: "1" -70250000 50999999 9 0 0 0 -1 -1 2 1
|
||||
|
||||
polyline: 2 0 8 250000 -1 -1 -1 0
|
||||
corner: 1 -70749999 46250000 0 0
|
||||
corner: 2 -70750000 45000000 0 1
|
||||
pin_name: "2" -70250000 45000000 9 0 0 0 -1 -1 2 1
|
||||
|
||||
part_end
|
||||
|
||||
n_pins: 2
|
||||
rectangle: -63624999 44874999 -59374997 48124996
|
||||
ref_des: "C23" -67890000 47040000 7 0 1200000 220000 -1 -1 2 1
|
||||
footprint_name: "CC0805" -67890000 44783998 12 0 0 0 -1 -1 2 1
|
||||
part_value: "15pF" -67890000 44959999 13 0 1200000 220000 -1 -1 2 1
|
||||
polyline: 2 0 6 250000 -1 -1 -1 0
|
||||
corner: 1 -59499997 45999998 0 0
|
||||
corner: 2 -63499999 45999997 0 0
|
||||
|
||||
polyline: 2 0 6 250000 -1 -1 -1 0
|
||||
corner: 1 -59500000 46999999 0 0
|
||||
corner: 2 -63499998 46999999 0 0
|
||||
|
||||
polyline: 2 0 8 250000 -1 -1 -1 0
|
||||
corner: 1 -61499998 46999999 0 0
|
||||
corner: 2 -61500001 47999996 0 1
|
||||
pin_name: "2" -62796098 48100000 9 720 0 0 -1 -1 2 1
|
||||
|
||||
polyline: 2 0 8 250000 -1 -1 -1 0
|
||||
corner: 1 -61499996 45999997 0 0
|
||||
corner: 2 -61499999 44999999 0 1
|
||||
pin_name: "1" -63009079 44350000 9 720 0 0 -1 -1 2 1
|
||||
|
||||
part_end
|
||||
|
||||
n_pins: 2
|
||||
rectangle: -54124999 44874999 -49874997 48124996
|
||||
ref_des: "C24" -48790000 45640000 7 0 1200000 220000 -1 -1 2 1
|
||||
footprint_name: "CC0805" -48790000 43383998 12 0 0 0 -1 -1 2 1
|
||||
part_value: "15pF" -48790000 43559999 13 0 1200000 220000 -1 -1 2 1
|
||||
polyline: 2 0 8 250000 -1 -1 -1 0
|
||||
corner: 1 -51999996 45999997 0 0
|
||||
corner: 2 -51999999 44999999 0 1
|
||||
pin_name: "1" -53509079 44350000 9 720 0 0 -1 -1 2 1
|
||||
|
||||
polyline: 2 0 8 250000 -1 -1 -1 0
|
||||
corner: 1 -51999998 46999999 0 0
|
||||
corner: 2 -52000001 47999996 0 1
|
||||
pin_name: "2" -53296098 48100000 9 720 0 0 -1 -1 2 1
|
||||
|
||||
polyline: 2 0 6 250000 -1 -1 -1 0
|
||||
corner: 1 -49999997 45999998 0 0
|
||||
corner: 2 -53999999 45999997 0 0
|
||||
|
||||
polyline: 2 0 6 250000 -1 -1 -1 0
|
||||
corner: 1 -50000000 46999999 0 0
|
||||
corner: 2 -53999998 46999999 0 0
|
||||
|
||||
part_end
|
||||
|
||||
n_pins: 5
|
||||
rectangle: -17625000 47375000 -11875000 61625000
|
||||
ref_des: "XS1" -17190000 46420000 7 0 1200000 220000 -1 -1 2 1
|
||||
footprint_name: "MINI USB 54819" -17190000 44020000 12 0 1200000 220000 -1 -1 2 1
|
||||
polyline: 2 0 8 250000 -1 -1 -1 0
|
||||
corner: 1 -14000000 48500000 0 0
|
||||
corner: 2 -17500000 48500000 0 1
|
||||
pin_name: "5" -18040000 49420000 9 0 1200000 220000 -1 -1 2 1
|
||||
|
||||
polyline: 2 0 8 250000 -1 -1 -1 0
|
||||
corner: 1 -14000000 51500000 0 0
|
||||
corner: 2 -17500000 51500000 0 1
|
||||
pin_name: "4" -18040000 52420000 9 0 1200000 220000 -1 -1 2 1
|
||||
|
||||
polyline: 2 0 8 250000 -1 -1 -1 0
|
||||
corner: 1 -14000000 54500000 0 0
|
||||
corner: 2 -17500000 54500000 0 1
|
||||
pin_name: "3" -18040000 55420000 9 0 1200000 220000 -1 -1 2 1
|
||||
|
||||
polyline: 2 0 8 250000 -1 -1 -1 0
|
||||
corner: 1 -14000000 57500000 0 0
|
||||
corner: 2 -17500000 57500000 0 1
|
||||
pin_name: "2" -18040000 58420000 9 0 1200000 220000 -1 -1 2 1
|
||||
|
||||
polyline: 3 0 6 250000 -1 -1 -1 0
|
||||
corner: 1 -12000000 49500000 0 0
|
||||
corner: 2 -14000000 48500000 0 0
|
||||
corner: 3 -12000000 47500000 0 0
|
||||
|
||||
polyline: 3 0 6 250000 -1 -1 -1 0
|
||||
corner: 1 -12000000 52500000 0 0
|
||||
corner: 2 -14000000 51500000 0 0
|
||||
corner: 3 -12000000 50500000 0 0
|
||||
|
||||
polyline: 3 0 6 250000 -1 -1 -1 0
|
||||
corner: 1 -12000000 55500000 0 0
|
||||
corner: 2 -14000000 54500000 0 0
|
||||
corner: 3 -12000000 53500000 0 0
|
||||
|
||||
polyline: 3 0 6 250000 -1 -1 -1 0
|
||||
corner: 1 -12000000 58500000 0 0
|
||||
corner: 2 -14000000 57500000 0 0
|
||||
corner: 3 -12000000 56500000 0 0
|
||||
|
||||
polyline: 3 0 6 250000 -1 -1 -1 0
|
||||
corner: 1 -12000000 61500000 0 0
|
||||
corner: 2 -14000000 60500000 0 0
|
||||
corner: 3 -12000000 59500000 0 0
|
||||
|
||||
polyline: 2 0 8 250000 -1 -1 -1 0
|
||||
corner: 1 -14000000 60500000 0 0
|
||||
corner: 2 -17500000 60500000 0 1
|
||||
pin_name: "1" -17890000 61420000 9 0 1200000 220000 -1 -1 2 1
|
||||
|
||||
polyline: 5 0 6 250000 -1 -1 -1 0
|
||||
corner: 1 -16250000 60500000 0 0
|
||||
corner: 2 -16250000 48500000 0 0
|
||||
corner: 3 -15250000 48500000 0 0
|
||||
corner: 4 -15250000 60500000 0 0
|
||||
corner: 5 -16250000 60500000 0 0
|
||||
|
||||
part_end
|
||||
|
||||
n_pins: 2
|
||||
rectangle: -23125002 65875000 -18875000 69124996
|
||||
ref_des: "C22" -18100000 68590000 7 720 1200000 220000 -1 -1 2 1
|
||||
footprint_name: "CC0805" -18100000 66333998 12 720 0 0 -1 -1 2 1
|
||||
part_value: "0.1" -18100000 66509999 13 720 1200000 220000 -1 -1 2 1
|
||||
polyline: 2 0 6 250000 -1 -1 -1 0
|
||||
corner: 1 -19000000 66999999 0 0
|
||||
corner: 2 -23000002 66999998 0 0
|
||||
|
||||
polyline: 2 0 6 250000 -1 -1 -1 0
|
||||
corner: 1 -19000004 68000002 0 0
|
||||
corner: 2 -22999999 68000001 0 0
|
||||
|
||||
polyline: 2 0 8 250000 -1 -1 -1 0
|
||||
corner: 1 -21000001 68000001 0 0
|
||||
corner: 2 -21000003 68999996 0 1
|
||||
pin_name: "2" -22296100 69100001 9 1080 0 0 -1 -1 2 1
|
||||
|
||||
polyline: 2 0 8 250000 -1 -1 -1 0
|
||||
corner: 1 -20999999 66999998 0 0
|
||||
corner: 2 -21000002 66000000 0 1
|
||||
pin_name: "1" -22509082 65350001 9 1080 0 0 -1 -1 2 1
|
||||
|
||||
part_end
|
||||
|
||||
polyline: 2 1 10 250000 -1 -1 -1 0
|
||||
corner: 1 -73500000 60500000 0 1
|
||||
corner: 2 -61250000 60500000 0 1
|
||||
|
||||
polyline: 2 1 10 250000 -1 -1 -1 0
|
||||
corner: 1 -73500000 57500000 0 1
|
||||
corner: 2 -55750000 57500000 0 1
|
||||
|
||||
polyline: 2 1 10 250000 -1 -1 -1 0
|
||||
corner: 1 -73500000 54500000 0 1
|
||||
corner: 2 -50250000 54500000 0 1
|
||||
|
||||
polyline: 2 1 10 250000 -1 -1 -1 0
|
||||
corner: 1 -70749999 51500000 0 1
|
||||
corner: 2 -70750000 60500000 0 1200000
|
||||
|
||||
polyline: 2 1 10 250000 -1 -1 -1 0
|
||||
corner: 1 -70750000 45000000 0 1
|
||||
corner: 2 -70750000 43000000 0 0
|
||||
net_name: "GND" -72700000 39900000 11 0 0 0 -1 -1 2 1
|
||||
|
||||
outline: 4 1 15 200000 -1 -1 -1
|
||||
corner: 1 -72499998 42999998 0 0
|
||||
corner: 2 -72500001 42750000 0 0
|
||||
corner: 3 -68999999 42750000 0 0
|
||||
corner: 4 -69000001 43000001 0 0
|
||||
|
||||
polyline: 2 1 10 250000 -1 -1 -1 0
|
||||
corner: 1 -61500000 45000000 0 1
|
||||
corner: 2 -61500000 43000000 0 0
|
||||
net_name: "GND" -63450000 39900000 11 0 0 0 -1 -1 2 1
|
||||
|
||||
outline: 4 1 15 200000 -1 -1 -1
|
||||
corner: 1 -63249998 42999998 0 0
|
||||
corner: 2 -63250001 42750000 0 0
|
||||
corner: 3 -59749999 42750000 0 0
|
||||
corner: 4 -59750001 43000001 0 0
|
||||
|
||||
outline: 4 1 15 200000 -1 -1 -1
|
||||
corner: 1 -53749998 42999998 0 0
|
||||
corner: 2 -53750001 42750000 0 0
|
||||
corner: 3 -50249999 42750000 0 0
|
||||
corner: 4 -50250001 43000001 0 0
|
||||
|
||||
polyline: 2 1 10 250000 -1 -1 -1 0
|
||||
corner: 1 -52000000 45000000 0 1
|
||||
corner: 2 -52000000 43000000 0 0
|
||||
net_name: "GND" -53950000 39900000 11 0 0 0 -1 -1 2 1
|
||||
|
||||
polyline: 2 1 10 250000 -1 -1 -1 0
|
||||
corner: 1 -61500001 47999997 0 1
|
||||
corner: 2 -61500000 57500000 0 1200000
|
||||
|
||||
polyline: 2 1 10 250000 -1 -1 -1 0
|
||||
corner: 1 -31250000 46000000 0 1
|
||||
corner: 2 -31250000 44000000 0 0
|
||||
net_name: "GND" -33250000 41500000 11 0 0 0 -1 -1 2 1
|
||||
|
||||
polyline: 2 1 10 250000 -1 -1 -1 0
|
||||
corner: 1 -52000001 47999997 0 1
|
||||
corner: 2 -52000000 54500000 0 1200000
|
||||
|
||||
polyline: 2 1 10 250000 -1 -1 -1 0
|
||||
corner: 1 -49250000 57500000 0 1
|
||||
corner: 2 -39250000 57500000 0 1
|
||||
|
||||
polyline: 2 1 10 250000 -1 -1 -1 0
|
||||
corner: 1 -43750000 54499999 0 1
|
||||
corner: 2 -39250000 54500000 0 1
|
||||
|
||||
polyline: 2 0 10 250000 -1 -1 -1 0
|
||||
corner: 1 -23750000 47500000 0 1
|
||||
corner: 2 -23750000 46000000 0 1
|
||||
|
||||
polyline: 2 0 10 250000 -1 -1 -1 0
|
||||
corner: 1 -23750000 57500000 0 1
|
||||
corner: 2 -17500000 57500000 0 1
|
||||
|
||||
polyline: 2 0 10 250000 -1 -1 -1 0
|
||||
corner: 1 -23750000 54500000 0 1
|
||||
corner: 2 -17500000 54500000 0 1
|
||||
|
||||
polyline: 6 0 10 250000 -1 -1 -1 0
|
||||
corner: 1 -17500000 60500000 0 1
|
||||
corner: 2 -21000000 60500000 0 0
|
||||
corner: 3 -21000000 64500000 0 0
|
||||
corner: 4 -44000000 64500000 0 0
|
||||
corner: 5 -44000000 60500000 0 0
|
||||
corner: 6 -54750000 60499999 0 1
|
||||
|
||||
polyline: 2 0 10 250000 -1 -1 -1 0
|
||||
corner: 1 -31250000 63000000 0 1
|
||||
corner: 2 -31250000 64500000 0 1200000
|
||||
|
||||
polyline: 2 0 10 250000 -1 -1 -1 0
|
||||
corner: 1 -31250000 47500000 0 1
|
||||
corner: 2 -31250000 46000000 0 1
|
||||
|
||||
outline: 4 1 15 200000 -1 -1 -1
|
||||
corner: 1 -25499998 43999998 0 0
|
||||
corner: 2 -25500001 43750000 0 0
|
||||
corner: 3 -21999999 43750000 0 0
|
||||
corner: 4 -22000001 44000001 0 0
|
||||
|
||||
polyline: 2 1 10 250000 -1 -1 -1 0
|
||||
corner: 1 -23750000 46000000 0 1
|
||||
corner: 2 -23750000 44000000 0 0
|
||||
net_name: "GND" -25750000 41500000 11 0 0 0 -1 -1 2 1
|
||||
|
||||
polyline: 3 0 10 250000 -1 -1 -1 0
|
||||
corner: 1 -17500000 48500000 0 1
|
||||
corner: 2 -23750000 48500000 0 0
|
||||
corner: 3 -23750000 47500000 0 1
|
||||
|
||||
polyline: 3 0 10 250000 -1 -1 -1 0
|
||||
corner: 1 -17500000 51500000 0 1
|
||||
corner: 2 -23750000 51500000 0 0
|
||||
corner: 3 -23750000 48500000 0 1200000
|
||||
|
||||
polyline: 2 1 10 250000 -1 -1 -1 0
|
||||
corner: 1 -20999999 70000000 0 1
|
||||
corner: 2 -20999999 72000000 0 0
|
||||
net_name: "GND" -23020000 73340000 11 0 0 0 -1 -1 2 1
|
||||
|
||||
outline: 4 1 15 200000 -1 -1 -1
|
||||
corner: 1 -22749998 72249998 0 0
|
||||
corner: 2 -22750001 72000000 0 0
|
||||
corner: 3 -19249999 72000000 0 0
|
||||
corner: 4 -19250001 72250001 0 0
|
||||
|
||||
outline: 4 1 15 200000 -1 -1 -1
|
||||
corner: 1 -32999998 43999998 0 0
|
||||
corner: 2 -33000001 43750000 0 0
|
||||
corner: 3 -29499999 43750000 0 0
|
||||
corner: 4 -29500001 44000001 0 0
|
||||
|
||||
polyline: 5 0 10 250000 -1 -1 -1 0
|
||||
corner: 1 -21000000 64500000 0 1200000
|
||||
corner: 2 -12500000 64499999 0 0
|
||||
corner: 3 -13750000 64999999 0 0
|
||||
corner: 4 -12500000 64499999 0 0
|
||||
corner: 5 -13750000 64000000 0 0
|
||||
net_name: "+5Vusb" -11760000 63880000 11 0 1200000 220000 -1 -1 2 1
|
||||
|
||||
polyline: 2 0 10 250000 -1 -1 -1 0
|
||||
corner: 1 -21000000 70000000 0 1
|
||||
corner: 2 -21000000 69000000 0 1
|
||||
|
||||
polyline: 2 0 10 250000 -1 -1 -1 0
|
||||
corner: 1 -21000000 66000000 0 1
|
||||
corner: 2 -21000000 64500000 0 1200000
|
||||
|
||||
add_new_page: "Ñïèñîê ìàò-îâ"
|
||||
[merges]
|
||||
|
||||
merge: "Merge-4"
|
||||
merge: "Merge-19"
|
||||
merge: "Merge-1"
|
||||
|
||||
|
||||
[end]
|
||||
2
Projects/Led/desktop.ini
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
[.ShellClassInfo]
|
||||
IconResource=C:\Program Files\Google\Drive File Stream\79.0.2.0\GoogleDriveFS.exe,23
|
||||
1074
Projects/Led/version-01/Driver-01.fpc
Normal file
1552
Projects/Led/version-01/LED-01.cds
Normal file
1561
Projects/Led/version-01/LED-01.fpc
Normal file
2
Projects/Led/version-01/desktop.ini
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
[.ShellClassInfo]
|
||||
IconResource=C:\Program Files\Google\Drive File Stream\79.0.2.0\GoogleDriveFS.exe,23
|
||||
BIN
Projects/Led/version-01/related_files/1.bmp
Normal file
|
After Width: | Height: | Size: 987 KiB |
BIN
Projects/Led/version-01/related_files/BOM(Driver-01).pdf
Normal file
1960
Projects/Led/version-01/related_files/BOM(LED-01).pdf
Normal file
|
|
@ -0,0 +1,59 @@
|
|||
*PADS-PCB*
|
||||
*PART*
|
||||
R1 910k@R0402
|
||||
KT1 Pad2x2
|
||||
KT3 Pad2x2
|
||||
KT4 Pad2x2
|
||||
L1 22uH@CD54
|
||||
DC14 PAM2841@MSOP-8T
|
||||
R2 30k@R0402
|
||||
KT2 Pad2x2
|
||||
VD3 SS12|(SS13,SS14,SS15)@SMTDIODE
|
||||
R3 10E@R0402
|
||||
C4 0.1@C0402
|
||||
C1 1.0@C0402
|
||||
C3 10.0@CC0805
|
||||
C2 1.0@C0402
|
||||
|
||||
*NET*
|
||||
*SIGNAL* SET
|
||||
KT1.1
|
||||
DC14.3
|
||||
*SIGNAL* OUT-
|
||||
KT3.1
|
||||
DC14.6
|
||||
R3.2
|
||||
*SIGNAL* OUT+
|
||||
R1.2
|
||||
KT4.1
|
||||
VD3.2
|
||||
C2.2
|
||||
*SIGNAL* SW
|
||||
L1.1
|
||||
DC14.8
|
||||
VD3.1
|
||||
*SIGNAL* +E
|
||||
L1.2
|
||||
DC14.2
|
||||
KT2.1
|
||||
C1.2
|
||||
C3.2
|
||||
*SIGNAL* GND
|
||||
DC14.1
|
||||
DC14.5
|
||||
DC14.9
|
||||
R2.1
|
||||
R3.1
|
||||
C4.1
|
||||
C1.1
|
||||
C3.1
|
||||
C2.1
|
||||
*SIGNAL* NET00001
|
||||
DC14.4
|
||||
C4.2
|
||||
*SIGNAL* NET00002
|
||||
R1.1
|
||||
DC14.7
|
||||
R2.2
|
||||
|
||||
*END*
|
||||
227
Projects/Led/version-01/related_files/CDS_netlist/LED-01.fpc.net
Normal file
|
|
@ -0,0 +1,227 @@
|
|||
*PADS-PCB*
|
||||
*PART*
|
||||
KT1 Pad2x2
|
||||
KT2 Pad2x2
|
||||
|
||||
HL2A LED@C_TYPE
|
||||
HL4A LED@C_TYPE
|
||||
HL3A LED@C_TYPE
|
||||
HL6A LED@C_TYPE
|
||||
HL1A LED@C_TYPE
|
||||
HL8A LED@C_TYPE
|
||||
HL7A LED@C_TYPE
|
||||
HL5A LED@C_TYPE
|
||||
|
||||
HL2B LED@C_TYPE
|
||||
HL4B LED@C_TYPE
|
||||
HL3B LED@C_TYPE
|
||||
HL6B LED@C_TYPE
|
||||
HL1B LED@C_TYPE
|
||||
HL8B LED@C_TYPE
|
||||
HL7B LED@C_TYPE
|
||||
HL5B LED@C_TYPE
|
||||
|
||||
HL2C LED@C_TYPE
|
||||
HL4C LED@C_TYPE
|
||||
HL3C LED@C_TYPE
|
||||
HL6C LED@C_TYPE
|
||||
HL1C LED@C_TYPE
|
||||
HL8C LED@C_TYPE
|
||||
HL7C LED@C_TYPE
|
||||
HL5C LED@C_TYPE
|
||||
|
||||
HL2D LED@C_TYPE
|
||||
HL4D LED@C_TYPE
|
||||
HL3D LED@C_TYPE
|
||||
HL6D LED@C_TYPE
|
||||
HL1D LED@C_TYPE
|
||||
HL8D LED@C_TYPE
|
||||
HL7D LED@C_TYPE
|
||||
HL5D LED@C_TYPE
|
||||
|
||||
HL2E LED@C_TYPE
|
||||
HL4E LED@C_TYPE
|
||||
HL3E LED@C_TYPE
|
||||
HL6E LED@C_TYPE
|
||||
HL1E LED@C_TYPE
|
||||
HL8E LED@C_TYPE
|
||||
HL7E LED@C_TYPE
|
||||
HL5E LED@C_TYPE
|
||||
|
||||
HL2F LED@C_TYPE
|
||||
HL4F LED@C_TYPE
|
||||
HL3F LED@C_TYPE
|
||||
HL6F LED@C_TYPE
|
||||
HL1F LED@C_TYPE
|
||||
HL8F LED@C_TYPE
|
||||
HL7F LED@C_TYPE
|
||||
HL5F LED@C_TYPE
|
||||
|
||||
HL2G LED@C_TYPE
|
||||
HL4G LED@C_TYPE
|
||||
HL3G LED@C_TYPE
|
||||
HL6G LED@C_TYPE
|
||||
HL1G LED@C_TYPE
|
||||
HL8G LED@C_TYPE
|
||||
HL7G LED@C_TYPE
|
||||
HL5G LED@C_TYPE
|
||||
|
||||
HL2H LED@C_TYPE
|
||||
HL4H LED@C_TYPE
|
||||
HL3H LED@C_TYPE
|
||||
HL6H LED@C_TYPE
|
||||
HL1H LED@C_TYPE
|
||||
HL8H LED@C_TYPE
|
||||
HL7H LED@C_TYPE
|
||||
HL5H LED@C_TYPE
|
||||
|
||||
*NET*
|
||||
*SIGNAL* -
|
||||
KT1.1
|
||||
HL6H.2
|
||||
HL8H.2
|
||||
HL7H.2
|
||||
HL5H.2
|
||||
*SIGNAL* +
|
||||
KT2.1
|
||||
HL2A.1
|
||||
HL4A.1
|
||||
HL3A.1
|
||||
HL1A.1
|
||||
*SIGNAL* NET00001
|
||||
HL6G.2
|
||||
HL8G.2
|
||||
HL7G.2
|
||||
HL5G.2
|
||||
HL2H.1
|
||||
HL4H.1
|
||||
HL3H.1
|
||||
HL1H.1
|
||||
*SIGNAL* NET00002
|
||||
HL6A.2
|
||||
HL8A.2
|
||||
HL7A.2
|
||||
HL5A.2
|
||||
HL2B.1
|
||||
HL4B.1
|
||||
HL3B.1
|
||||
HL1B.1
|
||||
*SIGNAL* NET00003
|
||||
HL6B.2
|
||||
HL8B.2
|
||||
HL7B.2
|
||||
HL5B.2
|
||||
HL2C.1
|
||||
HL4C.1
|
||||
HL3C.1
|
||||
HL1C.1
|
||||
*SIGNAL* NET00004
|
||||
HL6C.2
|
||||
HL8C.2
|
||||
HL7C.2
|
||||
HL5C.2
|
||||
HL2D.1
|
||||
HL4D.1
|
||||
HL3D.1
|
||||
HL1D.1
|
||||
*SIGNAL* NET00005
|
||||
HL6D.2
|
||||
HL8D.2
|
||||
HL7D.2
|
||||
HL5D.2
|
||||
HL2E.1
|
||||
HL4E.1
|
||||
HL3E.1
|
||||
HL1E.1
|
||||
*SIGNAL* NET00006
|
||||
HL6E.2
|
||||
HL8E.2
|
||||
HL7E.2
|
||||
HL5E.2
|
||||
HL2F.1
|
||||
HL4F.1
|
||||
HL3F.1
|
||||
HL1F.1
|
||||
*SIGNAL* NET00007
|
||||
HL6F.2
|
||||
HL8F.2
|
||||
HL7F.2
|
||||
HL5F.2
|
||||
HL2G.1
|
||||
HL4G.1
|
||||
HL3G.1
|
||||
HL1G.1
|
||||
*SIGNAL* NET00008LED1A
|
||||
HL2A.2
|
||||
HL4A.2
|
||||
HL3A.2
|
||||
HL6A.1
|
||||
HL1A.2
|
||||
HL8A.1
|
||||
HL7A.1
|
||||
HL5A.1
|
||||
*SIGNAL* NET00008LED1B
|
||||
HL2B.2
|
||||
HL4B.2
|
||||
HL3B.2
|
||||
HL6B.1
|
||||
HL1B.2
|
||||
HL8B.1
|
||||
HL7B.1
|
||||
HL5B.1
|
||||
*SIGNAL* NET00008LED1C
|
||||
HL2C.2
|
||||
HL4C.2
|
||||
HL3C.2
|
||||
HL6C.1
|
||||
HL1C.2
|
||||
HL8C.1
|
||||
HL7C.1
|
||||
HL5C.1
|
||||
*SIGNAL* NET00008LED1D
|
||||
HL2D.2
|
||||
HL4D.2
|
||||
HL3D.2
|
||||
HL6D.1
|
||||
HL1D.2
|
||||
HL8D.1
|
||||
HL7D.1
|
||||
HL5D.1
|
||||
*SIGNAL* NET00008LED1E
|
||||
HL2E.2
|
||||
HL4E.2
|
||||
HL3E.2
|
||||
HL6E.1
|
||||
HL1E.2
|
||||
HL8E.1
|
||||
HL7E.1
|
||||
HL5E.1
|
||||
*SIGNAL* NET00008LED1F
|
||||
HL2F.2
|
||||
HL4F.2
|
||||
HL3F.2
|
||||
HL6F.1
|
||||
HL1F.2
|
||||
HL8F.1
|
||||
HL7F.1
|
||||
HL5F.1
|
||||
*SIGNAL* NET00008LED1G
|
||||
HL2G.2
|
||||
HL4G.2
|
||||
HL3G.2
|
||||
HL6G.1
|
||||
HL1G.2
|
||||
HL8G.1
|
||||
HL7G.1
|
||||
HL5G.1
|
||||
*SIGNAL* NET00008LED1H
|
||||
HL2H.2
|
||||
HL4H.2
|
||||
HL3H.2
|
||||
HL6H.1
|
||||
HL1H.2
|
||||
HL8H.1
|
||||
HL7H.1
|
||||
HL5H.1
|
||||
|
||||
*END*
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
[.ShellClassInfo]
|
||||
IconResource=C:\Program Files\Google\Drive File Stream\79.0.2.0\GoogleDriveFS.exe,23
|
||||
|
|
@ -0,0 +1 @@
|
|||
Чип-конденсатор 0402 0.1uF X7R 10V
|
||||
|
|
@ -0,0 +1 @@
|
|||
Чип-конденсатор 0402 1.0uF X7R 10V
|
||||
|
|
@ -0,0 +1 @@
|
|||
Чип-конденсатор 0805 10.0uF X7R 16V
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
[InternetShortcut]
|
||||
URL=https://www.promelec.ru/product/188615/
|
||||
|
|
@ -0,0 +1 @@
|
|||
×èï-ðåçèñòîð 0402 10E±5%
|
||||
|
|
@ -0,0 +1 @@
|
|||
Катушка индуктивности SMD CD54 22uh 220K 5.8*4.5мм
|
||||
|
|
@ -0,0 +1 @@
|
|||
Чип-резистор 0402 30k±5%
|
||||
BIN
Projects/Led/version-01/related_files/Component/32768@FC-135.pdf
Normal file
|
|
@ -0,0 +1 @@
|
|||
Чип-резистор 0402 910k±5%
|
||||
BIN
Projects/Led/version-01/related_files/Component/ABM3.jpg
Normal file
|
After Width: | Height: | Size: 39 KiB |
BIN
Projects/Led/version-01/related_files/Component/A_TYPE.jpg
Normal file
|
After Width: | Height: | Size: 189 KiB |
|
|
@ -0,0 +1 @@
|
|||
2-pin connector
|
||||
BIN
Projects/Led/version-01/related_files/Component/C0402.jpg
Normal file
|
After Width: | Height: | Size: 29 KiB |
BIN
Projects/Led/version-01/related_files/Component/CAT16-J4.jpg
Normal file
|
After Width: | Height: | Size: 5.1 KiB |
BIN
Projects/Led/version-01/related_files/Component/CC0805.jpg
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
Projects/Led/version-01/related_files/Component/CD54.jpg
Normal file
|
After Width: | Height: | Size: 34 KiB |
BIN
Projects/Led/version-01/related_files/Component/CDRH3D16NP.jpg
Normal file
|
After Width: | Height: | Size: 26 KiB |
BIN
Projects/Led/version-01/related_files/Component/CDRH5D28NP.jpg
Normal file
|
After Width: | Height: | Size: 6 KiB |
BIN
Projects/Led/version-01/related_files/Component/C_TYPE.jpg
Normal file
|
After Width: | Height: | Size: 36 KiB |
BIN
Projects/Led/version-01/related_files/Component/D_TYPE.jpeg
Normal file
|
After Width: | Height: | Size: 75 KiB |
BIN
Projects/Led/version-01/related_files/Component/FC-135.jpg
Normal file
|
After Width: | Height: | Size: 6.4 KiB |
BIN
Projects/Led/version-01/related_files/Component/HC-49U.jpg
Normal file
|
After Width: | Height: | Size: 22 KiB |
|
|
@ -0,0 +1 @@
|
|||
Ńâĺňîäčîä SMD 0805 áĺëűé 2.8v 500mcd
|
||||
BIN
Projects/Led/version-01/related_files/Component/LGA14.jpg
Normal file
|
After Width: | Height: | Size: 74 KiB |
|
|
@ -0,0 +1 @@
|
|||
1.6-MHz Boost Converters With 40-V \ Wide input voltage 2.7 V to 14 V
|
||||
|
|
@ -0,0 +1 @@
|
|||
600 mA Step Down DC DC converter, Input 2.7 to 5.5 v
|
||||
BIN
Projects/Led/version-01/related_files/Component/LQFP-100.jpg
Normal file
|
After Width: | Height: | Size: 60 KiB |
BIN
Projects/Led/version-01/related_files/Component/MBR0520.jpg
Normal file
|
After Width: | Height: | Size: 34 KiB |
BIN
Projects/Led/version-01/related_files/Component/MBRS140.jpg
Normal file
|
After Width: | Height: | Size: 24 KiB |
|
|
@ -0,0 +1 @@
|
|||
0.65v Start-up Synchronous Boost Regulator
|
||||
BIN
Projects/Led/version-01/related_files/Component/MINI-SO10.jpg
Normal file
|
After Width: | Height: | Size: 51 KiB |
BIN
Projects/Led/version-01/related_files/Component/MINI-SO10T.jpg
Normal file
|
After Width: | Height: | Size: 30 KiB |
BIN
Projects/Led/version-01/related_files/Component/MSOP-8.jpg
Normal file
|
After Width: | Height: | Size: 8.8 KiB |
BIN
Projects/Led/version-01/related_files/Component/MSOP-8T.jpg
Normal file
|
After Width: | Height: | Size: 36 KiB |
|
|
@ -0,0 +1 @@
|
|||
LED-driver
|
||||
|
|
@ -0,0 +1 @@
|
|||
LED-driver PAM2841SR
|
||||
BIN
Projects/Led/version-01/related_files/Component/R0402.jpg
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
Projects/Led/version-01/related_files/Component/RC0805.jpg
Normal file
|
After Width: | Height: | Size: 16 KiB |
BIN
Projects/Led/version-01/related_files/Component/SMTDIODE.jpg
Normal file
|
After Width: | Height: | Size: 46 KiB |
BIN
Projects/Led/version-01/related_files/Component/SO-8.jpg
Normal file
|
After Width: | Height: | Size: 71 KiB |
BIN
Projects/Led/version-01/related_files/Component/SOT-23-5.jpg
Normal file
|
After Width: | Height: | Size: 78 KiB |