├── .gitignore ├── Basic Node ├── wisp-6-0.OutJob ├── wisp-6-0.pdf ├── wisp-6-afe.SchDoc ├── wisp-6-dipole.PcbDoc ├── wisp-6-main.SchDoc ├── wisp-6-mcu.SchDoc ├── wisp-6-peripherals.SchDoc ├── wisp-6.0V2.OutJob ├── wisp-6.0V2.PrjPcb ├── wisp-6.0V2.pdf └── wisp-6.PcbDoc ├── README.md ├── addon_boards ├── Accl │ ├── .gitignore │ ├── CAMtastic1.Cam │ ├── CAMtastic2.Cam │ ├── CAMtastic3.Cam │ ├── IMU.PcbDoc │ ├── IMU.PrjPCB │ └── IMU.SchDoc ├── Camera │ ├── BLE.PcbLib │ ├── BLE.SchLib │ ├── CAMtastic1.Cam │ ├── CAMtastic2.Cam │ ├── CAMtastic3.Cam │ ├── Camera.OutJob │ ├── Camera.PrjPcb │ ├── Camera.pdf │ ├── Himax.PcbDoc │ ├── Himax.SchDoc │ ├── WISP_AD10.PcbLib │ └── WISP_AD10.SchLib ├── Mic2 │ ├── CAMtastic1.Cam │ ├── CAMtastic2.Cam │ ├── CAMtastic3.Cam │ ├── Mic2_WISP.PrjPCB │ ├── Mic2_WISP.pdf │ ├── Microphone2.PcbDoc │ └── Microphone2.SchDoc ├── Panel │ ├── Panel.OutJob │ ├── Panel.PrjPCB │ ├── Panel.pdf │ ├── Tag-Panel-V.PcbDoc │ ├── Tag-Panel.PcbDoc │ └── Tag-panel.SchDoc └── Solar │ ├── CAMtastic1.Cam │ ├── CAMtastic2.Cam │ ├── CAMtastic3.Cam │ ├── Solar-Harvester.PrjPCB │ ├── Solar-Harvester.pdf │ ├── Solar.PcbDoc │ └── Solar.SchDoc ├── libraries ├── ADG902BRMZ.SchLib ├── BGA4C2X2X50P_117X117X42.PcbLib ├── BLE.PcbLib ├── BLE.SchLib ├── CAPPRD500W60D1000H3200.PcbLib ├── FDY1002PZ.SchLib ├── HDC2010YPAR.PcbLib ├── HDC2010YPAR.SchLib ├── LMV1032URX-25_NOPB.SchLib ├── MAX4466EXK.PcbLib ├── SOP65P490X110-8N.PcbLib ├── SOT50P160X60-6N.PcbLib ├── WISP_AD10.PcbLib └── WISP_AD10.SchLib └── license.txt /.gitignore: -------------------------------------------------------------------------------- 1 | # Various Altium files 2 | *.PrjPCBStructure 3 | *.SchDocPreview 4 | *.PcbDocPreview 5 | __Previews 6 | *.PrjPcbStructure 7 | *.Dat 8 | *.REP 9 | *.TLT 10 | *.LOG 11 | *.log 12 | *.htm 13 | *.$$$ 14 | 15 | #useless dirs 16 | Project\ Outputs 17 | Project\ Logs 18 | Project Outputs for* 19 | 20 | #History 21 | History 22 | 23 | #Exports, but not manual ones 24 | exports/* 25 | !exports/manual 26 | 27 | #Python stuff 28 | scripts/__pycache__/ 29 | *.bak 30 | *.dwl 31 | *.dwl2 -------------------------------------------------------------------------------- /Basic Node/wisp-6-0.OutJob: -------------------------------------------------------------------------------- 1 | [OutputJobFile] 2 | Version=1.0 3 | 4 | [PublishSettings] 5 | OutputFilePath2=Z:\wisp6\wisp-6-0\wisp-6-0\.PDF 6 | ReleaseManaged2=0 7 | OutputBasePath2=Z:\wisp6\wisp-6-0\wisp-6-0\ 8 | OutputPathMedia2= 9 | OutputPathMediaValue2= 10 | OutputPathOutputer2=[Output Type] 11 | OutputPathOutputerPrefix2= 12 | OutputPathOutputerValue2= 13 | OutputFileName2=wisp-6-0.pdf 14 | OutputFileNameMulti2= 15 | UseOutputNameForMulti2=1 16 | OutputFileNameSpecial2= 17 | OpenOutput2=1 18 | PromptOverwrite2=1 19 | PublishMethod2=0 20 | ZoomLevel2=50 21 | FitSCHPrintSizeToDoc2=0 22 | FitPCBPrintSizeToDoc2=0 23 | GenerateNetsInfo2=1 24 | MarkPins2=1 25 | MarkNetLabels2=1 26 | MarkPortsId2=1 27 | GenerateTOC2=1 28 | ShowComponentParameters2=1 29 | GlobalBookmarks2=0 30 | PDFACompliance2=Disabled 31 | PDFVersion2=Default 32 | OutputFilePath3= 33 | ReleaseManaged3=1 34 | OutputBasePath3= 35 | OutputPathMedia3= 36 | OutputPathMediaValue3= 37 | OutputPathOutputer3=[Output Type] 38 | OutputPathOutputerPrefix3= 39 | OutputPathOutputerValue3= 40 | OutputFileName3= 41 | OutputFileNameMulti3= 42 | UseOutputNameForMulti3=1 43 | OutputFileNameSpecial3= 44 | OpenOutput3=1 45 | OutputFilePath4= 46 | ReleaseManaged4=1 47 | OutputBasePath4= 48 | OutputPathMedia4= 49 | OutputPathMediaValue4= 50 | OutputPathOutputer4=[Output Type] 51 | OutputPathOutputerPrefix4= 52 | OutputPathOutputerValue4= 53 | OutputFileName4= 54 | OutputFileNameMulti4= 55 | UseOutputNameForMulti4=1 56 | OutputFileNameSpecial4= 57 | OpenOutput4=1 58 | PromptOverwrite4=1 59 | PublishMethod4=5 60 | ZoomLevel4=50 61 | FitSCHPrintSizeToDoc4=1 62 | FitPCBPrintSizeToDoc4=1 63 | GenerateNetsInfo4=1 64 | MarkPins4=1 65 | MarkNetLabels4=1 66 | MarkPortsId4=1 67 | MediaFormat4=Windows Media file (*.wmv,*.wma,*.asf) 68 | FixedDimensions4=1 69 | Width4=352 70 | Height4=288 71 | MultiFile4=0 72 | FramesPerSecond4=25 73 | FramesPerSecondDenom4=1 74 | AviPixelFormat4=7 75 | AviCompression4=MP42 MS-MPEG4 V2 76 | AviQuality4=100 77 | FFmpegVideoCodecId4=12 78 | FFmpegPixelFormat4=0 79 | FFmpegQuality4=80 80 | WmvVideoCodecName4=Windows Media Video V7 81 | WmvQuality4=80 82 | 83 | [GeneratedFilesSettings] 84 | RelativeOutputPath2=Z:\wisp6\wisp-6-0\wisp-6-0\.PDF 85 | OpenOutputs2=1 86 | RelativeOutputPath3= 87 | OpenOutputs3=1 88 | AddToProject3=1 89 | TimestampFolder3=0 90 | UseOutputName3=0 91 | OpenODBOutput3=0 92 | OpenGerberOutput3=0 93 | OpenNCDrillOutput3=0 94 | OpenIPCOutput3=0 95 | EnableReload3=0 96 | RelativeOutputPath4= 97 | OpenOutputs4=1 98 | 99 | [OutputGroup1] 100 | Name= 101 | Description= 102 | TargetOutputMedium=PDF 103 | VariantName=[No Variations] 104 | VariantScope=0 105 | CurrentConfigurationName= 106 | TargetPrinter=Virtual Printer 107 | PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 108 | OutputMedium1=Print Job 109 | OutputMedium1_Type=Printer 110 | OutputMedium1_Printer= 111 | OutputMedium1_PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 112 | OutputMedium2=PDF 113 | OutputMedium2_Type=Publish 114 | OutputMedium3=Folder Structure 115 | OutputMedium3_Type=GeneratedFiles 116 | OutputMedium4=Video 117 | OutputMedium4_Type=Multimedia 118 | OutputType1=Schematic Print 119 | OutputName1=Schematic Prints 120 | OutputCategory1=Documentation 121 | OutputDocumentPath1=[Project Physical Documents] 122 | OutputVariantName1=[No Variations] 123 | OutputEnabled1=1 124 | OutputEnabled1_OutputMedium1=0 125 | OutputEnabled1_OutputMedium2=1 126 | OutputEnabled1_OutputMedium3=0 127 | OutputEnabled1_OutputMedium4=0 128 | OutputDefault1=0 129 | PageOptions1=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=0.72|XCorrection=1.00|YCorrection=1.00|PrintKind=0|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 130 | Configuration1_Name1=OutputConfigurationParameter1 131 | Configuration1_Item1=Record=SchPrintView|ShowNoERC=True|ShowParamSet=True|ShowProbe=True|ShowBlanket=True|NoERCSymbolsToShow="Thin Cross","Thick Cross","Small Cross",Checkbox,Triangle|ShowNote=True|ShowNoteCollapsed=True|ShowOpenEnds=True|ExpandDesignator=True|ExpandNetLabel=False|ExpandPort=False|ExpandSheetNum=False|ExpandDocNum=False|PrintArea=0|PrintAreaRect.X1=0|PrintAreaRect.Y1=0|PrintAreaRect.X2=0|PrintAreaRect.Y2=0|DocumentPath= 132 | OutputType2=PCB Print 133 | OutputName2=PCB Prints 134 | OutputCategory2=Documentation 135 | OutputDocumentPath2=wisp-6-dipole.PcbDoc 136 | OutputVariantName2= 137 | OutputEnabled2=1 138 | OutputEnabled2_OutputMedium1=0 139 | OutputEnabled2_OutputMedium2=2 140 | OutputEnabled2_OutputMedium3=0 141 | OutputEnabled2_OutputMedium4=0 142 | OutputDefault2=0 143 | PageOptions2=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.43|XCorrection=1.00|YCorrection=1.00|PrintKind=0|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 144 | Configuration2_Name1=OutputConfigurationParameter1 145 | Configuration2_Item1=DesignatorDisplayMode=Physical|PrintArea=DesignExtent|PrintAreaLowerLeftCornerX=0|PrintAreaLowerLeftCornerY=0|PrintAreaUpperRightCornerX=0|PrintAreaUpperRightCornerY=0|Record=PcbPrintView|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\wisp-6-dipole.PcbDoc 146 | Configuration2_Name2=OutputConfigurationParameter2 147 | Configuration2_Item2=IncludeBoardCutouts=False|IncludeBottomLayerComponents=True|IncludeMultiLayerComponents=True|IncludeTopLayerComponents=True|IncludeViewports=True|Index=0|Mirror=False|Name=Multilayer Composite Print|PadNumberFontSize=14|Record=PcbPrintOut|ShowHoles=False|ShowPadNets=False|ShowPadNumbers=False|SubstituteFonts=False|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\wisp-6-dipole.PcbDoc 148 | Configuration2_Name3=OutputConfigurationParameter3 149 | Configuration2_Item3=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=TopOverlay|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\wisp-6-dipole.PcbDoc 150 | Configuration2_Name4=OutputConfigurationParameter4 151 | Configuration2_Item4=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=TopLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\wisp-6-dipole.PcbDoc 152 | Configuration2_Name5=OutputConfigurationParameter5 153 | Configuration2_Item5=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=MidLayer1|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\wisp-6-dipole.PcbDoc 154 | Configuration2_Name6=OutputConfigurationParameter6 155 | Configuration2_Item6=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=MidLayer2|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\wisp-6-dipole.PcbDoc 156 | Configuration2_Name7=OutputConfigurationParameter7 157 | Configuration2_Item7=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=BottomLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\wisp-6-dipole.PcbDoc 158 | Configuration2_Name8=OutputConfigurationParameter8 159 | Configuration2_Item8=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=MultiLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\wisp-6-dipole.PcbDoc 160 | Configuration2_Name9=OutputConfigurationParameter9 161 | Configuration2_Item9=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=BottomOverlay|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\wisp-6-dipole.PcbDoc 162 | Configuration2_Name10=OutputConfigurationParameter10 163 | Configuration2_Item10=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical1|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\wisp-6-dipole.PcbDoc 164 | Configuration2_Name11=OutputConfigurationParameter11 165 | Configuration2_Item11=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical3|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\wisp-6-dipole.PcbDoc 166 | Configuration2_Name12=OutputConfigurationParameter12 167 | Configuration2_Item12=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical5|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\wisp-6-dipole.PcbDoc 168 | Configuration2_Name13=OutputConfigurationParameter13 169 | Configuration2_Item13=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical13|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\wisp-6-dipole.PcbDoc 170 | Configuration2_Name14=OutputConfigurationParameter14 171 | Configuration2_Item14=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical15|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\wisp-6-dipole.PcbDoc 172 | PcbPrintPreferences2= 173 | OutputType3=BOM_PartType 174 | OutputName3=Bill of Materials 175 | OutputCategory3=Report 176 | OutputDocumentPath3= 177 | OutputVariantName3=[No Variations] 178 | OutputEnabled3=1 179 | OutputEnabled3_OutputMedium1=0 180 | OutputEnabled3_OutputMedium2=3 181 | OutputEnabled3_OutputMedium3=0 182 | OutputEnabled3_OutputMedium4=0 183 | OutputDefault3=0 184 | PageOptions3=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 185 | Configuration3_Name1=ColumnNameFormat 186 | Configuration3_Item1=CaptionAsName 187 | Configuration3_Name2=ForceUpdateSettings 188 | Configuration3_Item2=False 189 | Configuration3_Name3=General 190 | Configuration3_Item3=TemplateFilename= 191 | Configuration3_Name4=GroupOrder 192 | Configuration3_Item4=Footprint=True|Value=True 193 | Configuration3_Name5=SortOrder 194 | Configuration3_Item5=Designator=Up|Comment=Up|Footprint=Up 195 | Configuration3_Name6=VisibleOrder 196 | Configuration3_Item6=Designator=120|Value=100|Comment=120|Description=120|Footprint=120|LibRef=120|Quantity=100|Manufacturer=100 197 | Configuration3_Name7=VisibleOrder_Flat 198 | Configuration3_Item7=Designator=120|Value=100|Comment=120|Description=120|Footprint=120|LibRef=120|Quantity=100|Manufacturer=100 199 | 200 | -------------------------------------------------------------------------------- /Basic Node/wisp-6-0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wisp/wisp6-hardware/b3402b5a4a9843f840eadc495710a15e2e6c99c8/Basic Node/wisp-6-0.pdf -------------------------------------------------------------------------------- /Basic Node/wisp-6-afe.SchDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wisp/wisp6-hardware/b3402b5a4a9843f840eadc495710a15e2e6c99c8/Basic Node/wisp-6-afe.SchDoc -------------------------------------------------------------------------------- /Basic Node/wisp-6-dipole.PcbDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wisp/wisp6-hardware/b3402b5a4a9843f840eadc495710a15e2e6c99c8/Basic Node/wisp-6-dipole.PcbDoc -------------------------------------------------------------------------------- /Basic Node/wisp-6-main.SchDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wisp/wisp6-hardware/b3402b5a4a9843f840eadc495710a15e2e6c99c8/Basic Node/wisp-6-main.SchDoc -------------------------------------------------------------------------------- /Basic Node/wisp-6-mcu.SchDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wisp/wisp6-hardware/b3402b5a4a9843f840eadc495710a15e2e6c99c8/Basic Node/wisp-6-mcu.SchDoc -------------------------------------------------------------------------------- /Basic Node/wisp-6-peripherals.SchDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wisp/wisp6-hardware/b3402b5a4a9843f840eadc495710a15e2e6c99c8/Basic Node/wisp-6-peripherals.SchDoc -------------------------------------------------------------------------------- /Basic Node/wisp-6.0V2.OutJob: -------------------------------------------------------------------------------- 1 | [OutputJobFile] 2 | Version=1.0 3 | 4 | [OutputGroup1] 5 | Name= 6 | Description= 7 | TargetOutputMedium=PDF 8 | VariantName=[No Variations] 9 | VariantScope=0 10 | CurrentConfigurationName= 11 | TargetPrinter=Virtual Printer 12 | PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 13 | OutputMedium1=Print Job 14 | OutputMedium1_Type=Printer 15 | OutputMedium1_Printer= 16 | OutputMedium1_PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 17 | OutputMedium2=PDF 18 | OutputMedium2_Type=Publish 19 | OutputMedium3=Folder Structure 20 | OutputMedium3_Type=GeneratedFiles 21 | OutputMedium4=Video 22 | OutputMedium4_Type=Multimedia 23 | OutputType1=Schematic Print 24 | OutputName1=Schematic Prints 25 | OutputCategory1=Documentation 26 | OutputDocumentPath1=[Project Physical Documents] 27 | OutputVariantName1=[No Variations] 28 | OutputEnabled1=1 29 | OutputEnabled1_OutputMedium1=0 30 | OutputEnabled1_OutputMedium2=1 31 | OutputEnabled1_OutputMedium3=0 32 | OutputEnabled1_OutputMedium4=0 33 | OutputDefault1=0 34 | PageOptions1=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=0.72|XCorrection=1.00|YCorrection=1.00|PrintKind=0|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 35 | Configuration1_Name1=OutputConfigurationParameter1 36 | Configuration1_Item1=Record=SchPrintView|ShowNoERC=True|ShowParamSet=True|ShowProbe=True|ShowBlanket=True|NoERCSymbolsToShow="Thin Cross","Thick Cross","Small Cross",Checkbox,Triangle|ShowNote=True|ShowNoteCollapsed=True|ShowOpenEnds=True|ExpandDesignator=True|ExpandNetLabel=False|ExpandPort=False|ExpandSheetNum=False|ExpandDocNum=False|PrintArea=0|PrintAreaRect.X1=0|PrintAreaRect.Y1=0|PrintAreaRect.X2=0|PrintAreaRect.Y2=0|DocumentPath= 37 | OutputType2=PCB Print 38 | OutputName2=PCB Prints 39 | OutputCategory2=Documentation 40 | OutputDocumentPath2=wisp-6-dipole.PcbDoc 41 | OutputVariantName2= 42 | OutputEnabled2=1 43 | OutputEnabled2_OutputMedium1=0 44 | OutputEnabled2_OutputMedium2=2 45 | OutputEnabled2_OutputMedium3=0 46 | OutputEnabled2_OutputMedium4=0 47 | OutputDefault2=0 48 | PageOptions2=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.43|XCorrection=1.00|YCorrection=1.00|PrintKind=0|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 49 | Configuration2_Name1=OutputConfigurationParameter1 50 | Configuration2_Item1=DesignatorDisplayMode=Physical|PrintArea=DesignExtent|PrintAreaLowerLeftCornerX=0|PrintAreaLowerLeftCornerY=0|PrintAreaUpperRightCornerX=0|PrintAreaUpperRightCornerY=0|Record=PcbPrintView|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0 V2\wisp-6-dipole.PcbDoc 51 | Configuration2_Name2=OutputConfigurationParameter2 52 | Configuration2_Item2=IncludeBoardCutouts=False|IncludeBottomLayerComponents=True|IncludeMultiLayerComponents=True|IncludeTopLayerComponents=True|IncludeViewports=True|Index=0|Mirror=False|Name=Multilayer Composite Print|PadNumberFontSize=14|Record=PcbPrintOut|ShowHoles=False|ShowPadNets=False|ShowPadNumbers=False|SubstituteFonts=False|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0 V2\wisp-6-dipole.PcbDoc 53 | Configuration2_Name3=OutputConfigurationParameter3 54 | Configuration2_Item3=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=TopOverlay|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0 V2\wisp-6-dipole.PcbDoc 55 | Configuration2_Name4=OutputConfigurationParameter4 56 | Configuration2_Item4=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=TopLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0 V2\wisp-6-dipole.PcbDoc 57 | Configuration2_Name5=OutputConfigurationParameter5 58 | Configuration2_Item5=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=MidLayer1|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0 V2\wisp-6-dipole.PcbDoc 59 | Configuration2_Name6=OutputConfigurationParameter6 60 | Configuration2_Item6=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=MidLayer2|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0 V2\wisp-6-dipole.PcbDoc 61 | Configuration2_Name7=OutputConfigurationParameter7 62 | Configuration2_Item7=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=BottomLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0 V2\wisp-6-dipole.PcbDoc 63 | Configuration2_Name8=OutputConfigurationParameter8 64 | Configuration2_Item8=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=MultiLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0 V2\wisp-6-dipole.PcbDoc 65 | Configuration2_Name9=OutputConfigurationParameter9 66 | Configuration2_Item9=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=BottomOverlay|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0 V2\wisp-6-dipole.PcbDoc 67 | Configuration2_Name10=OutputConfigurationParameter10 68 | Configuration2_Item10=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical1|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0 V2\wisp-6-dipole.PcbDoc 69 | Configuration2_Name11=OutputConfigurationParameter11 70 | Configuration2_Item11=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical3|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0 V2\wisp-6-dipole.PcbDoc 71 | Configuration2_Name12=OutputConfigurationParameter12 72 | Configuration2_Item12=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical5|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0 V2\wisp-6-dipole.PcbDoc 73 | Configuration2_Name13=OutputConfigurationParameter13 74 | Configuration2_Item13=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical13|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0 V2\wisp-6-dipole.PcbDoc 75 | Configuration2_Name14=OutputConfigurationParameter14 76 | Configuration2_Item14=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical15|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0 V2\wisp-6-dipole.PcbDoc 77 | PcbPrintPreferences2= 78 | 79 | [PublishSettings] 80 | OutputFilePath2=Z:\wisp6\wisp-6-0\wisp-6-0 V2\.PDF 81 | ReleaseManaged2=0 82 | OutputBasePath2=Z:\wisp6\wisp-6-0\wisp-6-0 V2\ 83 | OutputPathMedia2= 84 | OutputPathMediaValue2= 85 | OutputPathOutputer2=[Output Type] 86 | OutputPathOutputerPrefix2= 87 | OutputPathOutputerValue2= 88 | OutputFileName2=wisp-6.0V2.pdf 89 | OutputFileNameMulti2= 90 | UseOutputNameForMulti2=1 91 | OutputFileNameSpecial2= 92 | OpenOutput2=1 93 | PromptOverwrite2=1 94 | PublishMethod2=0 95 | ZoomLevel2=50 96 | FitSCHPrintSizeToDoc2=0 97 | FitPCBPrintSizeToDoc2=0 98 | GenerateNetsInfo2=1 99 | MarkPins2=1 100 | MarkNetLabels2=1 101 | MarkPortsId2=1 102 | GenerateTOC2=1 103 | ShowComponentParameters2=1 104 | GlobalBookmarks2=0 105 | PDFACompliance2=Disabled 106 | PDFVersion2=Default 107 | OutputFilePath3= 108 | ReleaseManaged3=1 109 | OutputBasePath3= 110 | OutputPathMedia3= 111 | OutputPathMediaValue3= 112 | OutputPathOutputer3=[Output Type] 113 | OutputPathOutputerPrefix3= 114 | OutputPathOutputerValue3= 115 | OutputFileName3= 116 | OutputFileNameMulti3= 117 | UseOutputNameForMulti3=1 118 | OutputFileNameSpecial3= 119 | OpenOutput3=1 120 | OutputFilePath4= 121 | ReleaseManaged4=1 122 | OutputBasePath4= 123 | OutputPathMedia4= 124 | OutputPathMediaValue4= 125 | OutputPathOutputer4=[Output Type] 126 | OutputPathOutputerPrefix4= 127 | OutputPathOutputerValue4= 128 | OutputFileName4= 129 | OutputFileNameMulti4= 130 | UseOutputNameForMulti4=1 131 | OutputFileNameSpecial4= 132 | OpenOutput4=1 133 | PromptOverwrite4=1 134 | PublishMethod4=5 135 | ZoomLevel4=50 136 | FitSCHPrintSizeToDoc4=1 137 | FitPCBPrintSizeToDoc4=1 138 | GenerateNetsInfo4=1 139 | MarkPins4=1 140 | MarkNetLabels4=1 141 | MarkPortsId4=1 142 | MediaFormat4=Windows Media file (*.wmv,*.wma,*.asf) 143 | FixedDimensions4=1 144 | Width4=352 145 | Height4=288 146 | MultiFile4=0 147 | FramesPerSecond4=25 148 | FramesPerSecondDenom4=1 149 | AviPixelFormat4=7 150 | AviCompression4=MP42 MS-MPEG4 V2 151 | AviQuality4=100 152 | FFmpegVideoCodecId4=12 153 | FFmpegPixelFormat4=0 154 | FFmpegQuality4=80 155 | WmvVideoCodecName4=Windows Media Video V7 156 | WmvQuality4=80 157 | 158 | [GeneratedFilesSettings] 159 | RelativeOutputPath2=Z:\wisp6\wisp-6-0\wisp-6-0 V2\.PDF 160 | OpenOutputs2=1 161 | RelativeOutputPath3= 162 | OpenOutputs3=1 163 | AddToProject3=1 164 | TimestampFolder3=0 165 | UseOutputName3=0 166 | OpenODBOutput3=0 167 | OpenGerberOutput3=0 168 | OpenNCDrillOutput3=0 169 | OpenIPCOutput3=0 170 | EnableReload3=0 171 | RelativeOutputPath4= 172 | OpenOutputs4=1 173 | 174 | -------------------------------------------------------------------------------- /Basic Node/wisp-6.0V2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wisp/wisp6-hardware/b3402b5a4a9843f840eadc495710a15e2e6c99c8/Basic Node/wisp-6.0V2.pdf -------------------------------------------------------------------------------- /Basic Node/wisp-6.PcbDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wisp/wisp6-hardware/b3402b5a4a9843f840eadc495710a15e2e6c99c8/Basic Node/wisp-6.PcbDoc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # wisp6-hardware 2 | Altium design files for WISP 6, including the basic sensor node and add-on boards 3 | -------------------------------------------------------------------------------- /addon_boards/Accl/.gitignore: -------------------------------------------------------------------------------- 1 | History/* 2 | Project Logs for */* 3 | Project Outputs for */* 4 | *.htm 5 | *.LOG 6 | *Preview 7 | *viewstate 8 | *.Dat 9 | *.pdf 10 | *.OutJob 11 | __Previews/* 12 | *.PrjPcbStructure 13 | -------------------------------------------------------------------------------- /addon_boards/Accl/CAMtastic1.Cam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wisp/wisp6-hardware/b3402b5a4a9843f840eadc495710a15e2e6c99c8/addon_boards/Accl/CAMtastic1.Cam -------------------------------------------------------------------------------- /addon_boards/Accl/CAMtastic2.Cam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wisp/wisp6-hardware/b3402b5a4a9843f840eadc495710a15e2e6c99c8/addon_boards/Accl/CAMtastic2.Cam -------------------------------------------------------------------------------- /addon_boards/Accl/CAMtastic3.Cam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wisp/wisp6-hardware/b3402b5a4a9843f840eadc495710a15e2e6c99c8/addon_boards/Accl/CAMtastic3.Cam -------------------------------------------------------------------------------- /addon_boards/Accl/IMU.PcbDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wisp/wisp6-hardware/b3402b5a4a9843f840eadc495710a15e2e6c99c8/addon_boards/Accl/IMU.PcbDoc -------------------------------------------------------------------------------- /addon_boards/Accl/IMU.PrjPCB: -------------------------------------------------------------------------------- 1 | [Design] 2 | Version=1.0 3 | HierarchyMode=0 4 | ChannelRoomNamingStyle=0 5 | ReleasesFolder= 6 | ChannelDesignatorFormatString=$Component_$RoomName 7 | ChannelRoomLevelSeperator=_ 8 | OpenOutputs=1 9 | ArchiveProject=0 10 | TimestampOutput=0 11 | SeparateFolders=0 12 | TemplateLocationPath= 13 | PinSwapBy_Netlabel=1 14 | PinSwapBy_Pin=1 15 | AllowPortNetNames=0 16 | AllowSheetEntryNetNames=1 17 | AppendSheetNumberToLocalNets=0 18 | NetlistSinglePinNets=0 19 | DefaultConfiguration=Sources 20 | UserID=0xFFFFFFFF 21 | DefaultPcbProtel=1 22 | DefaultPcbPcad=0 23 | ReorderDocumentsOnCompile=1 24 | NameNetsHierarchically=0 25 | PowerPortNamesTakePriority=0 26 | AutoSheetNumbering=0 27 | AutoCrossReferences=0 28 | NewIndexingOfSheetSymbols=0 29 | PushECOToAnnotationFile=1 30 | DItemRevisionGUID= 31 | ReportSuppressedErrorsInMessages=0 32 | FSMCodingStyle=eFMSDropDownList_OneProcess 33 | FSMEncodingStyle=eFMSDropDownList_OneHot 34 | IsProjectConflictPreventionWarningsEnabled=1 35 | IsVirtualBomDocumentRemoved=0 36 | OutputPath= 37 | LogFolderPath= 38 | ManagedProjectGUID= 39 | IncludeDesignInRelease=0 40 | CrossRefSheetStyle=1 41 | CrossRefLocationStyle=1 42 | CrossRefPorts=3 43 | CrossRefCrossSheets=1 44 | CrossRefSheetEntries=0 45 | CrossRefFollowFromMainSettings=1 46 | 47 | [Preferences] 48 | PrefsVaultGUID= 49 | PrefsRevisionGUID= 50 | 51 | [Document1] 52 | DocumentPath=IMU.SchDoc 53 | AnnotationEnabled=1 54 | AnnotateStartValue=0 55 | AnnotationIndexControlEnabled=1 56 | AnnotateSuffix= 57 | AnnotateScope=All 58 | AnnotateOrder=0 59 | DoLibraryUpdate=1 60 | DoDatabaseUpdate=1 61 | ClassGenCCAutoEnabled=1 62 | ClassGenCCAutoRoomEnabled=1 63 | ClassGenNCAutoScope=None 64 | DItemRevisionGUID= 65 | GenerateClassCluster=0 66 | DocumentUniqueId=RYCXVQXR 67 | 68 | [Document2] 69 | DocumentPath=IMU.PcbDoc 70 | AnnotationEnabled=1 71 | AnnotateStartValue=1 72 | AnnotationIndexControlEnabled=0 73 | AnnotateSuffix= 74 | AnnotateScope=All 75 | AnnotateOrder=-1 76 | DoLibraryUpdate=1 77 | DoDatabaseUpdate=1 78 | ClassGenCCAutoEnabled=1 79 | ClassGenCCAutoRoomEnabled=1 80 | ClassGenNCAutoScope=None 81 | DItemRevisionGUID= 82 | GenerateClassCluster=0 83 | DocumentUniqueId=ENYCKMQY 84 | 85 | [Document3] 86 | DocumentPath=..\..\libraries\ADG902BRMZ.SchLib 87 | AnnotationEnabled=1 88 | AnnotateStartValue=1 89 | AnnotationIndexControlEnabled=0 90 | AnnotateSuffix= 91 | AnnotateScope=All 92 | AnnotateOrder=-1 93 | DoLibraryUpdate=1 94 | DoDatabaseUpdate=1 95 | ClassGenCCAutoEnabled=1 96 | ClassGenCCAutoRoomEnabled=1 97 | ClassGenNCAutoScope=None 98 | DItemRevisionGUID= 99 | GenerateClassCluster=0 100 | DocumentUniqueId=SJRJBANN 101 | 102 | [Document4] 103 | DocumentPath=..\..\libraries\BGA4C2X2X50P_117X117X42.PcbLib 104 | AnnotationEnabled=1 105 | AnnotateStartValue=1 106 | AnnotationIndexControlEnabled=0 107 | AnnotateSuffix= 108 | AnnotateScope=All 109 | AnnotateOrder=-1 110 | DoLibraryUpdate=1 111 | DoDatabaseUpdate=1 112 | ClassGenCCAutoEnabled=1 113 | ClassGenCCAutoRoomEnabled=1 114 | ClassGenNCAutoScope=None 115 | DItemRevisionGUID= 116 | GenerateClassCluster=0 117 | DocumentUniqueId= 118 | 119 | [Document5] 120 | DocumentPath=..\..\libraries\BLE.PcbLib 121 | AnnotationEnabled=1 122 | AnnotateStartValue=1 123 | AnnotationIndexControlEnabled=0 124 | AnnotateSuffix= 125 | AnnotateScope=All 126 | AnnotateOrder=-1 127 | DoLibraryUpdate=1 128 | DoDatabaseUpdate=1 129 | ClassGenCCAutoEnabled=1 130 | ClassGenCCAutoRoomEnabled=1 131 | ClassGenNCAutoScope=None 132 | DItemRevisionGUID= 133 | GenerateClassCluster=0 134 | DocumentUniqueId= 135 | 136 | [Document6] 137 | DocumentPath=..\..\libraries\BLE.SchLib 138 | AnnotationEnabled=1 139 | AnnotateStartValue=1 140 | AnnotationIndexControlEnabled=0 141 | AnnotateSuffix= 142 | AnnotateScope=All 143 | AnnotateOrder=-1 144 | DoLibraryUpdate=1 145 | DoDatabaseUpdate=1 146 | ClassGenCCAutoEnabled=1 147 | ClassGenCCAutoRoomEnabled=1 148 | ClassGenNCAutoScope=None 149 | DItemRevisionGUID= 150 | GenerateClassCluster=0 151 | DocumentUniqueId=HDJKCVNB 152 | 153 | [Document7] 154 | DocumentPath=..\..\libraries\CAPPRD500W60D1000H3200.PcbLib 155 | AnnotationEnabled=1 156 | AnnotateStartValue=1 157 | AnnotationIndexControlEnabled=0 158 | AnnotateSuffix= 159 | AnnotateScope=All 160 | AnnotateOrder=-1 161 | DoLibraryUpdate=1 162 | DoDatabaseUpdate=1 163 | ClassGenCCAutoEnabled=1 164 | ClassGenCCAutoRoomEnabled=1 165 | ClassGenNCAutoScope=None 166 | DItemRevisionGUID= 167 | GenerateClassCluster=0 168 | DocumentUniqueId= 169 | 170 | [Document8] 171 | DocumentPath=..\..\libraries\FDY1002PZ.SchLib 172 | AnnotationEnabled=1 173 | AnnotateStartValue=1 174 | AnnotationIndexControlEnabled=0 175 | AnnotateSuffix= 176 | AnnotateScope=All 177 | AnnotateOrder=-1 178 | DoLibraryUpdate=1 179 | DoDatabaseUpdate=1 180 | ClassGenCCAutoEnabled=1 181 | ClassGenCCAutoRoomEnabled=1 182 | ClassGenNCAutoScope=None 183 | DItemRevisionGUID= 184 | GenerateClassCluster=0 185 | DocumentUniqueId=ASSCAGEL 186 | 187 | [Document9] 188 | DocumentPath=..\..\libraries\HDC2010YPAR.PcbLib 189 | AnnotationEnabled=1 190 | AnnotateStartValue=1 191 | AnnotationIndexControlEnabled=0 192 | AnnotateSuffix= 193 | AnnotateScope=All 194 | AnnotateOrder=-1 195 | DoLibraryUpdate=1 196 | DoDatabaseUpdate=1 197 | ClassGenCCAutoEnabled=1 198 | ClassGenCCAutoRoomEnabled=1 199 | ClassGenNCAutoScope=None 200 | DItemRevisionGUID= 201 | GenerateClassCluster=0 202 | DocumentUniqueId= 203 | 204 | [Document10] 205 | DocumentPath=..\..\libraries\HDC2010YPAR.SchLib 206 | AnnotationEnabled=1 207 | AnnotateStartValue=1 208 | AnnotationIndexControlEnabled=0 209 | AnnotateSuffix= 210 | AnnotateScope=All 211 | AnnotateOrder=-1 212 | DoLibraryUpdate=1 213 | DoDatabaseUpdate=1 214 | ClassGenCCAutoEnabled=1 215 | ClassGenCCAutoRoomEnabled=1 216 | ClassGenNCAutoScope=None 217 | DItemRevisionGUID= 218 | GenerateClassCluster=0 219 | DocumentUniqueId=JVHTISAB 220 | 221 | [Document11] 222 | DocumentPath=..\..\libraries\LMV1032URX-25_NOPB.SchLib 223 | AnnotationEnabled=1 224 | AnnotateStartValue=1 225 | AnnotationIndexControlEnabled=0 226 | AnnotateSuffix= 227 | AnnotateScope=All 228 | AnnotateOrder=-1 229 | DoLibraryUpdate=1 230 | DoDatabaseUpdate=1 231 | ClassGenCCAutoEnabled=1 232 | ClassGenCCAutoRoomEnabled=1 233 | ClassGenNCAutoScope=None 234 | DItemRevisionGUID= 235 | GenerateClassCluster=0 236 | DocumentUniqueId=TDNIJYEK 237 | 238 | [Document12] 239 | DocumentPath=..\..\libraries\MAX4466EXK.PcbLib 240 | AnnotationEnabled=1 241 | AnnotateStartValue=1 242 | AnnotationIndexControlEnabled=0 243 | AnnotateSuffix= 244 | AnnotateScope=All 245 | AnnotateOrder=-1 246 | DoLibraryUpdate=1 247 | DoDatabaseUpdate=1 248 | ClassGenCCAutoEnabled=1 249 | ClassGenCCAutoRoomEnabled=1 250 | ClassGenNCAutoScope=None 251 | DItemRevisionGUID= 252 | GenerateClassCluster=0 253 | DocumentUniqueId= 254 | 255 | [Document13] 256 | DocumentPath=..\..\libraries\SOP65P490X110-8N.PcbLib 257 | AnnotationEnabled=1 258 | AnnotateStartValue=1 259 | AnnotationIndexControlEnabled=0 260 | AnnotateSuffix= 261 | AnnotateScope=All 262 | AnnotateOrder=-1 263 | DoLibraryUpdate=1 264 | DoDatabaseUpdate=1 265 | ClassGenCCAutoEnabled=1 266 | ClassGenCCAutoRoomEnabled=1 267 | ClassGenNCAutoScope=None 268 | DItemRevisionGUID= 269 | GenerateClassCluster=0 270 | DocumentUniqueId= 271 | 272 | [Document14] 273 | DocumentPath=..\..\libraries\SOT50P160X60-6N.PcbLib 274 | AnnotationEnabled=1 275 | AnnotateStartValue=1 276 | AnnotationIndexControlEnabled=0 277 | AnnotateSuffix= 278 | AnnotateScope=All 279 | AnnotateOrder=-1 280 | DoLibraryUpdate=1 281 | DoDatabaseUpdate=1 282 | ClassGenCCAutoEnabled=1 283 | ClassGenCCAutoRoomEnabled=1 284 | ClassGenNCAutoScope=None 285 | DItemRevisionGUID= 286 | GenerateClassCluster=0 287 | DocumentUniqueId= 288 | 289 | [Document15] 290 | DocumentPath=..\..\libraries\WISP_AD10.PcbLib 291 | AnnotationEnabled=1 292 | AnnotateStartValue=1 293 | AnnotationIndexControlEnabled=0 294 | AnnotateSuffix= 295 | AnnotateScope=All 296 | AnnotateOrder=-1 297 | DoLibraryUpdate=1 298 | DoDatabaseUpdate=1 299 | ClassGenCCAutoEnabled=1 300 | ClassGenCCAutoRoomEnabled=1 301 | ClassGenNCAutoScope=None 302 | DItemRevisionGUID= 303 | GenerateClassCluster=0 304 | DocumentUniqueId= 305 | 306 | [Document16] 307 | DocumentPath=..\..\libraries\WISP_AD10.SchLib 308 | AnnotationEnabled=1 309 | AnnotateStartValue=1 310 | AnnotationIndexControlEnabled=0 311 | AnnotateSuffix= 312 | AnnotateScope=All 313 | AnnotateOrder=-1 314 | DoLibraryUpdate=1 315 | DoDatabaseUpdate=1 316 | ClassGenCCAutoEnabled=1 317 | ClassGenCCAutoRoomEnabled=1 318 | ClassGenNCAutoScope=None 319 | DItemRevisionGUID= 320 | GenerateClassCluster=0 321 | DocumentUniqueId=GFIUJIGD 322 | 323 | [Document17] 324 | DocumentPath=CAMtastic1.Cam 325 | AnnotationEnabled=1 326 | AnnotateStartValue=1 327 | AnnotationIndexControlEnabled=0 328 | AnnotateSuffix= 329 | AnnotateScope=All 330 | AnnotateOrder=-1 331 | DoLibraryUpdate=1 332 | DoDatabaseUpdate=1 333 | ClassGenCCAutoEnabled=1 334 | ClassGenCCAutoRoomEnabled=1 335 | ClassGenNCAutoScope=None 336 | DItemRevisionGUID= 337 | GenerateClassCluster=0 338 | DocumentUniqueId= 339 | 340 | [Document18] 341 | DocumentPath=CAMtastic2.Cam 342 | AnnotationEnabled=1 343 | AnnotateStartValue=1 344 | AnnotationIndexControlEnabled=0 345 | AnnotateSuffix= 346 | AnnotateScope=All 347 | AnnotateOrder=-1 348 | DoLibraryUpdate=1 349 | DoDatabaseUpdate=1 350 | ClassGenCCAutoEnabled=1 351 | ClassGenCCAutoRoomEnabled=1 352 | ClassGenNCAutoScope=None 353 | DItemRevisionGUID= 354 | GenerateClassCluster=0 355 | DocumentUniqueId= 356 | 357 | [Document19] 358 | DocumentPath=CAMtastic3.Cam 359 | AnnotationEnabled=1 360 | AnnotateStartValue=1 361 | AnnotationIndexControlEnabled=0 362 | AnnotateSuffix= 363 | AnnotateScope=All 364 | AnnotateOrder=-1 365 | DoLibraryUpdate=1 366 | DoDatabaseUpdate=1 367 | ClassGenCCAutoEnabled=1 368 | ClassGenCCAutoRoomEnabled=1 369 | ClassGenNCAutoScope=None 370 | DItemRevisionGUID= 371 | GenerateClassCluster=0 372 | DocumentUniqueId= 373 | 374 | [GeneratedDocument1] 375 | DocumentPath=Project Outputs for IMU\Design Rule Check - IMU.html 376 | DItemRevisionGUID= 377 | 378 | [GeneratedDocument2] 379 | DocumentPath=Project Outputs for IMU\IMU.DRR 380 | DItemRevisionGUID= 381 | 382 | [GeneratedDocument3] 383 | DocumentPath=Project Outputs for IMU\IMU.EXTREP 384 | DItemRevisionGUID= 385 | 386 | [GeneratedDocument4] 387 | DocumentPath=Project Outputs for IMU\IMU.LDP 388 | DItemRevisionGUID= 389 | 390 | [GeneratedDocument5] 391 | DocumentPath=Project Outputs for IMU\IMU.REP 392 | DItemRevisionGUID= 393 | 394 | [GeneratedDocument6] 395 | DocumentPath=Project Outputs for IMU\IMU.RUL 396 | DItemRevisionGUID= 397 | 398 | [GeneratedDocument7] 399 | DocumentPath=Project Outputs for IMU\IMU.TXT 400 | DItemRevisionGUID= 401 | 402 | [GeneratedDocument8] 403 | DocumentPath=Project Outputs for IMU\IMU_Copper_Signal_1.gbr 404 | DItemRevisionGUID= 405 | 406 | [GeneratedDocument9] 407 | DocumentPath=Project Outputs for IMU\IMU_Copper_Signal_2.gbr 408 | DItemRevisionGUID= 409 | 410 | [GeneratedDocument10] 411 | DocumentPath=Project Outputs for IMU\IMU_Copper_Signal_Bot.gbr 412 | DItemRevisionGUID= 413 | 414 | [GeneratedDocument11] 415 | DocumentPath=Project Outputs for IMU\IMU_Copper_Signal_Top.gbr 416 | DItemRevisionGUID= 417 | 418 | [GeneratedDocument12] 419 | DocumentPath=Project Outputs for IMU\IMU_Keep-out.gbr 420 | DItemRevisionGUID= 421 | 422 | [GeneratedDocument13] 423 | DocumentPath=Project Outputs for IMU\IMU_Legend_Bot.gbr 424 | DItemRevisionGUID= 425 | 426 | [GeneratedDocument14] 427 | DocumentPath=Project Outputs for IMU\IMU_Legend_Top.gbr 428 | DItemRevisionGUID= 429 | 430 | [GeneratedDocument15] 431 | DocumentPath=Project Outputs for IMU\IMU_Mechanical_1.gbr 432 | DItemRevisionGUID= 433 | 434 | [GeneratedDocument16] 435 | DocumentPath=Project Outputs for IMU\IMU_Mechanical_13.gbr 436 | DItemRevisionGUID= 437 | 438 | [GeneratedDocument17] 439 | DocumentPath=Project Outputs for IMU\IMU_Mechanical_15.gbr 440 | DItemRevisionGUID= 441 | 442 | [GeneratedDocument18] 443 | DocumentPath=Project Outputs for IMU\IMU_Pads_Bot.gbr 444 | DItemRevisionGUID= 445 | 446 | [GeneratedDocument19] 447 | DocumentPath=Project Outputs for IMU\IMU_Pads_Top.gbr 448 | DItemRevisionGUID= 449 | 450 | [GeneratedDocument20] 451 | DocumentPath=Project Outputs for IMU\IMU_Paste_Top.gbr 452 | DItemRevisionGUID= 453 | 454 | [GeneratedDocument21] 455 | DocumentPath=Project Outputs for IMU\IMU_Profile.gbr 456 | DItemRevisionGUID= 457 | 458 | [GeneratedDocument22] 459 | DocumentPath=Project Outputs for IMU\IMU_Soldermask_Bot.gbr 460 | DItemRevisionGUID= 461 | 462 | [GeneratedDocument23] 463 | DocumentPath=Project Outputs for IMU\IMU_Soldermask_Top.gbr 464 | DItemRevisionGUID= 465 | 466 | [Configuration1] 467 | Name=Sources 468 | ParameterCount=0 469 | ConstraintFileCount=0 470 | ReleaseItemId= 471 | Variant=[No Variations] 472 | OutputJobsCount=0 473 | ContentTypeGUID=CB6F2064-E317-11DF-B822-12313F0024A2 474 | ConfigurationType=Source 475 | 476 | [Generic_SmartPDF] 477 | AutoOpenFile=-1 478 | AutoOpenOutJob=-1 479 | 480 | [Generic_SmartPDFSettings] 481 | ProjectMode=-1 482 | ZoomPrecision=50 483 | AddNetsInformation=-1 484 | AddNetPins=-1 485 | AddNetNetLabels=-1 486 | AddNetPorts=-1 487 | ShowComponentParameters=-1 488 | GlobalBookmarks=0 489 | ExportBOM=-1 490 | TemplateFilename= 491 | TemplateStoreRelative=-1 492 | PCB_PrintColor=0 493 | SCH_PrintColor=0 494 | PrintQuality=-4 495 | SCH_ShowNoErc=-1 496 | SCH_ShowParameter=-1 497 | SCH_ShowProbes=-1 498 | SCH_ShowBlankets=-1 499 | SCH_NoERCSymbolsToShow="Thin Cross","Thick Cross","Small Cross",Checkbox,Triangle 500 | SCH_ShowNote=-1 501 | SCH_ShowNoteCollapsed=-1 502 | Wir_PrintColor=0 503 | Ldr_PrintColor=0 504 | SCH_ExpandLogicalToPhysical=-1 505 | SCH_VariantName=[No Variations] 506 | SCH_ExpandComponentDesignators=-1 507 | SCH_ExpandNetlabels=0 508 | SCH_ExpandPorts=0 509 | SCH_ExpandSheetNumber=0 510 | SCH_ExpandDocumentNumber=0 511 | SCH_HasExpandLogicalToPhysicalSheets=-1 512 | SaveSettingsToOutJob=0 513 | 514 | [Generic_EDE] 515 | OutputDir= 516 | 517 | [OutputGroup1] 518 | Name=Netlist Outputs 519 | Description= 520 | TargetPrinter=\\rps\psc381 521 | PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 522 | OutputType1=CadnetixNetlist 523 | OutputName1=Cadnetix Netlist 524 | OutputDocumentPath1= 525 | OutputVariantName1= 526 | OutputDefault1=0 527 | OutputType2=CalayNetlist 528 | OutputName2=Calay Netlist 529 | OutputDocumentPath2= 530 | OutputVariantName2= 531 | OutputDefault2=0 532 | OutputType3=EDIF 533 | OutputName3=EDIF for PCB 534 | OutputDocumentPath3= 535 | OutputVariantName3= 536 | OutputDefault3=0 537 | OutputType4=EESofNetlist 538 | OutputName4=EESof Netlist 539 | OutputDocumentPath4= 540 | OutputVariantName4= 541 | OutputDefault4=0 542 | OutputType5=IntergraphNetlist 543 | OutputName5=Intergraph Netlist 544 | OutputDocumentPath5= 545 | OutputVariantName5= 546 | OutputDefault5=0 547 | OutputType6=MentorBoardStationNetlist 548 | OutputName6=Mentor BoardStation Netlist 549 | OutputDocumentPath6= 550 | OutputVariantName6= 551 | OutputDefault6=0 552 | OutputType7=MultiWire 553 | OutputName7=MultiWire 554 | OutputDocumentPath7= 555 | OutputVariantName7= 556 | OutputDefault7=0 557 | OutputType8=OrCadPCB2Netlist 558 | OutputName8=Orcad/PCB2 Netlist 559 | OutputDocumentPath8= 560 | OutputVariantName8= 561 | OutputDefault8=0 562 | OutputType9=PADSNetlist 563 | OutputName9=PADS ASCII Netlist 564 | OutputDocumentPath9= 565 | OutputVariantName9= 566 | OutputDefault9=0 567 | OutputType10=Pcad 568 | OutputName10=Pcad for PCB 569 | OutputDocumentPath10= 570 | OutputVariantName10= 571 | OutputDefault10=0 572 | OutputType11=PCADNetlist 573 | OutputName11=PCAD Netlist 574 | OutputDocumentPath11= 575 | OutputVariantName11= 576 | OutputDefault11=0 577 | OutputType12=PCADnltNetlist 578 | OutputName12=PCADnlt Netlist 579 | OutputDocumentPath12= 580 | OutputVariantName12= 581 | OutputDefault12=0 582 | OutputType13=Protel2Netlist 583 | OutputName13=Protel2 Netlist 584 | OutputDocumentPath13= 585 | OutputVariantName13= 586 | OutputDefault13=0 587 | OutputType14=ProtelNetlist 588 | OutputName14=Protel 589 | OutputDocumentPath14= 590 | OutputVariantName14= 591 | OutputDefault14=0 592 | OutputType15=RacalNetlist 593 | OutputName15=Racal Netlist 594 | OutputDocumentPath15= 595 | OutputVariantName15= 596 | OutputDefault15=0 597 | OutputType16=RINFNetlist 598 | OutputName16=RINF Netlist 599 | OutputDocumentPath16= 600 | OutputVariantName16= 601 | OutputDefault16=0 602 | OutputType17=SciCardsNetlist 603 | OutputName17=SciCards Netlist 604 | OutputDocumentPath17= 605 | OutputVariantName17= 606 | OutputDefault17=0 607 | OutputType18=TangoNetlist 608 | OutputName18=Tango Netlist 609 | OutputDocumentPath18= 610 | OutputVariantName18= 611 | OutputDefault18=0 612 | OutputType19=TelesisNetlist 613 | OutputName19=Telesis Netlist 614 | OutputDocumentPath19= 615 | OutputVariantName19= 616 | OutputDefault19=0 617 | OutputType20=WireListNetlist 618 | OutputName20=WireList Netlist 619 | OutputDocumentPath20= 620 | OutputVariantName20= 621 | OutputDefault20=0 622 | OutputType21=XSpiceNetlist 623 | OutputName21=Mixed Sim Netlist 624 | OutputDocumentPath21= 625 | OutputVariantName21= 626 | OutputDefault21=0 627 | 628 | [OutputGroup2] 629 | Name=Simulator Outputs 630 | Description= 631 | TargetPrinter=\\rps\psc381 632 | PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 633 | OutputType1=AdvSimNetlist 634 | OutputName1=Mixed Sim 635 | OutputDocumentPath1= 636 | OutputVariantName1= 637 | OutputDefault1=0 638 | 639 | [OutputGroup3] 640 | Name=Documentation Outputs 641 | Description= 642 | TargetPrinter=Virtual Printer 643 | PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 644 | OutputType1=Composite 645 | OutputName1=Composite Drawing 646 | OutputDocumentPath1= 647 | OutputVariantName1=[No Variations] 648 | OutputDefault1=0 649 | PageOptions1=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 650 | OutputType2=PCB 3D Print 651 | OutputName2=PCB 3D Print 652 | OutputDocumentPath2= 653 | OutputVariantName2=[No Variations] 654 | OutputDefault2=0 655 | PageOptions2=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 656 | OutputType3=PCB 3D Video 657 | OutputName3=PCB 3D Video 658 | OutputDocumentPath3= 659 | OutputVariantName3=[No Variations] 660 | OutputDefault3=0 661 | PageOptions3=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 662 | OutputType4=PCB Print 663 | OutputName4=PCB Prints 664 | OutputDocumentPath4= 665 | OutputVariantName4=[No Variations] 666 | OutputDefault4=0 667 | PageOptions4=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 668 | OutputType5=PCBDrawing 669 | OutputName5=Draftsman 670 | OutputDocumentPath5= 671 | OutputVariantName5=[No Variations] 672 | OutputDefault5=0 673 | PageOptions5=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 674 | OutputType6=PCBLIB Print 675 | OutputName6=PCBLIB Prints 676 | OutputDocumentPath6= 677 | OutputVariantName6=[No Variations] 678 | OutputDefault6=0 679 | PageOptions6=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 680 | OutputType7=PDF3D 681 | OutputName7=PDF3D 682 | OutputDocumentPath7= 683 | OutputVariantName7=[No Variations] 684 | OutputDefault7=0 685 | PageOptions7=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 686 | OutputType8=Report Print 687 | OutputName8=Report Prints 688 | OutputDocumentPath8= 689 | OutputVariantName8= 690 | OutputDefault8=0 691 | PageOptions8=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 692 | OutputType9=Schematic Print 693 | OutputName9=Schematic Prints 694 | OutputDocumentPath9= 695 | OutputVariantName9= 696 | OutputDefault9=0 697 | PageOptions9=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 698 | OutputType10=SimView Print 699 | OutputName10=SimView Prints 700 | OutputDocumentPath10= 701 | OutputVariantName10= 702 | OutputDefault10=0 703 | PageOptions10=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 704 | OutputType11=PDF3D MBA 705 | OutputName11=PDF3D MBA 706 | OutputDocumentPath11= 707 | OutputVariantName11= 708 | OutputDefault11=0 709 | PageOptions11=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 710 | OutputType12=Harness Layout Drawing Print 711 | OutputName12=Harness Layout Drawing Prints 712 | OutputDocumentPath12= 713 | OutputVariantName12= 714 | OutputDefault12=0 715 | PageOptions12=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 716 | OutputType13=Harness Wiring Diagram Print 717 | OutputName13=Harness Wiring Diagram Prints 718 | OutputDocumentPath13= 719 | OutputVariantName13= 720 | OutputDefault13=0 721 | PageOptions13=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 722 | 723 | [OutputGroup4] 724 | Name=Assembly Outputs 725 | Description= 726 | TargetPrinter=\\rps\psc381 727 | PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 728 | OutputType1=Assembly 729 | OutputName1=Assembly Drawings 730 | OutputDocumentPath1= 731 | OutputVariantName1=[No Variations] 732 | OutputDefault1=0 733 | PageOptions1=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 734 | OutputType2=Pick Place 735 | OutputName2=Generates pick and place files 736 | OutputDocumentPath2= 737 | OutputVariantName2=[No Variations] 738 | OutputDefault2=0 739 | OutputType3=Test Points For Assembly 740 | OutputName3=Test Point Report 741 | OutputDocumentPath3= 742 | OutputVariantName3=[No Variations] 743 | OutputDefault3=0 744 | 745 | [OutputGroup5] 746 | Name=Fabrication Outputs 747 | Description= 748 | TargetPrinter=\\rps\psc381 749 | PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 750 | OutputType1=NC Drill 751 | OutputName1=NC Drill Files 752 | OutputDocumentPath1= 753 | OutputVariantName1= 754 | OutputDefault1=0 755 | Configuration1_Name1=ForceUpdateSettings 756 | Configuration1_Item1=False 757 | Configuration1_Name2=OutputConfigurationParameter1 758 | Configuration1_Item2=BoardEdgeRoutToolDia=2000000|GenerateBoardEdgeRout=False|GenerateDrilledSlotsG85=False|GenerateEIADrillFile=False|GenerateSeparatePlatedNonPlatedFiles=False|GenerateSeparateViaTypeFiles=False|NumberOfDecimals=4|NumberOfUnits=4|OptimizeChangeLocationCommands=True|OriginPosition=Relative|Record=DrillView|Units=Metric|ZeroesMode=SuppressTrailingZeroes|DocumentPath=Z:\wisp6\WISP_Hardware\mount-on_boards\Accl\IMU.PcbDoc 759 | OutputType2=Mask 760 | OutputName2=Solder/Paste Mask Prints 761 | OutputDocumentPath2= 762 | OutputVariantName2=[No Variations] 763 | OutputDefault2=0 764 | PageOptions2=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 765 | OutputType3=IPC2581 766 | OutputName3=IPC-2581 Files 767 | OutputDocumentPath3= 768 | OutputVariantName3=[No Variations] 769 | OutputDefault3=0 770 | OutputType4=Test Points 771 | OutputName4=Test Point Report 772 | OutputDocumentPath4= 773 | OutputVariantName4= 774 | OutputDefault4=0 775 | OutputType5=Plane 776 | OutputName5=Power-Plane Prints 777 | OutputDocumentPath5= 778 | OutputVariantName5=[No Variations] 779 | OutputDefault5=0 780 | PageOptions5=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 781 | OutputType6=ODB 782 | OutputName6=ODB++ Files 783 | OutputDocumentPath6= 784 | OutputVariantName6=[No Variations] 785 | OutputDefault6=0 786 | OutputType7=Drill 787 | OutputName7=Drill Drawing/Guides 788 | OutputDocumentPath7= 789 | OutputVariantName7=[No Variations] 790 | OutputDefault7=0 791 | PageOptions7=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 792 | OutputType8=CompositeDrill 793 | OutputName8=Composite Drill Drawing 794 | OutputDocumentPath8= 795 | OutputVariantName8=[No Variations] 796 | OutputDefault8=0 797 | PageOptions8=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 798 | OutputType9=Board Stack Report 799 | OutputName9=Report Board Stack 800 | OutputDocumentPath9= 801 | OutputVariantName9= 802 | OutputDefault9=0 803 | PageOptions9=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 804 | OutputType10=Gerber X2 805 | OutputName10=Gerber X2 Files 806 | OutputDocumentPath10= 807 | OutputVariantName10=[No Variations] 808 | OutputDefault10=0 809 | Configuration10_Name1=ForceUpdateSettings 810 | Configuration10_Item1=False 811 | Configuration10_Name2=OutputConfigurationParameter1 812 | Configuration10_Item2=FileComment= |FileSubject=Autodetect|GenerateDRCRulesFile=True|GenerateReports=True|GerberUnit=Metric|IncludeUnconnectedMidLayerPads=True|MergePadAndRegion=False|MinusApertureTolerance=39|NumberOfDecimals=5|OptimizeChangeLocationCommands=True|PlotBackDrillingPairs=False|PlotBlindViasPairs=False|PlotBoardProfile=True|PlotCounterHolesPairs=False|PlotDrillDrawingPairs=False|PlotDrillGuidePairs=False|PlotMicroViasPairs=False|PlotNPTHPairs=False|PlotPTHPairs=False|PlotViaTypeDrillDrawingPairs=False|PlotViaTypeDrillGuidePairs=False|PlotViaTypeDrillPairs=False|PlotX2.Set=SerializeLayerHash.Version~2,ClassName~TPlotLayerStateArray,16777217~1,16908301~1,16777219~1,16973831~1,16973849~1,16973835~1,16973830~1,16973832~1,16842751~1,16908289~1,16973834~1,16777218~1,16973837~1,16973848~1,16908303~1|PlusApertureTolerance=39|Record=GerberX2View|Sorted=False|DocumentPath=Z:\wisp6\WISP_Hardware\mount-on_boards\Accl\IMU.PcbDoc 813 | OutputType11=Final 814 | OutputName11=Final Artwork Prints 815 | OutputDocumentPath11= 816 | OutputVariantName11=[No Variations] 817 | OutputDefault11=0 818 | PageOptions11=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 819 | OutputType12=Gerber 820 | OutputName12=Gerber Files 821 | OutputDocumentPath12= 822 | OutputVariantName12=[No Variations] 823 | OutputDefault12=0 824 | Configuration12_Name1=ForceUpdateSettings 825 | Configuration12_Item1=False 826 | Configuration12_Name2=OutputConfigurationParameter1 827 | Configuration12_Item2=AddToAllLayerClasses.Set= |AddToAllPlots.Set=SerializeLayerHash.Version~2,ClassName~TPlotLayerStateArray|CentrePlots=False|DrillDrawingSymbol=GraphicsSymbol|DrillDrawingSymbolSize=200000|EmbeddedApertures=True|FilmBorderSize=10000000|FilmXSize=200000000|FilmYSize=160000000|FlashAllFills=False|FlashPadShapes=True|G54OnApertureChange=False|GenerateDRCRulesFile=True|GenerateDRCRulesFile=True|GenerateReliefShapes=True|GenerateReports=True|GerberUnit=Metric|GerberUnit=Metric|IncludeUnconnectedMidLayerPads=False|LayerClassesMirror.Set= |LayerClassesPlot.Set= |LeadingAndTrailingZeroesMode=SuppressLeadingZeroes|MaxApertureSize=2500000|MergePadAndRegion=False|MinusApertureTolerance=39|MinusApertureTolerance=39|Mirror.Set=SerializeLayerHash.Version~2,ClassName~TPlotLayerStateArray|MirrorDrillDrawingPlots=False|MirrorDrillGuidePlots=False|NoRegularPolygons=False|NumberOfDecimals=4|NumberOfDecimals=4|OptimizeChangeLocationCommands=True|OptimizeChangeLocationCommands=True|OriginPosition=Relative|Panelize=False|Plot.Set=SerializeLayerHash.Version~2,ClassName~TPlotLayerStateArray|PlotPositivePlaneLayers=False|PlotUsedDrillDrawingLayerPairs=False|PlotUsedDrillGuideLayerPairs=False|PlusApertureTolerance=39|PlusApertureTolerance=39|Record=GerberView|SoftwareArcs=False|Sorted=False|Sorted=False|DocumentPath=Z:\wisp6\WISP_Hardware\mount-on_boards\Accl\IMU.PcbDoc 828 | 829 | [OutputGroup6] 830 | Name=Report Outputs 831 | Description= 832 | TargetPrinter=\\rps\psc381 833 | PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 834 | OutputType1=BOM_PartType 835 | OutputName1=Bill of Materials 836 | OutputDocumentPath1= 837 | OutputVariantName1=[No Variations] 838 | OutputDefault1=0 839 | PageOptions1=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 840 | Configuration1_Name1=ColumnNameFormat 841 | Configuration1_Item1=CaptionAsName 842 | Configuration1_Name2=ForceUpdateSettings 843 | Configuration1_Item2=False 844 | Configuration1_Name3=OutputConfigurationParameter1 845 | Configuration1_Item3=00|Description=100|Manufacturer=100|Manufacturer Part Number=100|Digi-Key Part Number=100|Supplier 1=100|Supplier Part Number 1=100|Quantity=100|Value=100|Footprint=100|Comment=100 846 | OutputType2=ComponentCrossReference 847 | OutputName2=Component Cross Reference Report 848 | OutputDocumentPath2= 849 | OutputVariantName2=[No Variations] 850 | OutputDefault2=0 851 | OutputType3=ReportHierarchy 852 | OutputName3=Report Project Hierarchy 853 | OutputDocumentPath3= 854 | OutputVariantName3=[No Variations] 855 | OutputDefault3=0 856 | OutputType4=Script 857 | OutputName4=Script Output 858 | OutputDocumentPath4= 859 | OutputVariantName4=[No Variations] 860 | OutputDefault4=0 861 | OutputType5=SimpleBOM 862 | OutputName5=Simple BOM 863 | OutputDocumentPath5= 864 | OutputVariantName5=[No Variations] 865 | OutputDefault5=0 866 | OutputType6=SinglePinNetReporter 867 | OutputName6=Report Single Pin Nets 868 | OutputDocumentPath6= 869 | OutputVariantName6=[No Variations] 870 | OutputDefault6=0 871 | OutputType7=BOM_ReportCompare 872 | OutputName7=BOM Compare 873 | OutputDocumentPath7= 874 | OutputVariantName7=[No Variations] 875 | OutputDefault7=0 876 | PageOptions7=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 877 | OutputType8=Export Comments 878 | OutputName8=Export Comments 879 | OutputDocumentPath8= 880 | OutputVariantName8=[No Variations] 881 | OutputDefault8=0 882 | PageOptions8=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 883 | 884 | [OutputGroup7] 885 | Name=Other Outputs 886 | Description= 887 | TargetPrinter=\\rps\psc381 888 | PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 889 | OutputType1=Text Print 890 | OutputName1=Text Print 891 | OutputDocumentPath1= 892 | OutputVariantName1= 893 | OutputDefault1=0 894 | PageOptions1=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 895 | OutputType2=Text Print 896 | OutputName2=Text Print 897 | OutputDocumentPath2= 898 | OutputVariantName2= 899 | OutputDefault2=0 900 | PageOptions2=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 901 | OutputType3=Text Print 902 | OutputName3=Text Print 903 | OutputDocumentPath3= 904 | OutputVariantName3= 905 | OutputDefault3=0 906 | PageOptions3=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 907 | OutputType4=Text Print 908 | OutputName4=Text Print 909 | OutputDocumentPath4= 910 | OutputVariantName4= 911 | OutputDefault4=0 912 | PageOptions4=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 913 | OutputType5=Text Print 914 | OutputName5=Text Print 915 | OutputDocumentPath5= 916 | OutputVariantName5= 917 | OutputDefault5=0 918 | PageOptions5=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 919 | OutputType6=Text Print 920 | OutputName6=Text Print 921 | OutputDocumentPath6= 922 | OutputVariantName6= 923 | OutputDefault6=0 924 | PageOptions6=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 925 | OutputType7=Text Print 926 | OutputName7=Text Print 927 | OutputDocumentPath7= 928 | OutputVariantName7= 929 | OutputDefault7=0 930 | PageOptions7=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 931 | OutputType8=Text Print 932 | OutputName8=Text Print 933 | OutputDocumentPath8= 934 | OutputVariantName8= 935 | OutputDefault8=0 936 | PageOptions8=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 937 | OutputType9=Text Print 938 | OutputName9=Text Print 939 | OutputDocumentPath9= 940 | OutputVariantName9= 941 | OutputDefault9=0 942 | PageOptions9=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 943 | OutputType10=Text Print 944 | OutputName10=Text Print 945 | OutputDocumentPath10= 946 | OutputVariantName10= 947 | OutputDefault10=0 948 | PageOptions10=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 949 | OutputType11=Text Print 950 | OutputName11=Text Print 951 | OutputDocumentPath11= 952 | OutputVariantName11= 953 | OutputDefault11=0 954 | PageOptions11=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 955 | OutputType12=Text Print 956 | OutputName12=Text Print 957 | OutputDocumentPath12= 958 | OutputVariantName12= 959 | OutputDefault12=0 960 | PageOptions12=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 961 | OutputType13=Text Print 962 | OutputName13=Text Print 963 | OutputDocumentPath13= 964 | OutputVariantName13= 965 | OutputDefault13=0 966 | PageOptions13=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 967 | OutputType14=Text Print 968 | OutputName14=Text Print 969 | OutputDocumentPath14= 970 | OutputVariantName14= 971 | OutputDefault14=0 972 | PageOptions14=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 973 | OutputType15=Text Print 974 | OutputName15=Text Print 975 | OutputDocumentPath15= 976 | OutputVariantName15= 977 | OutputDefault15=0 978 | PageOptions15=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 979 | OutputType16=Text Print 980 | OutputName16=Text Print 981 | OutputDocumentPath16= 982 | OutputVariantName16= 983 | OutputDefault16=0 984 | PageOptions16=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 985 | OutputType17=Text Print 986 | OutputName17=Text Print 987 | OutputDocumentPath17= 988 | OutputVariantName17= 989 | OutputDefault17=0 990 | PageOptions17=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 991 | 992 | [OutputGroup8] 993 | Name=Validation Outputs 994 | Description= 995 | TargetPrinter=\\rps\psc381 996 | PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 997 | OutputType1=Component states check 998 | OutputName1=Server's components states check 999 | OutputDocumentPath1= 1000 | OutputVariantName1= 1001 | OutputDefault1=0 1002 | OutputType2=Configuration compliance 1003 | OutputName2=Environment configuration compliance check 1004 | OutputDocumentPath2= 1005 | OutputVariantName2= 1006 | OutputDefault2=0 1007 | OutputType3=Design Rules Check 1008 | OutputName3=Design Rules Check 1009 | OutputDocumentPath3= 1010 | OutputVariantName3= 1011 | OutputDefault3=0 1012 | PageOptions3=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 1013 | OutputType4=Differences Report 1014 | OutputName4=Differences Report 1015 | OutputDocumentPath4= 1016 | OutputVariantName4= 1017 | OutputDefault4=0 1018 | PageOptions4=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 1019 | OutputType5=Electrical Rules Check 1020 | OutputName5=Electrical Rules Check 1021 | OutputDocumentPath5= 1022 | OutputVariantName5= 1023 | OutputDefault5=0 1024 | PageOptions5=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 1025 | OutputType6=Footprint Comparison Report 1026 | OutputName6=Footprint Comparison Report 1027 | OutputDocumentPath6= 1028 | OutputVariantName6= 1029 | OutputDefault6=0 1030 | OutputType7=BOM_Violations 1031 | OutputName7=BOM Checks Report 1032 | OutputDocumentPath7= 1033 | OutputVariantName7= 1034 | OutputDefault7=0 1035 | 1036 | [OutputGroup9] 1037 | Name=Export Outputs 1038 | Description= 1039 | TargetPrinter=\\rps\psc381 1040 | PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 1041 | OutputType1=AutoCAD dwg/dxf PCB 1042 | OutputName1=AutoCAD dwg/dxf File PCB 1043 | OutputDocumentPath1= 1044 | OutputVariantName1= 1045 | OutputDefault1=0 1046 | OutputType2=AutoCAD dwg/dxf Schematic 1047 | OutputName2=AutoCAD dwg/dxf File Schematic 1048 | OutputDocumentPath2= 1049 | OutputVariantName2= 1050 | OutputDefault2=0 1051 | OutputType3=ExportIDF 1052 | OutputName3=Export IDF 1053 | OutputDocumentPath3= 1054 | OutputVariantName3= 1055 | OutputDefault3=0 1056 | OutputType4=ExportPARASOLID 1057 | OutputName4=Export PARASOLID 1058 | OutputDocumentPath4= 1059 | OutputVariantName4=[No Variations] 1060 | OutputDefault4=0 1061 | OutputType5=ExportSTEP 1062 | OutputName5=Export STEP 1063 | OutputDocumentPath5= 1064 | OutputVariantName5=[No Variations] 1065 | OutputDefault5=0 1066 | OutputType6=ExportVRML 1067 | OutputName6=Export VRML 1068 | OutputDocumentPath6= 1069 | OutputVariantName6=[No Variations] 1070 | OutputDefault6=0 1071 | OutputType7=Save As/Export PCB 1072 | OutputName7=Save As/Export PCB 1073 | OutputDocumentPath7= 1074 | OutputVariantName7= 1075 | OutputDefault7=0 1076 | OutputType8=Save As/Export Schematic 1077 | OutputName8=Save As/Export Schematic 1078 | OutputDocumentPath8= 1079 | OutputVariantName8= 1080 | OutputDefault8=0 1081 | OutputType9=Specctra Design PCB 1082 | OutputName9=Specctra Design PCB 1083 | OutputDocumentPath9= 1084 | OutputVariantName9= 1085 | OutputDefault9=0 1086 | OutputType10=MBAExportPARASOLID 1087 | OutputName10=Export PARASOLID 1088 | OutputDocumentPath10= 1089 | OutputVariantName10= 1090 | OutputDefault10=0 1091 | OutputType11=MBAExportSTEP 1092 | OutputName11=Export STEP 1093 | OutputDocumentPath11= 1094 | OutputVariantName11= 1095 | OutputDefault11=0 1096 | OutputType12=Web ReviewOutputName 1097 | OutputName12=Web Review Data 1098 | OutputDocumentPath12= 1099 | OutputVariantName12= 1100 | OutputDefault12=0 1101 | 1102 | [OutputGroup10] 1103 | Name=PostProcess Outputs 1104 | Description= 1105 | TargetPrinter=\\rps\psc381 1106 | PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 1107 | OutputType1=Copy Files 1108 | OutputName1=Copy Files 1109 | OutputDocumentPath1= 1110 | OutputVariantName1= 1111 | OutputDefault1=0 1112 | 1113 | [Modification Levels] 1114 | Type1=1 1115 | Type2=1 1116 | Type3=1 1117 | Type4=1 1118 | Type5=1 1119 | Type6=1 1120 | Type7=1 1121 | Type8=1 1122 | Type9=1 1123 | Type10=1 1124 | Type11=1 1125 | Type12=1 1126 | Type13=1 1127 | Type14=1 1128 | Type15=1 1129 | Type16=1 1130 | Type17=1 1131 | Type18=1 1132 | Type19=1 1133 | Type20=1 1134 | Type21=1 1135 | Type22=1 1136 | Type23=1 1137 | Type24=1 1138 | Type25=1 1139 | Type26=1 1140 | Type27=1 1141 | Type28=1 1142 | Type29=1 1143 | Type30=1 1144 | Type31=1 1145 | Type32=1 1146 | Type33=1 1147 | Type34=1 1148 | Type35=1 1149 | Type36=1 1150 | Type37=1 1151 | Type38=1 1152 | Type39=1 1153 | Type40=1 1154 | Type41=1 1155 | Type42=1 1156 | Type43=1 1157 | Type44=1 1158 | Type45=1 1159 | Type46=1 1160 | Type47=1 1161 | Type48=1 1162 | Type49=1 1163 | Type50=1 1164 | Type51=1 1165 | Type52=1 1166 | Type53=1 1167 | Type54=1 1168 | Type55=1 1169 | Type56=1 1170 | Type57=1 1171 | Type58=1 1172 | Type59=1 1173 | Type60=1 1174 | Type61=1 1175 | Type62=1 1176 | Type63=1 1177 | Type64=1 1178 | Type65=1 1179 | Type66=1 1180 | Type67=1 1181 | Type68=1 1182 | Type69=1 1183 | Type70=1 1184 | Type71=1 1185 | Type72=1 1186 | Type73=1 1187 | Type74=1 1188 | Type75=1 1189 | Type76=1 1190 | Type77=1 1191 | Type78=1 1192 | Type79=1 1193 | Type80=1 1194 | Type81=1 1195 | Type82=1 1196 | Type83=1 1197 | Type84=1 1198 | Type85=1 1199 | Type86=1 1200 | Type87=1 1201 | Type88=1 1202 | Type89=1 1203 | Type90=1 1204 | Type91=1 1205 | Type92=1 1206 | Type93=1 1207 | Type94=1 1208 | Type95=1 1209 | Type96=1 1210 | Type97=1 1211 | Type98=1 1212 | Type99=1 1213 | Type100=1 1214 | Type101=1 1215 | Type102=1 1216 | Type103=1 1217 | Type104=1 1218 | Type105=1 1219 | Type106=1 1220 | Type107=1 1221 | Type108=1 1222 | Type109=1 1223 | Type110=1 1224 | Type111=1 1225 | Type112=1 1226 | Type113=1 1227 | Type114=1 1228 | Type115=1 1229 | Type116=1 1230 | Type117=1 1231 | Type118=1 1232 | Type119=1 1233 | Type120=1 1234 | 1235 | [Difference Levels] 1236 | Type1=1 1237 | Type2=1 1238 | Type3=1 1239 | Type4=1 1240 | Type5=1 1241 | Type6=1 1242 | Type7=1 1243 | Type8=1 1244 | Type9=1 1245 | Type10=1 1246 | Type11=1 1247 | Type12=1 1248 | Type13=1 1249 | Type14=1 1250 | Type15=1 1251 | Type16=1 1252 | Type17=1 1253 | Type18=1 1254 | Type19=1 1255 | Type20=1 1256 | Type21=1 1257 | Type22=1 1258 | Type23=1 1259 | Type24=1 1260 | Type25=1 1261 | Type26=1 1262 | Type27=1 1263 | Type28=1 1264 | Type29=1 1265 | Type30=1 1266 | Type31=1 1267 | Type32=1 1268 | Type33=1 1269 | Type34=1 1270 | Type35=1 1271 | Type36=1 1272 | Type37=1 1273 | Type38=1 1274 | Type39=1 1275 | Type40=1 1276 | Type41=1 1277 | Type42=1 1278 | Type43=1 1279 | Type44=1 1280 | Type45=1 1281 | Type46=1 1282 | Type47=1 1283 | Type48=1 1284 | Type49=1 1285 | Type50=1 1286 | Type51=1 1287 | Type52=1 1288 | Type53=1 1289 | Type54=1 1290 | Type55=1 1291 | Type56=1 1292 | Type57=1 1293 | Type58=1 1294 | Type59=1 1295 | Type60=1 1296 | Type61=1 1297 | Type62=1 1298 | Type63=1 1299 | Type64=1 1300 | Type65=1 1301 | Type66=1 1302 | Type67=1 1303 | Type68=1 1304 | 1305 | [Electrical Rules Check] 1306 | Type1=1 1307 | Type2=1 1308 | Type3=2 1309 | Type4=1 1310 | Type5=2 1311 | Type6=2 1312 | Type7=0 1313 | Type8=1 1314 | Type9=1 1315 | Type10=1 1316 | Type11=2 1317 | Type12=2 1318 | Type13=2 1319 | Type14=1 1320 | Type15=1 1321 | Type16=1 1322 | Type17=1 1323 | Type18=1 1324 | Type19=1 1325 | Type20=0 1326 | Type21=0 1327 | Type22=0 1328 | Type23=0 1329 | Type24=1 1330 | Type25=2 1331 | Type26=0 1332 | Type27=2 1333 | Type28=1 1334 | Type29=1 1335 | Type30=1 1336 | Type31=1 1337 | Type32=2 1338 | Type33=0 1339 | Type34=2 1340 | Type35=1 1341 | Type36=2 1342 | Type37=1 1343 | Type38=2 1344 | Type39=2 1345 | Type40=2 1346 | Type41=0 1347 | Type42=2 1348 | Type43=1 1349 | Type44=0 1350 | Type45=0 1351 | Type46=0 1352 | Type47=0 1353 | Type48=0 1354 | Type49=0 1355 | Type50=2 1356 | Type51=0 1357 | Type52=0 1358 | Type53=1 1359 | Type54=1 1360 | Type55=1 1361 | Type56=2 1362 | Type57=1 1363 | Type58=1 1364 | Type59=2 1365 | Type60=0 1366 | Type61=0 1367 | Type62=0 1368 | Type63=0 1369 | Type64=0 1370 | Type65=2 1371 | Type66=3 1372 | Type67=2 1373 | Type68=2 1374 | Type69=2 1375 | Type70=2 1376 | Type71=2 1377 | Type72=2 1378 | Type73=2 1379 | Type74=1 1380 | Type75=2 1381 | Type76=1 1382 | Type77=1 1383 | Type78=1 1384 | Type79=1 1385 | Type80=2 1386 | Type81=3 1387 | Type82=3 1388 | Type83=3 1389 | Type84=3 1390 | Type85=3 1391 | Type86=2 1392 | Type87=2 1393 | Type88=2 1394 | Type89=1 1395 | Type90=1 1396 | Type91=3 1397 | Type92=3 1398 | Type93=2 1399 | Type94=2 1400 | Type95=2 1401 | Type96=2 1402 | Type97=2 1403 | Type98=0 1404 | Type99=1 1405 | Type100=2 1406 | Type101=0 1407 | Type102=2 1408 | Type103=2 1409 | Type104=1 1410 | Type105=2 1411 | Type106=2 1412 | Type107=2 1413 | Type108=2 1414 | Type109=1 1415 | Type110=1 1416 | Type111=1 1417 | Type112=1 1418 | Type113=1 1419 | Type114=2 1420 | Type115=2 1421 | Type116=2 1422 | Type117=3 1423 | Type118=3 1424 | Type119=3 1425 | AlternateItemFail=3 1426 | Type122=2 1427 | Type123=1 1428 | Type124=1 1429 | Type125=1 1430 | Type126=1 1431 | Type127=1 1432 | 1433 | [ERC Connection Matrix] 1434 | L1=NNNNNNNNNNNWNNNWW 1435 | L2=NNWNNNNWWWNWNWNWN 1436 | L3=NWEENEEEENEWNEEWN 1437 | L4=NNENNNWEENNWNENWN 1438 | L5=NNNNNNNNNNNNNNNNN 1439 | L6=NNENNNNEENNWNENWN 1440 | L7=NNEWNNWEENNWNENWN 1441 | L8=NWEENEENEEENNEENN 1442 | L9=NWEENEEEENEWNEEWW 1443 | L10=NWNNNNNENNEWNNEWN 1444 | L11=NNENNNNEEENWNENWN 1445 | L12=WWWWNWWNWWWNWWWNN 1446 | L13=NNNNNNNNNNNWNNNWW 1447 | L14=NWEENEEEENEWNEEWW 1448 | L15=NNENNNNEEENWNENWW 1449 | L16=WWWWNWWNWWWNWWWNW 1450 | L17=WNNNNNNNWNNNWWWWN 1451 | 1452 | [Annotate] 1453 | SortOrder=3 1454 | SortLocation=0 1455 | ReplaceSubparts=0 1456 | MatchParameter1=Comment 1457 | MatchStrictly1=1 1458 | MatchParameter2=Library Reference 1459 | MatchStrictly2=1 1460 | PhysicalNamingFormat=$Component_$RoomName 1461 | GlobalIndexSortOrder=3 1462 | GlobalIndexSortLocation=0 1463 | 1464 | [PrjClassGen] 1465 | CompClassManualEnabled=0 1466 | CompClassManualRoomEnabled=0 1467 | NetClassAutoBusEnabled=1 1468 | NetClassAutoCompEnabled=0 1469 | NetClassAutoNamedHarnessEnabled=0 1470 | NetClassManualEnabled=1 1471 | NetClassSeparateForBusSections=0 1472 | 1473 | [LibraryUpdateOptions] 1474 | SelectedOnly=0 1475 | UpdateVariants=1 1476 | UpdateToLatestRevision=1 1477 | PartTypes=0 1478 | FullReplace=1 1479 | UpdateDesignatorLock=1 1480 | UpdatePartIDLock=1 1481 | PreserveParameterLocations=1 1482 | PreserveParameterVisibility=1 1483 | DoGraphics=1 1484 | DoParameters=1 1485 | DoModels=1 1486 | AddParameters=0 1487 | RemoveParameters=0 1488 | AddModels=1 1489 | RemoveModels=1 1490 | UpdateCurrentModels=1 1491 | 1492 | [DatabaseUpdateOptions] 1493 | SelectedOnly=0 1494 | UpdateVariants=1 1495 | UpdateToLatestRevision=1 1496 | PartTypes=0 1497 | 1498 | [Comparison Options] 1499 | ComparisonOptions0=Kind=Net|MinPercent=75|MinMatch=3|ShowMatch=-1|UseName=-1|InclAllRules=0 1500 | ComparisonOptions1=Kind=Net Class|MinPercent=75|MinMatch=3|ShowMatch=-1|UseName=-1|InclAllRules=0 1501 | ComparisonOptions2=Kind=Component Class|MinPercent=75|MinMatch=3|ShowMatch=-1|UseName=-1|InclAllRules=0 1502 | ComparisonOptions3=Kind=Rule|MinPercent=75|MinMatch=3|ShowMatch=-1|UseName=-1|InclAllRules=0 1503 | ComparisonOptions4=Kind=Differential Pair|MinPercent=50|MinMatch=1|ShowMatch=0|UseName=0|InclAllRules=0 1504 | ComparisonOptions5=Kind=Structure Class|MinPercent=75|MinMatch=3|ShowMatch=-1|UseName=-1|InclAllRules=0 1505 | 1506 | [SmartPDF] 1507 | PageOptions=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 1508 | Configuration_Name1=OutputConfigurationParameter1 1509 | Configuration_Item1=DesignatorDisplayMode=Physical|PrintArea=DesignExtent|PrintAreaLowerLeftCornerX=0|PrintAreaLowerLeftCornerY=0|PrintAreaUpperRightCornerX=0|PrintAreaUpperRightCornerY=0|Record=PcbPrintView|DocumentPath=Z:\wisp6\WISP_Hardware\mount-on_boards\Accl\IMU.PcbDoc 1510 | Configuration_Name2=OutputConfigurationParameter2 1511 | Configuration_Item2=IncludeBoardCutouts=False|IncludeBottomLayerComponents=True|IncludeMultiLayerComponents=True|IncludeTopLayerComponents=True|IncludeViewports=True|Index=0|Mirror=False|Name=Multilayer Composite Print|PadNumberFontSize=14|Record=PcbPrintOut|ShowHoles=False|ShowPadNets=False|ShowPadNumbers=False|SubstituteFonts=False|DocumentPath=Z:\wisp6\WISP_Hardware\mount-on_boards\Accl\IMU.PcbDoc 1512 | Configuration_Name3=OutputConfigurationParameter3 1513 | Configuration_Item3=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=TopOverlay|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\WISP_Hardware\mount-on_boards\Accl\IMU.PcbDoc 1514 | Configuration_Name4=OutputConfigurationParameter4 1515 | Configuration_Item4=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=TopLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\WISP_Hardware\mount-on_boards\Accl\IMU.PcbDoc 1516 | Configuration_Name5=OutputConfigurationParameter5 1517 | Configuration_Item5=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=MidLayer1|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\WISP_Hardware\mount-on_boards\Accl\IMU.PcbDoc 1518 | Configuration_Name6=OutputConfigurationParameter6 1519 | Configuration_Item6=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=MidLayer2|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\WISP_Hardware\mount-on_boards\Accl\IMU.PcbDoc 1520 | Configuration_Name7=OutputConfigurationParameter7 1521 | Configuration_Item7=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=BottomLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\WISP_Hardware\mount-on_boards\Accl\IMU.PcbDoc 1522 | Configuration_Name8=OutputConfigurationParameter8 1523 | Configuration_Item8=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=MultiLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\WISP_Hardware\mount-on_boards\Accl\IMU.PcbDoc 1524 | Configuration_Name9=OutputConfigurationParameter9 1525 | Configuration_Item9=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=BottomOverlay|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\WISP_Hardware\mount-on_boards\Accl\IMU.PcbDoc 1526 | Configuration_Name10=OutputConfigurationParameter10 1527 | Configuration_Item10=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=KeepOutLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\WISP_Hardware\mount-on_boards\Accl\IMU.PcbDoc 1528 | Configuration_Name11=OutputConfigurationParameter11 1529 | Configuration_Item11=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical1|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\WISP_Hardware\mount-on_boards\Accl\IMU.PcbDoc 1530 | Configuration_Name12=OutputConfigurationParameter12 1531 | Configuration_Item12=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical13|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\WISP_Hardware\mount-on_boards\Accl\IMU.PcbDoc 1532 | Configuration_Name13=OutputConfigurationParameter13 1533 | Configuration_Item13=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical15|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\WISP_Hardware\mount-on_boards\Accl\IMU.PcbDoc 1534 | 1535 | -------------------------------------------------------------------------------- /addon_boards/Accl/IMU.SchDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wisp/wisp6-hardware/b3402b5a4a9843f840eadc495710a15e2e6c99c8/addon_boards/Accl/IMU.SchDoc -------------------------------------------------------------------------------- /addon_boards/Camera/BLE.PcbLib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wisp/wisp6-hardware/b3402b5a4a9843f840eadc495710a15e2e6c99c8/addon_boards/Camera/BLE.PcbLib -------------------------------------------------------------------------------- /addon_boards/Camera/BLE.SchLib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wisp/wisp6-hardware/b3402b5a4a9843f840eadc495710a15e2e6c99c8/addon_boards/Camera/BLE.SchLib -------------------------------------------------------------------------------- /addon_boards/Camera/CAMtastic1.Cam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wisp/wisp6-hardware/b3402b5a4a9843f840eadc495710a15e2e6c99c8/addon_boards/Camera/CAMtastic1.Cam -------------------------------------------------------------------------------- /addon_boards/Camera/CAMtastic2.Cam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wisp/wisp6-hardware/b3402b5a4a9843f840eadc495710a15e2e6c99c8/addon_boards/Camera/CAMtastic2.Cam -------------------------------------------------------------------------------- /addon_boards/Camera/CAMtastic3.Cam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wisp/wisp6-hardware/b3402b5a4a9843f840eadc495710a15e2e6c99c8/addon_boards/Camera/CAMtastic3.Cam -------------------------------------------------------------------------------- /addon_boards/Camera/Camera.OutJob: -------------------------------------------------------------------------------- 1 | [OutputJobFile] 2 | Version=1.0 3 | 4 | [PublishSettings] 5 | OutputFilePath2= 6 | ReleaseManaged2=1 7 | OutputBasePath2= 8 | OutputPathMedia2= 9 | OutputPathMediaValue2= 10 | OutputPathOutputer2=[Output Type] 11 | OutputPathOutputerPrefix2= 12 | OutputPathOutputerValue2= 13 | OutputFileName2= 14 | OutputFileNameMulti2= 15 | UseOutputNameForMulti2=1 16 | OutputFileNameSpecial2= 17 | OpenOutput2=1 18 | PromptOverwrite2=1 19 | PublishMethod2=0 20 | ZoomLevel2=50 21 | FitSCHPrintSizeToDoc2=1 22 | FitPCBPrintSizeToDoc2=1 23 | GenerateNetsInfo2=1 24 | MarkPins2=1 25 | MarkNetLabels2=1 26 | MarkPortsId2=1 27 | GenerateTOC2=1 28 | ShowComponentParameters2=1 29 | GlobalBookmarks2=0 30 | PDFACompliance2=Disabled 31 | PDFVersion2=Default 32 | OutputFilePath3= 33 | ReleaseManaged3=1 34 | OutputBasePath3= 35 | OutputPathMedia3= 36 | OutputPathMediaValue3= 37 | OutputPathOutputer3=[Output Type] 38 | OutputPathOutputerPrefix3= 39 | OutputPathOutputerValue3= 40 | OutputFileName3= 41 | OutputFileNameMulti3= 42 | UseOutputNameForMulti3=1 43 | OutputFileNameSpecial3= 44 | OpenOutput3=1 45 | OutputFilePath4= 46 | ReleaseManaged4=1 47 | OutputBasePath4= 48 | OutputPathMedia4= 49 | OutputPathMediaValue4= 50 | OutputPathOutputer4=[Output Type] 51 | OutputPathOutputerPrefix4= 52 | OutputPathOutputerValue4= 53 | OutputFileName4= 54 | OutputFileNameMulti4= 55 | UseOutputNameForMulti4=1 56 | OutputFileNameSpecial4= 57 | OpenOutput4=1 58 | PromptOverwrite4=1 59 | PublishMethod4=5 60 | ZoomLevel4=50 61 | FitSCHPrintSizeToDoc4=1 62 | FitPCBPrintSizeToDoc4=1 63 | GenerateNetsInfo4=1 64 | MarkPins4=1 65 | MarkNetLabels4=1 66 | MarkPortsId4=1 67 | MediaFormat4=Windows Media file (*.wmv,*.wma,*.asf) 68 | FixedDimensions4=1 69 | Width4=352 70 | Height4=288 71 | MultiFile4=0 72 | FramesPerSecond4=25 73 | FramesPerSecondDenom4=1 74 | AviPixelFormat4=7 75 | AviCompression4=MP42 MS-MPEG4 V2 76 | AviQuality4=100 77 | FFmpegVideoCodecId4=13 78 | FFmpegPixelFormat4=0 79 | FFmpegQuality4=80 80 | WmvVideoCodecName4=Windows Media Video V7 81 | WmvQuality4=80 82 | 83 | [GeneratedFilesSettings] 84 | RelativeOutputPath2= 85 | OpenOutputs2=1 86 | RelativeOutputPath3= 87 | OpenOutputs3=1 88 | AddToProject3=1 89 | TimestampFolder3=0 90 | UseOutputName3=0 91 | OpenODBOutput3=0 92 | OpenGerberOutput3=0 93 | OpenNCDrillOutput3=0 94 | OpenIPCOutput3=0 95 | EnableReload3=0 96 | RelativeOutputPath4= 97 | OpenOutputs4=1 98 | 99 | [OutputGroup1] 100 | Name=New Output 101 | Description= 102 | TargetOutputMedium=Print Job 103 | VariantName=[No Variations] 104 | VariantScope=0 105 | CurrentConfigurationName= 106 | TargetPrinter=\\rps\psc381 107 | PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 108 | OutputMedium1=Print Job 109 | OutputMedium1_Type=Printer 110 | OutputMedium1_Printer= 111 | OutputMedium1_PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 112 | OutputMedium2=PDF 113 | OutputMedium2_Type=Publish 114 | OutputMedium3=Folder Structure 115 | OutputMedium3_Type=GeneratedFiles 116 | OutputMedium4=Video 117 | OutputMedium4_Type=Multimedia 118 | 119 | -------------------------------------------------------------------------------- /addon_boards/Camera/Camera.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wisp/wisp6-hardware/b3402b5a4a9843f840eadc495710a15e2e6c99c8/addon_boards/Camera/Camera.pdf -------------------------------------------------------------------------------- /addon_boards/Camera/Himax.PcbDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wisp/wisp6-hardware/b3402b5a4a9843f840eadc495710a15e2e6c99c8/addon_boards/Camera/Himax.PcbDoc -------------------------------------------------------------------------------- /addon_boards/Camera/Himax.SchDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wisp/wisp6-hardware/b3402b5a4a9843f840eadc495710a15e2e6c99c8/addon_boards/Camera/Himax.SchDoc -------------------------------------------------------------------------------- /addon_boards/Camera/WISP_AD10.PcbLib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wisp/wisp6-hardware/b3402b5a4a9843f840eadc495710a15e2e6c99c8/addon_boards/Camera/WISP_AD10.PcbLib -------------------------------------------------------------------------------- /addon_boards/Camera/WISP_AD10.SchLib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wisp/wisp6-hardware/b3402b5a4a9843f840eadc495710a15e2e6c99c8/addon_boards/Camera/WISP_AD10.SchLib -------------------------------------------------------------------------------- /addon_boards/Mic2/CAMtastic1.Cam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wisp/wisp6-hardware/b3402b5a4a9843f840eadc495710a15e2e6c99c8/addon_boards/Mic2/CAMtastic1.Cam -------------------------------------------------------------------------------- /addon_boards/Mic2/CAMtastic2.Cam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wisp/wisp6-hardware/b3402b5a4a9843f840eadc495710a15e2e6c99c8/addon_boards/Mic2/CAMtastic2.Cam -------------------------------------------------------------------------------- /addon_boards/Mic2/CAMtastic3.Cam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wisp/wisp6-hardware/b3402b5a4a9843f840eadc495710a15e2e6c99c8/addon_boards/Mic2/CAMtastic3.Cam -------------------------------------------------------------------------------- /addon_boards/Mic2/Mic2_WISP.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wisp/wisp6-hardware/b3402b5a4a9843f840eadc495710a15e2e6c99c8/addon_boards/Mic2/Mic2_WISP.pdf -------------------------------------------------------------------------------- /addon_boards/Mic2/Microphone2.PcbDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wisp/wisp6-hardware/b3402b5a4a9843f840eadc495710a15e2e6c99c8/addon_boards/Mic2/Microphone2.PcbDoc -------------------------------------------------------------------------------- /addon_boards/Mic2/Microphone2.SchDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wisp/wisp6-hardware/b3402b5a4a9843f840eadc495710a15e2e6c99c8/addon_boards/Mic2/Microphone2.SchDoc -------------------------------------------------------------------------------- /addon_boards/Panel/Panel.OutJob: -------------------------------------------------------------------------------- 1 | [OutputJobFile] 2 | Version=1.0 3 | 4 | [OutputGroup1] 5 | Name= 6 | Description= 7 | TargetOutputMedium=PDF 8 | VariantName=[No Variations] 9 | VariantScope=0 10 | CurrentConfigurationName= 11 | TargetPrinter=Virtual Printer 12 | PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 13 | OutputMedium1=Print Job 14 | OutputMedium1_Type=Printer 15 | OutputMedium1_Printer= 16 | OutputMedium1_PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 17 | OutputMedium2=PDF 18 | OutputMedium2_Type=Publish 19 | OutputMedium3=Folder Structure 20 | OutputMedium3_Type=GeneratedFiles 21 | OutputMedium4=Video 22 | OutputMedium4_Type=Multimedia 23 | OutputType1=Schematic Print 24 | OutputName1=Schematic Prints 25 | OutputCategory1=Documentation 26 | OutputDocumentPath1=[Project Physical Documents] 27 | OutputVariantName1=[No Variations] 28 | OutputEnabled1=1 29 | OutputEnabled1_OutputMedium1=0 30 | OutputEnabled1_OutputMedium2=1 31 | OutputEnabled1_OutputMedium3=0 32 | OutputEnabled1_OutputMedium4=0 33 | OutputDefault1=0 34 | PageOptions1=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=0.99|XCorrection=1.00|YCorrection=1.00|PrintKind=0|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 35 | Configuration1_Name1=OutputConfigurationParameter1 36 | Configuration1_Item1=Record=SchPrintView|ShowNoERC=True|ShowParamSet=True|ShowProbe=True|ShowBlanket=True|NoERCSymbolsToShow="Thin Cross","Thick Cross","Small Cross",Checkbox,Triangle|ShowNote=True|ShowNoteCollapsed=True|ShowOpenEnds=True|ExpandDesignator=True|ExpandNetLabel=False|ExpandPort=False|ExpandSheetNum=False|ExpandDocNum=False|PrintArea=0|PrintAreaRect.X1=0|PrintAreaRect.Y1=0|PrintAreaRect.X2=0|PrintAreaRect.Y2=0|DocumentPath= 37 | OutputType2=PCB Print 38 | OutputName2=PCB Prints 39 | OutputCategory2=Documentation 40 | OutputDocumentPath2=IMU.PcbDoc 41 | OutputVariantName2= 42 | OutputEnabled2=1 43 | OutputEnabled2_OutputMedium1=0 44 | OutputEnabled2_OutputMedium2=2 45 | OutputEnabled2_OutputMedium3=0 46 | OutputEnabled2_OutputMedium4=0 47 | OutputDefault2=0 48 | PageOptions2=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=13.00|XCorrection=1.00|YCorrection=1.00|PrintKind=0|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 49 | Configuration2_Name1=OutputConfigurationParameter1 50 | Configuration2_Item1=DesignatorDisplayMode=Physical|PrintArea=DesignExtent|PrintAreaLowerLeftCornerX=0|PrintAreaLowerLeftCornerY=0|PrintAreaUpperRightCornerX=0|PrintAreaUpperRightCornerY=0|Record=PcbPrintView|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 51 | Configuration2_Name2=OutputConfigurationParameter2 52 | Configuration2_Item2=IncludeBoardCutouts=False|IncludeBottomLayerComponents=True|IncludeMultiLayerComponents=True|IncludeTopLayerComponents=True|IncludeViewports=True|Index=0|Mirror=False|Name=Multilayer Composite Print|PadNumberFontSize=14|Record=PcbPrintOut|ShowHoles=False|ShowPadNets=False|ShowPadNumbers=False|SubstituteFonts=False|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 53 | Configuration2_Name3=OutputConfigurationParameter3 54 | Configuration2_Item3=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=TopOverlay|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 55 | Configuration2_Name4=OutputConfigurationParameter4 56 | Configuration2_Item4=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=TopLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 57 | Configuration2_Name5=OutputConfigurationParameter5 58 | Configuration2_Item5=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=MidLayer1|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 59 | Configuration2_Name6=OutputConfigurationParameter6 60 | Configuration2_Item6=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=MidLayer2|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 61 | Configuration2_Name7=OutputConfigurationParameter7 62 | Configuration2_Item7=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=BottomLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 63 | Configuration2_Name8=OutputConfigurationParameter8 64 | Configuration2_Item8=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=MultiLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 65 | Configuration2_Name9=OutputConfigurationParameter9 66 | Configuration2_Item9=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=BottomOverlay|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 67 | Configuration2_Name10=OutputConfigurationParameter10 68 | Configuration2_Item10=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=KeepOutLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 69 | Configuration2_Name11=OutputConfigurationParameter11 70 | Configuration2_Item11=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical1|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 71 | Configuration2_Name12=OutputConfigurationParameter12 72 | Configuration2_Item12=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical13|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 73 | Configuration2_Name13=OutputConfigurationParameter13 74 | Configuration2_Item13=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical15|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 75 | PcbPrintPreferences2= 76 | OutputType3=PCB Print 77 | OutputName3=PCB Prints 78 | OutputCategory3=Documentation 79 | OutputDocumentPath3=Himax.PcbDoc 80 | OutputVariantName3= 81 | OutputEnabled3=1 82 | OutputEnabled3_OutputMedium1=0 83 | OutputEnabled3_OutputMedium2=3 84 | OutputEnabled3_OutputMedium3=0 85 | OutputEnabled3_OutputMedium4=0 86 | OutputDefault3=0 87 | PageOptions3=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=11.97|XCorrection=1.00|YCorrection=1.00|PrintKind=0|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 88 | Configuration3_Name1=OutputConfigurationParameter1 89 | Configuration3_Item1=DesignatorDisplayMode=Physical|PrintArea=DesignExtent|PrintAreaLowerLeftCornerX=0|PrintAreaLowerLeftCornerY=0|PrintAreaUpperRightCornerX=0|PrintAreaUpperRightCornerY=0|Record=PcbPrintView|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 90 | Configuration3_Name2=OutputConfigurationParameter2 91 | Configuration3_Item2=IncludeBoardCutouts=False|IncludeBottomLayerComponents=True|IncludeMultiLayerComponents=True|IncludeTopLayerComponents=True|IncludeViewports=True|Index=0|Mirror=False|Name=Multilayer Composite Print|PadNumberFontSize=14|Record=PcbPrintOut|ShowHoles=False|ShowPadNets=False|ShowPadNumbers=False|SubstituteFonts=False|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 92 | Configuration3_Name3=OutputConfigurationParameter3 93 | Configuration3_Item3=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=TopOverlay|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 94 | Configuration3_Name4=OutputConfigurationParameter4 95 | Configuration3_Item4=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=TopLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 96 | Configuration3_Name5=OutputConfigurationParameter5 97 | Configuration3_Item5=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=MidLayer1|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 98 | Configuration3_Name6=OutputConfigurationParameter6 99 | Configuration3_Item6=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=MidLayer2|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 100 | Configuration3_Name7=OutputConfigurationParameter7 101 | Configuration3_Item7=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=BottomLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 102 | Configuration3_Name8=OutputConfigurationParameter8 103 | Configuration3_Item8=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=MultiLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 104 | Configuration3_Name9=OutputConfigurationParameter9 105 | Configuration3_Item9=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=BottomOverlay|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 106 | Configuration3_Name10=OutputConfigurationParameter10 107 | Configuration3_Item10=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=KeepOutLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 108 | Configuration3_Name11=OutputConfigurationParameter11 109 | Configuration3_Item11=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical1|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 110 | Configuration3_Name12=OutputConfigurationParameter12 111 | Configuration3_Item12=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical13|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 112 | Configuration3_Name13=OutputConfigurationParameter13 113 | Configuration3_Item13=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical15|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 114 | PcbPrintPreferences3= 115 | OutputType4=PCB Print 116 | OutputName4=PCB Prints 117 | OutputCategory4=Documentation 118 | OutputDocumentPath4=Microphone1.PcbDoc 119 | OutputVariantName4= 120 | OutputEnabled4=1 121 | OutputEnabled4_OutputMedium1=0 122 | OutputEnabled4_OutputMedium2=4 123 | OutputEnabled4_OutputMedium3=0 124 | OutputEnabled4_OutputMedium4=0 125 | OutputDefault4=0 126 | PageOptions4=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=12.96|XCorrection=1.00|YCorrection=1.00|PrintKind=0|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 127 | Configuration4_Name1=OutputConfigurationParameter1 128 | Configuration4_Item1=DesignatorDisplayMode=Physical|PrintArea=DesignExtent|PrintAreaLowerLeftCornerX=0|PrintAreaLowerLeftCornerY=0|PrintAreaUpperRightCornerX=0|PrintAreaUpperRightCornerY=0|Record=PcbPrintView|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 129 | Configuration4_Name2=OutputConfigurationParameter2 130 | Configuration4_Item2=IncludeBoardCutouts=False|IncludeBottomLayerComponents=True|IncludeMultiLayerComponents=True|IncludeTopLayerComponents=True|IncludeViewports=True|Index=0|Mirror=False|Name=Multilayer Composite Print|PadNumberFontSize=14|Record=PcbPrintOut|ShowHoles=False|ShowPadNets=False|ShowPadNumbers=False|SubstituteFonts=False|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 131 | Configuration4_Name3=OutputConfigurationParameter3 132 | Configuration4_Item3=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=TopOverlay|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 133 | Configuration4_Name4=OutputConfigurationParameter4 134 | Configuration4_Item4=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=TopLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 135 | Configuration4_Name5=OutputConfigurationParameter5 136 | Configuration4_Item5=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=MidLayer1|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 137 | Configuration4_Name6=OutputConfigurationParameter6 138 | Configuration4_Item6=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=MidLayer2|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 139 | Configuration4_Name7=OutputConfigurationParameter7 140 | Configuration4_Item7=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=BottomLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 141 | Configuration4_Name8=OutputConfigurationParameter8 142 | Configuration4_Item8=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=MultiLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 143 | Configuration4_Name9=OutputConfigurationParameter9 144 | Configuration4_Item9=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=BottomOverlay|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 145 | Configuration4_Name10=OutputConfigurationParameter10 146 | Configuration4_Item10=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=KeepOutLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 147 | Configuration4_Name11=OutputConfigurationParameter11 148 | Configuration4_Item11=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical1|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 149 | Configuration4_Name12=OutputConfigurationParameter12 150 | Configuration4_Item12=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical13|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 151 | Configuration4_Name13=OutputConfigurationParameter13 152 | Configuration4_Item13=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical15|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 153 | PcbPrintPreferences4= 154 | OutputType5=PCB Print 155 | OutputName5=PCB Prints 156 | OutputCategory5=Documentation 157 | OutputDocumentPath5=Microphone2.PcbDoc 158 | OutputVariantName5= 159 | OutputEnabled5=1 160 | OutputEnabled5_OutputMedium1=0 161 | OutputEnabled5_OutputMedium2=5 162 | OutputEnabled5_OutputMedium3=0 163 | OutputEnabled5_OutputMedium4=0 164 | OutputDefault5=0 165 | PageOptions5=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=12.98|XCorrection=1.00|YCorrection=1.00|PrintKind=0|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 166 | Configuration5_Name1=OutputConfigurationParameter1 167 | Configuration5_Item1=DesignatorDisplayMode=Physical|PrintArea=DesignExtent|PrintAreaLowerLeftCornerX=0|PrintAreaLowerLeftCornerY=0|PrintAreaUpperRightCornerX=0|PrintAreaUpperRightCornerY=0|Record=PcbPrintView|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 168 | Configuration5_Name2=OutputConfigurationParameter2 169 | Configuration5_Item2=IncludeBoardCutouts=False|IncludeBottomLayerComponents=True|IncludeMultiLayerComponents=True|IncludeTopLayerComponents=True|IncludeViewports=True|Index=0|Mirror=False|Name=Multilayer Composite Print|PadNumberFontSize=14|Record=PcbPrintOut|ShowHoles=False|ShowPadNets=False|ShowPadNumbers=False|SubstituteFonts=False|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 170 | Configuration5_Name3=OutputConfigurationParameter3 171 | Configuration5_Item3=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=TopOverlay|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 172 | Configuration5_Name4=OutputConfigurationParameter4 173 | Configuration5_Item4=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=TopLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 174 | Configuration5_Name5=OutputConfigurationParameter5 175 | Configuration5_Item5=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=MidLayer1|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 176 | Configuration5_Name6=OutputConfigurationParameter6 177 | Configuration5_Item6=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=MidLayer2|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 178 | Configuration5_Name7=OutputConfigurationParameter7 179 | Configuration5_Item7=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=BottomLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 180 | Configuration5_Name8=OutputConfigurationParameter8 181 | Configuration5_Item8=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=MultiLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 182 | Configuration5_Name9=OutputConfigurationParameter9 183 | Configuration5_Item9=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=BottomOverlay|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 184 | Configuration5_Name10=OutputConfigurationParameter10 185 | Configuration5_Item10=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=KeepOutLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 186 | Configuration5_Name11=OutputConfigurationParameter11 187 | Configuration5_Item11=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical1|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 188 | Configuration5_Name12=OutputConfigurationParameter12 189 | Configuration5_Item12=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical13|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 190 | Configuration5_Name13=OutputConfigurationParameter13 191 | Configuration5_Item13=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical15|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 192 | PcbPrintPreferences5= 193 | OutputType6=PCB Print 194 | OutputName6=PCB Prints 195 | OutputCategory6=Documentation 196 | OutputDocumentPath6=Tag-Panel-V.PcbDoc 197 | OutputVariantName6= 198 | OutputEnabled6=1 199 | OutputEnabled6_OutputMedium1=0 200 | OutputEnabled6_OutputMedium2=6 201 | OutputEnabled6_OutputMedium3=0 202 | OutputEnabled6_OutputMedium4=0 203 | OutputDefault6=0 204 | PageOptions6=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=2.43|XCorrection=1.00|YCorrection=1.00|PrintKind=0|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 205 | Configuration6_Name1=OutputConfigurationParameter1 206 | Configuration6_Item1=DesignatorDisplayMode=Physical|PrintArea=DesignExtent|PrintAreaLowerLeftCornerX=0|PrintAreaLowerLeftCornerY=0|PrintAreaUpperRightCornerX=0|PrintAreaUpperRightCornerY=0|Record=PcbPrintView|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 207 | Configuration6_Name2=OutputConfigurationParameter2 208 | Configuration6_Item2=IncludeBoardCutouts=False|IncludeBottomLayerComponents=True|IncludeMultiLayerComponents=True|IncludeTopLayerComponents=True|IncludeViewports=True|Index=0|Mirror=False|Name=Multilayer Composite Print|PadNumberFontSize=14|Record=PcbPrintOut|ShowHoles=False|ShowPadNets=False|ShowPadNumbers=False|SubstituteFonts=False|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 209 | Configuration6_Name3=OutputConfigurationParameter3 210 | Configuration6_Item3=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=TopOverlay|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 211 | Configuration6_Name4=OutputConfigurationParameter4 212 | Configuration6_Item4=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=TopLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 213 | Configuration6_Name5=OutputConfigurationParameter5 214 | Configuration6_Item5=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=MidLayer1|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 215 | Configuration6_Name6=OutputConfigurationParameter6 216 | Configuration6_Item6=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=MidLayer2|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 217 | Configuration6_Name7=OutputConfigurationParameter7 218 | Configuration6_Item7=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=BottomLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 219 | Configuration6_Name8=OutputConfigurationParameter8 220 | Configuration6_Item8=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=MultiLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 221 | Configuration6_Name9=OutputConfigurationParameter9 222 | Configuration6_Item9=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=BottomOverlay|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 223 | Configuration6_Name10=OutputConfigurationParameter10 224 | Configuration6_Item10=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=KeepOutLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 225 | Configuration6_Name11=OutputConfigurationParameter11 226 | Configuration6_Item11=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical1|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 227 | Configuration6_Name12=OutputConfigurationParameter12 228 | Configuration6_Item12=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical13|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 229 | Configuration6_Name13=OutputConfigurationParameter13 230 | Configuration6_Item13=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical15|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 231 | PcbPrintPreferences6= 232 | OutputType7=PCB Print 233 | OutputName7=PCB Prints 234 | OutputCategory7=Documentation 235 | OutputDocumentPath7=Solar.PcbDoc 236 | OutputVariantName7= 237 | OutputEnabled7=1 238 | OutputEnabled7_OutputMedium1=0 239 | OutputEnabled7_OutputMedium2=7 240 | OutputEnabled7_OutputMedium3=0 241 | OutputEnabled7_OutputMedium4=0 242 | OutputDefault7=0 243 | PageOptions7=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=12.31|XCorrection=1.00|YCorrection=1.00|PrintKind=0|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 244 | Configuration7_Name1=OutputConfigurationParameter1 245 | Configuration7_Item1=DesignatorDisplayMode=Physical|PrintArea=DesignExtent|PrintAreaLowerLeftCornerX=0|PrintAreaLowerLeftCornerY=0|PrintAreaUpperRightCornerX=0|PrintAreaUpperRightCornerY=0|Record=PcbPrintView|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 246 | Configuration7_Name2=OutputConfigurationParameter2 247 | Configuration7_Item2=IncludeBoardCutouts=False|IncludeBottomLayerComponents=True|IncludeMultiLayerComponents=True|IncludeTopLayerComponents=True|IncludeViewports=True|Index=0|Mirror=False|Name=Multilayer Composite Print|PadNumberFontSize=14|Record=PcbPrintOut|ShowHoles=False|ShowPadNets=False|ShowPadNumbers=False|SubstituteFonts=False|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 248 | Configuration7_Name3=OutputConfigurationParameter3 249 | Configuration7_Item3=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=TopOverlay|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 250 | Configuration7_Name4=OutputConfigurationParameter4 251 | Configuration7_Item4=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=TopLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 252 | Configuration7_Name5=OutputConfigurationParameter5 253 | Configuration7_Item5=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=MidLayer1|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 254 | Configuration7_Name6=OutputConfigurationParameter6 255 | Configuration7_Item6=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=MidLayer2|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 256 | Configuration7_Name7=OutputConfigurationParameter7 257 | Configuration7_Item7=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=BottomLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 258 | Configuration7_Name8=OutputConfigurationParameter8 259 | Configuration7_Item8=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=MultiLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 260 | Configuration7_Name9=OutputConfigurationParameter9 261 | Configuration7_Item9=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=BottomOverlay|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 262 | Configuration7_Name10=OutputConfigurationParameter10 263 | Configuration7_Item10=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=KeepOutLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 264 | Configuration7_Name11=OutputConfigurationParameter11 265 | Configuration7_Item11=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical1|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 266 | Configuration7_Name12=OutputConfigurationParameter12 267 | Configuration7_Item12=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical13|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 268 | Configuration7_Name13=OutputConfigurationParameter13 269 | Configuration7_Item13=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical15|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Accl\IMU.PcbDoc 270 | PcbPrintPreferences7= 271 | OutputType8=BOM_PartType 272 | OutputName8=Bill of Materials 273 | OutputCategory8=Report 274 | OutputDocumentPath8= 275 | OutputVariantName8=[No Variations] 276 | OutputEnabled8=1 277 | OutputEnabled8_OutputMedium1=0 278 | OutputEnabled8_OutputMedium2=8 279 | OutputEnabled8_OutputMedium3=0 280 | OutputEnabled8_OutputMedium4=0 281 | OutputDefault8=0 282 | PageOptions8=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 283 | Configuration8_Name1=ColumnNameFormat 284 | Configuration8_Item1=CaptionAsName 285 | Configuration8_Name2=Filter 286 | Configuration8_Item2=545046300E5446696C74657257726170706572000D46696C7465722E416374697665090F46696C7465722E43726974657269610A04000000000000000000 287 | Configuration8_Name3=ForceUpdateSettings 288 | Configuration8_Item3=False 289 | Configuration8_Name4=General 290 | Configuration8_Item4=TemplateFilename= 291 | Configuration8_Name5=GroupOrder 292 | Configuration8_Item5=Digi-Key Part Number=True|Manufacturer=True|Manufacturer Part Number=True|Supplier 1=True|Supplier Part Number 1=True|Value=True|Footprint=True|Comment=True 293 | Configuration8_Name6=OutputConfigurationParameter1 294 | Configuration8_Item6=100|Designator=100|Digi-Key Part Number=100|Quantity=100|Supplier 1=100|Supplier Part Number 1=100|Value=100|Footprint=100 295 | Configuration8_Name7=SortOrder 296 | Configuration8_Item7=Designator=Up|Comment=Up|Footprint=Up 297 | Configuration8_Name8=VisibleOrder 298 | Configuration8_Item8=Designator=100|Description=100|Manufacturer=100|Manufacturer Part Number=100|Digi-Key Part Number=100|Supplier 1=100|Supplier Part Number 1=100|Quantity=100|Value=100|Footprint=100|Comment=100 299 | 300 | [PublishSettings] 301 | OutputFilePath2=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Panel\.PDF 302 | ReleaseManaged2=0 303 | OutputBasePath2=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Panel\ 304 | OutputPathMedia2= 305 | OutputPathMediaValue2= 306 | OutputPathOutputer2=[Output Type] 307 | OutputPathOutputerPrefix2= 308 | OutputPathOutputerValue2= 309 | OutputFileName2=Panel.pdf 310 | OutputFileNameMulti2= 311 | UseOutputNameForMulti2=1 312 | OutputFileNameSpecial2= 313 | OpenOutput2=1 314 | PromptOverwrite2=1 315 | PublishMethod2=0 316 | ZoomLevel2=50 317 | FitSCHPrintSizeToDoc2=0 318 | FitPCBPrintSizeToDoc2=0 319 | GenerateNetsInfo2=1 320 | MarkPins2=1 321 | MarkNetLabels2=1 322 | MarkPortsId2=1 323 | GenerateTOC2=1 324 | ShowComponentParameters2=1 325 | GlobalBookmarks2=0 326 | PDFACompliance2=Disabled 327 | PDFVersion2=Default 328 | OutputFilePath3= 329 | ReleaseManaged3=1 330 | OutputBasePath3= 331 | OutputPathMedia3= 332 | OutputPathMediaValue3= 333 | OutputPathOutputer3=[Output Type] 334 | OutputPathOutputerPrefix3= 335 | OutputPathOutputerValue3= 336 | OutputFileName3= 337 | OutputFileNameMulti3= 338 | UseOutputNameForMulti3=1 339 | OutputFileNameSpecial3= 340 | OpenOutput3=1 341 | OutputFilePath4= 342 | ReleaseManaged4=1 343 | OutputBasePath4= 344 | OutputPathMedia4= 345 | OutputPathMediaValue4= 346 | OutputPathOutputer4=[Output Type] 347 | OutputPathOutputerPrefix4= 348 | OutputPathOutputerValue4= 349 | OutputFileName4= 350 | OutputFileNameMulti4= 351 | UseOutputNameForMulti4=1 352 | OutputFileNameSpecial4= 353 | OpenOutput4=1 354 | PromptOverwrite4=1 355 | PublishMethod4=5 356 | ZoomLevel4=50 357 | FitSCHPrintSizeToDoc4=1 358 | FitPCBPrintSizeToDoc4=1 359 | GenerateNetsInfo4=1 360 | MarkPins4=1 361 | MarkNetLabels4=1 362 | MarkPortsId4=1 363 | MediaFormat4=Windows Media file (*.wmv,*.wma,*.asf) 364 | FixedDimensions4=1 365 | Width4=352 366 | Height4=288 367 | MultiFile4=0 368 | FramesPerSecond4=25 369 | FramesPerSecondDenom4=1 370 | AviPixelFormat4=7 371 | AviCompression4=MP42 MS-MPEG4 V2 372 | AviQuality4=100 373 | FFmpegVideoCodecId4=12 374 | FFmpegPixelFormat4=0 375 | FFmpegQuality4=80 376 | WmvVideoCodecName4=Windows Media Video V7 377 | WmvQuality4=80 378 | 379 | [GeneratedFilesSettings] 380 | RelativeOutputPath2=Z:\wisp6\wisp-6-0\wisp-6-0\mount-on_boards\Panel\.PDF 381 | OpenOutputs2=1 382 | RelativeOutputPath3= 383 | OpenOutputs3=1 384 | AddToProject3=1 385 | TimestampFolder3=0 386 | UseOutputName3=0 387 | OpenODBOutput3=0 388 | OpenGerberOutput3=0 389 | OpenNCDrillOutput3=0 390 | OpenIPCOutput3=0 391 | EnableReload3=0 392 | RelativeOutputPath4= 393 | OpenOutputs4=1 394 | 395 | -------------------------------------------------------------------------------- /addon_boards/Panel/Panel.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wisp/wisp6-hardware/b3402b5a4a9843f840eadc495710a15e2e6c99c8/addon_boards/Panel/Panel.pdf -------------------------------------------------------------------------------- /addon_boards/Panel/Tag-Panel-V.PcbDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wisp/wisp6-hardware/b3402b5a4a9843f840eadc495710a15e2e6c99c8/addon_boards/Panel/Tag-Panel-V.PcbDoc -------------------------------------------------------------------------------- /addon_boards/Panel/Tag-Panel.PcbDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wisp/wisp6-hardware/b3402b5a4a9843f840eadc495710a15e2e6c99c8/addon_boards/Panel/Tag-Panel.PcbDoc -------------------------------------------------------------------------------- /addon_boards/Panel/Tag-panel.SchDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wisp/wisp6-hardware/b3402b5a4a9843f840eadc495710a15e2e6c99c8/addon_boards/Panel/Tag-panel.SchDoc -------------------------------------------------------------------------------- /addon_boards/Solar/CAMtastic1.Cam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wisp/wisp6-hardware/b3402b5a4a9843f840eadc495710a15e2e6c99c8/addon_boards/Solar/CAMtastic1.Cam -------------------------------------------------------------------------------- /addon_boards/Solar/CAMtastic2.Cam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wisp/wisp6-hardware/b3402b5a4a9843f840eadc495710a15e2e6c99c8/addon_boards/Solar/CAMtastic2.Cam -------------------------------------------------------------------------------- /addon_boards/Solar/CAMtastic3.Cam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wisp/wisp6-hardware/b3402b5a4a9843f840eadc495710a15e2e6c99c8/addon_boards/Solar/CAMtastic3.Cam -------------------------------------------------------------------------------- /addon_boards/Solar/Solar-Harvester.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wisp/wisp6-hardware/b3402b5a4a9843f840eadc495710a15e2e6c99c8/addon_boards/Solar/Solar-Harvester.pdf -------------------------------------------------------------------------------- /addon_boards/Solar/Solar.PcbDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wisp/wisp6-hardware/b3402b5a4a9843f840eadc495710a15e2e6c99c8/addon_boards/Solar/Solar.PcbDoc -------------------------------------------------------------------------------- /addon_boards/Solar/Solar.SchDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wisp/wisp6-hardware/b3402b5a4a9843f840eadc495710a15e2e6c99c8/addon_boards/Solar/Solar.SchDoc -------------------------------------------------------------------------------- /libraries/ADG902BRMZ.SchLib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wisp/wisp6-hardware/b3402b5a4a9843f840eadc495710a15e2e6c99c8/libraries/ADG902BRMZ.SchLib -------------------------------------------------------------------------------- /libraries/BGA4C2X2X50P_117X117X42.PcbLib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wisp/wisp6-hardware/b3402b5a4a9843f840eadc495710a15e2e6c99c8/libraries/BGA4C2X2X50P_117X117X42.PcbLib -------------------------------------------------------------------------------- /libraries/BLE.PcbLib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wisp/wisp6-hardware/b3402b5a4a9843f840eadc495710a15e2e6c99c8/libraries/BLE.PcbLib -------------------------------------------------------------------------------- /libraries/BLE.SchLib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wisp/wisp6-hardware/b3402b5a4a9843f840eadc495710a15e2e6c99c8/libraries/BLE.SchLib -------------------------------------------------------------------------------- /libraries/CAPPRD500W60D1000H3200.PcbLib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wisp/wisp6-hardware/b3402b5a4a9843f840eadc495710a15e2e6c99c8/libraries/CAPPRD500W60D1000H3200.PcbLib -------------------------------------------------------------------------------- /libraries/FDY1002PZ.SchLib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wisp/wisp6-hardware/b3402b5a4a9843f840eadc495710a15e2e6c99c8/libraries/FDY1002PZ.SchLib -------------------------------------------------------------------------------- /libraries/HDC2010YPAR.PcbLib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wisp/wisp6-hardware/b3402b5a4a9843f840eadc495710a15e2e6c99c8/libraries/HDC2010YPAR.PcbLib -------------------------------------------------------------------------------- /libraries/HDC2010YPAR.SchLib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wisp/wisp6-hardware/b3402b5a4a9843f840eadc495710a15e2e6c99c8/libraries/HDC2010YPAR.SchLib -------------------------------------------------------------------------------- /libraries/LMV1032URX-25_NOPB.SchLib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wisp/wisp6-hardware/b3402b5a4a9843f840eadc495710a15e2e6c99c8/libraries/LMV1032URX-25_NOPB.SchLib -------------------------------------------------------------------------------- /libraries/MAX4466EXK.PcbLib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wisp/wisp6-hardware/b3402b5a4a9843f840eadc495710a15e2e6c99c8/libraries/MAX4466EXK.PcbLib -------------------------------------------------------------------------------- /libraries/SOP65P490X110-8N.PcbLib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wisp/wisp6-hardware/b3402b5a4a9843f840eadc495710a15e2e6c99c8/libraries/SOP65P490X110-8N.PcbLib -------------------------------------------------------------------------------- /libraries/SOT50P160X60-6N.PcbLib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wisp/wisp6-hardware/b3402b5a4a9843f840eadc495710a15e2e6c99c8/libraries/SOT50P160X60-6N.PcbLib -------------------------------------------------------------------------------- /libraries/WISP_AD10.PcbLib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wisp/wisp6-hardware/b3402b5a4a9843f840eadc495710a15e2e6c99c8/libraries/WISP_AD10.PcbLib -------------------------------------------------------------------------------- /libraries/WISP_AD10.SchLib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wisp/wisp6-hardware/b3402b5a4a9843f840eadc495710a15e2e6c99c8/libraries/WISP_AD10.SchLib -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2014, University of Washington 2 | All rights reserved. 3 | 4 | Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 5 | 6 | 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 7 | 8 | 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 9 | 10 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------