├── .gitattributes ├── .gitignore ├── 1、电路 ├── Bed │ ├── GSH_3dprint_Bed12V_final.PcbDoc │ ├── GSH_Bed v1.0.PcbDoc │ ├── GSH_Bed.PcbLib │ ├── GSH_Bed12V_final.PcbDoc │ ├── GSH_Bed24V_final.PcbDoc │ └── GSH_Bedv3.0.PcbDoc ├── GSH_Bed_mainboard │ ├── BOM.xlsx │ ├── GSH_Bed.PcbLib │ ├── GSH_Bed.SchLib │ ├── GSH_Bed_V1.0.PcbDoc │ ├── GSH_Bed_V1.0.SchDoc │ ├── GSH_Bed_v1.0.PrjPcb │ └── 历史文件 │ │ ├── Bed.PcbDoc │ │ ├── Copy of GSH_Bed_V1.0.PcbDoc │ │ └── GSH_Bed_mainboard.SchDoc └── 参考资料 │ ├── C16030_MAX6675ISA_2017-07-13.PDF │ ├── C181103_TL431_2018-01-31.PDF │ ├── C315567_AON7544_datesheet.PDF │ ├── C85225_LM2940L-50-TN3-R_2016-11-04.PDF │ ├── IRFS7530TRLPBF.PDF │ ├── STC12C5A60S2.pdf │ ├── STC89C52.pdf │ ├── Toshiba-TPCA8028-H.pdf │ ├── 修订版热电偶参考表 K 型热电偶 ˚C.pdf │ └── 新唐N76E003AT20.PDF ├── 2、固件 ├── Application │ ├── ADC │ │ ├── STC12(ADC flag).c │ │ └── STC12(ADC flag).h │ ├── EEPROM │ │ ├── EEPROM.c │ │ └── EEPROM.h │ ├── LCD1602 │ │ ├── LCD1602.c │ │ └── LCD1602.h │ ├── SYS │ │ ├── Sys.c │ │ └── Sys.h │ ├── Task.c │ ├── Task.h │ ├── Thermistortables │ │ ├── Thermistortables.c │ │ └── Thermistortables.h │ ├── Timer │ │ ├── Timer.c │ │ └── Timer.h │ ├── UART │ │ ├── Uart.c │ │ └── Uart.h │ └── cfg.h ├── GSH.uvproj ├── Hex文件,不知道为啥不能接上传.zip ├── keilclear.bat └── main.c ├── README.md ├── 丝印贴图 ├── 111.jpg ├── 5ab5c9ea15ce36d3e616956539f33a87e950b150.jpg ├── KJ0.jpg ├── QQ截图20210401032627.png ├── QQ截图20210401032648.png ├── 可回收.jpeg ├── 宇航员.jpeg ├── 当心高温.jpeg └── 高温.jpg ├── 功能设计.txt ├── 控制系统设计.xmind ├── 热床设计计算方法.txt ├── 熨斗.png ├── 程序流程.xmind ├── 系统框架.xmind └── 结构 ├── GSH_Bed_V1.SLDPRT ├── PCB热床.SLDPRT ├── ~$后端支撑.SLDPRT ├── 前面板.SLDPRT ├── 后端支撑.SLDPRT ├── 按钮.SLDPRT ├── 支架1.SLDPRT ├── 支架2.SLDPRT └── 装配体.SLDASM /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Prerequisites 2 | *.d 3 | 4 | # Object files 5 | *.o 6 | *.ko 7 | *.obj 8 | *.elf 9 | 10 | # Linker output 11 | *.ilk 12 | *.map 13 | *.exp 14 | 15 | # Precompiled Headers 16 | *.gch 17 | *.pch 18 | 19 | # Libraries 20 | *.lib 21 | *.a 22 | *.la 23 | *.lo 24 | 25 | # Shared objects (inc. Windows DLLs) 26 | *.dll 27 | *.so 28 | *.so.* 29 | *.dylib 30 | 31 | # Executables 32 | *.exe 33 | *.out 34 | *.app 35 | *.i*86 36 | *.x86_64 37 | *.hex 38 | 39 | # Debug files 40 | *.dSYM/ 41 | *.su 42 | *.idb 43 | *.pdb 44 | 45 | # Kernel Module Compile Results 46 | *.mod* 47 | *.cmd 48 | .tmp_versions/ 49 | modules.order 50 | Module.symvers 51 | Mkfile.old 52 | dkms.conf 53 | -------------------------------------------------------------------------------- /1、电路/Bed/GSH_3dprint_Bed12V_final.PcbDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRobot-Origin/GS_Hbed/6a99291de7525dec9469b7fccf815a05cc9b16a6/1、电路/Bed/GSH_3dprint_Bed12V_final.PcbDoc -------------------------------------------------------------------------------- /1、电路/Bed/GSH_Bed v1.0.PcbDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRobot-Origin/GS_Hbed/6a99291de7525dec9469b7fccf815a05cc9b16a6/1、电路/Bed/GSH_Bed v1.0.PcbDoc -------------------------------------------------------------------------------- /1、电路/Bed/GSH_Bed.PcbLib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRobot-Origin/GS_Hbed/6a99291de7525dec9469b7fccf815a05cc9b16a6/1、电路/Bed/GSH_Bed.PcbLib -------------------------------------------------------------------------------- /1、电路/Bed/GSH_Bed12V_final.PcbDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRobot-Origin/GS_Hbed/6a99291de7525dec9469b7fccf815a05cc9b16a6/1、电路/Bed/GSH_Bed12V_final.PcbDoc -------------------------------------------------------------------------------- /1、电路/Bed/GSH_Bed24V_final.PcbDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRobot-Origin/GS_Hbed/6a99291de7525dec9469b7fccf815a05cc9b16a6/1、电路/Bed/GSH_Bed24V_final.PcbDoc -------------------------------------------------------------------------------- /1、电路/Bed/GSH_Bedv3.0.PcbDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRobot-Origin/GS_Hbed/6a99291de7525dec9469b7fccf815a05cc9b16a6/1、电路/Bed/GSH_Bedv3.0.PcbDoc -------------------------------------------------------------------------------- /1、电路/GSH_Bed_mainboard/BOM.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRobot-Origin/GS_Hbed/6a99291de7525dec9469b7fccf815a05cc9b16a6/1、电路/GSH_Bed_mainboard/BOM.xlsx -------------------------------------------------------------------------------- /1、电路/GSH_Bed_mainboard/GSH_Bed.PcbLib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRobot-Origin/GS_Hbed/6a99291de7525dec9469b7fccf815a05cc9b16a6/1、电路/GSH_Bed_mainboard/GSH_Bed.PcbLib -------------------------------------------------------------------------------- /1、电路/GSH_Bed_mainboard/GSH_Bed.SchLib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRobot-Origin/GS_Hbed/6a99291de7525dec9469b7fccf815a05cc9b16a6/1、电路/GSH_Bed_mainboard/GSH_Bed.SchLib -------------------------------------------------------------------------------- /1、电路/GSH_Bed_mainboard/GSH_Bed_V1.0.PcbDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRobot-Origin/GS_Hbed/6a99291de7525dec9469b7fccf815a05cc9b16a6/1、电路/GSH_Bed_mainboard/GSH_Bed_V1.0.PcbDoc -------------------------------------------------------------------------------- /1、电路/GSH_Bed_mainboard/GSH_Bed_V1.0.SchDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRobot-Origin/GS_Hbed/6a99291de7525dec9469b7fccf815a05cc9b16a6/1、电路/GSH_Bed_mainboard/GSH_Bed_V1.0.SchDoc -------------------------------------------------------------------------------- /1、电路/GSH_Bed_mainboard/GSH_Bed_v1.0.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=1 27 | PushECOToAnnotationFile=1 28 | DItemRevisionGUID= 29 | ReportSuppressedErrorsInMessages=0 30 | FSMCodingStyle=eFMSDropDownList_OneProcess 31 | FSMEncodingStyle=eFMSDropDownList_OneHot 32 | IsProjectConflictPreventionWarningsEnabled=0 33 | OutputPath= 34 | LogFolderPath= 35 | ManagedProjectGUID= 36 | IncludeDesignInRelease=0 37 | 38 | [Preferences] 39 | PrefsVaultGUID= 40 | PrefsRevisionGUID= 41 | 42 | [Document1] 43 | DocumentPath=GSH_Bed.SchLib 44 | AnnotationEnabled=1 45 | AnnotateStartValue=1 46 | AnnotationIndexControlEnabled=0 47 | AnnotateSuffix= 48 | AnnotateScope=All 49 | AnnotateOrder=-1 50 | DoLibraryUpdate=1 51 | DoDatabaseUpdate=1 52 | ClassGenCCAutoEnabled=1 53 | ClassGenCCAutoRoomEnabled=1 54 | ClassGenNCAutoScope=None 55 | DItemRevisionGUID= 56 | GenerateClassCluster=0 57 | DocumentUniqueId=JTIWTTIF 58 | 59 | [Document2] 60 | DocumentPath=GSH_Bed.PcbLib 61 | AnnotationEnabled=1 62 | AnnotateStartValue=1 63 | AnnotationIndexControlEnabled=0 64 | AnnotateSuffix= 65 | AnnotateScope=All 66 | AnnotateOrder=-1 67 | DoLibraryUpdate=1 68 | DoDatabaseUpdate=1 69 | ClassGenCCAutoEnabled=1 70 | ClassGenCCAutoRoomEnabled=1 71 | ClassGenNCAutoScope=None 72 | DItemRevisionGUID= 73 | GenerateClassCluster=0 74 | DocumentUniqueId=TPBOSTJX 75 | 76 | [Document3] 77 | DocumentPath=GSH_Bed_V1.0.SchDoc 78 | AnnotationEnabled=1 79 | AnnotateStartValue=1 80 | AnnotationIndexControlEnabled=0 81 | AnnotateSuffix= 82 | AnnotateScope=All 83 | AnnotateOrder=0 84 | DoLibraryUpdate=1 85 | DoDatabaseUpdate=1 86 | ClassGenCCAutoEnabled=1 87 | ClassGenCCAutoRoomEnabled=1 88 | ClassGenNCAutoScope=None 89 | DItemRevisionGUID= 90 | GenerateClassCluster=0 91 | DocumentUniqueId=NVIMZXLO 92 | 93 | [Document4] 94 | DocumentPath=GSH_Bed_V1.0.PcbDoc 95 | AnnotationEnabled=1 96 | AnnotateStartValue=1 97 | AnnotationIndexControlEnabled=0 98 | AnnotateSuffix= 99 | AnnotateScope=All 100 | AnnotateOrder=-1 101 | DoLibraryUpdate=1 102 | DoDatabaseUpdate=1 103 | ClassGenCCAutoEnabled=1 104 | ClassGenCCAutoRoomEnabled=1 105 | ClassGenNCAutoScope=None 106 | DItemRevisionGUID= 107 | GenerateClassCluster=0 108 | DocumentUniqueId=NAPUOBDL 109 | 110 | [Configuration1] 111 | Name=Sources 112 | ParameterCount=0 113 | ConstraintFileCount=0 114 | ReleaseItemId= 115 | Variant=[No Variations] 116 | OutputJobsCount=0 117 | ContentTypeGUID=CB6F2064-E317-11DF-B822-12313F0024A2 118 | ConfigurationType=Source 119 | 120 | [OutputGroup1] 121 | Name=Netlist Outputs 122 | Description= 123 | TargetPrinter=Microsoft Print to PDF 124 | PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 125 | OutputType1=CadnetixNetlist 126 | OutputName1=Cadnetix Netlist 127 | OutputDocumentPath1= 128 | OutputVariantName1= 129 | OutputDefault1=0 130 | OutputType2=CalayNetlist 131 | OutputName2=Calay Netlist 132 | OutputDocumentPath2= 133 | OutputVariantName2= 134 | OutputDefault2=0 135 | OutputType3=EDIF 136 | OutputName3=EDIF for PCB 137 | OutputDocumentPath3= 138 | OutputVariantName3= 139 | OutputDefault3=0 140 | OutputType4=EESofNetlist 141 | OutputName4=EESof Netlist 142 | OutputDocumentPath4= 143 | OutputVariantName4= 144 | OutputDefault4=0 145 | OutputType5=IntergraphNetlist 146 | OutputName5=Intergraph Netlist 147 | OutputDocumentPath5= 148 | OutputVariantName5= 149 | OutputDefault5=0 150 | OutputType6=MentorBoardStationNetlist 151 | OutputName6=Mentor BoardStation Netlist 152 | OutputDocumentPath6= 153 | OutputVariantName6= 154 | OutputDefault6=0 155 | OutputType7=MultiWire 156 | OutputName7=MultiWire 157 | OutputDocumentPath7= 158 | OutputVariantName7= 159 | OutputDefault7=0 160 | OutputType8=OrCadPCB2Netlist 161 | OutputName8=Orcad/PCB2 Netlist 162 | OutputDocumentPath8= 163 | OutputVariantName8= 164 | OutputDefault8=0 165 | OutputType9=PADSNetlist 166 | OutputName9=PADS ASCII Netlist 167 | OutputDocumentPath9= 168 | OutputVariantName9= 169 | OutputDefault9=0 170 | OutputType10=Pcad 171 | OutputName10=Pcad for PCB 172 | OutputDocumentPath10= 173 | OutputVariantName10= 174 | OutputDefault10=0 175 | OutputType11=PCADNetlist 176 | OutputName11=PCAD Netlist 177 | OutputDocumentPath11= 178 | OutputVariantName11= 179 | OutputDefault11=0 180 | OutputType12=PCADnltNetlist 181 | OutputName12=PCADnlt Netlist 182 | OutputDocumentPath12= 183 | OutputVariantName12= 184 | OutputDefault12=0 185 | OutputType13=Protel2Netlist 186 | OutputName13=Protel2 Netlist 187 | OutputDocumentPath13= 188 | OutputVariantName13= 189 | OutputDefault13=0 190 | OutputType14=ProtelNetlist 191 | OutputName14=Protel 192 | OutputDocumentPath14= 193 | OutputVariantName14= 194 | OutputDefault14=0 195 | OutputType15=RacalNetlist 196 | OutputName15=Racal Netlist 197 | OutputDocumentPath15= 198 | OutputVariantName15= 199 | OutputDefault15=0 200 | OutputType16=RINFNetlist 201 | OutputName16=RINF Netlist 202 | OutputDocumentPath16= 203 | OutputVariantName16= 204 | OutputDefault16=0 205 | OutputType17=SciCardsNetlist 206 | OutputName17=SciCards Netlist 207 | OutputDocumentPath17= 208 | OutputVariantName17= 209 | OutputDefault17=0 210 | OutputType18=TangoNetlist 211 | OutputName18=Tango Netlist 212 | OutputDocumentPath18= 213 | OutputVariantName18= 214 | OutputDefault18=0 215 | OutputType19=TelesisNetlist 216 | OutputName19=Telesis Netlist 217 | OutputDocumentPath19= 218 | OutputVariantName19= 219 | OutputDefault19=0 220 | OutputType20=WireListNetlist 221 | OutputName20=WireList Netlist 222 | OutputDocumentPath20= 223 | OutputVariantName20= 224 | OutputDefault20=0 225 | 226 | [OutputGroup2] 227 | Name=Simulator Outputs 228 | Description= 229 | TargetPrinter=Microsoft Print to PDF 230 | PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 231 | 232 | [OutputGroup3] 233 | Name=Documentation Outputs 234 | Description= 235 | TargetPrinter=Virtual Printer 236 | PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 237 | OutputType1=Composite 238 | OutputName1=Composite Drawing 239 | OutputDocumentPath1= 240 | OutputVariantName1= 241 | OutputDefault1=0 242 | PageOptions1=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=3.56|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=A4|PaperIndex=9 243 | Configuration1_Name1=OutputConfigurationParameter1 244 | Configuration1_Item1=DesignatorDisplayMode=Physical|PrintArea=DesignExtent|PrintAreaLowerLeftCornerX=0|PrintAreaLowerLeftCornerY=0|PrintAreaUpperRightCornerX=0|PrintAreaUpperRightCornerY=0|Record=PcbPrintView|DocumentPath=G:\文件\项目\5、铝基加热板\电路设计\GSH_Bed_mainboard\GSH_Bed_V1.0.PcbDoc 245 | Configuration1_Name2=OutputConfigurationParameter2 246 | Configuration1_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=G:\文件\项目\5、铝基加热板\电路设计\GSH_Bed_mainboard\GSH_Bed_V1.0.PcbDoc 247 | Configuration1_Name3=OutputConfigurationParameter3 248 | Configuration1_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=G:\文件\项目\5、铝基加热板\电路设计\GSH_Bed_mainboard\GSH_Bed_V1.0.PcbDoc 249 | Configuration1_Name4=OutputConfigurationParameter4 250 | Configuration1_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=G:\文件\项目\5、铝基加热板\电路设计\GSH_Bed_mainboard\GSH_Bed_V1.0.PcbDoc 251 | Configuration1_Name5=OutputConfigurationParameter5 252 | Configuration1_Item5=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=BottomLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=G:\文件\项目\5、铝基加热板\电路设计\GSH_Bed_mainboard\GSH_Bed_V1.0.PcbDoc 253 | Configuration1_Name6=OutputConfigurationParameter6 254 | Configuration1_Item6=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=MultiLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=G:\文件\项目\5、铝基加热板\电路设计\GSH_Bed_mainboard\GSH_Bed_V1.0.PcbDoc 255 | Configuration1_Name7=OutputConfigurationParameter7 256 | Configuration1_Item7=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=BottomOverlay|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=G:\文件\项目\5、铝基加热板\电路设计\GSH_Bed_mainboard\GSH_Bed_V1.0.PcbDoc 257 | Configuration1_Name8=OutputConfigurationParameter8 258 | Configuration1_Item8=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=KeepOutLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=G:\文件\项目\5、铝基加热板\电路设计\GSH_Bed_mainboard\GSH_Bed_V1.0.PcbDoc 259 | Configuration1_Name9=OutputConfigurationParameter9 260 | Configuration1_Item9=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical1|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=G:\文件\项目\5、铝基加热板\电路设计\GSH_Bed_mainboard\GSH_Bed_V1.0.PcbDoc 261 | Configuration1_Name10=OutputConfigurationParameter10 262 | Configuration1_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=Mechanical4|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=G:\文件\项目\5、铝基加热板\电路设计\GSH_Bed_mainboard\GSH_Bed_V1.0.PcbDoc 263 | Configuration1_Name11=OutputConfigurationParameter11 264 | Configuration1_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=Mechanical5|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=G:\文件\项目\5、铝基加热板\电路设计\GSH_Bed_mainboard\GSH_Bed_V1.0.PcbDoc 265 | Configuration1_Name12=OutputConfigurationParameter12 266 | Configuration1_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=G:\文件\项目\5、铝基加热板\电路设计\GSH_Bed_mainboard\GSH_Bed_V1.0.PcbDoc 267 | Configuration1_Name13=OutputConfigurationParameter13 268 | Configuration1_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=G:\文件\项目\5、铝基加热板\电路设计\GSH_Bed_mainboard\GSH_Bed_V1.0.PcbDoc 269 | OutputType2=PCB 3D Print 270 | OutputName2=PCB 3D Print 271 | OutputDocumentPath2= 272 | OutputVariantName2=[No Variations] 273 | OutputDefault2=0 274 | 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=A4|PaperIndex=9 275 | OutputType3=PCB 3D Video 276 | OutputName3=PCB 3D Video 277 | OutputDocumentPath3= 278 | OutputVariantName3=[No Variations] 279 | OutputDefault3=0 280 | 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=A4|PaperIndex=9 281 | OutputType4=PCB Print 282 | OutputName4=PCB Prints 283 | OutputDocumentPath4= 284 | OutputVariantName4= 285 | OutputDefault4=0 286 | 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=A4|PaperIndex=9 287 | OutputType5=PCBDrawing 288 | OutputName5=Draftsman 289 | OutputDocumentPath5= 290 | OutputVariantName5=[No Variations] 291 | OutputDefault5=0 292 | 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=A4|PaperIndex=9 293 | OutputType6=PCBLIB Print 294 | OutputName6=PCBLIB Prints 295 | OutputDocumentPath6= 296 | OutputVariantName6= 297 | OutputDefault6=0 298 | 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=A4|PaperIndex=9 299 | OutputType7=PDF3D 300 | OutputName7=PDF3D 301 | OutputDocumentPath7= 302 | OutputVariantName7=[No Variations] 303 | OutputDefault7=0 304 | 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=A4|PaperIndex=9 305 | OutputType8=PDF3D MBA 306 | OutputName8=PDF3D MBA 307 | OutputDocumentPath8= 308 | OutputVariantName8= 309 | OutputDefault8=0 310 | 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=A4|PaperIndex=9 311 | OutputType9=Report Print 312 | OutputName9=Report Prints 313 | OutputDocumentPath9= 314 | OutputVariantName9= 315 | OutputDefault9=0 316 | 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=A4|PaperIndex=9 317 | OutputType10=Schematic Print 318 | OutputName10=Schematic Prints 319 | OutputDocumentPath10= 320 | OutputVariantName10= 321 | OutputDefault10=0 322 | 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=A4|PaperIndex=9 323 | OutputType11=SimView Print 324 | OutputName11=SimView Prints 325 | OutputDocumentPath11= 326 | OutputVariantName11= 327 | OutputDefault11=0 328 | 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=A4|PaperIndex=9 329 | 330 | [OutputGroup4] 331 | Name=Assembly Outputs 332 | Description= 333 | TargetPrinter=Microsoft Print to PDF 334 | PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 335 | OutputType1=Test Points For Assembly 336 | OutputName1=Test Point Report 337 | OutputDocumentPath1= 338 | OutputVariantName1=[No Variations] 339 | OutputDefault1=0 340 | OutputType2=Pick Place 341 | OutputName2=Generates pick and place files 342 | OutputDocumentPath2= 343 | OutputVariantName2=[No Variations] 344 | OutputDefault2=0 345 | Configuration2_Name1=ForceUpdateSettings 346 | Configuration2_Item1=False 347 | Configuration2_Name2=OutputConfigurationParameter1 348 | Configuration2_Item2=Record=PickPlaceView|Units=Imperial|GenerateCSVFormat=False|GenerateTextFormat=True|ShowUnits=False|Separator=.|ExcludeFilterParam=False|IncludeVariations=False|IncludeStandardNoBOM=True|Filter= |FilterActive=False|YFlip=False|Column#1=Name:Designator,Fixed:True,Metric:False,Visible:True,Sort:None,Position:0|Column#2=Name:Comment,Fixed:True,Metric:False,Visible:True,Sort:None,Position:1|Column#3=Name:Layer,Fixed:True,Metric:False,Visible:True,Sort:None,Position:2|Column#4=Name:Footprint,Fixed:True,Metric:False,Visible:True,Sort:None,Position:3|Column#5=Name:Footprint Description,Fixed:True,Metric:False,Visible:False,Sort:None,Position:4|Column#6=Name:Center-X,Fixed:True,Metric:True,Visible:True,Sort:None,Position:5|Column#7=Name:Center-Y,Fixed:True,Metric:True,Visible:True,Sort:None,Position:6|Column#8=Name:Rotation,Fixed:True,Metric:False,Visible:True,Sort:None,Position:7|Column#9=Name:Description,Fixed:True,Metric:False,Visible:True,Sort:None,Position:8|Column#10=Name:ComponentKind,Fixed:True,Metric:False,Visible:False,Sort:None,Position:9|Column#11=Name:Height,Fixed:True,Metric:True,Visible:False,Sort:None,Position:10|Column#12=Name:Ref-X,Fixed:True,Metric:True,Visible:False,Sort:None,Position:11|Column#13=Name:Ref-Y,Fixed:True,Metric:True,Visible:False,Sort:None,Position:12|Column#14=Name:Pad-X,Fixed:True,Metric:True,Visible:False,Sort:None,Position:13|Column#15=Name:Pad-Y,Fixed:True,Metric:True,Visible:False,Sort:None,Position:14|Column#16=Name:Variation,Fixed:True,Metric:False,Visible:False,Sort:None,Position:15|Column#17=Name:Value,Fixed:False,Metric:False,Visible:False,Sort:None,Position:22|Column#18=Name:LatestRevisionDate,Fixed:False,Metric:False,Visible:False,Sort:None,Position:17|Column#19=Name:PackageReference,Fixed:False,Metric:False,Visible:False,Sort:None,Position:19|Column#20=Name:学习资源,Fixed:False,Metric:False,Visible:False,Sort:None,Position:25|Column#21=Name:Publisher,Fixed:False,Metric:False,Visible:False,Sort:None,Position:21|Column#22=Name:版权归属,Fixed:False,Metric:False,Visible:False,Sort:None,Position:23|Column#23=Name:LatestRevisionNote,Fixed:False,Metric:False,Visible:False,Sort:None,Position:18|Column#24=Name:BOM名称,Fixed:False,Metric:False,Visible:False,Sort:None,Position:16|Column#25=Name:属性,Fixed:False,Metric:False,Visible:False,Sort:None,Position:24|Column#26=Name:Published,Fixed:False,Metric:False,Visible:False,Sort:None,Position:20|DocumentPath=G:\文件\项目\5、铝基加热板\电路设计\GSH_Bed_mainboard\GSH_Bed_V1.0.PcbDoc 349 | OutputType3=Assembly 350 | OutputName3=Assembly Drawings 351 | OutputDocumentPath3= 352 | OutputVariantName3=[No Variations] 353 | OutputDefault3=0 354 | 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=A4|PaperIndex=9 355 | 356 | [OutputGroup5] 357 | Name=Fabrication Outputs 358 | Description= 359 | TargetPrinter=Microsoft Print to PDF 360 | PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 361 | OutputType1=NC Drill 362 | OutputName1=NC Drill Files 363 | OutputDocumentPath1= 364 | OutputVariantName1= 365 | OutputDefault1=0 366 | Configuration1_Name1=ForceUpdateSettings 367 | Configuration1_Item1=False 368 | Configuration1_Name2=OutputConfigurationParameter1 369 | Configuration1_Item2=BoardEdgeRoutToolDia=2000000|GenerateBoardEdgeRout=False|GenerateDrilledSlotsG85=False|GenerateEIADrillFile=False|GenerateSeparatePlatedNonPlatedFiles=False|NumberOfDecimals=5|NumberOfUnits=2|OptimizeChangeLocationCommands=True|OriginPosition=Relative|Record=DrillView|Units=Imperial|ZeroesMode=SuppressTrailingZeroes|DocumentPath=G:\文件\项目\5、铝基加热板\电路设计\GSH_Bed_mainboard\GSH_Bed_V1.0.PcbDoc 370 | OutputType2=Mask 371 | OutputName2=Solder/Paste Mask Prints 372 | OutputDocumentPath2= 373 | OutputVariantName2= 374 | OutputDefault2=0 375 | 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=A4|PaperIndex=9 376 | OutputType3=IPC2581 377 | OutputName3=IPC-2581 Files 378 | OutputDocumentPath3= 379 | OutputVariantName3= 380 | OutputDefault3=0 381 | OutputType4=Test Points 382 | OutputName4=Test Point Report 383 | OutputDocumentPath4= 384 | OutputVariantName4= 385 | OutputDefault4=0 386 | Configuration4_Name1=ForceUpdateSettings 387 | Configuration4_Item1=False 388 | Configuration4_Name2=OutputConfigurationParameter1 389 | Configuration4_Item2=AdjacencyDistance=250000|GenerateCSVFormat=True|GenerateIPCFormat=False|GenerateSpreadSheetFormat=False|GenerateTextFormat=False|MergeNetTieNets=False|OriginPosition=Relative|OutlineLayer=56|OutputAdjancencies=False|OutputBoardOutline=False|OutputTraces=False|Record=TestPointView|ReportBottomLayerTestpoints=True|ReportTopLayerTestpoints=True|Units=Imperial|DocumentPath=G:\文件\项目\5、铝基加热板\电路设计\GSH_Bed_mainboard\GSH_Bed_V1.0.PcbDoc 390 | OutputType5=Plane 391 | OutputName5=Power-Plane Prints 392 | OutputDocumentPath5= 393 | OutputVariantName5= 394 | OutputDefault5=0 395 | 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=A4|PaperIndex=9 396 | OutputType6=ODB 397 | OutputName6=ODB++ Files 398 | OutputDocumentPath6= 399 | OutputVariantName6=[No Variations] 400 | OutputDefault6=0 401 | OutputType7=Drill 402 | OutputName7=Drill Drawing/Guides 403 | OutputDocumentPath7= 404 | OutputVariantName7= 405 | OutputDefault7=0 406 | 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=A4|PaperIndex=9 407 | OutputType8=CompositeDrill 408 | OutputName8=Composite Drill Drawing 409 | OutputDocumentPath8= 410 | OutputVariantName8= 411 | OutputDefault8=0 412 | 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=A4|PaperIndex=9 413 | OutputType9=Board Stack Report 414 | OutputName9=Report Board Stack 415 | OutputDocumentPath9= 416 | OutputVariantName9= 417 | OutputDefault9=0 418 | 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=A4|PaperIndex=9 419 | OutputType10=Gerber X2 420 | OutputName10=Gerber X2 Files 421 | OutputDocumentPath10= 422 | OutputVariantName10= 423 | OutputDefault10=0 424 | OutputType11=Final 425 | OutputName11=Final Artwork Prints 426 | OutputDocumentPath11= 427 | OutputVariantName11=[No Variations] 428 | OutputDefault11=0 429 | 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=A4|PaperIndex=9 430 | OutputType12=Gerber 431 | OutputName12=Gerber Files 432 | OutputDocumentPath12= 433 | OutputVariantName12=[No Variations] 434 | OutputDefault12=0 435 | Configuration12_Name1=ForceUpdateSettings 436 | Configuration12_Item1=False 437 | Configuration12_Name2=OutputConfigurationParameter1 438 | Configuration12_Item2=AddToAllLayerClasses.Set= |AddToAllPlots.Set=SerializeLayerHash.Version~2,ClassName~TPlotLayerStateArray|CentrePlots=False|DrillDrawingSymbol=GraphicsSymbol|DrillDrawingSymbolSize=200000|EmbeddedApertures=True|FilmBorderSize=100000000|FilmXSize=2000000000|FilmYSize=1600000000|FlashAllFills=False|FlashPadShapes=True|G54OnApertureChange=False|GenerateDRCRulesFile=True|GenerateDRCRulesFile=True|GenerateReliefShapes=True|GerberUnit=Imperial|GerberUnit=Imperial|IncludeUnconnectedMidLayerPads=False|LayerClassesMirror.Set= |LayerClassesPlot.Set= |LeadingAndTrailingZeroesMode=SuppressLeadingZeroes|MaxApertureSize=2500000|MinusApertureTolerance=0|MinusApertureTolerance=0|Mirror.Set=SerializeLayerHash.Version~2,ClassName~TPlotLayerStateArray|MirrorDrillDrawingPlots=False|MirrorDrillGuidePlots=False|NoRegularPolygons=False|NumberOfDecimals=5|NumberOfDecimals=5|OptimizeChangeLocationCommands=True|OptimizeChangeLocationCommands=True|OriginPosition=Relative|Panelize=False|Plot.Set=SerializeLayerHash.Version~2,ClassName~TPlotLayerStateArray,16973830~1,16973832~1,16973834~1,16777217~1,16842751~1,16973835~1,16973833~1,16973831~1,16908289~1,16973837~1,16973848~1,16973849~1|PlotPositivePlaneLayers=False|PlotUsedDrillDrawingLayerPairs=True|PlotUsedDrillGuideLayerPairs=True|PlusApertureTolerance=0|PlusApertureTolerance=0|Record=GerberView|SoftwareArcs=False|Sorted=False|Sorted=False|DocumentPath=G:\文件\项目\5、铝基加热板\电路设计\GSH_Bed_mainboard\GSH_Bed_V1.0.PcbDoc 439 | 440 | [OutputGroup6] 441 | Name=Report Outputs 442 | Description= 443 | TargetPrinter=Microsoft Print to PDF 444 | PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 445 | OutputType1=BOM_PartType 446 | OutputName1=Bill of Materials 447 | OutputDocumentPath1= 448 | OutputVariantName1=[No Variations] 449 | OutputDefault1=0 450 | 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=A4|PaperIndex=9 451 | Configuration1_Name1=ColumnNameFormat 452 | Configuration1_Item1=CaptionAsName 453 | Configuration1_Name2=ForceUpdateSettings 454 | Configuration1_Item2=False 455 | Configuration1_Name3=General 456 | Configuration1_Item3=OpenExported=False|AddToProject=False|ReportBOMViolationsInMessages=False|ForceFit=False|NotFitted=False|Database=False|DatabasePriority=False|IncludePcbData=False|IncludeVaultData=False|IncludeCloudData=False|IncludeDocumentData=True|IncludeAlternatives=False|ShowExportOptions=True|TemplateFilename=|TemplateVaultGuid=|TemplateItemGuid=|TemplateRevisionGuid=|BatchMode=5|FormWidth=1200|FormHeight=710|SupplierProdQty=1|SupplierAutoQty=False|SupplierUseCachedPricing=False|SupplierCurrency=USD|SolutionsPerItem=1|SuppliersPerSolution=1|ViewType=1|UseDirectApi=False|BomSetName= 457 | Configuration1_Name4=GroupOrder 458 | Configuration1_Item4=Comment=True|Footprint=True 459 | Configuration1_Name5=SortOrder 460 | Configuration1_Item5=Designator=Up|Comment=Up|Footprint=Up 461 | Configuration1_Name6=VisibleOrder 462 | Configuration1_Item6=Comment=120|Description=120|Designator=120|Footprint=120|LibRef=120|Quantity=120 463 | OutputType2=ComponentCrossReference 464 | OutputName2=Component Cross Reference Report 465 | OutputDocumentPath2= 466 | OutputVariantName2=[No Variations] 467 | OutputDefault2=0 468 | OutputType3=ReportHierarchy 469 | OutputName3=Report Project Hierarchy 470 | OutputDocumentPath3= 471 | OutputVariantName3=[No Variations] 472 | OutputDefault3=0 473 | OutputType4=Script 474 | OutputName4=Script Output 475 | OutputDocumentPath4= 476 | OutputVariantName4=[No Variations] 477 | OutputDefault4=0 478 | OutputType5=SimpleBOM 479 | OutputName5=Simple BOM 480 | OutputDocumentPath5= 481 | OutputVariantName5=[No Variations] 482 | OutputDefault5=0 483 | OutputType6=SinglePinNetReporter 484 | OutputName6=Report Single Pin Nets 485 | OutputDocumentPath6= 486 | OutputVariantName6=[No Variations] 487 | OutputDefault6=0 488 | 489 | [OutputGroup7] 490 | Name=Other Outputs 491 | Description= 492 | TargetPrinter=Microsoft Print to PDF 493 | PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 494 | OutputType1=Text Print 495 | OutputName1=Text Print 496 | OutputDocumentPath1= 497 | OutputVariantName1= 498 | OutputDefault1=0 499 | 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=A4|PaperIndex=9 500 | OutputType2=Text Print 501 | OutputName2=Text Print 502 | OutputDocumentPath2= 503 | OutputVariantName2= 504 | OutputDefault2=0 505 | 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=A4|PaperIndex=9 506 | OutputType3=Text Print 507 | OutputName3=Text Print 508 | OutputDocumentPath3= 509 | OutputVariantName3= 510 | OutputDefault3=0 511 | 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=A4|PaperIndex=9 512 | OutputType4=Text Print 513 | OutputName4=Text Print 514 | OutputDocumentPath4= 515 | OutputVariantName4= 516 | OutputDefault4=0 517 | 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=A4|PaperIndex=9 518 | OutputType5=Text Print 519 | OutputName5=Text Print 520 | OutputDocumentPath5= 521 | OutputVariantName5= 522 | OutputDefault5=0 523 | 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=A4|PaperIndex=9 524 | OutputType6=Text Print 525 | OutputName6=Text Print 526 | OutputDocumentPath6= 527 | OutputVariantName6= 528 | OutputDefault6=0 529 | 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=A4|PaperIndex=9 530 | OutputType7=Text Print 531 | OutputName7=Text Print 532 | OutputDocumentPath7= 533 | OutputVariantName7= 534 | OutputDefault7=0 535 | 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=A4|PaperIndex=9 536 | OutputType8=Text Print 537 | OutputName8=Text Print 538 | OutputDocumentPath8= 539 | OutputVariantName8= 540 | OutputDefault8=0 541 | 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=A4|PaperIndex=9 542 | OutputType9=Text Print 543 | OutputName9=Text Print 544 | OutputDocumentPath9= 545 | OutputVariantName9= 546 | OutputDefault9=0 547 | 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=A4|PaperIndex=9 548 | OutputType10=Text Print 549 | OutputName10=Text Print 550 | OutputDocumentPath10= 551 | OutputVariantName10= 552 | OutputDefault10=0 553 | 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=A4|PaperIndex=9 554 | OutputType11=Text Print 555 | OutputName11=Text Print 556 | OutputDocumentPath11= 557 | OutputVariantName11= 558 | OutputDefault11=0 559 | 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=A4|PaperIndex=9 560 | OutputType12=Text Print 561 | OutputName12=Text Print 562 | OutputDocumentPath12= 563 | OutputVariantName12= 564 | OutputDefault12=0 565 | 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=A4|PaperIndex=9 566 | OutputType13=Text Print 567 | OutputName13=Text Print 568 | OutputDocumentPath13= 569 | OutputVariantName13= 570 | OutputDefault13=0 571 | 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=A4|PaperIndex=9 572 | OutputType14=Text Print 573 | OutputName14=Text Print 574 | OutputDocumentPath14= 575 | OutputVariantName14= 576 | OutputDefault14=0 577 | 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=A4|PaperIndex=9 578 | OutputType15=Text Print 579 | OutputName15=Text Print 580 | OutputDocumentPath15= 581 | OutputVariantName15= 582 | OutputDefault15=0 583 | 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=A4|PaperIndex=9 584 | OutputType16=Text Print 585 | OutputName16=Text Print 586 | OutputDocumentPath16= 587 | OutputVariantName16= 588 | OutputDefault16=0 589 | 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=A4|PaperIndex=9 590 | OutputType17=Text Print 591 | OutputName17=Text Print 592 | OutputDocumentPath17= 593 | OutputVariantName17= 594 | OutputDefault17=0 595 | 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=A4|PaperIndex=9 596 | 597 | [OutputGroup8] 598 | Name=Validation Outputs 599 | Description= 600 | TargetPrinter=Microsoft Print to PDF 601 | PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 602 | OutputType1=BOM_Violations 603 | OutputName1=BOM Checks Report 604 | OutputDocumentPath1= 605 | OutputVariantName1= 606 | OutputDefault1=0 607 | OutputType2=Component states check 608 | OutputName2=Server's components states check 609 | OutputDocumentPath2= 610 | OutputVariantName2= 611 | OutputDefault2=0 612 | OutputType3=Configuration compliance 613 | OutputName3=Environment configuration compliance check 614 | OutputDocumentPath3= 615 | OutputVariantName3= 616 | OutputDefault3=0 617 | OutputType4=Design Rules Check 618 | OutputName4=Design Rules Check 619 | OutputDocumentPath4= 620 | OutputVariantName4= 621 | OutputDefault4=0 622 | 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=A4|PaperIndex=9 623 | OutputType5=Differences Report 624 | OutputName5=Differences Report 625 | OutputDocumentPath5= 626 | OutputVariantName5= 627 | OutputDefault5=0 628 | 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=A4|PaperIndex=9 629 | OutputType6=Electrical Rules Check 630 | OutputName6=Electrical Rules Check 631 | OutputDocumentPath6= 632 | OutputVariantName6= 633 | OutputDefault6=0 634 | 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=A4|PaperIndex=9 635 | OutputType7=Footprint Comparison Report 636 | OutputName7=Footprint Comparison Report 637 | OutputDocumentPath7= 638 | OutputVariantName7= 639 | OutputDefault7=0 640 | 641 | [OutputGroup9] 642 | Name=Export Outputs 643 | Description= 644 | TargetPrinter=Microsoft Print to PDF 645 | PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 646 | OutputType1=AutoCAD dwg/dxf PCB 647 | OutputName1=AutoCAD dwg/dxf File PCB 648 | OutputDocumentPath1= 649 | OutputVariantName1= 650 | OutputDefault1=0 651 | OutputType2=AutoCAD dwg/dxf Schematic 652 | OutputName2=AutoCAD dwg/dxf File Schematic 653 | OutputDocumentPath2= 654 | OutputVariantName2= 655 | OutputDefault2=0 656 | OutputType3=ExportIDF 657 | OutputName3=Export IDF 658 | OutputDocumentPath3= 659 | OutputVariantName3= 660 | OutputDefault3=0 661 | OutputType4=ExportPARASOLID 662 | OutputName4=Export PARASOLID 663 | OutputDocumentPath4= 664 | OutputVariantName4=[No Variations] 665 | OutputDefault4=0 666 | OutputType5=ExportSTEP 667 | OutputName5=Export STEP 668 | OutputDocumentPath5= 669 | OutputVariantName5=[No Variations] 670 | OutputDefault5=0 671 | OutputType6=ExportVRML 672 | OutputName6=Export VRML 673 | OutputDocumentPath6= 674 | OutputVariantName6=[No Variations] 675 | OutputDefault6=0 676 | OutputType7=MBAExportPARASOLID 677 | OutputName7=Export PARASOLID 678 | OutputDocumentPath7= 679 | OutputVariantName7= 680 | OutputDefault7=0 681 | OutputType8=MBAExportSTEP 682 | OutputName8=Export STEP 683 | OutputDocumentPath8= 684 | OutputVariantName8= 685 | OutputDefault8=0 686 | OutputType9=Save As/Export PCB 687 | OutputName9=Save As/Export PCB 688 | OutputDocumentPath9= 689 | OutputVariantName9= 690 | OutputDefault9=0 691 | OutputType10=Save As/Export Schematic 692 | OutputName10=Save As/Export Schematic 693 | OutputDocumentPath10= 694 | OutputVariantName10= 695 | OutputDefault10=0 696 | OutputType11=Specctra Design PCB 697 | OutputName11=Specctra Design PCB 698 | OutputDocumentPath11= 699 | OutputVariantName11= 700 | OutputDefault11=0 701 | 702 | [OutputGroup10] 703 | Name=PostProcess Outputs 704 | Description= 705 | TargetPrinter=Microsoft Print to PDF 706 | PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 707 | OutputType1=Copy Files 708 | OutputName1=Copy Files 709 | OutputDocumentPath1= 710 | OutputVariantName1= 711 | OutputDefault1=0 712 | 713 | [Modification Levels] 714 | Type1=1 715 | Type2=1 716 | Type3=1 717 | Type4=1 718 | Type5=1 719 | Type6=1 720 | Type7=1 721 | Type8=1 722 | Type9=1 723 | Type10=1 724 | Type11=1 725 | Type12=1 726 | Type13=1 727 | Type14=1 728 | Type15=1 729 | Type16=1 730 | Type17=1 731 | Type18=1 732 | Type19=1 733 | Type20=1 734 | Type21=1 735 | Type22=1 736 | Type23=1 737 | Type24=1 738 | Type25=1 739 | Type26=1 740 | Type27=1 741 | Type28=1 742 | Type29=1 743 | Type30=1 744 | Type31=1 745 | Type32=1 746 | Type33=1 747 | Type34=1 748 | Type35=1 749 | Type36=1 750 | Type37=1 751 | Type38=1 752 | Type39=1 753 | Type40=1 754 | Type41=1 755 | Type42=1 756 | Type43=1 757 | Type44=1 758 | Type45=1 759 | Type46=1 760 | Type47=1 761 | Type48=1 762 | Type49=1 763 | Type50=1 764 | Type51=1 765 | Type52=1 766 | Type53=1 767 | Type54=1 768 | Type55=1 769 | Type56=1 770 | Type57=1 771 | Type58=1 772 | Type59=1 773 | Type60=1 774 | Type61=1 775 | Type62=1 776 | Type63=1 777 | Type64=1 778 | Type65=1 779 | Type66=1 780 | Type67=1 781 | Type68=1 782 | Type69=1 783 | Type70=1 784 | Type71=1 785 | Type72=1 786 | Type73=1 787 | Type74=1 788 | Type75=1 789 | Type76=1 790 | Type77=1 791 | Type78=1 792 | Type79=1 793 | Type80=1 794 | Type81=1 795 | Type82=1 796 | Type83=1 797 | Type84=1 798 | Type85=1 799 | Type86=1 800 | Type87=1 801 | Type88=1 802 | Type89=1 803 | Type90=1 804 | Type91=1 805 | Type92=1 806 | Type93=1 807 | Type94=1 808 | Type95=1 809 | Type96=1 810 | Type97=1 811 | Type98=1 812 | Type99=1 813 | Type100=1 814 | Type101=1 815 | Type102=1 816 | Type103=1 817 | Type104=1 818 | Type105=1 819 | Type106=1 820 | Type107=1 821 | Type108=1 822 | Type109=1 823 | Type110=1 824 | Type111=1 825 | Type112=1 826 | Type113=1 827 | Type114=1 828 | Type115=1 829 | Type116=1 830 | Type117=1 831 | Type118=1 832 | Type119=1 833 | 834 | [Difference Levels] 835 | Type1=1 836 | Type2=1 837 | Type3=1 838 | Type4=1 839 | Type5=1 840 | Type6=1 841 | Type7=1 842 | Type8=1 843 | Type9=1 844 | Type10=1 845 | Type11=1 846 | Type12=1 847 | Type13=1 848 | Type14=1 849 | Type15=1 850 | Type16=1 851 | Type17=1 852 | Type18=1 853 | Type19=1 854 | Type20=1 855 | Type21=1 856 | Type22=1 857 | Type23=1 858 | Type24=1 859 | Type25=1 860 | Type26=1 861 | Type27=1 862 | Type28=1 863 | Type29=1 864 | Type30=1 865 | Type31=1 866 | Type32=1 867 | Type33=1 868 | Type34=1 869 | Type35=1 870 | Type36=1 871 | Type37=1 872 | Type38=1 873 | Type39=1 874 | Type40=1 875 | Type41=1 876 | Type42=1 877 | Type43=1 878 | Type44=1 879 | Type45=1 880 | Type46=1 881 | Type47=1 882 | Type48=1 883 | Type49=1 884 | Type50=1 885 | Type51=1 886 | Type52=1 887 | Type53=1 888 | Type54=1 889 | Type55=1 890 | Type56=1 891 | Type57=1 892 | Type58=1 893 | Type59=1 894 | Type60=1 895 | Type61=1 896 | Type62=1 897 | Type63=1 898 | Type64=1 899 | Type65=1 900 | Type66=1 901 | Type67=1 902 | Type68=1 903 | 904 | [Electrical Rules Check] 905 | Type1=0 906 | Type2=1 907 | Type3=2 908 | Type4=1 909 | Type5=2 910 | Type6=2 911 | Type7=0 912 | Type8=1 913 | Type9=1 914 | Type10=0 915 | Type11=2 916 | Type12=0 917 | Type13=0 918 | Type14=1 919 | Type15=1 920 | Type16=1 921 | Type17=1 922 | Type18=1 923 | Type19=1 924 | Type20=0 925 | Type21=0 926 | Type22=0 927 | Type23=0 928 | Type24=1 929 | Type25=2 930 | Type26=0 931 | Type27=2 932 | Type28=1 933 | Type29=1 934 | Type30=1 935 | Type31=1 936 | Type32=2 937 | Type33=0 938 | Type34=2 939 | Type35=1 940 | Type36=2 941 | Type37=1 942 | Type38=2 943 | Type39=2 944 | Type40=2 945 | Type41=0 946 | Type42=2 947 | Type43=1 948 | Type44=0 949 | Type45=0 950 | Type46=0 951 | Type47=0 952 | Type48=0 953 | Type49=0 954 | Type50=2 955 | Type51=0 956 | Type52=0 957 | Type53=1 958 | Type54=1 959 | Type55=1 960 | Type56=2 961 | Type57=1 962 | Type58=1 963 | Type59=2 964 | Type60=0 965 | Type61=0 966 | Type62=0 967 | Type63=0 968 | Type64=0 969 | Type65=2 970 | Type66=3 971 | Type67=2 972 | Type68=2 973 | Type69=0 974 | Type70=2 975 | Type71=2 976 | Type72=2 977 | Type73=2 978 | Type74=1 979 | Type75=2 980 | Type76=1 981 | Type77=1 982 | Type78=1 983 | Type79=1 984 | Type80=2 985 | Type81=3 986 | Type82=3 987 | Type83=3 988 | Type84=3 989 | Type85=3 990 | Type86=2 991 | Type87=2 992 | Type88=2 993 | Type89=1 994 | Type90=1 995 | Type91=3 996 | Type92=3 997 | Type93=2 998 | Type94=2 999 | Type95=2 1000 | Type96=2 1001 | Type97=2 1002 | Type98=0 1003 | Type99=1 1004 | Type100=2 1005 | Type101=0 1006 | Type102=2 1007 | Type103=2 1008 | Type104=1 1009 | Type105=2 1010 | Type106=2 1011 | Type107=2 1012 | Type108=2 1013 | Type109=1 1014 | Type110=1 1015 | Type111=1 1016 | Type112=1 1017 | Type113=1 1018 | Type114=2 1019 | Type115=2 1020 | Type116=2 1021 | Type117=3 1022 | Type118=3 1023 | Type119=3 1024 | MultiChannelAlternate=2 1025 | AlternateItemFail=3 1026 | Type122=2 1027 | Type123=1 1028 | Type124=1 1029 | Type125=1 1030 | 1031 | [ERC Connection Matrix] 1032 | L1=NNNNNNNNNNNWNNNWW 1033 | L2=NNWNNNNWWWNWNWNWN 1034 | L3=NWEENEEEENEWNEEWN 1035 | L4=NNENNNWEENNWNENWN 1036 | L5=NNNNNNNNNNNNNNNNN 1037 | L6=NNENNNNEENNWNENWN 1038 | L7=NNEWNNWEENNWNENWN 1039 | L8=NWEENEENEEENNEENN 1040 | L9=NWEENEEEENEWNEEWW 1041 | L10=NWNNNNNENNEWNNEWN 1042 | L11=NNENNNNEEENWNENWN 1043 | L12=WWWWNWWNWWWNWWWNN 1044 | L13=NNNNNNNNNNNWNNNWW 1045 | L14=NWEENEEEENEWNEEWW 1046 | L15=NNENNNNEEENWNENWW 1047 | L16=WWWWNWWNWWWNWWWNW 1048 | L17=WNNNNNNNWNNNWWWWN 1049 | 1050 | [Annotate] 1051 | SortOrder=3 1052 | SortLocation=0 1053 | ReplaceSubparts=0 1054 | MatchParameter1=Comment 1055 | MatchStrictly1=1 1056 | MatchParameter2=Library Reference 1057 | MatchStrictly2=1 1058 | PhysicalNamingFormat=$Component_$RoomName 1059 | GlobalIndexSortOrder=3 1060 | GlobalIndexSortLocation=0 1061 | 1062 | [PrjClassGen] 1063 | CompClassManualEnabled=0 1064 | CompClassManualRoomEnabled=0 1065 | NetClassAutoBusEnabled=1 1066 | NetClassAutoCompEnabled=0 1067 | NetClassAutoNamedHarnessEnabled=0 1068 | NetClassManualEnabled=1 1069 | NetClassSeparateForBusSections=0 1070 | 1071 | [LibraryUpdateOptions] 1072 | SelectedOnly=0 1073 | UpdateVariants=1 1074 | UpdateToLatestRevision=1 1075 | PartTypes=0 1076 | FullReplace=1 1077 | UpdateDesignatorLock=1 1078 | UpdatePartIDLock=1 1079 | PreserveParameterLocations=1 1080 | PreserveParameterVisibility=1 1081 | DoGraphics=1 1082 | DoParameters=1 1083 | DoModels=1 1084 | AddParameters=0 1085 | RemoveParameters=0 1086 | AddModels=1 1087 | RemoveModels=1 1088 | UpdateCurrentModels=1 1089 | 1090 | [DatabaseUpdateOptions] 1091 | SelectedOnly=0 1092 | UpdateVariants=1 1093 | UpdateToLatestRevision=1 1094 | PartTypes=0 1095 | 1096 | [Comparison Options] 1097 | ComparisonOptions0=Kind=Net|MinPercent=75|MinMatch=3|ShowMatch=0|UseName=-1|InclAllRules=0 1098 | ComparisonOptions1=Kind=Net Class|MinPercent=75|MinMatch=3|ShowMatch=0|UseName=-1|InclAllRules=0 1099 | ComparisonOptions2=Kind=Component Class|MinPercent=75|MinMatch=3|ShowMatch=0|UseName=-1|InclAllRules=0 1100 | ComparisonOptions3=Kind=Rule|MinPercent=75|MinMatch=3|ShowMatch=0|UseName=-1|InclAllRules=0 1101 | ComparisonOptions4=Kind=Differential Pair|MinPercent=50|MinMatch=1|ShowMatch=0|UseName=0|InclAllRules=0 1102 | ComparisonOptions5=Kind=Structure Class|MinPercent=75|MinMatch=3|ShowMatch=0|UseName=-1|InclAllRules=0 1103 | 1104 | [SmartPDF] 1105 | 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=A4|PaperIndex=9 1106 | 1107 | -------------------------------------------------------------------------------- /1、电路/GSH_Bed_mainboard/历史文件/Bed.PcbDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRobot-Origin/GS_Hbed/6a99291de7525dec9469b7fccf815a05cc9b16a6/1、电路/GSH_Bed_mainboard/历史文件/Bed.PcbDoc -------------------------------------------------------------------------------- /1、电路/GSH_Bed_mainboard/历史文件/Copy of GSH_Bed_V1.0.PcbDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRobot-Origin/GS_Hbed/6a99291de7525dec9469b7fccf815a05cc9b16a6/1、电路/GSH_Bed_mainboard/历史文件/Copy of GSH_Bed_V1.0.PcbDoc -------------------------------------------------------------------------------- /1、电路/GSH_Bed_mainboard/历史文件/GSH_Bed_mainboard.SchDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRobot-Origin/GS_Hbed/6a99291de7525dec9469b7fccf815a05cc9b16a6/1、电路/GSH_Bed_mainboard/历史文件/GSH_Bed_mainboard.SchDoc -------------------------------------------------------------------------------- /1、电路/参考资料/C16030_MAX6675ISA_2017-07-13.PDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRobot-Origin/GS_Hbed/6a99291de7525dec9469b7fccf815a05cc9b16a6/1、电路/参考资料/C16030_MAX6675ISA_2017-07-13.PDF -------------------------------------------------------------------------------- /1、电路/参考资料/C181103_TL431_2018-01-31.PDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRobot-Origin/GS_Hbed/6a99291de7525dec9469b7fccf815a05cc9b16a6/1、电路/参考资料/C181103_TL431_2018-01-31.PDF -------------------------------------------------------------------------------- /1、电路/参考资料/C315567_AON7544_datesheet.PDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRobot-Origin/GS_Hbed/6a99291de7525dec9469b7fccf815a05cc9b16a6/1、电路/参考资料/C315567_AON7544_datesheet.PDF -------------------------------------------------------------------------------- /1、电路/参考资料/C85225_LM2940L-50-TN3-R_2016-11-04.PDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRobot-Origin/GS_Hbed/6a99291de7525dec9469b7fccf815a05cc9b16a6/1、电路/参考资料/C85225_LM2940L-50-TN3-R_2016-11-04.PDF -------------------------------------------------------------------------------- /1、电路/参考资料/IRFS7530TRLPBF.PDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRobot-Origin/GS_Hbed/6a99291de7525dec9469b7fccf815a05cc9b16a6/1、电路/参考资料/IRFS7530TRLPBF.PDF -------------------------------------------------------------------------------- /1、电路/参考资料/STC12C5A60S2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRobot-Origin/GS_Hbed/6a99291de7525dec9469b7fccf815a05cc9b16a6/1、电路/参考资料/STC12C5A60S2.pdf -------------------------------------------------------------------------------- /1、电路/参考资料/STC89C52.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRobot-Origin/GS_Hbed/6a99291de7525dec9469b7fccf815a05cc9b16a6/1、电路/参考资料/STC89C52.pdf -------------------------------------------------------------------------------- /1、电路/参考资料/Toshiba-TPCA8028-H.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRobot-Origin/GS_Hbed/6a99291de7525dec9469b7fccf815a05cc9b16a6/1、电路/参考资料/Toshiba-TPCA8028-H.pdf -------------------------------------------------------------------------------- /1、电路/参考资料/修订版热电偶参考表 K 型热电偶 ˚C.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRobot-Origin/GS_Hbed/6a99291de7525dec9469b7fccf815a05cc9b16a6/1、电路/参考资料/修订版热电偶参考表 K 型热电偶 ˚C.pdf -------------------------------------------------------------------------------- /1、电路/参考资料/新唐N76E003AT20.PDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRobot-Origin/GS_Hbed/6a99291de7525dec9469b7fccf815a05cc9b16a6/1、电路/参考资料/新唐N76E003AT20.PDF -------------------------------------------------------------------------------- /2、固件/Application/ADC/STC12(ADC flag).c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRobot-Origin/GS_Hbed/6a99291de7525dec9469b7fccf815a05cc9b16a6/2、固件/Application/ADC/STC12(ADC flag).c -------------------------------------------------------------------------------- /2、固件/Application/ADC/STC12(ADC flag).h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRobot-Origin/GS_Hbed/6a99291de7525dec9469b7fccf815a05cc9b16a6/2、固件/Application/ADC/STC12(ADC flag).h -------------------------------------------------------------------------------- /2、固件/Application/EEPROM/EEPROM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRobot-Origin/GS_Hbed/6a99291de7525dec9469b7fccf815a05cc9b16a6/2、固件/Application/EEPROM/EEPROM.c -------------------------------------------------------------------------------- /2、固件/Application/EEPROM/EEPROM.h: -------------------------------------------------------------------------------- 1 | #ifdef EEPROM_H 2 | #define EEPROM_H 3 | #include "Sys.h" 4 | 5 | //void EEPROM_Test(void); 6 | 7 | extern uint16 MODE; 8 | 9 | uint8 Data_preservation(uint16 dat1,uint16 dat2,uin16 mode); 10 | uint16 Get_Temp_set1(void); 11 | uint16 Get_Temp_set2(void); 12 | uint16 Get_Mode(void); 13 | #endif -------------------------------------------------------------------------------- /2、固件/Application/LCD1602/LCD1602.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRobot-Origin/GS_Hbed/6a99291de7525dec9469b7fccf815a05cc9b16a6/2、固件/Application/LCD1602/LCD1602.c -------------------------------------------------------------------------------- /2、固件/Application/LCD1602/LCD1602.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRobot-Origin/GS_Hbed/6a99291de7525dec9469b7fccf815a05cc9b16a6/2、固件/Application/LCD1602/LCD1602.h -------------------------------------------------------------------------------- /2、固件/Application/SYS/Sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRobot-Origin/GS_Hbed/6a99291de7525dec9469b7fccf815a05cc9b16a6/2、固件/Application/SYS/Sys.c -------------------------------------------------------------------------------- /2、固件/Application/SYS/Sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRobot-Origin/GS_Hbed/6a99291de7525dec9469b7fccf815a05cc9b16a6/2、固件/Application/SYS/Sys.h -------------------------------------------------------------------------------- /2、固件/Application/Task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRobot-Origin/GS_Hbed/6a99291de7525dec9469b7fccf815a05cc9b16a6/2、固件/Application/Task.c -------------------------------------------------------------------------------- /2、固件/Application/Task.h: -------------------------------------------------------------------------------- 1 | #ifndef TASK_H 2 | #define TASK_H 3 | 4 | void setup(void); 5 | void loop(void); 6 | //void LCD_V(uint8 a,uint8 l,uint8 p); 7 | extern void LCD_TEM(uint8 a,uint8 b,float p); 8 | #endif -------------------------------------------------------------------------------- /2、固件/Application/Thermistortables/Thermistortables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRobot-Origin/GS_Hbed/6a99291de7525dec9469b7fccf815a05cc9b16a6/2、固件/Application/Thermistortables/Thermistortables.c -------------------------------------------------------------------------------- /2、固件/Application/Thermistortables/Thermistortables.h: -------------------------------------------------------------------------------- 1 | #ifndef THERMISTORTABLES_H_ 2 | #define THERMISTORTABLES_H_ 3 | #include 4 | 5 | extern float Rt; 6 | extern float Temp; 7 | void Tem_calculation(void); 8 | #endif 9 | -------------------------------------------------------------------------------- /2、固件/Application/Timer/Timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRobot-Origin/GS_Hbed/6a99291de7525dec9469b7fccf815a05cc9b16a6/2、固件/Application/Timer/Timer.c -------------------------------------------------------------------------------- /2、固件/Application/Timer/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRobot-Origin/GS_Hbed/6a99291de7525dec9469b7fccf815a05cc9b16a6/2、固件/Application/Timer/Timer.h -------------------------------------------------------------------------------- /2、固件/Application/UART/Uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRobot-Origin/GS_Hbed/6a99291de7525dec9469b7fccf815a05cc9b16a6/2、固件/Application/UART/Uart.c -------------------------------------------------------------------------------- /2、固件/Application/UART/Uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRobot-Origin/GS_Hbed/6a99291de7525dec9469b7fccf815a05cc9b16a6/2、固件/Application/UART/Uart.h -------------------------------------------------------------------------------- /2、固件/Application/cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRobot-Origin/GS_Hbed/6a99291de7525dec9469b7fccf815a05cc9b16a6/2、固件/Application/cfg.h -------------------------------------------------------------------------------- /2、固件/GSH.uvproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 1.1 5 | 6 |
### uVision Project, (C) Keil Software
7 | 8 | 9 | 10 | Target 1 11 | 0x0 12 | MCS-51 13 | 8 14 | 15 | 16 | STC12C5A60S2 Series 17 | STC 18 | IRAM(0-0xFF) XRAM(0-0x3FF) IROM(0-0xEFFF) CLOCK(45000000) MODP2 19 | 20 | "LIB\STARTUP.A51" ("Standard 8051 Startup Code") 21 | 22 | 53630 23 | STC12C5A60S2.H 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 0 35 | 0 36 | 37 | 38 | 39 | STC\ 40 | STC\ 41 | 42 | 0 43 | 0 44 | 0 45 | 0 46 | 1 47 | 48 | .\Objects\ 49 | GSH-1 50 | 1 51 | 0 52 | 1 53 | 1 54 | 1 55 | .\Listings\ 56 | 0 57 | 0 58 | 0 59 | 60 | 0 61 | 0 62 | 63 | 64 | 0 65 | 0 66 | 0 67 | 0 68 | 69 | 70 | 0 71 | 0 72 | 73 | 74 | 0 75 | 0 76 | 0 77 | 0 78 | 79 | 80 | 0 81 | 0 82 | 83 | 84 | 0 85 | 0 86 | 0 87 | 0 88 | 89 | 0 90 | 91 | 92 | 93 | 0 94 | 0 95 | 0 96 | 0 97 | 0 98 | 1 99 | 0 100 | 0 101 | 0 102 | 0 103 | 3 104 | 105 | 106 | 1 107 | 65535 108 | 109 | 110 | S8051.DLL 111 | 112 | DP51.DLL 113 | -pDR8051 114 | S8051.DLL 115 | 116 | TP51.DLL 117 | -p51 118 | 119 | 120 | 121 | 0 122 | 0 123 | 0 124 | 0 125 | 16 126 | 127 | 128 | 1 129 | 1 130 | 1 131 | 1 132 | 1 133 | 1 134 | 1 135 | 1 136 | 0 137 | 1 138 | 139 | 140 | 0 141 | 1 142 | 1 143 | 1 144 | 1 145 | 1 146 | 0 147 | 1 148 | 1 149 | 1 150 | 151 | 0 152 | 12 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | BIN\STCMON51.DLL 167 | 168 | 169 | 170 | 171 | 0 172 | 0 173 | 0 174 | 0 175 | 0 176 | -1 177 | 178 | 0 179 | 180 | 181 | 182 | 183 | 184 | 185 | 0 186 | 187 | 188 | 189 | 0 190 | 0 191 | 2 192 | 0 193 | 0 194 | 0 195 | 0 196 | 0 197 | 0 198 | 1 199 | 1 200 | 1 201 | 0 202 | 0 203 | 1 204 | 0 205 | 0 206 | 0 207 | 0 208 | 0 209 | 1 210 | 1 211 | 0 212 | 0 213 | 0 214 | 0 215 | 0 216 | 0 217 | 0 218 | 0 219 | 0 220 | 0 221 | 0 222 | 0 223 | 0 224 | 0 225 | 0 226 | 0 227 | 0 228 | 0 229 | 0 230 | 0 231 | 0 232 | 233 | 234 | 0 235 | 0x0 236 | 0xffff 237 | 238 | 239 | 0 240 | 0x0 241 | 0x0 242 | 243 | 244 | 0 245 | 0x0 246 | 0x0 247 | 248 | 249 | 0 250 | 0x0 251 | 0x0 252 | 253 | 254 | 0 255 | 0x0 256 | 0x0 257 | 258 | 259 | 0 260 | 0x0 261 | 0x0 262 | 263 | 264 | 0 265 | 0x0 266 | 0x0 267 | 268 | 269 | 0 270 | 0x0 271 | 0x0 272 | 273 | 274 | 1 275 | 0x0 276 | 0xf000 277 | 278 | 279 | 0 280 | 0x0 281 | 0x100 282 | 283 | 284 | 0 285 | 0x0 286 | 0x400 287 | 288 | 289 | 0 290 | 0x0 291 | 0x0 292 | 293 | 294 | 0 295 | 0x0 296 | 0x0 297 | 298 | 299 | 0 300 | 0x0 301 | 0x0 302 | 303 | 304 | 0 305 | 0x0 306 | 0x0 307 | 308 | 309 | 310 | 311 | 0 312 | 0 313 | 1 314 | 0 315 | 1 316 | 3 317 | 8 318 | 2 319 | 1 320 | 1 321 | 0 322 | 0 323 | 324 | 325 | 326 | 327 | .\Application\ADC;.\Application\EEPROM;.\Application\LCD1602;.\Application\SYS;.\Application\Thermistortables;.\Application\Timer;.\Application\UART;.\Application 328 | 329 | 330 | 331 | 0 332 | 1 333 | 0 334 | 0 335 | 336 | 337 | 338 | 339 | 340 | 341 | 342 | 343 | 0 344 | 0 345 | 1 346 | 0 347 | 2 348 | 1 349 | 350 | 351 | 352 | 353 | 354 | 355 | 356 | 357 | 358 | 359 | 360 | 361 | 362 | 363 | 364 | 365 | 366 | 367 | 368 | 369 | 370 | 371 | 372 | 373 | 374 | 375 | 376 | 377 | Source Group 1 378 | 379 | 380 | main.c 381 | 1 382 | .\main.c 383 | 384 | 385 | Sys.c 386 | 1 387 | .\Application\SYS\Sys.c 388 | 389 | 390 | EEPROM.c 391 | 1 392 | .\Application\EEPROM\EEPROM.c 393 | 394 | 395 | LCD1602.c 396 | 1 397 | .\Application\LCD1602\LCD1602.c 398 | 399 | 400 | Uart.c 401 | 1 402 | .\Application\UART\Uart.c 403 | 404 | 405 | STC12(ADC flag).c 406 | 1 407 | .\Application\ADC\STC12(ADC flag).c 408 | 409 | 410 | Task.c 411 | 1 412 | .\Application\Task.c 413 | 414 | 415 | Thermistortables.c 416 | 1 417 | .\Application\Thermistortables\Thermistortables.c 418 | 419 | 420 | Timer.c 421 | 1 422 | .\Application\Timer\Timer.c 423 | 424 | 425 | 426 | 427 | 428 | 429 | 430 | 431 | 432 | 433 | <Project Info> 434 | 435 | 436 | 437 | 438 | 439 | 0 440 | 1 441 | 442 | 443 | 444 | 445 |
446 | -------------------------------------------------------------------------------- /2、固件/Hex文件,不知道为啥不能接上传.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRobot-Origin/GS_Hbed/6a99291de7525dec9469b7fccf815a05cc9b16a6/2、固件/Hex文件,不知道为啥不能接上传.zip -------------------------------------------------------------------------------- /2、固件/keilclear.bat: -------------------------------------------------------------------------------- 1 | del *.bak /s 2 | del *.ddk /s 3 | del *.edk /s 4 | del *.lst /s 5 | del *.lnp /s 6 | del *.mpf /s 7 | del *.mpj /s 8 | del *.obj /s 9 | del *.omf /s 10 | del *.plg /s 11 | del *.rpt /s 12 | del *.tmp /s 13 | del *.__i /s 14 | del *.crf /s 15 | del *.o /s 16 | del *.d /s 17 | del *.axf /s 18 | del *.tra /s 19 | del *.dep /s 20 | del JLinkLog.txt /s 21 | del *.uvguix.* /s 22 | del JLinkSettings.ini /s 23 | del *.iex /s 24 | del *.htm /s 25 | del *.sct /s 26 | del *.map /s 27 | exit 28 | -------------------------------------------------------------------------------- /2、固件/main.c: -------------------------------------------------------------------------------- 1 | #include "Sys.h" 2 | #include "Task.h" 3 | extern void setup(void); 4 | extern void loop(void); 5 | 6 | void main() 7 | { 8 | setup(); 9 | loop(); 10 | } 11 | //Messy!!!!!! 12 | 13 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # GSH_Firmware 2 | 3 | -------------------------------------------------------------------------------- /丝印贴图/111.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRobot-Origin/GS_Hbed/6a99291de7525dec9469b7fccf815a05cc9b16a6/丝印贴图/111.jpg -------------------------------------------------------------------------------- /丝印贴图/5ab5c9ea15ce36d3e616956539f33a87e950b150.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRobot-Origin/GS_Hbed/6a99291de7525dec9469b7fccf815a05cc9b16a6/丝印贴图/5ab5c9ea15ce36d3e616956539f33a87e950b150.jpg -------------------------------------------------------------------------------- /丝印贴图/KJ0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRobot-Origin/GS_Hbed/6a99291de7525dec9469b7fccf815a05cc9b16a6/丝印贴图/KJ0.jpg -------------------------------------------------------------------------------- /丝印贴图/QQ截图20210401032627.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRobot-Origin/GS_Hbed/6a99291de7525dec9469b7fccf815a05cc9b16a6/丝印贴图/QQ截图20210401032627.png -------------------------------------------------------------------------------- /丝印贴图/QQ截图20210401032648.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRobot-Origin/GS_Hbed/6a99291de7525dec9469b7fccf815a05cc9b16a6/丝印贴图/QQ截图20210401032648.png -------------------------------------------------------------------------------- /丝印贴图/可回收.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRobot-Origin/GS_Hbed/6a99291de7525dec9469b7fccf815a05cc9b16a6/丝印贴图/可回收.jpeg -------------------------------------------------------------------------------- /丝印贴图/宇航员.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRobot-Origin/GS_Hbed/6a99291de7525dec9469b7fccf815a05cc9b16a6/丝印贴图/宇航员.jpeg -------------------------------------------------------------------------------- /丝印贴图/当心高温.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRobot-Origin/GS_Hbed/6a99291de7525dec9469b7fccf815a05cc9b16a6/丝印贴图/当心高温.jpeg -------------------------------------------------------------------------------- /丝印贴图/高温.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRobot-Origin/GS_Hbed/6a99291de7525dec9469b7fccf815a05cc9b16a6/丝印贴图/高温.jpg -------------------------------------------------------------------------------- /功能设计.txt: -------------------------------------------------------------------------------- 1 | 基础参数 2 | 输入电压: 9~24V,输出功率最大建议不超过300W,MOS散热要做好。 3 | 加热调温范围: 0~270℃ 4 | 热敏电阻类型: 100K热敏电阻 5 | 6 | 1、自动保存温度设置: 当设定目标温度发生改变,最后一次按钮操作5秒后,自动保存当前设定目标温度值到EEPROM 7 | 8 | 2、模式选择: 设置两种模式,SMT模式和去保护模式。 9 | SMT模式会触发超时保护并停止加热,去保护模式则不会自动停止 10 | 11 | 3、温控启动条件: (1)开机自动加载上次断电时的温度设置,并开始启动温控程序。 12 | (2)按下调节温度的按钮,或者模式切换按钮。 13 | 14 | 4、停止加热条件: (1)按下停机按钮 15 | (2)在SMT模式下:超过20分钟未进行按钮操作自动停机 16 | (3)在测量温度低于50度,设定温度大于100度的条件下,长时间检测没有温度变化会自动触发报警并停机,并保留报警信息。 17 | 在下次开机的时候需要先通过模式切换按钮手动清除报警信息,才能继续使用加热。 18 | -------------------------------------------------------------------------------- /控制系统设计.xmind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRobot-Origin/GS_Hbed/6a99291de7525dec9469b7fccf815a05cc9b16a6/控制系统设计.xmind -------------------------------------------------------------------------------- /热床设计计算方法.txt: -------------------------------------------------------------------------------- 1 | PCB走线电阻计算公式: R=ρL/(1000*WD) 2 | ρ为铜的电阻率: ρ=0.0175Ωmm^2/m 3 | L为走线长度: 单位mm 4 | W为走线宽度: 单位mm 5 | D为PCB铜厚度: 1oz 覆铜板铜箔的厚度是0.035mm 6 | eg:1mm宽100mm长的走线电阻是R=ρL/(1000*WD)=0.0175*0.1/(0.035*0.001*1000)=0.05Ω=50mΩ 7 | 8 | 希尔伯特曲线长度计算: 9 | 总长度 l 10 | 阶数为 n 11 | 单位长度为 d 12 | 总长度为 l = (2^(2n) -1)*d 13 | 使用希尔伯特曲线铺满一个正方形,则大正方形每条边的长度为 m = d * (2^n) 14 | 第一版测试: 15 | 为了尽量铺满整个PCB表面,还要兼顾良好的发热均匀和电气绝缘。 16 | 第一个版本尽量设计为极限值,用于验证和测试。 17 | 导线尽量使用低电流,需要尽可能大的电阻和导线长度。 18 | 假设单位长度为1mm左右,可暂定使用7阶曲线,边长为L = 128*d,d≈0.859,0.9*128=115mm 19 | 20 | 导线总长度l = (2^(2n) -1)*d = 16383 * 0.9 = 14744.7mm=14.7447m 21 | 线宽暂定为10mil=0.254mm左右间距,设置线宽为0.65mm 22 | 计算理论阻值:R=ρL/(1000*WD)=0.0175*14.7447/(0.035*0.0065*1000) ≈ 11.34207Ω 实测:11Ω,功率:200W左右 23 | 上电测试: 24 | 48V4A左右轻松达到300°以上,然后还发现了一个现象,高温之后,整个PCB阻值变大。 25 | 26 | 1:确定希尔伯特曲线阶数,剔除一个变量。 27 | 28 | 第二版设计测试: 29 | 根据第一版测试,以及专门对照了3D打印机的热床设计。 30 | 铝基板由于良好的导热性,而且设计目的就是为了发热,所以可以承载更高的电流,只要通过合理的温度控制就不会发生烧毁PCB的危险。 31 | 电压最好采用12V和24V这样的低电压。电流控制在10A以内,预设为24V供电 32 | 参考3D打印机的热床设计,可以采用双电阻设计,这样PCB线路中电流也能保证在10A以内 33 | 34 | 设计参数:3Ω/0.75Ω,(12/24)V 192W,12V48W 35 | PCB导线总电阻为3Ω 36 | 37 | 已知变量: 38 | 1、希尔伯特曲线覆盖尺寸 S=L * L= 110mm*110mm左右 39 | 2、总电阻:3Ω 40 | 3、电阻计算公式,曲线长度公式(阶数、单位长度) 41 | 4、由第一次测试得到一些验证,这次可以采用6阶曲线,减少绕线长度,增加线宽。 42 | 43 | 计算目标:在3Ω的电阻条件下,导线长宽之间的关系,导线宽度范围1~2mm 44 | 6阶曲线单位长度:d= L/(2^n) = 110/(2^6) = 1.71875mm, 取值单位长度为1.72mm 45 | 总长:l = (2^(2n) -1)*d = 7043.4mm=7.0434m 46 | 47 | 通过已经得到的导线长度,推导出导线宽度。 48 | R=ρL/(1000*WD)=0.0175*7.0434/(0.035*W*1000) =3 Ω 49 | 计算得:W = 1.1739 mm,取值1.17mm,计算电阻为:3.01,预测实际电阻为2.7Ω,峰值功率 213W 50 | 51 | 52 | 影响因素:PCB加工误差:线宽,铜厚 53 | 导线90度拐角处的电阻计算, 54 | 外界因素:室温,材质电阻率偏差等,具体电阻以实际为准,会有些许偏差。这也是为什么做好几版测试的原因。 55 | 56 | 57 | 58 | 59 | 60 | 61 | -------------------------------------------------------------------------------- /熨斗.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRobot-Origin/GS_Hbed/6a99291de7525dec9469b7fccf815a05cc9b16a6/熨斗.png -------------------------------------------------------------------------------- /程序流程.xmind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRobot-Origin/GS_Hbed/6a99291de7525dec9469b7fccf815a05cc9b16a6/程序流程.xmind -------------------------------------------------------------------------------- /系统框架.xmind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRobot-Origin/GS_Hbed/6a99291de7525dec9469b7fccf815a05cc9b16a6/系统框架.xmind -------------------------------------------------------------------------------- /结构/GSH_Bed_V1.SLDPRT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRobot-Origin/GS_Hbed/6a99291de7525dec9469b7fccf815a05cc9b16a6/结构/GSH_Bed_V1.SLDPRT -------------------------------------------------------------------------------- /结构/PCB热床.SLDPRT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRobot-Origin/GS_Hbed/6a99291de7525dec9469b7fccf815a05cc9b16a6/结构/PCB热床.SLDPRT -------------------------------------------------------------------------------- /结构/~$后端支撑.SLDPRT: -------------------------------------------------------------------------------- 1 | OG -------------------------------------------------------------------------------- /结构/前面板.SLDPRT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRobot-Origin/GS_Hbed/6a99291de7525dec9469b7fccf815a05cc9b16a6/结构/前面板.SLDPRT -------------------------------------------------------------------------------- /结构/后端支撑.SLDPRT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRobot-Origin/GS_Hbed/6a99291de7525dec9469b7fccf815a05cc9b16a6/结构/后端支撑.SLDPRT -------------------------------------------------------------------------------- /结构/按钮.SLDPRT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRobot-Origin/GS_Hbed/6a99291de7525dec9469b7fccf815a05cc9b16a6/结构/按钮.SLDPRT -------------------------------------------------------------------------------- /结构/支架1.SLDPRT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRobot-Origin/GS_Hbed/6a99291de7525dec9469b7fccf815a05cc9b16a6/结构/支架1.SLDPRT -------------------------------------------------------------------------------- /结构/支架2.SLDPRT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRobot-Origin/GS_Hbed/6a99291de7525dec9469b7fccf815a05cc9b16a6/结构/支架2.SLDPRT -------------------------------------------------------------------------------- /结构/装配体.SLDASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MRobot-Origin/GS_Hbed/6a99291de7525dec9469b7fccf815a05cc9b16a6/结构/装配体.SLDASM --------------------------------------------------------------------------------