├── .gitignore ├── Binaries └── Images │ ├── DieBieSlaveV0_2BOT0.png │ ├── DieBieSlaveV0_2BOT1.png │ ├── DieBieSlaveV0_2TOP0.png │ ├── DieBieSlaveV0_2TOP1.png │ ├── DieBieSlave_V0_2SlaveEditor_01.png │ ├── DieBieSlave_V0_2TwinCAT_01.png │ ├── DieBieSlave_V0_2_02.jpg │ ├── DieBieSlave_V0_2_03.jpg │ ├── DieBieSlave_V0_2_04.jpg │ ├── DieBieSlave_V0_2_05.jpg │ ├── DieBieSlave_V0_2_06.jpg │ ├── DieBieSlave_V0_2_07.jpg │ ├── DieBieSlave_V0_2_08.jpg │ ├── DieBieSlave_V0_2_09.jpg │ ├── DieBieSlave_V0_2_10.jpg │ └── DieBieSlave_V0_2_11.jpg ├── CubeMX └── DieBieSlave.ioc ├── DB10012_ControlController.Harness ├── DB10012_ControlController.SchDoc ├── DB10012_ControlEtherCAT.Harness ├── DB10012_ControlEtherCAT.SchDoc ├── DB10012_ControlIOConnector.SchDoc ├── DB10012_ControlPower.SchDoc ├── DB10012_ControlTopLevel.Harness ├── DB10012_ControlTopLevel.SchDoc ├── DB10012_ControlUSBSerial.Harness ├── DB10012_ControlUSBSerial.SchDoc ├── DB10012_DieBieSlave.OutJob ├── DB10012_GyroNunchuck.PcbDoc ├── DB10012_GyroNunchuck.PrjPcb ├── DB10012_GyroTopLevel.SchDoc ├── DB10012_IMU.PcbDoc ├── DB10012_IMU.PrjPcb ├── DB10012_IMUShield.OutJob ├── DB10012_IMUTopLevel.SchDoc ├── DB10012_UniversalSlave.DsnWrk ├── DB10012_UniversalSlave.PcbDoc ├── DB10012_UniversalSlave.PrjPcb ├── DB10012_UniversalSlave.step ├── Project Outputs for DB10012_IMU ├── Gerber │ ├── DB10012_IMU-macro.APR_LIB │ ├── DB10012_IMU.EXTREP │ ├── DB10012_IMU.GBL │ ├── DB10012_IMU.GBO │ ├── DB10012_IMU.GBS │ ├── DB10012_IMU.GKO │ ├── DB10012_IMU.GTL │ ├── DB10012_IMU.GTO │ ├── DB10012_IMU.GTS │ ├── DB10012_IMU.REP │ ├── DB10012_IMU.RUL │ └── DB10012_IMU.apr ├── NC Drill │ ├── DB10012_IMU.DRR │ ├── DB10012_IMU.LDP │ └── DB10012_IMU.TXT └── Status Report.Txt ├── Project Outputs for DB10012_UniversalSlave ├── DB10012_DieBieSlave.PDF ├── Gerber │ ├── DB10012_UniversalSlave-macro.APR_LIB │ ├── DB10012_UniversalSlave.EXTREP │ ├── DB10012_UniversalSlave.G1 │ ├── DB10012_UniversalSlave.G2 │ ├── DB10012_UniversalSlave.G3 │ ├── DB10012_UniversalSlave.G4 │ ├── DB10012_UniversalSlave.GBL │ ├── DB10012_UniversalSlave.GBO │ ├── DB10012_UniversalSlave.GBP │ ├── DB10012_UniversalSlave.GBS │ ├── DB10012_UniversalSlave.GKO │ ├── DB10012_UniversalSlave.GM1 │ ├── DB10012_UniversalSlave.GTL │ ├── DB10012_UniversalSlave.GTO │ ├── DB10012_UniversalSlave.GTP │ ├── DB10012_UniversalSlave.GTS │ ├── DB10012_UniversalSlave.REP │ ├── DB10012_UniversalSlave.RUL │ └── DB10012_UniversalSlave.apr ├── NC Drill │ ├── DB10012_UniversalSlave.DRR │ ├── DB10012_UniversalSlave.LDP │ └── DB10012_UniversalSlave.TXT └── Status Report.Txt └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | Thumbs.db 2 | History 3 | *.IntLib 4 | *.SchDocPreview 5 | *.PcbDocPreview 6 | *.tmp 7 | *.zip 8 | *.rar 9 | *Preview 10 | *.Annotation 11 | *.LOG 12 | *viewstate 13 | *.htm 14 | asccprj.scc 15 | *.PrjPCBStructure 16 | *.wmf 17 | -------------------------------------------------------------------------------- /Binaries/Images/DieBieSlaveV0_2BOT0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DieBieEngineering/DieBieSlave/6ae162d277c765069ed74279f2327c88e455eb7e/Binaries/Images/DieBieSlaveV0_2BOT0.png -------------------------------------------------------------------------------- /Binaries/Images/DieBieSlaveV0_2BOT1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DieBieEngineering/DieBieSlave/6ae162d277c765069ed74279f2327c88e455eb7e/Binaries/Images/DieBieSlaveV0_2BOT1.png -------------------------------------------------------------------------------- /Binaries/Images/DieBieSlaveV0_2TOP0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DieBieEngineering/DieBieSlave/6ae162d277c765069ed74279f2327c88e455eb7e/Binaries/Images/DieBieSlaveV0_2TOP0.png -------------------------------------------------------------------------------- /Binaries/Images/DieBieSlaveV0_2TOP1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DieBieEngineering/DieBieSlave/6ae162d277c765069ed74279f2327c88e455eb7e/Binaries/Images/DieBieSlaveV0_2TOP1.png -------------------------------------------------------------------------------- /Binaries/Images/DieBieSlave_V0_2SlaveEditor_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DieBieEngineering/DieBieSlave/6ae162d277c765069ed74279f2327c88e455eb7e/Binaries/Images/DieBieSlave_V0_2SlaveEditor_01.png -------------------------------------------------------------------------------- /Binaries/Images/DieBieSlave_V0_2TwinCAT_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DieBieEngineering/DieBieSlave/6ae162d277c765069ed74279f2327c88e455eb7e/Binaries/Images/DieBieSlave_V0_2TwinCAT_01.png -------------------------------------------------------------------------------- /Binaries/Images/DieBieSlave_V0_2_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DieBieEngineering/DieBieSlave/6ae162d277c765069ed74279f2327c88e455eb7e/Binaries/Images/DieBieSlave_V0_2_02.jpg -------------------------------------------------------------------------------- /Binaries/Images/DieBieSlave_V0_2_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DieBieEngineering/DieBieSlave/6ae162d277c765069ed74279f2327c88e455eb7e/Binaries/Images/DieBieSlave_V0_2_03.jpg -------------------------------------------------------------------------------- /Binaries/Images/DieBieSlave_V0_2_04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DieBieEngineering/DieBieSlave/6ae162d277c765069ed74279f2327c88e455eb7e/Binaries/Images/DieBieSlave_V0_2_04.jpg -------------------------------------------------------------------------------- /Binaries/Images/DieBieSlave_V0_2_05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DieBieEngineering/DieBieSlave/6ae162d277c765069ed74279f2327c88e455eb7e/Binaries/Images/DieBieSlave_V0_2_05.jpg -------------------------------------------------------------------------------- /Binaries/Images/DieBieSlave_V0_2_06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DieBieEngineering/DieBieSlave/6ae162d277c765069ed74279f2327c88e455eb7e/Binaries/Images/DieBieSlave_V0_2_06.jpg -------------------------------------------------------------------------------- /Binaries/Images/DieBieSlave_V0_2_07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DieBieEngineering/DieBieSlave/6ae162d277c765069ed74279f2327c88e455eb7e/Binaries/Images/DieBieSlave_V0_2_07.jpg -------------------------------------------------------------------------------- /Binaries/Images/DieBieSlave_V0_2_08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DieBieEngineering/DieBieSlave/6ae162d277c765069ed74279f2327c88e455eb7e/Binaries/Images/DieBieSlave_V0_2_08.jpg -------------------------------------------------------------------------------- /Binaries/Images/DieBieSlave_V0_2_09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DieBieEngineering/DieBieSlave/6ae162d277c765069ed74279f2327c88e455eb7e/Binaries/Images/DieBieSlave_V0_2_09.jpg -------------------------------------------------------------------------------- /Binaries/Images/DieBieSlave_V0_2_10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DieBieEngineering/DieBieSlave/6ae162d277c765069ed74279f2327c88e455eb7e/Binaries/Images/DieBieSlave_V0_2_10.jpg -------------------------------------------------------------------------------- /Binaries/Images/DieBieSlave_V0_2_11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DieBieEngineering/DieBieSlave/6ae162d277c765069ed74279f2327c88e455eb7e/Binaries/Images/DieBieSlave_V0_2_11.jpg -------------------------------------------------------------------------------- /CubeMX/DieBieSlave.ioc: -------------------------------------------------------------------------------- 1 | #MicroXplorer Configuration settings - do not modify 2 | CAN.BS1=CAN_BS1_1TQ 3 | CAN.BS2=CAN_BS2_1TQ 4 | CAN.CalculateTimeBit=1333 5 | CAN.CalculateTimeQuantum=444.44444444444446 6 | CAN.IPParameters=CalculateTimeQuantum,CalculateTimeBit,BS1,BS2 7 | Dma.Request0=SPI3_RX 8 | Dma.Request1=SPI3_TX 9 | Dma.RequestsNb=2 10 | Dma.SPI3_RX.0.Direction=DMA_PERIPH_TO_MEMORY 11 | Dma.SPI3_RX.0.Instance=DMA2_Channel1 12 | Dma.SPI3_RX.0.MemDataAlignment=DMA_MDATAALIGN_BYTE 13 | Dma.SPI3_RX.0.MemInc=DMA_MINC_ENABLE 14 | Dma.SPI3_RX.0.Mode=DMA_NORMAL 15 | Dma.SPI3_RX.0.PeriphDataAlignment=DMA_PDATAALIGN_BYTE 16 | Dma.SPI3_RX.0.PeriphInc=DMA_PINC_DISABLE 17 | Dma.SPI3_RX.0.Priority=DMA_PRIORITY_LOW 18 | Dma.SPI3_RX.0.RequestParameters=Instance,Direction,PeriphInc,MemInc,PeriphDataAlignment,MemDataAlignment,Mode,Priority 19 | Dma.SPI3_TX.1.Direction=DMA_MEMORY_TO_PERIPH 20 | Dma.SPI3_TX.1.Instance=DMA2_Channel2 21 | Dma.SPI3_TX.1.MemDataAlignment=DMA_MDATAALIGN_BYTE 22 | Dma.SPI3_TX.1.MemInc=DMA_MINC_ENABLE 23 | Dma.SPI3_TX.1.Mode=DMA_NORMAL 24 | Dma.SPI3_TX.1.PeriphDataAlignment=DMA_PDATAALIGN_BYTE 25 | Dma.SPI3_TX.1.PeriphInc=DMA_PINC_DISABLE 26 | Dma.SPI3_TX.1.Priority=DMA_PRIORITY_LOW 27 | Dma.SPI3_TX.1.RequestParameters=Instance,Direction,PeriphInc,MemInc,PeriphDataAlignment,MemDataAlignment,Mode,Priority 28 | File.Version=6 29 | I2C1.I2C_Speed_Mode=I2C_Fast 30 | I2C1.IPParameters=Timing,Speed,I2C_Speed_Mode 31 | I2C1.Speed=200 32 | I2C1.Timing=0x00705CFF 33 | I2C3.IPParameters=Timing,Speed 34 | I2C3.Speed=100 35 | I2C3.Timing=0x10808DD3 36 | KeepUserPlacement=false 37 | Mcu.Family=STM32F3 38 | Mcu.IP0=CAN 39 | Mcu.IP1=DMA 40 | Mcu.IP10=USART1 41 | Mcu.IP11=USART2 42 | Mcu.IP12=USB 43 | Mcu.IP13=USB_DEVICE 44 | Mcu.IP2=I2C1 45 | Mcu.IP3=I2C3 46 | Mcu.IP4=NVIC 47 | Mcu.IP5=RCC 48 | Mcu.IP6=SPI1 49 | Mcu.IP7=SPI3 50 | Mcu.IP8=SYS 51 | Mcu.IP9=TIM2 52 | Mcu.IPNb=14 53 | Mcu.Name=STM32F303R(D-E)Tx 54 | Mcu.Package=LQFP64 55 | Mcu.Pin0=PF0-OSC_IN 56 | Mcu.Pin1=PF1-OSC_OUT 57 | Mcu.Pin10=PB13 58 | Mcu.Pin11=PB14 59 | Mcu.Pin12=PB15 60 | Mcu.Pin13=PC8 61 | Mcu.Pin14=PC9 62 | Mcu.Pin15=PA8 63 | Mcu.Pin16=PA9 64 | Mcu.Pin17=PA10 65 | Mcu.Pin18=PA11 66 | Mcu.Pin19=PA12 67 | Mcu.Pin2=PA0 68 | Mcu.Pin20=PA13 69 | Mcu.Pin21=PA14 70 | Mcu.Pin22=PA15 71 | Mcu.Pin23=PC10 72 | Mcu.Pin24=PC11 73 | Mcu.Pin25=PC12 74 | Mcu.Pin26=PB3 75 | Mcu.Pin27=PB4 76 | Mcu.Pin28=PB5 77 | Mcu.Pin29=PB6 78 | Mcu.Pin3=PA1 79 | Mcu.Pin30=PB7 80 | Mcu.Pin31=PB8 81 | Mcu.Pin32=PB9 82 | Mcu.Pin33=VP_SYS_VS_Systick 83 | Mcu.Pin34=VP_TIM2_VS_ClockSourceINT 84 | Mcu.Pin35=VP_USB_DEVICE_VS_USB_DEVICE_CDC_FS 85 | Mcu.Pin4=PA2 86 | Mcu.Pin5=PA5 87 | Mcu.Pin6=PA6 88 | Mcu.Pin7=PA7 89 | Mcu.Pin8=PB0 90 | Mcu.Pin9=PB12 91 | Mcu.PinsNb=36 92 | Mcu.UserConstants= 93 | Mcu.UserName=STM32F303RETx 94 | MxCube.Version=4.15.1 95 | MxDb.Version=DB.4.0.151 96 | NVIC.BusFault_IRQn=true\:0\:0\:false\:false\:true 97 | NVIC.DMA2_Channel1_IRQn=true\:0\:0\:false\:false\:true 98 | NVIC.DMA2_Channel2_IRQn=true\:0\:0\:false\:false\:true 99 | NVIC.DebugMonitor_IRQn=true\:0\:0\:false\:false\:true 100 | NVIC.HardFault_IRQn=true\:0\:0\:false\:false\:true 101 | NVIC.MemoryManagement_IRQn=true\:0\:0\:false\:false\:true 102 | NVIC.NonMaskableInt_IRQn=true\:0\:0\:false\:false\:true 103 | NVIC.PendSV_IRQn=true\:0\:0\:false\:false\:true 104 | NVIC.PriorityGroup=NVIC_PRIORITYGROUP_4 105 | NVIC.SVCall_IRQn=true\:0\:0\:false\:false\:true 106 | NVIC.SysTick_IRQn=true\:0\:0\:false\:false\:true 107 | NVIC.TIM2_IRQn=true\:0\:0\:false\:false\:true 108 | NVIC.USB_LP_IRQn=true\:0\:0\:false\:false\:true 109 | NVIC.UsageFault_IRQn=true\:0\:0\:false\:false\:true 110 | PA0.GPIOParameters=GPIO_Label 111 | PA0.GPIO_Label=GPIO0 112 | PA0.Locked=true 113 | PA0.Signal=GPIO_Output 114 | PA1.GPIOParameters=GPIO_Label 115 | PA1.GPIO_Label=GPIO1 116 | PA1.Locked=true 117 | PA1.Signal=GPIO_Output 118 | PA10.Locked=true 119 | PA10.Mode=Asynchronous 120 | PA10.Signal=USART1_RX 121 | PA11.Mode=Device 122 | PA11.Signal=USB_DM 123 | PA12.Mode=Device 124 | PA12.Signal=USB_DP 125 | PA13.Locked=true 126 | PA13.Mode=Serial_Wire 127 | PA13.Signal=SYS_JTMS-SWDIO 128 | PA14.Locked=true 129 | PA14.Mode=Serial_Wire 130 | PA14.Signal=SYS_JTCK-SWCLK 131 | PA15.GPIOParameters=GPIO_Label 132 | PA15.GPIO_Label=SPI3_CS 133 | PA15.Locked=true 134 | PA15.Signal=GPIO_Output 135 | PA2.GPIOParameters=GPIO_Label 136 | PA2.GPIO_Label=GPIO2 137 | PA2.Locked=true 138 | PA2.Signal=GPIO_Output 139 | PA5.GPIOParameters=GPIO_Label 140 | PA5.GPIO_Label=LAN_SCK 141 | PA5.Mode=Full_Duplex_Master 142 | PA5.Signal=SPI1_SCK 143 | PA6.GPIOParameters=GPIO_Label 144 | PA6.GPIO_Label=LAN_MISO 145 | PA6.Mode=Full_Duplex_Master 146 | PA6.Signal=SPI1_MISO 147 | PA7.GPIOParameters=GPIO_Label 148 | PA7.GPIO_Label=LAN_MOSI 149 | PA7.Mode=Full_Duplex_Master 150 | PA7.Signal=SPI1_MOSI 151 | PA8.Mode=I2C 152 | PA8.Signal=I2C3_SCL 153 | PA9.Locked=true 154 | PA9.Mode=Asynchronous 155 | PA9.Signal=USART1_TX 156 | PB0.GPIOParameters=GPIO_Label 157 | PB0.GPIO_Label=LAN_SYNC1 158 | PB0.Locked=true 159 | PB0.Signal=GPIO_Input 160 | PB12.GPIOParameters=GPIO_Label 161 | PB12.GPIO_Label=LAN_CS 162 | PB12.Locked=true 163 | PB12.Signal=GPIO_Output 164 | PB13.GPIOParameters=GPIO_Label 165 | PB13.GPIO_Label=LAN_IRQ 166 | PB13.Locked=true 167 | PB13.Signal=GPXTI13 168 | PB14.GPIOParameters=GPIO_Label 169 | PB14.GPIO_Label=LAN_SYNC0 170 | PB14.Locked=true 171 | PB14.Signal=GPXTI14 172 | PB15.GPIOParameters=GPIO_Label 173 | PB15.GPIO_Label=LED_DEBUG 174 | PB15.Locked=true 175 | PB15.Signal=GPIO_Output 176 | PB3.Locked=true 177 | PB3.Mode=Asynchronous 178 | PB3.Signal=USART2_TX 179 | PB4.Locked=true 180 | PB4.Mode=Asynchronous 181 | PB4.Signal=USART2_RX 182 | PB5.GPIOParameters=GPIO_Label 183 | PB5.GPIO_Label=I2C1_INT 184 | PB5.Locked=true 185 | PB5.Signal=GPIO_Input 186 | PB6.Locked=true 187 | PB6.Mode=I2C 188 | PB6.Signal=I2C1_SCL 189 | PB7.Locked=true 190 | PB7.Mode=I2C 191 | PB7.Signal=I2C1_SDA 192 | PB8.Mode=Master 193 | PB8.Signal=CAN_RX 194 | PB9.Mode=Master 195 | PB9.Signal=CAN_TX 196 | PC10.Mode=Full_Duplex_Master 197 | PC10.Signal=SPI3_SCK 198 | PC11.Mode=Full_Duplex_Master 199 | PC11.Signal=SPI3_MISO 200 | PC12.Mode=Full_Duplex_Master 201 | PC12.Signal=SPI3_MOSI 202 | PC8.GPIOParameters=GPIO_Label 203 | PC8.GPIO_Label=I2C3_INT 204 | PC8.Locked=true 205 | PC8.Signal=GPIO_Input 206 | PC9.Mode=I2C 207 | PC9.Signal=I2C3_SDA 208 | PCC.Checker=false 209 | PCC.Line=STM32F303 210 | PCC.MCU=STM32F303R(D-E)Tx 211 | PCC.MXVersion=4.15.1 212 | PCC.PartNumber=STM32F303RETx 213 | PCC.Seq0=0 214 | PCC.Series=STM32F3 215 | PCC.Temperature=25 216 | PCC.Vdd=3.6 217 | PF0-OSC_IN.Mode=HSE-External-Oscillator 218 | PF0-OSC_IN.Signal=RCC_OSC_IN 219 | PF1-OSC_OUT.Mode=HSE-External-Oscillator 220 | PF1-OSC_OUT.Signal=RCC_OSC_OUT 221 | ProjectManager.AskForMigrate=true 222 | ProjectManager.BackupPrevious=false 223 | ProjectManager.CompilerOptimize=2 224 | ProjectManager.ComputerToolchain=false 225 | ProjectManager.CoupleFile=false 226 | ProjectManager.DeletePrevious=true 227 | ProjectManager.DeviceId=STM32F303RETx 228 | ProjectManager.FirmwarePackage=STM32Cube FW_F3 V1.5.0 229 | ProjectManager.FreePins=false 230 | ProjectManager.HalAssertFull=false 231 | ProjectManager.HeapSize=0x200 232 | ProjectManager.KeepUserCode=true 233 | ProjectManager.LastFirmware=true 234 | ProjectManager.LibraryCopy=0 235 | ProjectManager.PreviousToolchain= 236 | ProjectManager.ProjectBuild=false 237 | ProjectManager.ProjectFileName=DieBieSlave.ioc 238 | ProjectManager.ProjectName=DieBieSlave 239 | ProjectManager.StackSize=0x400 240 | ProjectManager.TargetToolchain=MDK-ARM V5 241 | ProjectManager.ToolChainLocation=C\:\\Projecten\\DieBieSlave\\Github\\Firmware\\CubeMX 242 | ProjectManager.UnderRoot=false 243 | ProjectManager.functionlistsort=1-MX_GPIO_Init-GPIO-false,2-MX_DMA_Init-DMA-false,3-MX_CAN_Init-CAN-false,4-MX_I2C1_Init-I2C1-false,5-MX_I2C3_Init-I2C3-false,6-MX_SPI1_Init-SPI1-false,7-MX_SPI3_Init-SPI3-false,8-MX_USART1_UART_Init-USART1-false,9-MX_USART2_UART_Init-USART2-false,10-MX_USB_DEVICE_Init-USB_DEVICE-false,11-MX_TIM2_Init-TIM2-false 244 | RCC.ADC12outputFreq_Value=72000000 245 | RCC.ADC34outputFreq_Value=72000000 246 | RCC.AHBFreq_Value=72000000 247 | RCC.APB1CLKDivider=RCC_HCLK_DIV2 248 | RCC.APB1Freq_Value=36000000 249 | RCC.APB1TimFreq_Value=72000000 250 | RCC.APB2Freq_Value=72000000 251 | RCC.APB2TimFreq_Value=72000000 252 | RCC.CortexFreq_Value=72000000 253 | RCC.FCLKCortexFreq_Value=72000000 254 | RCC.FamilyName=M 255 | RCC.HCLKFreq_Value=72000000 256 | RCC.HSE_VALUE=12000000 257 | RCC.HSIState=RCC_HSI_ON 258 | RCC.HSI_VALUE=8000000 259 | RCC.I2C1Freq_Value=72000000 260 | RCC.I2C2Freq_Value=8000000 261 | RCC.I2C3Freq_Value=72000000 262 | RCC.I2SClocksFreq_Value=72000000 263 | RCC.I2c1ClockSelection=RCC_I2C1CLKSOURCE_SYSCLK 264 | RCC.I2c3ClockSelection=RCC_I2C3CLKSOURCE_SYSCLK 265 | RCC.IPParameters=ADC12outputFreq_Value,ADC34outputFreq_Value,AHBFreq_Value,APB1CLKDivider,APB1Freq_Value,APB1TimFreq_Value,APB2Freq_Value,APB2TimFreq_Value,CortexFreq_Value,FCLKCortexFreq_Value,FamilyName,HCLKFreq_Value,HSE_VALUE,HSIState,HSI_VALUE,I2C1Freq_Value,I2C2Freq_Value,I2C3Freq_Value,I2SClocksFreq_Value,I2c1ClockSelection,I2c3ClockSelection,LSE_VALUE,LSI_VALUE,MCOFreq_Value,PLLCLKFreq_Value,PLLMCOFreq_Value,PLLMUL,PRESCALERUSB,RTCFreq_Value,RTCHSEDivFreq_Value,SYSCLKFreq_VALUE,SYSCLKSourceVirtual,TIM15Freq_Value,TIM16Freq_Value,TIM17Freq_Value,TIM1Freq_Value,TIM2Freq_Value,TIM3Freq_Value,TIM8Freq_Value,UART4Freq_Value,UART5Freq_Value,USART1Freq_Value,USART2Freq_Value,USART3Freq_Value,USBFreq_Value,Usart1ClockSelection,Usart2ClockSelection,VCOOutput2Freq_Value 266 | RCC.LSE_VALUE=32768 267 | RCC.LSI_VALUE=40000 268 | RCC.MCOFreq_Value=72000000 269 | RCC.PLLCLKFreq_Value=72000000 270 | RCC.PLLMCOFreq_Value=72000000 271 | RCC.PLLMUL=RCC_PLL_MUL6 272 | RCC.PRESCALERUSB=RCC_USBCLKSOURCE_PLL_DIV1_5 273 | RCC.RTCFreq_Value=40000 274 | RCC.RTCHSEDivFreq_Value=375000 275 | RCC.SYSCLKFreq_VALUE=72000000 276 | RCC.SYSCLKSourceVirtual=RCC_SYSCLKSOURCE_PLLCLK 277 | RCC.TIM15Freq_Value=72000000 278 | RCC.TIM16Freq_Value=72000000 279 | RCC.TIM17Freq_Value=72000000 280 | RCC.TIM1Freq_Value=72000000 281 | RCC.TIM2Freq_Value=72000000 282 | RCC.TIM3Freq_Value=72000000 283 | RCC.TIM8Freq_Value=72000000 284 | RCC.UART4Freq_Value=36000000 285 | RCC.UART5Freq_Value=36000000 286 | RCC.USART1Freq_Value=72000000 287 | RCC.USART2Freq_Value=72000000 288 | RCC.USART3Freq_Value=36000000 289 | RCC.USBFreq_Value=48000000 290 | RCC.Usart1ClockSelection=RCC_USART1CLKSOURCE_SYSCLK 291 | RCC.Usart2ClockSelection=RCC_USART2CLKSOURCE_SYSCLK 292 | RCC.VCOOutput2Freq_Value=12000000 293 | SH.GPXTI13.0=GPIO_EXTI13 294 | SH.GPXTI13.ConfNb=1 295 | SH.GPXTI14.0=GPIO_EXTI14 296 | SH.GPXTI14.ConfNb=1 297 | SPI1.BaudRatePrescaler=SPI_BAUDRATEPRESCALER_4 298 | SPI1.CLKPhase=SPI_PHASE_1EDGE 299 | SPI1.CLKPolarity=SPI_POLARITY_LOW 300 | SPI1.CRCCalculation=SPI_CRCCALCULATION_DISABLE 301 | SPI1.CalculateBaudRate=18.0 MBits/s 302 | SPI1.DataSize=SPI_DATASIZE_8BIT 303 | SPI1.FirstBit=SPI_FIRSTBIT_MSB 304 | SPI1.IPParameters=Mode,CalculateBaudRate,BaudRatePrescaler,DataSize,FirstBit,CLKPolarity,CLKPhase,CRCCalculation,NSSPMode 305 | SPI1.Mode=SPI_MODE_MASTER 306 | SPI1.NSSPMode=SPI_NSS_PULSE_DISABLE 307 | SPI3.BaudRatePrescaler=SPI_BAUDRATEPRESCALER_32 308 | SPI3.CLKPhase=SPI_PHASE_2EDGE 309 | SPI3.CLKPolarity=SPI_POLARITY_HIGH 310 | SPI3.CalculateBaudRate=1.125 MBits/s 311 | SPI3.DataSize=SPI_DATASIZE_8BIT 312 | SPI3.IPParameters=Mode,CalculateBaudRate,DataSize,BaudRatePrescaler,CLKPolarity,CLKPhase 313 | SPI3.Mode=SPI_MODE_MASTER 314 | TIM2.IPParameters=Prescaler,Period 315 | TIM2.Period=999 316 | TIM2.Prescaler=72 317 | USART1.BaudRate=115200 318 | USART1.IPParameters=BaudRate,WordLength 319 | USART1.WordLength=UART_WORDLENGTH_8B 320 | USART2.BaudRate=115200 321 | USART2.IPParameters=BaudRate,WordLength 322 | USART2.WordLength=UART_WORDLENGTH_8B 323 | USB_DEVICE.CLASS_NAME_FS=CDC 324 | USB_DEVICE.IPParameters=VirtualMode,VirtualModeFS,USBD_HandleTypeDef,CLASS_NAME_FS 325 | USB_DEVICE.USBD_HandleTypeDef=hUsbDeviceFS 326 | USB_DEVICE.VirtualMode=Cdc 327 | USB_DEVICE.VirtualModeFS=Cdc_FS 328 | VP_SYS_VS_Systick.Mode=SysTick 329 | VP_SYS_VS_Systick.Signal=SYS_VS_Systick 330 | VP_TIM2_VS_ClockSourceINT.Mode=Internal 331 | VP_TIM2_VS_ClockSourceINT.Signal=TIM2_VS_ClockSourceINT 332 | VP_USB_DEVICE_VS_USB_DEVICE_CDC_FS.Mode=CDC_FS 333 | VP_USB_DEVICE_VS_USB_DEVICE_CDC_FS.Signal=USB_DEVICE_VS_USB_DEVICE_CDC_FS 334 | board=DieBieSlave 335 | -------------------------------------------------------------------------------- /DB10012_ControlController.Harness: -------------------------------------------------------------------------------- 1 | CAN=RX,TX 2 | I2C1=INT,SCL,SDA 3 | I2C3=INT,SCL,SDA 4 | IO=GPIO0,GPIO1,GPIO2 5 | LAN_IO=IRQ,SYNC0,SYNC1 6 | SPI=SCK,MISO,MOSI,C\S\ 7 | SWD=UART_TX,UART_RX,R\E\S\E\T\,SWDIO,SWCLK 8 | UART=TX,RX 9 | USB=D-,D+ 10 | -------------------------------------------------------------------------------- /DB10012_ControlController.SchDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DieBieEngineering/DieBieSlave/6ae162d277c765069ed74279f2327c88e455eb7e/DB10012_ControlController.SchDoc -------------------------------------------------------------------------------- /DB10012_ControlEtherCAT.Harness: -------------------------------------------------------------------------------- 1 | LAN_IO=IRQ,SYNC0,SYNC1 2 | SPI=C\S\,SCK,MOSI,MISO 3 | -------------------------------------------------------------------------------- /DB10012_ControlEtherCAT.SchDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DieBieEngineering/DieBieSlave/6ae162d277c765069ed74279f2327c88e455eb7e/DB10012_ControlEtherCAT.SchDoc -------------------------------------------------------------------------------- /DB10012_ControlIOConnector.SchDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DieBieEngineering/DieBieSlave/6ae162d277c765069ed74279f2327c88e455eb7e/DB10012_ControlIOConnector.SchDoc -------------------------------------------------------------------------------- /DB10012_ControlPower.SchDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DieBieEngineering/DieBieSlave/6ae162d277c765069ed74279f2327c88e455eb7e/DB10012_ControlPower.SchDoc -------------------------------------------------------------------------------- /DB10012_ControlTopLevel.Harness: -------------------------------------------------------------------------------- 1 | SWD=UART_TX,UART_RX,SWDIO,SWCLK,R\E\S\E\T\ 2 | USB=D-,D+ 3 | -------------------------------------------------------------------------------- /DB10012_ControlTopLevel.SchDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DieBieEngineering/DieBieSlave/6ae162d277c765069ed74279f2327c88e455eb7e/DB10012_ControlTopLevel.SchDoc -------------------------------------------------------------------------------- /DB10012_ControlUSBSerial.Harness: -------------------------------------------------------------------------------- 1 | UART=RX,TX 2 | USB=D-,D+ 3 | -------------------------------------------------------------------------------- /DB10012_ControlUSBSerial.SchDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DieBieEngineering/DieBieSlave/6ae162d277c765069ed74279f2327c88e455eb7e/DB10012_ControlUSBSerial.SchDoc -------------------------------------------------------------------------------- /DB10012_DieBieSlave.OutJob: -------------------------------------------------------------------------------- 1 | [OutputJobFile] 2 | Version=1.0 3 | Caption= 4 | Description= 5 | VaultGUID= 6 | ItemGUID= 7 | ItemHRID= 8 | RevisionGUID= 9 | RevisionId= 10 | VaultHRID= 11 | AutoItemHRID= 12 | NextRevId= 13 | FolderGUID= 14 | LifeCycleDefinitionGUID= 15 | RevisionNamingSchemeGUID= 16 | 17 | [OutputGroup1] 18 | Name=DB10012_DieBieSlave.OutJob 19 | Description= 20 | TargetOutputMedium=Folder Structure 21 | VariantName=[No Variations] 22 | VariantScope=1 23 | CurrentConfigurationName= 24 | TargetPrinter=Samsung C460 25 | PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=0 26 | OutputMedium1=Print Job 27 | OutputMedium1_Type=Printer 28 | OutputMedium1_Printer= 29 | OutputMedium1_PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 30 | OutputMedium2=PDF 31 | OutputMedium2_Type=Publish 32 | OutputMedium3=Folder Structure 33 | OutputMedium3_Type=GeneratedFiles 34 | OutputMedium4=Video 35 | OutputMedium4_Type=Multimedia 36 | OutputType1=NC Drill 37 | OutputName1=NC Drill Files 38 | OutputCategory1=Fabrication 39 | OutputDocumentPath1=DB10012_UniversalSlave.PcbDoc 40 | OutputVariantName1= 41 | OutputEnabled1=1 42 | OutputEnabled1_OutputMedium1=0 43 | OutputEnabled1_OutputMedium2=0 44 | OutputEnabled1_OutputMedium3=1 45 | OutputEnabled1_OutputMedium4=0 46 | OutputDefault1=0 47 | Configuration1_Name1=OutputConfigurationParameter1 48 | Configuration1_Item1=BoardEdgeRoutToolDia=2000000|GenerateBoardEdgeRout=False|GenerateDrilledSlotsG85=False|GenerateEIADrillFile=False|GenerateSeparatePlatedNonPlatedFiles=False|NumberOfDecimals=4|NumberOfUnits=4|OptimizeChangeLocationCommands=True|OriginPosition=Relative|Record=DrillView|Units=Metric|ZeroesMode=SuppressTrailingZeroes 49 | OutputType2=Gerber 50 | OutputName2=Gerber Files 51 | OutputCategory2=Fabrication 52 | OutputDocumentPath2=DB10012_UniversalSlave.PcbDoc 53 | OutputVariantName2= 54 | OutputEnabled2=1 55 | OutputEnabled2_OutputMedium1=0 56 | OutputEnabled2_OutputMedium2=0 57 | OutputEnabled2_OutputMedium3=2 58 | OutputEnabled2_OutputMedium4=0 59 | OutputDefault2=0 60 | Configuration2_Name1=OutputConfigurationParameter1 61 | Configuration2_Item1=AddToAllLayerClasses.Set= |AddToAllPlots.Set=SerializeLayerHash.Version~2,ClassName~TLayerToBoolean|CentrePlots=False|DrillDrawingSymbol=GraphicsSymbol|DrillDrawingSymbolSize=200000|EmbeddedApertures=True|FilmBorderSize=10000000|FilmXSize=200000000|FilmYSize=160000000|FlashAllFills=False|FlashPadShapes=True|G54OnApertureChange=False|GenerateDRCRulesFile=True|GenerateDRCRulesFile=True|GenerateReliefShapes=True|GerberUnit=Metric|GerberUnit=Metric|IncludeUnconnectedMidLayerPads=False|LayerClassesMirror.Set= |LayerClassesPlot.Set= |LeadingAndTrailingZeroesMode=SuppressLeadingZeroes|MaxApertureSize=2500000|MinusApertureTolerance=39|MinusApertureTolerance=39|Mirror.Set=SerializeLayerHash.Version~2,ClassName~TLayerToBoolean|MirrorDrillDrawingPlots=False|MirrorDrillGuidePlots=False|NoRegularPolygons=False|NumberOfDecimals=4|NumberOfDecimals=4|OptimizeChangeLocationCommands=True|OptimizeChangeLocationCommands=True|OriginPosition=Relative|Panelize=False|Plot.Set=SerializeLayerHash.Version~2,ClassName~TLayerToBoolean,16973830~1,16973832~1,16973834~1,16777217~1,16777218~1,16777219~1,16777220~1,16777221~1,16842751~1,16973835~1,16973833~1,16973831~1,16908289~1,16973837~1|PlotPositivePlaneLayers=False|PlotUsedDrillDrawingLayerPairs=False|PlotUsedDrillGuideLayerPairs=False|PlusApertureTolerance=39|PlusApertureTolerance=39|Record=GerberView|SoftwareArcs=False|Sorted=False|Sorted=False 62 | OutputType3=Schematic Print 63 | OutputName3=Schematic Prints 64 | OutputCategory3=Documentation 65 | OutputDocumentPath3= 66 | OutputVariantName3= 67 | OutputEnabled3=0 68 | OutputEnabled3_OutputMedium1=0 69 | OutputEnabled3_OutputMedium2=1 70 | OutputEnabled3_OutputMedium3=0 71 | OutputEnabled3_OutputMedium4=0 72 | OutputDefault3=0 73 | PageOptions3=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=0|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=Letter|PaperIndex=1 74 | Configuration3_Name1=OutputConfigurationParameter1 75 | Configuration3_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 76 | 77 | [PublishSettings] 78 | OutputFilePath2=C:\Projecten\DieBieSlave\Github\Hardware\Project Outputs for DB10012_UniversalSlave\DB10012_DieBieSlave.PDF 79 | ReleaseManaged2=1 80 | OutputBasePath2=Project Outputs for DB10012_UniversalSlave 81 | OutputPathMedia2= 82 | OutputPathMediaValue2= 83 | OutputPathOutputer2=[Output Type] 84 | OutputPathOutputerPrefix2= 85 | OutputPathOutputerValue2= 86 | OutputFileName2=DB10012_DieBieSlave.PDF 87 | OutputFileNameMulti2= 88 | UseOutputNameForMulti2=1 89 | OutputFileNameSpecial2= 90 | OpenOutput2=1 91 | PromptOverwrite2=1 92 | PublishMethod2=0 93 | ZoomLevel2=50 94 | FitSCHPrintSizeToDoc2=1 95 | FitPCBPrintSizeToDoc2=1 96 | GenerateNetsInfo2=1 97 | MarkPins2=1 98 | MarkNetLabels2=1 99 | MarkPortsId2=1 100 | GenerateTOC2=1 101 | ShowComponentParameters2=1 102 | GlobalBookmarks2=0 103 | PDFACompliance2=Disabled 104 | PDFVersion2=Default 105 | OutputFilePath3=Project Outputs for Free Documents\ 106 | ReleaseManaged3=1 107 | OutputBasePath3=Project Outputs for DB10012_UniversalSlave 108 | OutputPathMedia3= 109 | OutputPathMediaValue3= 110 | OutputPathOutputer3=[Output Type] 111 | OutputPathOutputerPrefix3= 112 | OutputPathOutputerValue3= 113 | OutputFileName3= 114 | OutputFileNameMulti3= 115 | UseOutputNameForMulti3=1 116 | OutputFileNameSpecial3= 117 | OpenOutput3=1 118 | OutputFilePath4= 119 | ReleaseManaged4=1 120 | OutputBasePath4=Project Outputs for DB10012_UniversalSlave 121 | OutputPathMedia4= 122 | OutputPathMediaValue4= 123 | OutputPathOutputer4=[Output Type] 124 | OutputPathOutputerPrefix4= 125 | OutputPathOutputerValue4= 126 | OutputFileName4= 127 | OutputFileNameMulti4= 128 | UseOutputNameForMulti4=1 129 | OutputFileNameSpecial4= 130 | OpenOutput4=1 131 | PromptOverwrite4=1 132 | PublishMethod4=5 133 | ZoomLevel4=50 134 | FitSCHPrintSizeToDoc4=1 135 | FitPCBPrintSizeToDoc4=1 136 | GenerateNetsInfo4=1 137 | MarkPins4=1 138 | MarkNetLabels4=1 139 | MarkPortsId4=1 140 | MediaFormat4=Windows Media file (*.wmv,*.wma,*.asf) 141 | FixedDimensions4=1 142 | Width4=352 143 | Height4=288 144 | MultiFile4=0 145 | FramesPerSecond4=25 146 | FramesPerSecondDenom4=1 147 | AviPixelFormat4=7 148 | AviCompression4=MP42 MS-MPEG4 V2 149 | AviQuality4=100 150 | FFmpegVideoCodecId4=13 151 | FFmpegPixelFormat4=0 152 | FFmpegQuality4=80 153 | WmvVideoCodecName4=Windows Media Video V7 154 | WmvQuality4=80 155 | 156 | [GeneratedFilesSettings] 157 | RelativeOutputPath2=C:\Projecten\DieBieSlave\Github\Hardware\Project Outputs for DB10012_UniversalSlave\DB10012_DieBieSlave.PDF 158 | OpenOutputs2=1 159 | RelativeOutputPath3=Project Outputs for Free Documents\ 160 | OpenOutputs3=1 161 | AddToProject3=1 162 | TimestampFolder3=0 163 | UseOutputName3=0 164 | OpenODBOutput3=0 165 | OpenGerberOutput3=0 166 | OpenNCDrillOutput3=0 167 | OpenIPCOutput3=0 168 | EnableReload3=0 169 | RelativeOutputPath4= 170 | OpenOutputs4=1 171 | 172 | -------------------------------------------------------------------------------- /DB10012_GyroNunchuck.PcbDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DieBieEngineering/DieBieSlave/6ae162d277c765069ed74279f2327c88e455eb7e/DB10012_GyroNunchuck.PcbDoc -------------------------------------------------------------------------------- /DB10012_GyroTopLevel.SchDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DieBieEngineering/DieBieSlave/6ae162d277c765069ed74279f2327c88e455eb7e/DB10012_GyroTopLevel.SchDoc -------------------------------------------------------------------------------- /DB10012_IMU.PcbDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DieBieEngineering/DieBieSlave/6ae162d277c765069ed74279f2327c88e455eb7e/DB10012_IMU.PcbDoc -------------------------------------------------------------------------------- /DB10012_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 | PushECOToAnnotationFile=1 27 | DItemRevisionGUID= 28 | ReportSuppressedErrorsInMessages=0 29 | FSMCodingStyle=eFMSDropDownList_OneProcess 30 | FSMEncodingStyle=eFMSDropDownList_OneHot 31 | OutputPath= 32 | LogFolderPath= 33 | ManagedProjectGUID= 34 | LinkedManagedProjectGUID= 35 | IncludeDesignInRelease=0 36 | 37 | [Preferences] 38 | PrefsVaultGUID= 39 | PrefsRevisionGUID= 40 | 41 | [Document1] 42 | DocumentPath=DB10012_IMUTopLevel.SchDoc 43 | AnnotationEnabled=1 44 | AnnotateStartValue=1 45 | AnnotationIndexControlEnabled=0 46 | AnnotateSuffix= 47 | AnnotateScope=All 48 | AnnotateOrder=0 49 | DoLibraryUpdate=1 50 | DoDatabaseUpdate=1 51 | ClassGenCCAutoEnabled=1 52 | ClassGenCCAutoRoomEnabled=1 53 | ClassGenNCAutoScope=None 54 | DItemRevisionGUID= 55 | GenerateClassCluster=0 56 | DocumentUniqueId=LKAWDHGW 57 | 58 | [Document2] 59 | DocumentPath=DB10012_IMU.PcbDoc 60 | AnnotationEnabled=1 61 | AnnotateStartValue=1 62 | AnnotationIndexControlEnabled=0 63 | AnnotateSuffix= 64 | AnnotateScope=All 65 | AnnotateOrder=-1 66 | DoLibraryUpdate=1 67 | DoDatabaseUpdate=1 68 | ClassGenCCAutoEnabled=1 69 | ClassGenCCAutoRoomEnabled=1 70 | ClassGenNCAutoScope=None 71 | DItemRevisionGUID= 72 | GenerateClassCluster=0 73 | DocumentUniqueId=YCDTUEJB 74 | 75 | [Document3] 76 | DocumentPath=DB10012_IMUShield.OutJob 77 | AnnotationEnabled=1 78 | AnnotateStartValue=1 79 | AnnotationIndexControlEnabled=0 80 | AnnotateSuffix= 81 | AnnotateScope=All 82 | AnnotateOrder=-1 83 | DoLibraryUpdate=1 84 | DoDatabaseUpdate=1 85 | ClassGenCCAutoEnabled=1 86 | ClassGenCCAutoRoomEnabled=1 87 | ClassGenNCAutoScope=None 88 | DItemRevisionGUID= 89 | GenerateClassCluster=0 90 | DocumentUniqueId= 91 | 92 | [Configuration1] 93 | Name=Sources 94 | ParameterCount=0 95 | ConstraintFileCount=0 96 | ReleaseItemId= 97 | Variant=[No Variations] 98 | OutputJobsCount=0 99 | ContentTypeGUID=CB6F2064-E317-11DF-B822-12313F0024A2 100 | ConfigurationType=Source 101 | 102 | [OutputGroup1] 103 | Name=Netlist Outputs 104 | Description= 105 | TargetPrinter=Samsung C460 106 | PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 107 | OutputType1=CadnetixNetlist 108 | OutputName1=Cadnetix Netlist 109 | OutputDocumentPath1= 110 | OutputVariantName1= 111 | OutputDefault1=0 112 | OutputType2=CalayNetlist 113 | OutputName2=Calay Netlist 114 | OutputDocumentPath2= 115 | OutputVariantName2= 116 | OutputDefault2=0 117 | OutputType3=EDIF 118 | OutputName3=EDIF for PCB 119 | OutputDocumentPath3= 120 | OutputVariantName3= 121 | OutputDefault3=0 122 | OutputType4=EESofNetlist 123 | OutputName4=EESof Netlist 124 | OutputDocumentPath4= 125 | OutputVariantName4= 126 | OutputDefault4=0 127 | OutputType5=IntergraphNetlist 128 | OutputName5=Intergraph Netlist 129 | OutputDocumentPath5= 130 | OutputVariantName5= 131 | OutputDefault5=0 132 | OutputType6=MentorBoardStationNetlist 133 | OutputName6=Mentor BoardStation Netlist 134 | OutputDocumentPath6= 135 | OutputVariantName6= 136 | OutputDefault6=0 137 | OutputType7=MultiWire 138 | OutputName7=MultiWire 139 | OutputDocumentPath7= 140 | OutputVariantName7= 141 | OutputDefault7=0 142 | OutputType8=OrCadPCB2Netlist 143 | OutputName8=Orcad/PCB2 Netlist 144 | OutputDocumentPath8= 145 | OutputVariantName8= 146 | OutputDefault8=0 147 | OutputType9=PADSNetlist 148 | OutputName9=PADS ASCII Netlist 149 | OutputDocumentPath9= 150 | OutputVariantName9= 151 | OutputDefault9=0 152 | OutputType10=Pcad 153 | OutputName10=Pcad for PCB 154 | OutputDocumentPath10= 155 | OutputVariantName10= 156 | OutputDefault10=0 157 | OutputType11=PCADNetlist 158 | OutputName11=PCAD Netlist 159 | OutputDocumentPath11= 160 | OutputVariantName11= 161 | OutputDefault11=0 162 | OutputType12=PCADnltNetlist 163 | OutputName12=PCADnlt Netlist 164 | OutputDocumentPath12= 165 | OutputVariantName12= 166 | OutputDefault12=0 167 | OutputType13=Protel2Netlist 168 | OutputName13=Protel2 Netlist 169 | OutputDocumentPath13= 170 | OutputVariantName13= 171 | OutputDefault13=0 172 | OutputType14=ProtelNetlist 173 | OutputName14=Protel 174 | OutputDocumentPath14= 175 | OutputVariantName14= 176 | OutputDefault14=0 177 | OutputType15=RacalNetlist 178 | OutputName15=Racal Netlist 179 | OutputDocumentPath15= 180 | OutputVariantName15= 181 | OutputDefault15=0 182 | OutputType16=RINFNetlist 183 | OutputName16=RINF Netlist 184 | OutputDocumentPath16= 185 | OutputVariantName16= 186 | OutputDefault16=0 187 | OutputType17=SciCardsNetlist 188 | OutputName17=SciCards Netlist 189 | OutputDocumentPath17= 190 | OutputVariantName17= 191 | OutputDefault17=0 192 | OutputType18=TangoNetlist 193 | OutputName18=Tango Netlist 194 | OutputDocumentPath18= 195 | OutputVariantName18= 196 | OutputDefault18=0 197 | OutputType19=TelesisNetlist 198 | OutputName19=Telesis Netlist 199 | OutputDocumentPath19= 200 | OutputVariantName19= 201 | OutputDefault19=0 202 | OutputType20=WireListNetlist 203 | OutputName20=WireList Netlist 204 | OutputDocumentPath20= 205 | OutputVariantName20= 206 | OutputDefault20=0 207 | OutputType21=XSpiceNetlist 208 | OutputName21=XSpice Netlist 209 | OutputDocumentPath21= 210 | OutputVariantName21= 211 | OutputDefault21=0 212 | 213 | [OutputGroup2] 214 | Name=Simulator Outputs 215 | Description= 216 | TargetPrinter=Samsung C460 217 | PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 218 | OutputType1=AdvSimNetlist 219 | OutputName1=Mixed Sim 220 | OutputDocumentPath1= 221 | OutputVariantName1= 222 | OutputDefault1=0 223 | 224 | [OutputGroup3] 225 | Name=Documentation Outputs 226 | Description= 227 | TargetPrinter=Virtual Printer 228 | PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 229 | OutputType1=Composite 230 | OutputName1=Composite Drawing 231 | OutputDocumentPath1= 232 | OutputVariantName1= 233 | OutputDefault1=0 234 | 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 235 | OutputType2=PCB 3D Print 236 | OutputName2=PCB 3D Print 237 | OutputDocumentPath2= 238 | OutputVariantName2=[No Variations] 239 | OutputDefault2=0 240 | 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 241 | OutputType3=PCB 3D Video 242 | OutputName3=PCB 3D Video 243 | OutputDocumentPath3= 244 | OutputVariantName3=[No Variations] 245 | OutputDefault3=0 246 | 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 247 | OutputType4=PCB Print 248 | OutputName4=PCB Prints 249 | OutputDocumentPath4= 250 | OutputVariantName4= 251 | OutputDefault4=0 252 | 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 253 | OutputType5=PCBDrawing 254 | OutputName5=Draftsman 255 | OutputDocumentPath5= 256 | OutputVariantName5=[No Variations] 257 | OutputDefault5=0 258 | 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 259 | OutputType6=PCBLIB Print 260 | OutputName6=PCBLIB Prints 261 | OutputDocumentPath6= 262 | OutputVariantName6= 263 | OutputDefault6=0 264 | 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 265 | OutputType7=PDF3D 266 | OutputName7=PDF3D 267 | OutputDocumentPath7= 268 | OutputVariantName7=[No Variations] 269 | OutputDefault7=0 270 | 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 271 | OutputType8=Report Print 272 | OutputName8=Report Prints 273 | OutputDocumentPath8= 274 | OutputVariantName8= 275 | OutputDefault8=0 276 | 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 277 | OutputType9=Schematic Print 278 | OutputName9=Schematic Prints 279 | OutputDocumentPath9= 280 | OutputVariantName9= 281 | OutputDefault9=0 282 | 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 283 | OutputType10=SimView Print 284 | OutputName10=SimView Prints 285 | OutputDocumentPath10= 286 | OutputVariantName10= 287 | OutputDefault10=0 288 | 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 289 | OutputType11=Wave Print 290 | OutputName11=Wave Prints 291 | OutputDocumentPath11= 292 | OutputVariantName11= 293 | OutputDefault11=0 294 | 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 295 | OutputType12=WaveSim Print 296 | OutputName12=WaveSim Prints 297 | OutputDocumentPath12= 298 | OutputVariantName12= 299 | OutputDefault12=0 300 | 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 301 | 302 | [OutputGroup4] 303 | Name=Assembly Outputs 304 | Description= 305 | TargetPrinter=Samsung C460 306 | PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 307 | OutputType1=Assembly 308 | OutputName1=Assembly Drawings 309 | OutputDocumentPath1= 310 | OutputVariantName1=[No Variations] 311 | OutputDefault1=0 312 | 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 313 | OutputType2=Pick Place 314 | OutputName2=Generates pick and place files 315 | OutputDocumentPath2= 316 | OutputVariantName2=[No Variations] 317 | OutputDefault2=0 318 | OutputType3=Test Points For Assembly 319 | OutputName3=Test Point Report 320 | OutputDocumentPath3= 321 | OutputVariantName3=[No Variations] 322 | OutputDefault3=0 323 | 324 | [OutputGroup5] 325 | Name=Fabrication Outputs 326 | Description= 327 | TargetPrinter=Samsung C460 328 | PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 329 | OutputType1=Board Stack Report 330 | OutputName1=Report Board Stack 331 | OutputDocumentPath1= 332 | OutputVariantName1= 333 | OutputDefault1=0 334 | 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 335 | OutputType2=CompositeDrill 336 | OutputName2=Composite Drill Drawing 337 | OutputDocumentPath2= 338 | OutputVariantName2= 339 | OutputDefault2=0 340 | 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 341 | OutputType3=Drill 342 | OutputName3=Drill Drawing/Guides 343 | OutputDocumentPath3= 344 | OutputVariantName3= 345 | OutputDefault3=0 346 | 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 347 | OutputType4=Final 348 | OutputName4=Final Artwork Prints 349 | OutputDocumentPath4= 350 | OutputVariantName4=[No Variations] 351 | OutputDefault4=0 352 | 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 353 | OutputType5=Gerber 354 | OutputName5=Gerber Files 355 | OutputDocumentPath5= 356 | OutputVariantName5=[No Variations] 357 | OutputDefault5=0 358 | OutputType6=Gerber X2 359 | OutputName6=Gerber X2 Files 360 | OutputDocumentPath6= 361 | OutputVariantName6= 362 | OutputDefault6=0 363 | OutputType7=IPC2581 364 | OutputName7=IPC-2581 Files 365 | OutputDocumentPath7= 366 | OutputVariantName7= 367 | OutputDefault7=0 368 | OutputType8=Mask 369 | OutputName8=Solder/Paste Mask Prints 370 | OutputDocumentPath8= 371 | OutputVariantName8= 372 | OutputDefault8=0 373 | 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 374 | OutputType9=NC Drill 375 | OutputName9=NC Drill Files 376 | OutputDocumentPath9= 377 | OutputVariantName9= 378 | OutputDefault9=0 379 | OutputType10=ODB 380 | OutputName10=ODB++ Files 381 | OutputDocumentPath10= 382 | OutputVariantName10=[No Variations] 383 | OutputDefault10=0 384 | OutputType11=Plane 385 | OutputName11=Power-Plane Prints 386 | OutputDocumentPath11= 387 | OutputVariantName11= 388 | OutputDefault11=0 389 | 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 390 | OutputType12=Test Points 391 | OutputName12=Test Point Report 392 | OutputDocumentPath12= 393 | OutputVariantName12= 394 | OutputDefault12=0 395 | 396 | [OutputGroup6] 397 | Name=Report Outputs 398 | Description= 399 | TargetPrinter=Samsung C460 400 | PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 401 | OutputType1=BOM_PartType 402 | OutputName1=Bill of Materials 403 | OutputDocumentPath1= 404 | OutputVariantName1=[No Variations] 405 | OutputDefault1=0 406 | 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 407 | OutputType2=ComponentCrossReference 408 | OutputName2=Component Cross Reference Report 409 | OutputDocumentPath2= 410 | OutputVariantName2=[No Variations] 411 | OutputDefault2=0 412 | OutputType3=ReportHierarchy 413 | OutputName3=Report Project Hierarchy 414 | OutputDocumentPath3= 415 | OutputVariantName3=[No Variations] 416 | OutputDefault3=0 417 | OutputType4=Script 418 | OutputName4=Script Output 419 | OutputDocumentPath4= 420 | OutputVariantName4=[No Variations] 421 | OutputDefault4=0 422 | OutputType5=SimpleBOM 423 | OutputName5=Simple BOM 424 | OutputDocumentPath5= 425 | OutputVariantName5=[No Variations] 426 | OutputDefault5=0 427 | OutputType6=SinglePinNetReporter 428 | OutputName6=Report Single Pin Nets 429 | OutputDocumentPath6= 430 | OutputVariantName6=[No Variations] 431 | OutputDefault6=0 432 | 433 | [OutputGroup7] 434 | Name=Other Outputs 435 | Description= 436 | TargetPrinter=Samsung C460 437 | PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 438 | OutputType1=Text Print 439 | OutputName1=Text Print 440 | OutputDocumentPath1= 441 | OutputVariantName1= 442 | OutputDefault1=0 443 | 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 444 | OutputType2=Text Print 445 | OutputName2=Text Print 446 | OutputDocumentPath2= 447 | OutputVariantName2= 448 | OutputDefault2=0 449 | 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 450 | OutputType3=Text Print 451 | OutputName3=Text Print 452 | OutputDocumentPath3= 453 | OutputVariantName3= 454 | OutputDefault3=0 455 | 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 456 | OutputType4=Text Print 457 | OutputName4=Text Print 458 | OutputDocumentPath4= 459 | OutputVariantName4= 460 | OutputDefault4=0 461 | 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 462 | OutputType5=Text Print 463 | OutputName5=Text Print 464 | OutputDocumentPath5= 465 | OutputVariantName5= 466 | OutputDefault5=0 467 | 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 468 | OutputType6=Text Print 469 | OutputName6=Text Print 470 | OutputDocumentPath6= 471 | OutputVariantName6= 472 | OutputDefault6=0 473 | 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 474 | OutputType7=Text Print 475 | OutputName7=Text Print 476 | OutputDocumentPath7= 477 | OutputVariantName7= 478 | OutputDefault7=0 479 | 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 480 | OutputType8=Text Print 481 | OutputName8=Text Print 482 | OutputDocumentPath8= 483 | OutputVariantName8= 484 | OutputDefault8=0 485 | 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 486 | OutputType9=Text Print 487 | OutputName9=Text Print 488 | OutputDocumentPath9= 489 | OutputVariantName9= 490 | OutputDefault9=0 491 | 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 492 | OutputType10=Text Print 493 | OutputName10=Text Print 494 | OutputDocumentPath10= 495 | OutputVariantName10= 496 | OutputDefault10=0 497 | 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 498 | OutputType11=Text Print 499 | OutputName11=Text Print 500 | OutputDocumentPath11= 501 | OutputVariantName11= 502 | OutputDefault11=0 503 | 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 504 | OutputType12=Text Print 505 | OutputName12=Text Print 506 | OutputDocumentPath12= 507 | OutputVariantName12= 508 | OutputDefault12=0 509 | 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 510 | OutputType13=Text Print 511 | OutputName13=Text Print 512 | OutputDocumentPath13= 513 | OutputVariantName13= 514 | OutputDefault13=0 515 | 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 516 | OutputType14=Text Print 517 | OutputName14=Text Print 518 | OutputDocumentPath14= 519 | OutputVariantName14= 520 | OutputDefault14=0 521 | 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 522 | OutputType15=Text Print 523 | OutputName15=Text Print 524 | OutputDocumentPath15= 525 | OutputVariantName15= 526 | OutputDefault15=0 527 | 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 528 | OutputType16=Text Print 529 | OutputName16=Text Print 530 | OutputDocumentPath16= 531 | OutputVariantName16= 532 | OutputDefault16=0 533 | 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 534 | OutputType17=Text Print 535 | OutputName17=Text Print 536 | OutputDocumentPath17= 537 | OutputVariantName17= 538 | OutputDefault17=0 539 | 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 540 | OutputType18=Text Print 541 | OutputName18=Text Print 542 | OutputDocumentPath18= 543 | OutputVariantName18= 544 | OutputDefault18=0 545 | PageOptions18=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 546 | OutputType19=Text Print 547 | OutputName19=Text Print 548 | OutputDocumentPath19= 549 | OutputVariantName19= 550 | OutputDefault19=0 551 | PageOptions19=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 552 | OutputType20=Text Print 553 | OutputName20=Text Print 554 | OutputDocumentPath20= 555 | OutputVariantName20= 556 | OutputDefault20=0 557 | PageOptions20=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 558 | OutputType21=Text Print 559 | OutputName21=Text Print 560 | OutputDocumentPath21= 561 | OutputVariantName21= 562 | OutputDefault21=0 563 | PageOptions21=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 564 | OutputType22=Text Print 565 | OutputName22=Text Print 566 | OutputDocumentPath22= 567 | OutputVariantName22= 568 | OutputDefault22=0 569 | PageOptions22=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 570 | OutputType23=Text Print 571 | OutputName23=Text Print 572 | OutputDocumentPath23= 573 | OutputVariantName23= 574 | OutputDefault23=0 575 | PageOptions23=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 576 | OutputType24=Text Print 577 | OutputName24=Text Print 578 | OutputDocumentPath24= 579 | OutputVariantName24= 580 | OutputDefault24=0 581 | PageOptions24=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 582 | OutputType25=Text Print 583 | OutputName25=Text Print 584 | OutputDocumentPath25= 585 | OutputVariantName25= 586 | OutputDefault25=0 587 | PageOptions25=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 588 | OutputType26=Text Print 589 | OutputName26=Text Print 590 | OutputDocumentPath26= 591 | OutputVariantName26= 592 | OutputDefault26=0 593 | PageOptions26=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 594 | OutputType27=Text Print 595 | OutputName27=Text Print 596 | OutputDocumentPath27= 597 | OutputVariantName27= 598 | OutputDefault27=0 599 | PageOptions27=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 600 | OutputType28=Text Print 601 | OutputName28=Text Print 602 | OutputDocumentPath28= 603 | OutputVariantName28= 604 | OutputDefault28=0 605 | PageOptions28=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 606 | OutputType29=Text Print 607 | OutputName29=Text Print 608 | OutputDocumentPath29= 609 | OutputVariantName29= 610 | OutputDefault29=0 611 | PageOptions29=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 612 | 613 | [OutputGroup8] 614 | Name=Validation Outputs 615 | Description= 616 | TargetPrinter=Samsung C460 617 | PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 618 | OutputType1=Component states check 619 | OutputName1=Vault's components states check 620 | OutputDocumentPath1= 621 | OutputVariantName1= 622 | OutputDefault1=0 623 | OutputType2=Configuration compliance 624 | OutputName2=Environment configuration compliance check 625 | OutputDocumentPath2= 626 | OutputVariantName2= 627 | OutputDefault2=0 628 | OutputType3=Design Rules Check 629 | OutputName3=Design Rules Check 630 | OutputDocumentPath3= 631 | OutputVariantName3= 632 | OutputDefault3=0 633 | 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 634 | OutputType4=Differences Report 635 | OutputName4=Differences Report 636 | OutputDocumentPath4= 637 | OutputVariantName4= 638 | OutputDefault4=0 639 | 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 640 | OutputType5=Electrical Rules Check 641 | OutputName5=Electrical Rules Check 642 | OutputDocumentPath5= 643 | OutputVariantName5= 644 | OutputDefault5=0 645 | 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 646 | OutputType6=Footprint Comparison Report 647 | OutputName6=Footprint Comparison Report 648 | OutputDocumentPath6= 649 | OutputVariantName6= 650 | OutputDefault6=0 651 | 652 | [OutputGroup9] 653 | Name=Export Outputs 654 | Description= 655 | TargetPrinter=Samsung C460 656 | PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 657 | OutputType1=AutoCAD dwg/dxf PCB 658 | OutputName1=AutoCAD dwg/dxf File PCB 659 | OutputDocumentPath1= 660 | OutputVariantName1= 661 | OutputDefault1=0 662 | OutputType2=AutoCAD dwg/dxf Schematic 663 | OutputName2=AutoCAD dwg/dxf File Schematic 664 | OutputDocumentPath2= 665 | OutputVariantName2= 666 | OutputDefault2=0 667 | OutputType3=ExportIDF 668 | OutputName3=Export IDF 669 | OutputDocumentPath3= 670 | OutputVariantName3= 671 | OutputDefault3=0 672 | OutputType4=ExportPARASOLID 673 | OutputName4=Export PARASOLID 674 | OutputDocumentPath4= 675 | OutputVariantName4=[No Variations] 676 | OutputDefault4=0 677 | OutputType5=ExportSTEP 678 | OutputName5=Export STEP 679 | OutputDocumentPath5= 680 | OutputVariantName5=[No Variations] 681 | OutputDefault5=0 682 | OutputType6=ExportVRML 683 | OutputName6=Export VRML 684 | OutputDocumentPath6= 685 | OutputVariantName6=[No Variations] 686 | OutputDefault6=0 687 | OutputType7=Save As/Export PCB 688 | OutputName7=Save As/Export PCB 689 | OutputDocumentPath7= 690 | OutputVariantName7= 691 | OutputDefault7=0 692 | OutputType8=Save As/Export Schematic 693 | OutputName8=Save As/Export Schematic 694 | OutputDocumentPath8= 695 | OutputVariantName8= 696 | OutputDefault8=0 697 | OutputType9=Specctra Design PCB 698 | OutputName9=Specctra Design PCB 699 | OutputDocumentPath9= 700 | OutputVariantName9= 701 | OutputDefault9=0 702 | OutputType10=Ansoft Neutral 703 | OutputName10=Ansoft Neutral (AutoPCB) 704 | OutputDocumentPath10= 705 | OutputVariantName10= 706 | OutputDefault10=0 707 | OutputType11=HyperLynx 708 | OutputName11=HyperLynx (AutoPCB) 709 | OutputDocumentPath11= 710 | OutputVariantName11= 711 | OutputDefault11=0 712 | OutputType12=Orcad SDT Schematic 713 | OutputName12=Orcad SDT Schematic (AutoSCH) 714 | OutputDocumentPath12= 715 | OutputVariantName12= 716 | OutputDefault12=0 717 | OutputType13=Orcad v7 Capture Design 718 | OutputName13=Orcad v7 Capture Design (AutoSCH) 719 | OutputDocumentPath13= 720 | OutputVariantName13= 721 | OutputDefault13=0 722 | OutputType14=P-CAD ASCII 723 | OutputName14=P-CAD ASCII (AutoPCB) 724 | OutputDocumentPath14= 725 | OutputVariantName14= 726 | OutputDefault14=0 727 | OutputType15=P-CAD V16 Schematic Design 728 | OutputName15=P-CAD V16 Schematic Design (AutoSCH) 729 | OutputDocumentPath15= 730 | OutputVariantName15= 731 | OutputDefault15=0 732 | OutputType16=Protel PCB 2.8 ASCII 733 | OutputName16=Protel PCB 2.8 ASCII (AutoPCB) 734 | OutputDocumentPath16= 735 | OutputVariantName16= 736 | OutputDefault16=0 737 | OutputType17=SiSoft 738 | OutputName17=SiSoft (AutoPCB) 739 | OutputDocumentPath17= 740 | OutputVariantName17= 741 | OutputDefault17=0 742 | 743 | [OutputGroup10] 744 | Name=PostProcess Outputs 745 | Description= 746 | TargetPrinter=Samsung C460 747 | PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 748 | OutputType1=Copy Files 749 | OutputName1=Copy Files 750 | OutputDocumentPath1= 751 | OutputVariantName1= 752 | OutputDefault1=0 753 | 754 | [Modification Levels] 755 | Type1=1 756 | Type2=1 757 | Type3=1 758 | Type4=1 759 | Type5=1 760 | Type6=1 761 | Type7=1 762 | Type8=1 763 | Type9=1 764 | Type10=1 765 | Type11=1 766 | Type12=1 767 | Type13=1 768 | Type14=1 769 | Type15=1 770 | Type16=1 771 | Type17=1 772 | Type18=1 773 | Type19=1 774 | Type20=1 775 | Type21=1 776 | Type22=1 777 | Type23=1 778 | Type24=1 779 | Type25=1 780 | Type26=1 781 | Type27=1 782 | Type28=1 783 | Type29=1 784 | Type30=1 785 | Type31=1 786 | Type32=1 787 | Type33=1 788 | Type34=1 789 | Type35=1 790 | Type36=0 791 | Type37=1 792 | Type38=1 793 | Type39=1 794 | Type40=1 795 | Type41=1 796 | Type42=1 797 | Type43=1 798 | Type44=1 799 | Type45=1 800 | Type46=1 801 | Type47=1 802 | Type48=1 803 | Type49=1 804 | Type50=1 805 | Type51=1 806 | Type52=1 807 | Type53=1 808 | Type54=1 809 | Type55=1 810 | Type56=1 811 | Type57=1 812 | Type58=1 813 | Type59=1 814 | Type60=1 815 | Type61=1 816 | Type62=1 817 | Type63=1 818 | Type64=1 819 | Type65=1 820 | Type66=1 821 | Type67=1 822 | Type68=1 823 | Type69=1 824 | Type70=1 825 | Type71=1 826 | Type72=1 827 | Type73=1 828 | Type74=1 829 | Type75=1 830 | Type76=1 831 | Type77=1 832 | Type78=1 833 | Type79=1 834 | Type80=1 835 | Type81=1 836 | Type82=1 837 | Type83=1 838 | Type84=1 839 | Type85=1 840 | Type86=1 841 | Type87=1 842 | Type88=1 843 | Type89=1 844 | Type90=1 845 | 846 | [Difference Levels] 847 | Type1=1 848 | Type2=1 849 | Type3=1 850 | Type4=1 851 | Type5=1 852 | Type6=1 853 | Type7=1 854 | Type8=1 855 | Type9=1 856 | Type10=1 857 | Type11=1 858 | Type12=1 859 | Type13=1 860 | Type14=1 861 | Type15=1 862 | Type16=1 863 | Type17=1 864 | Type18=1 865 | Type19=1 866 | Type20=1 867 | Type21=1 868 | Type22=1 869 | Type23=1 870 | Type24=1 871 | Type25=1 872 | Type26=1 873 | Type27=1 874 | Type28=1 875 | Type29=1 876 | Type30=1 877 | Type31=1 878 | Type32=1 879 | Type33=1 880 | Type34=1 881 | Type35=1 882 | Type36=1 883 | Type37=1 884 | Type38=1 885 | Type39=1 886 | Type40=1 887 | Type41=1 888 | Type42=1 889 | Type43=1 890 | Type44=1 891 | Type45=1 892 | Type46=1 893 | Type47=1 894 | Type48=1 895 | Type49=1 896 | 897 | [Electrical Rules Check] 898 | Type1=1 899 | Type2=1 900 | Type3=2 901 | Type4=1 902 | Type5=2 903 | Type6=2 904 | Type7=1 905 | Type8=1 906 | Type9=1 907 | Type10=1 908 | Type11=2 909 | Type12=2 910 | Type13=2 911 | Type14=1 912 | Type15=1 913 | Type16=1 914 | Type17=1 915 | Type18=1 916 | Type19=1 917 | Type20=1 918 | Type21=1 919 | Type22=1 920 | Type23=1 921 | Type24=1 922 | Type25=2 923 | Type26=2 924 | Type27=2 925 | Type28=1 926 | Type29=1 927 | Type30=1 928 | Type31=1 929 | Type32=2 930 | Type33=2 931 | Type34=2 932 | Type35=1 933 | Type36=2 934 | Type37=1 935 | Type38=2 936 | Type39=2 937 | Type40=2 938 | Type41=0 939 | Type42=2 940 | Type43=1 941 | Type44=1 942 | Type45=2 943 | Type46=1 944 | Type47=2 945 | Type48=2 946 | Type49=1 947 | Type50=2 948 | Type51=1 949 | Type52=1 950 | Type53=1 951 | Type54=1 952 | Type55=1 953 | Type56=2 954 | Type57=1 955 | Type58=1 956 | Type59=2 957 | Type60=1 958 | Type61=2 959 | Type62=2 960 | Type63=1 961 | Type64=0 962 | Type65=2 963 | Type66=3 964 | Type67=2 965 | Type68=2 966 | Type69=2 967 | Type70=2 968 | Type71=2 969 | Type72=2 970 | Type73=2 971 | Type74=1 972 | Type75=2 973 | Type76=1 974 | Type77=1 975 | Type78=1 976 | Type79=1 977 | Type80=2 978 | Type81=3 979 | Type82=3 980 | Type83=3 981 | Type84=3 982 | Type85=3 983 | Type86=2 984 | Type87=2 985 | Type88=2 986 | Type89=1 987 | Type90=1 988 | Type91=3 989 | Type92=3 990 | Type93=2 991 | Type94=2 992 | Type95=2 993 | Type96=2 994 | Type97=2 995 | Type98=0 996 | Type99=1 997 | Type100=2 998 | Type101=1 999 | Type102=2 1000 | Type103=2 1001 | Type104=1 1002 | Type105=2 1003 | Type106=2 1004 | Type107=2 1005 | Type108=2 1006 | Type109=1 1007 | Type110=1 1008 | Type111=1 1009 | Type112=1 1010 | Type113=1 1011 | 1012 | [ERC Connection Matrix] 1013 | L1=NNNNNNNNNNNWNNNWW 1014 | L2=NNWNNNNWWWNWNWNWN 1015 | L3=NWEENEEEENEWNEEWN 1016 | L4=NNENNNWEENNWNENWN 1017 | L5=NNNNNNNNNNNNNNNNN 1018 | L6=NNENNNNEENNWNENWN 1019 | L7=NNEWNNWEENNWNENWN 1020 | L8=NWEENEENEEENNEENN 1021 | L9=NWEENEEEENEWNEEWW 1022 | L10=NWNNNNNENNEWNNEWN 1023 | L11=NNENNNNEEENWNENWN 1024 | L12=WWWWNWWNWWWNWWWNN 1025 | L13=NNNNNNNNNNNWNNNWW 1026 | L14=NWEENEEEENEWNEEWW 1027 | L15=NNENNNNEEENWNENWW 1028 | L16=WWWWNWWNWWWNWWWNW 1029 | L17=WNNNNNNNWNNNWWWWN 1030 | 1031 | [Annotate] 1032 | SortOrder=3 1033 | SortLocation=0 1034 | MatchParameter1=Comment 1035 | MatchStrictly1=1 1036 | MatchParameter2=Library Reference 1037 | MatchStrictly2=1 1038 | PhysicalNamingFormat=$Component_$RoomName 1039 | GlobalIndexSortOrder=3 1040 | GlobalIndexSortLocation=0 1041 | 1042 | [PrjClassGen] 1043 | CompClassManualEnabled=0 1044 | CompClassManualRoomEnabled=0 1045 | NetClassAutoBusEnabled=1 1046 | NetClassAutoCompEnabled=0 1047 | NetClassAutoNamedHarnessEnabled=0 1048 | NetClassManualEnabled=1 1049 | NetClassSeparateForBusSections=0 1050 | 1051 | [LibraryUpdateOptions] 1052 | SelectedOnly=0 1053 | UpdateVariants=1 1054 | PartTypes=0 1055 | FullReplace=1 1056 | UpdateDesignatorLock=1 1057 | UpdatePartIDLock=1 1058 | PreserveParameterLocations=1 1059 | PreserveParameterVisibility=1 1060 | DoGraphics=1 1061 | DoParameters=1 1062 | DoModels=1 1063 | AddParameters=0 1064 | RemoveParameters=0 1065 | AddModels=1 1066 | RemoveModels=1 1067 | UpdateCurrentModels=1 1068 | 1069 | [DatabaseUpdateOptions] 1070 | SelectedOnly=0 1071 | UpdateVariants=1 1072 | PartTypes=0 1073 | 1074 | [Comparison Options] 1075 | ComparisonOptions0=Kind=Net|MinPercent=75|MinMatch=3|ShowMatch=-1|Confirm=-1|UseName=-1|InclAllRules=0 1076 | ComparisonOptions1=Kind=Net Class|MinPercent=75|MinMatch=3|ShowMatch=-1|Confirm=-1|UseName=-1|InclAllRules=0 1077 | ComparisonOptions2=Kind=Component Class|MinPercent=75|MinMatch=3|ShowMatch=-1|Confirm=-1|UseName=-1|InclAllRules=0 1078 | ComparisonOptions3=Kind=Rule|MinPercent=75|MinMatch=3|ShowMatch=-1|Confirm=-1|UseName=-1|InclAllRules=0 1079 | ComparisonOptions4=Kind=Differential Pair|MinPercent=50|MinMatch=1|ShowMatch=0|Confirm=0|UseName=0|InclAllRules=0 1080 | ComparisonOptions5=Kind=Structure Class|MinPercent=75|MinMatch=3|ShowMatch=-1|Confirm=-1|UseName=-1|InclAllRules=0 1081 | 1082 | [SmartPDF] 1083 | 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 1084 | 1085 | -------------------------------------------------------------------------------- /DB10012_IMUShield.OutJob: -------------------------------------------------------------------------------- 1 | [OutputJobFile] 2 | Version=1.0 3 | Caption= 4 | Description= 5 | VaultGUID= 6 | ItemGUID= 7 | ItemHRID= 8 | RevisionGUID= 9 | RevisionId= 10 | VaultHRID= 11 | AutoItemHRID= 12 | NextRevId= 13 | FolderGUID= 14 | LifeCycleDefinitionGUID= 15 | RevisionNamingSchemeGUID= 16 | 17 | [OutputGroup1] 18 | Name=DB10012_IMUShield.OutJob 19 | Description= 20 | TargetOutputMedium=Folder Structure 21 | VariantName=[No Variations] 22 | VariantScope=1 23 | CurrentConfigurationName= 24 | TargetPrinter=Samsung C460 25 | PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 26 | OutputMedium1=Print Job 27 | OutputMedium1_Type=Printer 28 | OutputMedium1_Printer= 29 | OutputMedium1_PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 30 | OutputMedium2=PDF 31 | OutputMedium2_Type=Publish 32 | OutputMedium3=Folder Structure 33 | OutputMedium3_Type=GeneratedFiles 34 | OutputMedium4=Video 35 | OutputMedium4_Type=Multimedia 36 | OutputType1=NC Drill 37 | OutputName1=NC Drill Files 38 | OutputCategory1=Fabrication 39 | OutputDocumentPath1=DB10012_IMU.PcbDoc 40 | OutputVariantName1= 41 | OutputEnabled1=1 42 | OutputEnabled1_OutputMedium1=0 43 | OutputEnabled1_OutputMedium2=0 44 | OutputEnabled1_OutputMedium3=1 45 | OutputEnabled1_OutputMedium4=0 46 | OutputDefault1=0 47 | Configuration1_Name1=OutputConfigurationParameter1 48 | Configuration1_Item1=BoardEdgeRoutToolDia=2000000|GenerateBoardEdgeRout=False|GenerateDrilledSlotsG85=False|GenerateEIADrillFile=False|GenerateSeparatePlatedNonPlatedFiles=False|NumberOfDecimals=4|NumberOfUnits=4|OptimizeChangeLocationCommands=True|OriginPosition=Relative|Record=DrillView|Units=Metric|ZeroesMode=SuppressTrailingZeroes 49 | OutputType2=Gerber 50 | OutputName2=Gerber Files 51 | OutputCategory2=Fabrication 52 | OutputDocumentPath2=DB10012_IMU.PcbDoc 53 | OutputVariantName2= 54 | OutputEnabled2=1 55 | OutputEnabled2_OutputMedium1=0 56 | OutputEnabled2_OutputMedium2=0 57 | OutputEnabled2_OutputMedium3=2 58 | OutputEnabled2_OutputMedium4=0 59 | OutputDefault2=0 60 | Configuration2_Name1=OutputConfigurationParameter1 61 | Configuration2_Item1=AddToAllLayerClasses.Set= |AddToAllPlots.Set=SerializeLayerHash.Version~2,ClassName~TLayerToBoolean|CentrePlots=False|DrillDrawingSymbol=GraphicsSymbol|DrillDrawingSymbolSize=200000|EmbeddedApertures=True|FilmBorderSize=10000000|FilmXSize=200000000|FilmYSize=160000000|FlashAllFills=False|FlashPadShapes=True|G54OnApertureChange=False|GenerateDRCRulesFile=True|GenerateDRCRulesFile=True|GenerateReliefShapes=True|GerberUnit=Metric|GerberUnit=Metric|IncludeUnconnectedMidLayerPads=False|LayerClassesMirror.Set= |LayerClassesPlot.Set= |LeadingAndTrailingZeroesMode=SuppressLeadingZeroes|MaxApertureSize=2500000|MinusApertureTolerance=39|MinusApertureTolerance=39|Mirror.Set=SerializeLayerHash.Version~2,ClassName~TLayerToBoolean|MirrorDrillDrawingPlots=False|MirrorDrillGuidePlots=False|NoRegularPolygons=False|NumberOfDecimals=4|NumberOfDecimals=4|OptimizeChangeLocationCommands=True|OptimizeChangeLocationCommands=True|OriginPosition=Relative|Panelize=False|Plot.Set=SerializeLayerHash.Version~2,ClassName~TLayerToBoolean,16973830~1,16973834~1,16777217~1,16842751~1,16973835~1,16973831~1,16973837~1|PlotPositivePlaneLayers=False|PlotUsedDrillDrawingLayerPairs=False|PlotUsedDrillGuideLayerPairs=False|PlusApertureTolerance=39|PlusApertureTolerance=39|Record=GerberView|SoftwareArcs=False|Sorted=False|Sorted=False 62 | 63 | [PublishSettings] 64 | OutputFilePath2= 65 | ReleaseManaged2=1 66 | OutputBasePath2=Project Outputs for DB10012_IMU 67 | OutputPathMedia2= 68 | OutputPathMediaValue2= 69 | OutputPathOutputer2=[Output Type] 70 | OutputPathOutputerPrefix2= 71 | OutputPathOutputerValue2= 72 | OutputFileName2=DB10012_IMUShield.PDF 73 | OutputFileNameMulti2= 74 | UseOutputNameForMulti2=1 75 | OutputFileNameSpecial2= 76 | OpenOutput2=1 77 | PromptOverwrite2=1 78 | PublishMethod2=0 79 | ZoomLevel2=50 80 | FitSCHPrintSizeToDoc2=1 81 | FitPCBPrintSizeToDoc2=1 82 | GenerateNetsInfo2=1 83 | MarkPins2=1 84 | MarkNetLabels2=1 85 | MarkPortsId2=1 86 | GenerateTOC2=1 87 | ShowComponentParameters2=1 88 | GlobalBookmarks2=0 89 | PDFACompliance2=Disabled 90 | PDFVersion2=Default 91 | OutputFilePath3=C:\Projecten\DieBieSlave\Github\Hardware\Project Outputs for DB10012_IMU\ 92 | ReleaseManaged3=1 93 | OutputBasePath3=Project Outputs for DB10012_IMU 94 | OutputPathMedia3= 95 | OutputPathMediaValue3= 96 | OutputPathOutputer3=[Output Type] 97 | OutputPathOutputerPrefix3= 98 | OutputPathOutputerValue3= 99 | OutputFileName3= 100 | OutputFileNameMulti3= 101 | UseOutputNameForMulti3=1 102 | OutputFileNameSpecial3= 103 | OpenOutput3=1 104 | OutputFilePath4= 105 | ReleaseManaged4=1 106 | OutputBasePath4=Project Outputs for DB10012_IMU 107 | OutputPathMedia4= 108 | OutputPathMediaValue4= 109 | OutputPathOutputer4=[Output Type] 110 | OutputPathOutputerPrefix4= 111 | OutputPathOutputerValue4= 112 | OutputFileName4= 113 | OutputFileNameMulti4= 114 | UseOutputNameForMulti4=1 115 | OutputFileNameSpecial4= 116 | OpenOutput4=1 117 | PromptOverwrite4=1 118 | PublishMethod4=5 119 | ZoomLevel4=50 120 | FitSCHPrintSizeToDoc4=1 121 | FitPCBPrintSizeToDoc4=1 122 | GenerateNetsInfo4=1 123 | MarkPins4=1 124 | MarkNetLabels4=1 125 | MarkPortsId4=1 126 | MediaFormat4=Windows Media file (*.wmv,*.wma,*.asf) 127 | FixedDimensions4=1 128 | Width4=352 129 | Height4=288 130 | MultiFile4=0 131 | FramesPerSecond4=25 132 | FramesPerSecondDenom4=1 133 | AviPixelFormat4=7 134 | AviCompression4=MP42 MS-MPEG4 V2 135 | AviQuality4=100 136 | FFmpegVideoCodecId4=13 137 | FFmpegPixelFormat4=0 138 | FFmpegQuality4=80 139 | WmvVideoCodecName4=Windows Media Video V7 140 | WmvQuality4=80 141 | 142 | [GeneratedFilesSettings] 143 | RelativeOutputPath2= 144 | OpenOutputs2=1 145 | RelativeOutputPath3=C:\Projecten\DieBieSlave\Github\Hardware\Project Outputs for DB10012_IMU\ 146 | OpenOutputs3=1 147 | AddToProject3=1 148 | TimestampFolder3=0 149 | UseOutputName3=0 150 | OpenODBOutput3=0 151 | OpenGerberOutput3=0 152 | OpenNCDrillOutput3=0 153 | OpenIPCOutput3=0 154 | EnableReload3=0 155 | RelativeOutputPath4= 156 | OpenOutputs4=1 157 | 158 | -------------------------------------------------------------------------------- /DB10012_IMUTopLevel.SchDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DieBieEngineering/DieBieSlave/6ae162d277c765069ed74279f2327c88e455eb7e/DB10012_IMUTopLevel.SchDoc -------------------------------------------------------------------------------- /DB10012_UniversalSlave.DsnWrk: -------------------------------------------------------------------------------- 1 | [ProjectGroup] 2 | Version=1.0 3 | [Project1] 4 | ProjectPath=DB10012_UniversalSlave.PrjPcb 5 | [Project2] 6 | ProjectPath=DB10012_GyroNunchuck.PrjPcb 7 | [Project3] 8 | ProjectPath=DB10012_IMU.PrjPcb 9 | -------------------------------------------------------------------------------- /DB10012_UniversalSlave.PcbDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DieBieEngineering/DieBieSlave/6ae162d277c765069ed74279f2327c88e455eb7e/DB10012_UniversalSlave.PcbDoc -------------------------------------------------------------------------------- /DB10012_UniversalSlave.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DieBieEngineering/DieBieSlave/6ae162d277c765069ed74279f2327c88e455eb7e/DB10012_UniversalSlave.step -------------------------------------------------------------------------------- /Project Outputs for DB10012_IMU/Gerber/DB10012_IMU-macro.APR_LIB: -------------------------------------------------------------------------------- 1 | G04:AMPARAMS|DCode=14|XSize=1.6mm|YSize=0.35mm|CornerRadius=0.0875mm|HoleSize=0mm|Usage=FLASHONLY|Rotation=0.000|XOffset=0mm|YOffset=0mm|HoleType=Round|Shape=RoundedRectangle|* 2 | %AMROUNDEDRECTD14* 3 | 21,1,1.6000,0.1750,0,0,0.0* 4 | 21,1,1.4250,0.3500,0,0,0.0* 5 | 1,1,0.1750,0.7125,-0.0875* 6 | 1,1,0.1750,-0.7125,-0.0875* 7 | 1,1,0.1750,-0.7125,0.0875* 8 | 1,1,0.1750,0.7125,0.0875* 9 | % 10 | G04:AMPARAMS|DCode=30|XSize=1.8032mm|YSize=0.5532mm|CornerRadius=0.1891mm|HoleSize=0mm|Usage=FLASHONLY|Rotation=0.000|XOffset=0mm|YOffset=0mm|HoleType=Round|Shape=RoundedRectangle|* 11 | %AMROUNDEDRECTD30* 12 | 21,1,1.8032,0.1750,0,0,0.0* 13 | 21,1,1.4250,0.5532,0,0,0.0* 14 | 1,1,0.3782,0.7125,-0.0875* 15 | 1,1,0.3782,-0.7125,-0.0875* 16 | 1,1,0.3782,-0.7125,0.0875* 17 | 1,1,0.3782,0.7125,0.0875* 18 | % 19 | -------------------------------------------------------------------------------- /Project Outputs for DB10012_IMU/Gerber/DB10012_IMU.EXTREP: -------------------------------------------------------------------------------- 1 | ------------------------------------------------------------------------------------------ 2 | Gerber File Extension Report For: DB10012_IMU.GBR 24-7-2017 01:47:39 3 | ------------------------------------------------------------------------------------------ 4 | 5 | 6 | ------------------------------------------------------------------------------------------ 7 | Layer Extension Layer Description 8 | ------------------------------------------------------------------------------------------ 9 | .GTL Top Layer 10 | .GBL Bottom Layer 11 | .GTO Top Overlay 12 | .GTS Top Solder 13 | .GBS Bottom Solder 14 | .GBO Bottom Overlay 15 | .GKO Keep-Out Layer 16 | ------------------------------------------------------------------------------------------ 17 | -------------------------------------------------------------------------------- /Project Outputs for DB10012_IMU/Gerber/DB10012_IMU.GBO: -------------------------------------------------------------------------------- 1 | G04 Layer_Color=32896* 2 | %FSLAX44Y44*% 3 | %MOMM*% 4 | G71* 5 | G01* 6 | G75* 7 | M02* 8 | -------------------------------------------------------------------------------- /Project Outputs for DB10012_IMU/Gerber/DB10012_IMU.GBS: -------------------------------------------------------------------------------- 1 | G04 Layer_Color=16711935* 2 | %FSLAX44Y44*% 3 | %MOMM*% 4 | G71* 5 | G01* 6 | G75* 7 | %ADD32C,7.2032*% 8 | %ADD33C,4.2032*% 9 | %ADD34C,2.0032*% 10 | D32* 11 | X50000Y0D02* 12 | D03* 13 | X600000D02* 14 | D03* 15 | X295000Y185000D02* 16 | D03* 17 | Y-185000D02* 18 | D03* 19 | D33* 20 | X30000Y-60000D02* 21 | D03* 22 | Y-160000D02* 23 | D03* 24 | Y60000D02* 25 | D03* 26 | Y160000D02* 27 | D03* 28 | D34* 29 | X497600Y203200D02* 30 | D03* 31 | X573800Y-203200D02* 32 | D03* 33 | X396000Y203200D02* 34 | D03* 35 | X345200Y-203200D02* 36 | D03* 37 | X548400D02* 38 | D03* 39 | X421400D02* 40 | D03* 41 | X523000D02* 42 | D03* 43 | X497600D02* 44 | D03* 45 | X472200D02* 46 | D03* 47 | X446800D02* 48 | D03* 49 | X396000D02* 50 | D03* 51 | X370600D02* 52 | D03* 53 | X243600D02* 54 | D03* 55 | X218200D02* 56 | D03* 57 | X192800D02* 58 | D03* 59 | Y203200D02* 60 | D03* 61 | X218200D02* 62 | D03* 63 | X243600D02* 64 | D03* 65 | X421400D02* 66 | D03* 67 | X446800D02* 68 | D03* 69 | X472200D02* 70 | D03* 71 | X523000D02* 72 | D03* 73 | X548400D02* 74 | D03* 75 | X573800D02* 76 | D03* 77 | X345200D02* 78 | D03* 79 | X370600D02* 80 | D03* 81 | M02* 82 | -------------------------------------------------------------------------------- /Project Outputs for DB10012_IMU/Gerber/DB10012_IMU.GKO: -------------------------------------------------------------------------------- 1 | G04 Layer_Color=16711935* 2 | %FSLAX44Y44*% 3 | %MOMM*% 4 | G71* 5 | G01* 6 | G75* 7 | %ADD23C,0.2000*% 8 | D23* 9 | X650000Y195000D02* 10 | G03* 11 | X625000Y220000I-25000J0D01* 12 | G01* 13 | Y-220000D02* 14 | G03* 15 | X650000Y-195000I0J25000D01* 16 | G01* 17 | X0D02* 18 | G03* 19 | X25000Y-220000I25000J0D01* 20 | G01* 21 | Y220000D02* 22 | G03* 23 | X0Y195000I0J-25000D01* 24 | G01* 25 | X650000Y-195000D02* 26 | Y195000D01* 27 | X25000Y220000D02* 28 | X625000D01* 29 | X25000Y-220000D02* 30 | X625000D01* 31 | X0Y-195000D02* 32 | Y195000D01* 33 | M02* 34 | -------------------------------------------------------------------------------- /Project Outputs for DB10012_IMU/Gerber/DB10012_IMU.GTO: -------------------------------------------------------------------------------- 1 | G04 Layer_Color=65535* 2 | %FSLAX44Y44*% 3 | %MOMM*% 4 | G71* 5 | G01* 6 | G75* 7 | %ADD16C,0.3000*% 8 | %ADD22C,0.1500*% 9 | %ADD23C,0.2000*% 10 | %ADD24C,0.4000*% 11 | D16* 12 | X125000Y-85000D02* 13 | X150000Y-60000D01* 14 | X0Y-85000D02* 15 | X125000D01* 16 | X0Y-135000D02* 17 | X125000D01* 18 | X150000Y-160000D01* 19 | X125000Y85000D02* 20 | X150000Y60000D01* 21 | X0Y85000D02* 22 | X125000D01* 23 | X0Y135000D02* 24 | X125000D01* 25 | X150000Y160000D01* 26 | X151000Y56750D02* 27 | Y163250D01* 28 | X192000Y155250D02* 29 | Y163250D01* 30 | X189000D02* 31 | X192000D01* 32 | X189000Y56750D02* 33 | X192000D01* 34 | Y64750D01* 35 | X151000Y-163250D02* 36 | Y-56750D01* 37 | X192000Y-64750D02* 38 | Y-56750D01* 39 | X189000D02* 40 | X192000D01* 41 | X189000Y-163250D02* 42 | X192000D01* 43 | Y-155250D01* 44 | D22* 45 | X398375Y26000D02* 46 | G03* 47 | X401625Y26000I1625J0D01* 48 | G01* 49 | X383000D02* 50 | X398375D01* 51 | X401625D02* 52 | X417000D01* 53 | Y-26000D02* 54 | Y26000D01* 55 | X383000Y-26000D02* 56 | X417000D01* 57 | X383000D02* 58 | Y26000D01* 59 | D23* 60 | X211000Y152000D02* 61 | X270000D01* 62 | X280000Y142000D01* 63 | X208000Y62000D02* 64 | X253000D01* 65 | X280000Y35000D01* 66 | Y142000D01* 67 | X293997Y139997D02* 68 | X291998Y141996D01* 69 | X287999D01* 70 | X286000Y139997D01* 71 | Y137997D01* 72 | X287999Y135998D01* 73 | X291998D01* 74 | X293997Y133999D01* 75 | Y131999D01* 76 | X291998Y130000D01* 77 | X287999D01* 78 | X286000Y131999D01* 79 | X297996Y141996D02* 80 | Y130000D01* 81 | X303994D01* 82 | X305993Y131999D01* 83 | Y139997D01* 84 | X303994Y141996D01* 85 | X297996D01* 86 | X315990D02* 87 | X311992D01* 88 | X309992Y139997D01* 89 | Y131999D01* 90 | X311992Y130000D01* 91 | X315990D01* 92 | X317990Y131999D01* 93 | Y139997D01* 94 | X315990Y141996D01* 95 | X293997Y123997D02* 96 | X291998Y125996D01* 97 | X287999D01* 98 | X286000Y123997D01* 99 | Y115999D01* 100 | X287999Y114000D01* 101 | X291998D01* 102 | X293997Y115999D01* 103 | X305993Y123997D02* 104 | X303994Y125996D01* 105 | X299995D01* 106 | X297996Y123997D01* 107 | Y121997D01* 108 | X299995Y119998D01* 109 | X303994D01* 110 | X305993Y117999D01* 111 | Y115999D01* 112 | X303994Y114000D01* 113 | X299995D01* 114 | X297996Y115999D01* 115 | X286000Y109996D02* 116 | X289999D01* 117 | X287999D01* 118 | Y98000D01* 119 | X286000D01* 120 | X289999D01* 121 | X295997D02* 122 | Y109996D01* 123 | X303994Y98000D01* 124 | Y109996D01* 125 | X307993D02* 126 | X315990D01* 127 | X311992D01* 128 | Y98000D01* 129 | X293997Y91997D02* 130 | X291998Y93996D01* 131 | X287999D01* 132 | X286000Y91997D01* 133 | Y89997D01* 134 | X287999Y87998D01* 135 | X291998D01* 136 | X293997Y85999D01* 137 | Y83999D01* 138 | X291998Y82000D01* 139 | X287999D01* 140 | X286000Y83999D01* 141 | X297996Y93996D02* 142 | Y82000D01* 143 | X303994D01* 144 | X305993Y83999D01* 145 | Y91997D01* 146 | X303994Y93996D01* 147 | X297996D01* 148 | X309992D02* 149 | X313991D01* 150 | X311992D01* 151 | Y82000D01* 152 | X309992D01* 153 | X313991D01* 154 | X293997Y75997D02* 155 | X291998Y77996D01* 156 | X287999D01* 157 | X286000Y75997D01* 158 | Y73997D01* 159 | X287999Y71998D01* 160 | X291998D01* 161 | X293997Y69999D01* 162 | Y67999D01* 163 | X291998Y66000D01* 164 | X287999D01* 165 | X286000Y67999D01* 166 | X305993Y75997D02* 167 | X303994Y77996D01* 168 | X299995D01* 169 | X297996Y75997D01* 170 | Y67999D01* 171 | X299995Y66000D01* 172 | X303994D01* 173 | X305993Y67999D01* 174 | X309992Y77996D02* 175 | Y66000D01* 176 | Y69999D01* 177 | X317990Y77996D01* 178 | X311992Y71998D01* 179 | X317990Y66000D01* 180 | X293997Y59997D02* 181 | X291998Y61996D01* 182 | X287999D01* 183 | X286000Y59997D01* 184 | Y51999D01* 185 | X287999Y50000D01* 186 | X291998D01* 187 | X293997Y51999D01* 188 | Y55998D01* 189 | X289999D01* 190 | X297996Y50000D02* 191 | Y61996D01* 192 | X305993Y50000D01* 193 | Y61996D01* 194 | X309992D02* 195 | Y50000D01* 196 | X315990D01* 197 | X317990Y51999D01* 198 | Y59997D01* 199 | X315990Y61996D01* 200 | X309992D01* 201 | X286000Y39998D02* 202 | X293997D01* 203 | X289999Y43997D02* 204 | Y35999D01* 205 | X305993Y45996D02* 206 | X297996D01* 207 | Y39998D01* 208 | X301995Y41997D01* 209 | X303994D01* 210 | X305993Y39998D01* 211 | Y35999D01* 212 | X303994Y34000D01* 213 | X299995D01* 214 | X297996Y35999D01* 215 | X309992Y45996D02* 216 | Y37999D01* 217 | X313991Y34000D01* 218 | X317990Y37999D01* 219 | Y45996D01* 220 | D24* 221 | X20000Y-100006D02* 222 | X26665D01* 223 | X23332D01* 224 | Y-120000D01* 225 | X20000D01* 226 | X26665D01* 227 | X36661D02* 228 | Y-100006D01* 229 | X43326Y-106671D01* 230 | X49990Y-100006D01* 231 | Y-120000D01* 232 | X56655Y-100006D02* 233 | Y-116668D01* 234 | X59987Y-120000D01* 235 | X66652D01* 236 | X69984Y-116668D01* 237 | Y-100006D01* 238 | X76648Y-110003D02* 239 | X89977D01* 240 | X96642Y-120000D02* 241 | X103307D01* 242 | X99974D01* 243 | Y-100006D01* 244 | X96642Y-103339D01* 245 | X20000Y119994D02* 246 | X26665D01* 247 | X23332D01* 248 | Y100000D01* 249 | X20000D01* 250 | X26665D01* 251 | X36661D02* 252 | Y119994D01* 253 | X43326Y113329D01* 254 | X49990Y119994D01* 255 | Y100000D01* 256 | X56655Y119994D02* 257 | Y103332D01* 258 | X59987Y100000D01* 259 | X66652D01* 260 | X69984Y103332D01* 261 | Y119994D01* 262 | X76648Y109997D02* 263 | X89977D01* 264 | X96642Y116661D02* 265 | X99974Y119994D01* 266 | X106639D01* 267 | X109971Y116661D01* 268 | Y103332D01* 269 | X106639Y100000D01* 270 | X99974D01* 271 | X96642Y103332D01* 272 | Y116661D01* 273 | M02* 274 | -------------------------------------------------------------------------------- /Project Outputs for DB10012_IMU/Gerber/DB10012_IMU.GTS: -------------------------------------------------------------------------------- 1 | G04 Layer_Color=8388736* 2 | %FSLAX44Y44*% 3 | %MOMM*% 4 | G71* 5 | G01* 6 | G75* 7 | %ADD25C,0.2500*% 8 | %ADD26R,1.3032X1.2032*% 9 | %ADD27R,1.2032X1.3032*% 10 | %ADD28R,1.8032X1.0032*% 11 | %ADD29R,3.2032X2.3032*% 12 | G04:AMPARAMS|DCode=30|XSize=1.8032mm|YSize=0.5532mm|CornerRadius=0.1891mm|HoleSize=0mm|Usage=FLASHONLY|Rotation=0.000|XOffset=0mm|YOffset=0mm|HoleType=Round|Shape=RoundedRectangle|* 13 | %AMROUNDEDRECTD30* 14 | 21,1,1.8032,0.1750,0,0,0.0* 15 | 21,1,1.4250,0.5532,0,0,0.0* 16 | 1,1,0.3782,0.7125,-0.0875* 17 | 1,1,0.3782,-0.7125,-0.0875* 18 | 1,1,0.3782,-0.7125,0.0875* 19 | 1,1,0.3782,0.7125,0.0875* 20 | % 21 | %ADD30ROUNDEDRECTD30*% 22 | %ADD31R,1.8032X0.5532*% 23 | %ADD32C,7.2032*% 24 | %ADD33C,4.2032*% 25 | %ADD34C,2.0032*% 26 | D25* 27 | X107995Y23000D02* 28 | X97998D01* 29 | X93000Y18002D01* 30 | X97998Y13003D01* 31 | X107995D01* 32 | X105496Y8005D02* 33 | X107995Y5506D01* 34 | Y507D01* 35 | X105496Y-1992D01* 36 | X95499D01* 37 | X93000Y507D01* 38 | Y5506D01* 39 | X95499Y8005D01* 40 | X105496D01* 41 | X93000Y-6990D02* 42 | X95499D01* 43 | Y-9489D01* 44 | X93000D01* 45 | Y-6990D01* 46 | Y-19486D02* 47 | Y-24485D01* 48 | Y-21985D01* 49 | X107995D01* 50 | X105496Y-19486D01* 51 | X130995Y69000D02* 52 | Y64002D01* 53 | Y66501D01* 54 | X116000D01* 55 | Y69000D01* 56 | Y64002D01* 57 | Y56504D02* 58 | X130995D01* 59 | X125997Y51506D01* 60 | X130995Y46507D01* 61 | X116000D01* 62 | X130995Y41509D02* 63 | X118499D01* 64 | X116000Y39010D01* 65 | Y34011D01* 66 | X118499Y31512D01* 67 | X130995D01* 68 | X123498Y26514D02* 69 | Y16517D01* 70 | X128496Y1522D02* 71 | X130995Y4021D01* 72 | Y9019D01* 73 | X128496Y11519D01* 74 | X125997D01* 75 | X123498Y9019D01* 76 | Y4021D01* 77 | X120998Y1522D01* 78 | X118499D01* 79 | X116000Y4021D01* 80 | Y9019D01* 81 | X118499Y11519D01* 82 | X130995Y-3476D02* 83 | X116000D01* 84 | X123498D01* 85 | X125997Y-5976D01* 86 | Y-10974D01* 87 | X123498Y-13473D01* 88 | X116000D01* 89 | Y-18472D02* 90 | Y-23470D01* 91 | Y-20971D01* 92 | X125997D01* 93 | Y-18472D01* 94 | X116000Y-38465D02* 95 | Y-33467D01* 96 | X118499Y-30968D01* 97 | X123498D01* 98 | X125997Y-33467D01* 99 | Y-38465D01* 100 | X123498Y-40964D01* 101 | X120998D01* 102 | Y-30968D01* 103 | X116000Y-45963D02* 104 | Y-50961D01* 105 | Y-48462D01* 106 | X130995D01* 107 | Y-45963D01* 108 | Y-68456D02* 109 | X116000D01* 110 | Y-60958D01* 111 | X118499Y-58459D01* 112 | X123498D01* 113 | X125997Y-60958D01* 114 | Y-68456D01* 115 | D26* 116 | X243500Y96000D02* 117 | D03* 118 | X226500D02* 119 | D03* 120 | X243500Y-125000D02* 121 | D03* 122 | X226500D02* 123 | D03* 124 | X243500Y112000D02* 125 | D03* 126 | X226500D02* 127 | D03* 128 | X243500Y-110000D02* 129 | D03* 130 | X226500D02* 131 | D03* 132 | Y70000D02* 133 | D03* 134 | X243500D02* 135 | D03* 136 | X226500Y-149000D02* 137 | D03* 138 | X243500D02* 139 | D03* 140 | X243500Y-95000D02* 141 | D03* 142 | X226500D02* 143 | D03* 144 | D27* 145 | X422000Y39500D02* 146 | D03* 147 | Y56500D02* 148 | D03* 149 | X407000Y39500D02* 150 | D03* 151 | Y56500D02* 152 | D03* 153 | X392000Y39500D02* 154 | D03* 155 | Y56500D02* 156 | D03* 157 | X377000D02* 158 | D03* 159 | Y39500D02* 160 | D03* 161 | D28* 162 | X199000Y110000D02* 163 | D03* 164 | Y97500D02* 165 | D03* 166 | Y85000D02* 167 | D03* 168 | Y147500D02* 169 | D03* 170 | Y135000D02* 171 | D03* 172 | Y122500D02* 173 | D03* 174 | Y72500D02* 175 | D03* 176 | Y-110000D02* 177 | D03* 178 | Y-122500D02* 179 | D03* 180 | Y-135000D02* 181 | D03* 182 | Y-72500D02* 183 | D03* 184 | Y-85000D02* 185 | D03* 186 | Y-97500D02* 187 | D03* 188 | Y-147500D02* 189 | D03* 190 | D29* 191 | X170000Y173000D02* 192 | D03* 193 | Y47000D02* 194 | D03* 195 | Y-47000D02* 196 | D03* 197 | Y-173000D02* 198 | D03* 199 | D30* 200 | X372000Y22750D02* 201 | D03* 202 | D31* 203 | Y16250D02* 204 | D03* 205 | Y9750D02* 206 | D03* 207 | Y3250D02* 208 | D03* 209 | Y-3250D02* 210 | D03* 211 | Y-9750D02* 212 | D03* 213 | Y-16250D02* 214 | D03* 215 | Y-22750D02* 216 | D03* 217 | X428000Y22750D02* 218 | D03* 219 | Y16250D02* 220 | D03* 221 | Y9750D02* 222 | D03* 223 | Y3250D02* 224 | D03* 225 | Y-3250D02* 226 | D03* 227 | Y-9750D02* 228 | D03* 229 | Y-16250D02* 230 | D03* 231 | Y-22750D02* 232 | D03* 233 | D32* 234 | X50000Y0D02* 235 | D03* 236 | X600000D02* 237 | D03* 238 | X295000Y185000D02* 239 | D03* 240 | Y-185000D02* 241 | D03* 242 | D33* 243 | X30000Y-60000D02* 244 | D03* 245 | Y-160000D02* 246 | D03* 247 | Y60000D02* 248 | D03* 249 | Y160000D02* 250 | D03* 251 | D34* 252 | X497600Y203200D02* 253 | D03* 254 | X573800Y-203200D02* 255 | D03* 256 | X396000Y203200D02* 257 | D03* 258 | X345200Y-203200D02* 259 | D03* 260 | X548400D02* 261 | D03* 262 | X421400D02* 263 | D03* 264 | X523000D02* 265 | D03* 266 | X497600D02* 267 | D03* 268 | X472200D02* 269 | D03* 270 | X446800D02* 271 | D03* 272 | X396000D02* 273 | D03* 274 | X370600D02* 275 | D03* 276 | X243600D02* 277 | D03* 278 | X218200D02* 279 | D03* 280 | X192800D02* 281 | D03* 282 | Y203200D02* 283 | D03* 284 | X218200D02* 285 | D03* 286 | X243600D02* 287 | D03* 288 | X421400D02* 289 | D03* 290 | X446800D02* 291 | D03* 292 | X472200D02* 293 | D03* 294 | X523000D02* 295 | D03* 296 | X548400D02* 297 | D03* 298 | X573800D02* 299 | D03* 300 | X345200D02* 301 | D03* 302 | X370600D02* 303 | D03* 304 | M02* 305 | -------------------------------------------------------------------------------- /Project Outputs for DB10012_IMU/Gerber/DB10012_IMU.REP: -------------------------------------------------------------------------------- 1 | ************************************************************* 2 | FileName = DB10012_IMU.GBR 3 | AutoAperture = True 4 | ************************************************************* 5 | Generating : Top Layer 6 | File : DB10012_IMU.GTL 7 | 8 | Adding Layer : Top Layer 9 | 10 | Adding Layer : Multi-Layer 11 | 12 | 13 | Used DCodes : 14 | D10 15 | D11 16 | D12 17 | D13 18 | D14 19 | D15 20 | D16 21 | D17 22 | D18 23 | D19 24 | D20 25 | D21 26 | ************************************************************* 27 | 28 | ************************************************************* 29 | Generating : Bottom Layer 30 | File : DB10012_IMU.GBL 31 | 32 | Adding Layer : Bottom Layer 33 | 34 | Adding Layer : Multi-Layer 35 | 36 | 37 | Used DCodes : 38 | D16 39 | D17 40 | D18 41 | D19 42 | D20 43 | D21 44 | ************************************************************* 45 | 46 | ************************************************************* 47 | Generating : Top Overlay 48 | File : DB10012_IMU.GTO 49 | 50 | Adding Layer : Top Overlay 51 | 52 | 53 | Used DCodes : 54 | D16 55 | D22 56 | D23 57 | D24 58 | ************************************************************* 59 | 60 | ************************************************************* 61 | Generating : Top Solder 62 | File : DB10012_IMU.GTS 63 | 64 | Adding Layer : Top Solder 65 | 66 | Adding Layer : Top Layer 67 | 68 | Adding Layer : Multi-Layer 69 | 70 | 71 | Used DCodes : 72 | D25 73 | D26 74 | D27 75 | D28 76 | D29 77 | D30 78 | D31 79 | D32 80 | D33 81 | D34 82 | ************************************************************* 83 | 84 | ************************************************************* 85 | Generating : Bottom Solder 86 | File : DB10012_IMU.GBS 87 | 88 | Adding Layer : Bottom Solder 89 | 90 | Adding Layer : Bottom Layer 91 | 92 | Adding Layer : Multi-Layer 93 | 94 | 95 | Used DCodes : 96 | D32 97 | D33 98 | D34 99 | ************************************************************* 100 | 101 | ************************************************************* 102 | Generating : Bottom Overlay 103 | File : DB10012_IMU.GBO 104 | 105 | Adding Layer : Bottom Overlay 106 | 107 | 108 | Used DCodes : 109 | ************************************************************* 110 | 111 | ************************************************************* 112 | Generating : Keep-Out Layer 113 | File : DB10012_IMU.GKO 114 | 115 | Adding Layer : Keep-Out Layer 116 | 117 | 118 | Used DCodes : 119 | D23 120 | ************************************************************* 121 | 122 | -------------------------------------------------------------------------------- /Project Outputs for DB10012_IMU/Gerber/DB10012_IMU.RUL: -------------------------------------------------------------------------------- 1 | DRC Rules Export File for PCB: C:\Projecten\DieBieSlave\Github\Hardware\DB10012_IMU.PcbDoc 2 | RuleKind=SolderMaskExpansion|RuleName=SolderMaskExpansion|Scope=Board|Minimum=4.00 3 | RuleKind=Width|RuleName=Width|Scope=Board|Minimum=5.91 4 | RuleKind=Clearance|RuleName=Clearance|Scope=Board|Minimum=5.91 5 | RuleKind=ShortCircuit|RuleName=ShortCircuit|Scope=Board|Allowed=0 6 | -------------------------------------------------------------------------------- /Project Outputs for DB10012_IMU/Gerber/DB10012_IMU.apr: -------------------------------------------------------------------------------- 1 | D10 RECTANGULAR 39.370 43.307 0.000 FLASH 270.000 2 | D11 RECTANGULAR 39.370 43.307 0.000 FLASH 0.000 3 | D12 RECTANGULAR 31.496 62.992 0.000 FLASH 90.000 4 | D13 RECTANGULAR 82.677 118.110 0.000 FLASH 270.000 5 | D15 RECTANGULAR 62.992 13.780 0.000 FLASH 0.000 6 | D16 ROUNDED 11.811 11.811 0.000 LINE 0.000 7 | D17 ROUNDED 19.685 19.685 0.000 LINE 0.000 8 | D18 ROUNDED 275.591 275.591 0.000 FLASH 0.000 9 | D19 ROUNDED 157.480 157.480 0.000 FLASH 0.000 10 | D20 ROUNDED 70.866 70.866 0.000 FLASH 0.000 11 | D21 ROUNDED 31.496 31.496 0.000 FLASH 0.000 12 | D22 ROUNDED 5.905 5.905 0.000 LINE 0.000 13 | D23 ROUNDED 7.874 7.874 0.000 LINE 0.000 14 | D24 ROUNDED 15.748 15.748 0.000 LINE 0.000 15 | D25 ROUNDED 9.842 9.842 0.000 LINE 0.000 16 | D26 RECTANGULAR 47.370 51.307 0.000 FLASH 270.000 17 | D27 RECTANGULAR 47.370 51.307 0.000 FLASH 0.000 18 | D28 RECTANGULAR 39.496 70.992 0.000 FLASH 90.000 19 | D29 RECTANGULAR 90.677 126.110 0.000 FLASH 270.000 20 | D31 RECTANGULAR 70.992 21.779 0.000 FLASH 0.000 21 | D32 ROUNDED 283.591 283.591 0.000 FLASH 0.000 22 | D33 ROUNDED 165.480 165.480 0.000 FLASH 0.000 23 | D34 ROUNDED 78.866 78.866 0.000 FLASH 0.000 24 | -------------------------------------------------------------------------------- /Project Outputs for DB10012_IMU/NC Drill/DB10012_IMU.DRR: -------------------------------------------------------------------------------- 1 | ---------------------------------------------------------------------------------------------------------------------------------- 2 | NCDrill File Report For: DB10012_IMU.PcbDoc 24-7-2017 01:47:39 3 | ---------------------------------------------------------------------------------------------------------------------------------- 4 | 5 | Layer Pair : Top Layer to Bottom Layer 6 | ASCII RoundHoles File : DB10012_IMU.TXT 7 | 8 | Tool Hole Size Hole Tolerance Hole Type Hole Count Plated Tool Travel 9 | ---------------------------------------------------------------------------------------------------------------------------------- 10 | T1 0.4mm (16mil) Round 74 PTH 301.11mm (11.85inch) 11 | T2 1mm (39mil) Round 26 PTH 127.00mm (5.00inch) 12 | T3 3.2mm (126mil) Round 4 PTH 97.07mm (3.82inch) 13 | T4 4mm (157mil) Round 4 NPTH 32.00mm (1.26inch) 14 | ---------------------------------------------------------------------------------------------------------------------------------- 15 | Totals 108 16 | 17 | Total Processing Time (hh:mm:ss) : 00:00:00 18 | -------------------------------------------------------------------------------- /Project Outputs for DB10012_IMU/NC Drill/DB10012_IMU.LDP: -------------------------------------------------------------------------------- 1 | Layer Pairs Export File for PCB: C:\Projecten\DieBieSlave\Github\Hardware\DB10012_IMU.PcbDoc 2 | LayersSetName=Top_Bot_Thru_Holes|DrillFile=db10012_imu.txt|DrillLayers=gtl,gbl 3 | -------------------------------------------------------------------------------- /Project Outputs for DB10012_IMU/NC Drill/DB10012_IMU.TXT: -------------------------------------------------------------------------------- 1 | M48 2 | ;Layer_Color=9474304 3 | ;FILE_FORMAT=4:4 4 | METRIC,LZ 5 | ;TYPE=PLATED 6 | T1F00S00C0.4000 7 | T2F00S00C1.0000 8 | T3F00S00C3.2000 9 | ;TYPE=NON_PLATED 10 | T4F00S00C4.0000 11 | % 12 | T01 13 | X00515Y-0015 14 | X00535 15 | X00561 16 | X00582 17 | X005738Y-000892 18 | X00497Y00096 19 | X00472 20 | X0046Y00088 21 | X00447Y0008 22 | X00434Y00057 23 | X00407Y00068 24 | X00392Y0007 25 | X00355Y00056 26 | X00366Y00041 27 | X00327Y00025 28 | Y0 29 | X0029 30 | Y00025 31 | X00255Y0 32 | X00235 33 | X0021 34 | X0019 35 | X0017 36 | Y0007 37 | X0019Y00055 38 | X0021 39 | X00215Y0007 40 | Y00085 41 | X00235Y00055 42 | X00255 43 | Y00096 44 | X00327Y00088 45 | Y00065 46 | X0039Y0 47 | X004Y-00015 48 | X0046Y-0001 49 | Y0001 50 | X00422Y0003 51 | X00327Y-00076 52 | Y-00095 53 | X003 54 | X0029Y-0006 55 | X00255 56 | X00235 57 | X0021 58 | X0019 59 | X0018Y-00098 60 | Y-00125 61 | X00215Y-00135 62 | Y-00149 63 | X0023Y-00162 64 | X00198Y-00163 65 | X00214Y-00098 66 | X00255Y-0011 67 | X00266 68 | X00255Y-00125 69 | X00257Y-00138 70 | X00327Y-0013 71 | Y00104 72 | Y00123 73 | Y00144 74 | X0028Y00104 75 | X00255Y00112 76 | X00215Y00123 77 | Y00135 78 | Y00157 79 | X0018Y00147 80 | Y00122 81 | X0046Y00123 82 | Y00104 83 | Y00144 84 | X00523Y00112 85 | X00541Y00126 86 | X00558Y00143 87 | T02 88 | X004722Y-002032 89 | X004976 90 | X00523 91 | X005484 92 | X005738 93 | X004468 94 | X004214 95 | X00396 96 | X003706 97 | X003452 98 | X002436 99 | X002182 100 | X001928 101 | Y002032 102 | X002182 103 | X002436 104 | X003452 105 | X003706 106 | X00396 107 | X004214 108 | X004468 109 | X004722 110 | X004976 111 | X00523 112 | X005484 113 | X005738 114 | T03 115 | X006Y0 116 | X00295Y-00185 117 | X0005Y0 118 | X00295Y00185 119 | T04 120 | X0003Y-0016 121 | Y-0006 122 | Y0006 123 | Y0016 124 | M30 125 | -------------------------------------------------------------------------------- /Project Outputs for DB10012_IMU/Status Report.Txt: -------------------------------------------------------------------------------- 1 | Output: Gerber Files 2 | Type : Gerber 3 | From : Variant [[No Variations]] of PCB Document [DB10012_IMU.PcbDoc] 4 | Generated File[DB10012_IMU.GTL] 5 | Generated File[DB10012_IMU.GBL] 6 | Generated File[DB10012_IMU.GTO] 7 | Generated File[DB10012_IMU.GTS] 8 | Generated File[DB10012_IMU.GBS] 9 | Generated File[DB10012_IMU.GBO] 10 | Generated File[DB10012_IMU.GKO] 11 | Generated File[DB10012_IMU.RUL] 12 | Generated File[DB10012_IMU.EXTREP] 13 | Generated File[DB10012_IMU.REP] 14 | 15 | 16 | Files Generated : 10 17 | Documents Printed : 0 18 | 19 | Finished Output Generation At 01:47:39 On 24-7-2017 20 | -------------------------------------------------------------------------------- /Project Outputs for DB10012_UniversalSlave/DB10012_DieBieSlave.PDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DieBieEngineering/DieBieSlave/6ae162d277c765069ed74279f2327c88e455eb7e/Project Outputs for DB10012_UniversalSlave/DB10012_DieBieSlave.PDF -------------------------------------------------------------------------------- /Project Outputs for DB10012_UniversalSlave/Gerber/DB10012_UniversalSlave-macro.APR_LIB: -------------------------------------------------------------------------------- 1 | G04:AMPARAMS|DCode=13|XSize=1.4mm|YSize=1.2mm|CornerRadius=0mm|HoleSize=0mm|Usage=FLASHONLY|Rotation=315.000|XOffset=0mm|YOffset=0mm|HoleType=Round|Shape=Rectangle|* 2 | %AMROTATEDRECTD13* 3 | 4,1,4,-0.9192,0.0707,-0.0707,0.9192,0.9192,-0.0707,0.0707,-0.9192,-0.9192,0.0707,0.0* 4 | % 5 | G04:AMPARAMS|DCode=20|XSize=0.635mm|YSize=0.5mm|CornerRadius=0mm|HoleSize=0mm|Usage=FLASHONLY|Rotation=45.000|XOffset=0mm|YOffset=0mm|HoleType=Round|Shape=Rectangle|* 6 | %AMROTATEDRECTD20* 7 | 4,1,4,-0.0477,-0.4013,-0.4013,-0.0477,0.0477,0.4013,0.4013,0.0477,-0.0477,-0.4013,0.0* 8 | % 9 | G04:AMPARAMS|DCode=24|XSize=0.635mm|YSize=0.5mm|CornerRadius=0mm|HoleSize=0mm|Usage=FLASHONLY|Rotation=315.000|XOffset=0mm|YOffset=0mm|HoleType=Round|Shape=Rectangle|* 10 | %AMROTATEDRECTD24* 11 | 4,1,4,-0.4013,0.0477,-0.0477,0.4013,0.4013,-0.0477,0.0477,-0.4013,-0.4013,0.0477,0.0* 12 | % 13 | G04:AMPARAMS|DCode=31|XSize=0.6mm|YSize=1.8mm|CornerRadius=0.15mm|HoleSize=0mm|Usage=FLASHONLY|Rotation=90.000|XOffset=0mm|YOffset=0mm|HoleType=Round|Shape=RoundedRectangle|* 14 | %AMROUNDEDRECTD31* 15 | 21,1,0.6000,1.5000,0,0,90.0* 16 | 21,1,0.3000,1.8000,0,0,90.0* 17 | 1,1,0.3000,0.7500,0.1500* 18 | 1,1,0.3000,0.7500,-0.1500* 19 | 1,1,0.3000,-0.7500,-0.1500* 20 | 1,1,0.3000,-0.7500,0.1500* 21 | % 22 | G04:AMPARAMS|DCode=36|XSize=0.28mm|YSize=0.69mm|CornerRadius=0.042mm|HoleSize=0mm|Usage=FLASHONLY|Rotation=90.000|XOffset=0mm|YOffset=0mm|HoleType=Round|Shape=RoundedRectangle|* 23 | %AMROUNDEDRECTD36* 24 | 21,1,0.2800,0.6060,0,0,90.0* 25 | 21,1,0.1960,0.6900,0,0,90.0* 26 | 1,1,0.0840,0.3030,0.0980* 27 | 1,1,0.0840,0.3030,-0.0980* 28 | 1,1,0.0840,-0.3030,-0.0980* 29 | 1,1,0.0840,-0.3030,0.0980* 30 | % 31 | G04:AMPARAMS|DCode=37|XSize=0.28mm|YSize=0.64mm|CornerRadius=0.042mm|HoleSize=0mm|Usage=FLASHONLY|Rotation=90.000|XOffset=0mm|YOffset=0mm|HoleType=Round|Shape=RoundedRectangle|* 32 | %AMROUNDEDRECTD37* 33 | 21,1,0.2800,0.5560,0,0,90.0* 34 | 21,1,0.1960,0.6400,0,0,90.0* 35 | 1,1,0.0840,0.2780,0.0980* 36 | 1,1,0.0840,0.2780,-0.0980* 37 | 1,1,0.0840,-0.2780,-0.0980* 38 | 1,1,0.0840,-0.2780,0.0980* 39 | % 40 | G04:AMPARAMS|DCode=38|XSize=0.28mm|YSize=0.69mm|CornerRadius=0.042mm|HoleSize=0mm|Usage=FLASHONLY|Rotation=0.000|XOffset=0mm|YOffset=0mm|HoleType=Round|Shape=RoundedRectangle|* 41 | %AMROUNDEDRECTD38* 42 | 21,1,0.2800,0.6060,0,0,0.0* 43 | 21,1,0.1960,0.6900,0,0,0.0* 44 | 1,1,0.0840,0.0980,-0.3030* 45 | 1,1,0.0840,-0.0980,-0.3030* 46 | 1,1,0.0840,-0.0980,0.3030* 47 | 1,1,0.0840,0.0980,0.3030* 48 | % 49 | G04:AMPARAMS|DCode=39|XSize=0.28mm|YSize=0.64mm|CornerRadius=0.042mm|HoleSize=0mm|Usage=FLASHONLY|Rotation=0.000|XOffset=0mm|YOffset=0mm|HoleType=Round|Shape=RoundedRectangle|* 50 | %AMROUNDEDRECTD39* 51 | 21,1,0.2800,0.5560,0,0,0.0* 52 | 21,1,0.1960,0.6400,0,0,0.0* 53 | 1,1,0.0840,0.0980,-0.2780* 54 | 1,1,0.0840,-0.0980,-0.2780* 55 | 1,1,0.0840,-0.0980,0.2780* 56 | 1,1,0.0840,0.0980,0.2780* 57 | % 58 | G04:AMPARAMS|DCode=40|XSize=1.5mm|YSize=0.28mm|CornerRadius=0mm|HoleSize=0mm|Usage=FLASHONLY|Rotation=45.000|XOffset=0mm|YOffset=0mm|HoleType=Round|Shape=Rectangle|* 59 | %AMROTATEDRECTD40* 60 | 4,1,4,-0.4313,-0.6293,-0.6293,-0.4313,0.4313,0.6293,0.6293,0.4313,-0.4313,-0.6293,0.0* 61 | % 62 | G04:AMPARAMS|DCode=41|XSize=1.5mm|YSize=0.4mm|CornerRadius=0mm|HoleSize=0mm|Usage=FLASHONLY|Rotation=45.000|XOffset=0mm|YOffset=0mm|HoleType=Round|Shape=Rectangle|* 63 | %AMROTATEDRECTD41* 64 | 4,1,4,-0.3889,-0.6717,-0.6717,-0.3889,0.3889,0.6717,0.6717,0.3889,-0.3889,-0.6717,0.0* 65 | % 66 | G04:AMPARAMS|DCode=42|XSize=1.5mm|YSize=0.28mm|CornerRadius=0mm|HoleSize=0mm|Usage=FLASHONLY|Rotation=315.000|XOffset=0mm|YOffset=0mm|HoleType=Round|Shape=Rectangle|* 67 | %AMROTATEDRECTD42* 68 | 4,1,4,-0.6293,0.4313,-0.4313,0.6293,0.6293,-0.4313,0.4313,-0.6293,-0.6293,0.4313,0.0* 69 | % 70 | G04:AMPARAMS|DCode=43|XSize=1.5mm|YSize=0.4mm|CornerRadius=0mm|HoleSize=0mm|Usage=FLASHONLY|Rotation=315.000|XOffset=0mm|YOffset=0mm|HoleType=Round|Shape=Rectangle|* 71 | %AMROTATEDRECTD43* 72 | 4,1,4,-0.6717,0.3889,-0.3889,0.6717,0.6717,-0.3889,0.3889,-0.6717,-0.6717,0.3889,0.0* 73 | % 74 | G04:AMPARAMS|DCode=89|XSize=1.6032mm|YSize=1.4032mm|CornerRadius=0mm|HoleSize=0mm|Usage=FLASHONLY|Rotation=315.000|XOffset=0mm|YOffset=0mm|HoleType=Round|Shape=Rectangle|* 75 | %AMROTATEDRECTD89* 76 | 4,1,4,-1.0629,0.0707,-0.0707,1.0629,1.0629,-0.0707,0.0707,-1.0629,-1.0629,0.0707,0.0* 77 | % 78 | G04:AMPARAMS|DCode=96|XSize=0.8382mm|YSize=0.7032mm|CornerRadius=0mm|HoleSize=0mm|Usage=FLASHONLY|Rotation=45.000|XOffset=0mm|YOffset=0mm|HoleType=Round|Shape=Rectangle|* 79 | %AMROTATEDRECTD96* 80 | 4,1,4,-0.0477,-0.5450,-0.5450,-0.0477,0.0477,0.5450,0.5450,0.0477,-0.0477,-0.5450,0.0* 81 | % 82 | G04:AMPARAMS|DCode=100|XSize=0.8382mm|YSize=0.7032mm|CornerRadius=0mm|HoleSize=0mm|Usage=FLASHONLY|Rotation=315.000|XOffset=0mm|YOffset=0mm|HoleType=Round|Shape=Rectangle|* 83 | %AMROTATEDRECTD100* 84 | 4,1,4,-0.5450,0.0477,-0.0477,0.5450,0.5450,-0.0477,0.0477,-0.5450,-0.5450,0.0477,0.0* 85 | % 86 | G04:AMPARAMS|DCode=107|XSize=0.8032mm|YSize=2.0032mm|CornerRadius=0.2516mm|HoleSize=0mm|Usage=FLASHONLY|Rotation=90.000|XOffset=0mm|YOffset=0mm|HoleType=Round|Shape=RoundedRectangle|* 87 | %AMROUNDEDRECTD107* 88 | 21,1,0.8032,1.5000,0,0,90.0* 89 | 21,1,0.3000,2.0032,0,0,90.0* 90 | 1,1,0.5032,0.7500,0.1500* 91 | 1,1,0.5032,0.7500,-0.1500* 92 | 1,1,0.5032,-0.7500,-0.1500* 93 | 1,1,0.5032,-0.7500,0.1500* 94 | % 95 | G04:AMPARAMS|DCode=112|XSize=0.4832mm|YSize=0.8932mm|CornerRadius=0.1436mm|HoleSize=0mm|Usage=FLASHONLY|Rotation=90.000|XOffset=0mm|YOffset=0mm|HoleType=Round|Shape=RoundedRectangle|* 96 | %AMROUNDEDRECTD112* 97 | 21,1,0.4832,0.6060,0,0,90.0* 98 | 21,1,0.1960,0.8932,0,0,90.0* 99 | 1,1,0.2872,0.3030,0.0980* 100 | 1,1,0.2872,0.3030,-0.0980* 101 | 1,1,0.2872,-0.3030,-0.0980* 102 | 1,1,0.2872,-0.3030,0.0980* 103 | % 104 | G04:AMPARAMS|DCode=113|XSize=0.4832mm|YSize=0.8432mm|CornerRadius=0.1436mm|HoleSize=0mm|Usage=FLASHONLY|Rotation=90.000|XOffset=0mm|YOffset=0mm|HoleType=Round|Shape=RoundedRectangle|* 105 | %AMROUNDEDRECTD113* 106 | 21,1,0.4832,0.5560,0,0,90.0* 107 | 21,1,0.1960,0.8432,0,0,90.0* 108 | 1,1,0.2872,0.2780,0.0980* 109 | 1,1,0.2872,0.2780,-0.0980* 110 | 1,1,0.2872,-0.2780,-0.0980* 111 | 1,1,0.2872,-0.2780,0.0980* 112 | % 113 | G04:AMPARAMS|DCode=114|XSize=0.4832mm|YSize=0.8932mm|CornerRadius=0.1436mm|HoleSize=0mm|Usage=FLASHONLY|Rotation=0.000|XOffset=0mm|YOffset=0mm|HoleType=Round|Shape=RoundedRectangle|* 114 | %AMROUNDEDRECTD114* 115 | 21,1,0.4832,0.6060,0,0,0.0* 116 | 21,1,0.1960,0.8932,0,0,0.0* 117 | 1,1,0.2872,0.0980,-0.3030* 118 | 1,1,0.2872,-0.0980,-0.3030* 119 | 1,1,0.2872,-0.0980,0.3030* 120 | 1,1,0.2872,0.0980,0.3030* 121 | % 122 | G04:AMPARAMS|DCode=115|XSize=0.4832mm|YSize=0.8432mm|CornerRadius=0.1436mm|HoleSize=0mm|Usage=FLASHONLY|Rotation=0.000|XOffset=0mm|YOffset=0mm|HoleType=Round|Shape=RoundedRectangle|* 123 | %AMROUNDEDRECTD115* 124 | 21,1,0.4832,0.5560,0,0,0.0* 125 | 21,1,0.1960,0.8432,0,0,0.0* 126 | 1,1,0.2872,0.0980,-0.2780* 127 | 1,1,0.2872,-0.0980,-0.2780* 128 | 1,1,0.2872,-0.0980,0.2780* 129 | 1,1,0.2872,0.0980,0.2780* 130 | % 131 | G04:AMPARAMS|DCode=116|XSize=1.7032mm|YSize=0.4832mm|CornerRadius=0mm|HoleSize=0mm|Usage=FLASHONLY|Rotation=45.000|XOffset=0mm|YOffset=0mm|HoleType=Round|Shape=Rectangle|* 132 | %AMROTATEDRECTD116* 133 | 4,1,4,-0.4313,-0.7730,-0.7730,-0.4313,0.4313,0.7730,0.7730,0.4313,-0.4313,-0.7730,0.0* 134 | % 135 | G04:AMPARAMS|DCode=117|XSize=1.7032mm|YSize=0.6032mm|CornerRadius=0mm|HoleSize=0mm|Usage=FLASHONLY|Rotation=45.000|XOffset=0mm|YOffset=0mm|HoleType=Round|Shape=Rectangle|* 136 | %AMROTATEDRECTD117* 137 | 4,1,4,-0.3889,-0.8154,-0.8154,-0.3889,0.3889,0.8154,0.8154,0.3889,-0.3889,-0.8154,0.0* 138 | % 139 | G04:AMPARAMS|DCode=118|XSize=1.7032mm|YSize=0.4832mm|CornerRadius=0mm|HoleSize=0mm|Usage=FLASHONLY|Rotation=315.000|XOffset=0mm|YOffset=0mm|HoleType=Round|Shape=Rectangle|* 140 | %AMROTATEDRECTD118* 141 | 4,1,4,-0.7730,0.4313,-0.4313,0.7730,0.7730,-0.4313,0.4313,-0.7730,-0.7730,0.4313,0.0* 142 | % 143 | G04:AMPARAMS|DCode=119|XSize=1.7032mm|YSize=0.6032mm|CornerRadius=0mm|HoleSize=0mm|Usage=FLASHONLY|Rotation=315.000|XOffset=0mm|YOffset=0mm|HoleType=Round|Shape=Rectangle|* 144 | %AMROTATEDRECTD119* 145 | 4,1,4,-0.8154,0.3889,-0.3889,0.8154,0.8154,-0.3889,0.3889,-0.8154,-0.8154,0.3889,0.0* 146 | % 147 | -------------------------------------------------------------------------------- /Project Outputs for DB10012_UniversalSlave/Gerber/DB10012_UniversalSlave.EXTREP: -------------------------------------------------------------------------------- 1 | ------------------------------------------------------------------------------------------ 2 | Gerber File Extension Report For: DB10012_UniversalSlave.GBR 26-Mar-17 19:19:41 3 | ------------------------------------------------------------------------------------------ 4 | 5 | 6 | ------------------------------------------------------------------------------------------ 7 | Layer Extension Layer Description 8 | ------------------------------------------------------------------------------------------ 9 | .GTL L1 10 | .G1 L2 11 | .G2 L3 12 | .G3 L4 13 | .G4 L5 14 | .GBL L6 15 | .GTO Top Overlay 16 | .GTP Top Paste 17 | .GTS Top Solder 18 | .GBS Bottom Solder 19 | .GBP Bottom Paste 20 | .GBO Bottom Overlay 21 | .GKO Keep-Out Layer 22 | .GM1 Mechanical 1 23 | ------------------------------------------------------------------------------------------ 24 | -------------------------------------------------------------------------------- /Project Outputs for DB10012_UniversalSlave/Gerber/DB10012_UniversalSlave.GBO: -------------------------------------------------------------------------------- 1 | G04 Layer_Color=32896* 2 | %FSLAX44Y44*% 3 | %MOMM*% 4 | G71* 5 | G01* 6 | G75* 7 | %ADD47C,0.2000*% 8 | %ADD48C,0.3000*% 9 | %ADD50C,0.2500*% 10 | %ADD55C,0.5000*% 11 | D47* 12 | X407500Y-130000D02* 13 | Y-124000D01* 14 | X468500Y-130000D02* 15 | Y-124000D01* 16 | X322000Y129000D02* 17 | X329000D01* 18 | X322000Y81000D02* 19 | X329000D01* 20 | X345000Y129000D02* 21 | X352000D01* 22 | X345000Y81000D02* 23 | X352000D01* 24 | X362000Y93000D02* 25 | Y117000D01* 26 | X312000Y93000D02* 27 | Y117000D01* 28 | X-18000Y29000D02* 29 | X9000D01* 30 | X-18000D02* 31 | Y191000D01* 32 | X9000D01* 33 | X236000Y29000D02* 34 | Y36000D01* 35 | X64000Y29000D02* 36 | X236000D01* 37 | X64000Y191000D02* 38 | X236000D01* 39 | Y184000D02* 40 | Y191000D01* 41 | X400000Y68600D02* 42 | X520000D01* 43 | X400000D02* 44 | Y190600D01* 45 | X520000D01* 46 | Y68600D02* 47 | Y190600D01* 48 | X-18000Y-193000D02* 49 | X9000D01* 50 | X-18000D02* 51 | Y-31000D01* 52 | X9000D01* 53 | X236000Y-193000D02* 54 | Y-186000D01* 55 | X64000Y-193000D02* 56 | X236000D01* 57 | X64000Y-31000D02* 58 | X236000D01* 59 | Y-38000D02* 60 | Y-31000D01* 61 | X355500Y-140000D02* 62 | Y-122000D01* 63 | X338000Y-118500D02* 64 | X384000D01* 65 | X338000Y-143500D02* 66 | X384000D01* 67 | X355800Y-131000D02* 68 | X365000Y-121800D01* 69 | Y-140000D02* 70 | Y-122000D01* 71 | X364900Y-140100D02* 72 | X365000Y-140000D01* 73 | X355800Y-131000D02* 74 | X364900Y-140100D01* 75 | X469500Y23500D02* 76 | X473000Y20000D01* 77 | X469500Y16500D02* 78 | X473000Y20000D01* 79 | Y16000D02* 80 | Y24000D01* 81 | X429000Y30000D02* 82 | X483000D01* 83 | X429000Y66000D02* 84 | X483000D01* 85 | X449200Y35500D02* 86 | Y60500D01* 87 | X461700Y48000D01* 88 | X449200Y35500D02* 89 | X461700Y48000D01* 90 | Y35500D02* 91 | Y60500D01* 92 | X469500Y-16500D02* 93 | X473000Y-20000D01* 94 | X469500Y-23500D02* 95 | X473000Y-20000D01* 96 | Y-24000D02* 97 | Y-16000D01* 98 | X469500Y3500D02* 99 | X473000Y-0D01* 100 | X469500Y-3500D02* 101 | X473000Y-0D01* 102 | Y-4000D02* 103 | Y4000D01* 104 | D48* 105 | X208000Y-6003D02* 106 | Y-21000D01* 107 | X198002Y-6003D02* 108 | Y-21000D01* 109 | X208000Y-13145D02* 110 | X198002D01* 111 | X193860Y-6003D02* 112 | X190289Y-21000D01* 113 | X186719Y-6003D02* 114 | X190289Y-21000D01* 115 | X186719Y-6003D02* 116 | X183148Y-21000D01* 117 | X179578Y-6003D02* 118 | X183148Y-21000D01* 119 | X175864Y-11002D02* 120 | X176578Y-11716D01* 121 | X175864Y-12430D01* 122 | X175150Y-11716D01* 123 | X175864Y-11002D01* 124 | Y-19572D02* 125 | X176578Y-20286D01* 126 | X175864Y-21000D01* 127 | X175150Y-20286D01* 128 | X175864Y-19572D01* 129 | X160082Y-6003D02* 130 | X154369Y-21000D01* 131 | X148656Y-6003D02* 132 | X154369Y-21000D01* 133 | X142443Y-6003D02* 134 | X144585Y-6717D01* 135 | X146013Y-8860D01* 136 | X146727Y-12430D01* 137 | Y-14573D01* 138 | X146013Y-18144D01* 139 | X144585Y-20286D01* 140 | X142443Y-21000D01* 141 | X141014D01* 142 | X138872Y-20286D01* 143 | X137444Y-18144D01* 144 | X136730Y-14573D01* 145 | Y-12430D01* 146 | X137444Y-8860D01* 147 | X138872Y-6717D01* 148 | X141014Y-6003D01* 149 | X142443D01* 150 | X132659Y-19572D02* 151 | X133373Y-20286D01* 152 | X132659Y-21000D01* 153 | X131945Y-20286D01* 154 | X132659Y-19572D01* 155 | X127946Y-9574D02* 156 | Y-8860D01* 157 | X127232Y-7431D01* 158 | X126517Y-6717D01* 159 | X125089Y-6003D01* 160 | X122233D01* 161 | X120804Y-6717D01* 162 | X120090Y-7431D01* 163 | X119376Y-8860D01* 164 | Y-10288D01* 165 | X120090Y-11716D01* 166 | X121518Y-13859D01* 167 | X128660Y-21000D01* 168 | X118662D01* 169 | X220000Y19997D02* 170 | Y5000D01* 171 | Y19997D02* 172 | X215001D01* 173 | X212859Y19283D01* 174 | X211430Y17854D01* 175 | X210716Y16426D01* 176 | X210002Y14284D01* 177 | Y10713D01* 178 | X210716Y8571D01* 179 | X211430Y7142D01* 180 | X212859Y5714D01* 181 | X215001Y5000D01* 182 | X220000D01* 183 | X205217Y19997D02* 184 | X204503Y19283D01* 185 | X203789Y19997D01* 186 | X204503Y20711D01* 187 | X205217Y19997D01* 188 | X204503Y14998D02* 189 | Y5000D01* 190 | X201147Y10713D02* 191 | X192577D01* 192 | Y12141D01* 193 | X193291Y13570D01* 194 | X194006Y14284D01* 195 | X195434Y14998D01* 196 | X197576D01* 197 | X199004Y14284D01* 198 | X200433Y12855D01* 199 | X201147Y10713D01* 200 | Y9285D01* 201 | X200433Y7142D01* 202 | X199004Y5714D01* 203 | X197576Y5000D01* 204 | X195434D01* 205 | X194006Y5714D01* 206 | X192577Y7142D01* 207 | X189364Y19997D02* 208 | Y5000D01* 209 | Y19997D02* 210 | X182936D01* 211 | X180794Y19283D01* 212 | X180080Y18569D01* 213 | X179366Y17140D01* 214 | Y15712D01* 215 | X180080Y14284D01* 216 | X180794Y13570D01* 217 | X182936Y12855D01* 218 | X189364D02* 219 | X182936D01* 220 | X180794Y12141D01* 221 | X180080Y11427D01* 222 | X179366Y9999D01* 223 | Y7857D01* 224 | X180080Y6428D01* 225 | X180794Y5714D01* 226 | X182936Y5000D01* 227 | X189364D01* 228 | X174581Y19997D02* 229 | X173867Y19283D01* 230 | X173153Y19997D01* 231 | X173867Y20711D01* 232 | X174581Y19997D01* 233 | X173867Y14998D02* 234 | Y5000D01* 235 | X170511Y10713D02* 236 | X161941D01* 237 | Y12141D01* 238 | X162655Y13570D01* 239 | X163369Y14284D01* 240 | X164797Y14998D01* 241 | X166940D01* 242 | X168368Y14284D01* 243 | X169797Y12855D01* 244 | X170511Y10713D01* 245 | Y9285D01* 246 | X169797Y7142D01* 247 | X168368Y5714D01* 248 | X166940Y5000D01* 249 | X164797D01* 250 | X163369Y5714D01* 251 | X161941Y7142D01* 252 | X148730Y17854D02* 253 | X150158Y19283D01* 254 | X152300Y19997D01* 255 | X155157D01* 256 | X157299Y19283D01* 257 | X158727Y17854D01* 258 | Y16426D01* 259 | X158013Y14998D01* 260 | X157299Y14284D01* 261 | X155871Y13570D01* 262 | X151586Y12141D01* 263 | X150158Y11427D01* 264 | X149444Y10713D01* 265 | X148730Y9285D01* 266 | Y7142D01* 267 | X150158Y5714D01* 268 | X152300Y5000D01* 269 | X155157D01* 270 | X157299Y5714D01* 271 | X158727Y7142D01* 272 | X145373Y19997D02* 273 | Y5000D01* 274 | X133661Y14998D02* 275 | Y5000D01* 276 | Y12855D02* 277 | X135090Y14284D01* 278 | X136518Y14998D01* 279 | X138660D01* 280 | X140089Y14284D01* 281 | X141517Y12855D01* 282 | X142231Y10713D01* 283 | Y9285D01* 284 | X141517Y7142D01* 285 | X140089Y5714D01* 286 | X138660Y5000D01* 287 | X136518D01* 288 | X135090Y5714D01* 289 | X133661Y7142D01* 290 | X129662Y14998D02* 291 | X125377Y5000D01* 292 | X121093Y14998D02* 293 | X125377Y5000D01* 294 | X118665Y10713D02* 295 | X110095D01* 296 | Y12141D01* 297 | X110809Y13570D01* 298 | X111523Y14284D01* 299 | X112951Y14998D01* 300 | X115094D01* 301 | X116522Y14284D01* 302 | X117950Y12855D01* 303 | X118665Y10713D01* 304 | Y9285D01* 305 | X117950Y7142D01* 306 | X116522Y5714D01* 307 | X115094Y5000D01* 308 | X112951D01* 309 | X111523Y5714D01* 310 | X110095Y7142D01* 311 | D50* 312 | X424002Y23854D02* 313 | X425430Y25283D01* 314 | X427573Y25997D01* 315 | X430429D01* 316 | X432572Y25283D01* 317 | X434000Y23854D01* 318 | Y22426D01* 319 | X433286Y20998D01* 320 | X432572Y20284D01* 321 | X431143Y19570D01* 322 | X426859Y18141D01* 323 | X425430Y17427D01* 324 | X424716Y16713D01* 325 | X424002Y15285D01* 326 | Y13142D01* 327 | X425430Y11714D01* 328 | X427573Y11000D01* 329 | X430429D01* 330 | X432572Y11714D01* 331 | X434000Y13142D01* 332 | X415647Y25997D02* 333 | Y11000D01* 334 | X420646Y25997D02* 335 | X410648D01* 336 | X397436Y11000D02* 337 | X403149Y25997D01* 338 | X408862Y11000D01* 339 | X406720Y15999D02* 340 | X399579D01* 341 | X388938Y25997D02* 342 | Y11000D01* 343 | X393937Y25997D02* 344 | X383939D01* 345 | X382154D02* 346 | Y15285D01* 347 | X381440Y13142D01* 348 | X380012Y11714D01* 349 | X377869Y11000D01* 350 | X376441D01* 351 | X374299Y11714D01* 352 | X372870Y13142D01* 353 | X372156Y15285D01* 354 | Y25997D01* 355 | X358016Y23854D02* 356 | X359445Y25283D01* 357 | X361587Y25997D01* 358 | X364444D01* 359 | X366586Y25283D01* 360 | X368014Y23854D01* 361 | Y22426D01* 362 | X367300Y20998D01* 363 | X366586Y20284D01* 364 | X365158Y19570D01* 365 | X360873Y18141D01* 366 | X359445Y17427D01* 367 | X358730Y16713D01* 368 | X358016Y15285D01* 369 | Y13142D01* 370 | X359445Y11714D01* 371 | X361587Y11000D01* 372 | X364444D01* 373 | X366586Y11714D01* 374 | X368014Y13142D01* 375 | X435000Y-21859D02* 376 | X428573D01* 377 | X426430Y-21144D01* 378 | X425716Y-20430D01* 379 | X425002Y-19002D01* 380 | Y-16860D01* 381 | X425716Y-15431D01* 382 | X426430Y-14717D01* 383 | X428573Y-14003D01* 384 | X435000D01* 385 | Y-29000D01* 386 | X417361Y-14003D02* 387 | X418789Y-14717D01* 388 | X420217Y-16146D01* 389 | X420932Y-17574D01* 390 | X421646Y-19716D01* 391 | Y-23287D01* 392 | X420932Y-25429D01* 393 | X420217Y-26858D01* 394 | X418789Y-28286D01* 395 | X417361Y-29000D01* 396 | X414504D01* 397 | X413076Y-28286D01* 398 | X411648Y-26858D01* 399 | X410934Y-25429D01* 400 | X410220Y-23287D01* 401 | Y-19716D01* 402 | X410934Y-17574D01* 403 | X411648Y-16146D01* 404 | X413076Y-14717D01* 405 | X414504Y-14003D01* 406 | X417361D01* 407 | X406720D02* 408 | X403150Y-29000D01* 409 | X399579Y-14003D02* 410 | X403150Y-29000D01* 411 | X399579Y-14003D02* 412 | X396008Y-29000D01* 413 | X392438Y-14003D02* 414 | X396008Y-29000D01* 415 | X380155Y-14003D02* 416 | X389438D01* 417 | Y-29000D01* 418 | X380155D01* 419 | X389438Y-21144D02* 420 | X383725D01* 421 | X377655Y-14003D02* 422 | Y-29000D01* 423 | Y-14003D02* 424 | X371228D01* 425 | X369086Y-14717D01* 426 | X368371Y-15431D01* 427 | X367657Y-16860D01* 428 | Y-18288D01* 429 | X368371Y-19716D01* 430 | X369086Y-20430D01* 431 | X371228Y-21144D01* 432 | X377655D01* 433 | X372656D02* 434 | X367657Y-29000D01* 435 | X434000Y5997D02* 436 | Y-9000D01* 437 | Y5997D02* 438 | X427573D01* 439 | X425430Y5283D01* 440 | X424716Y4568D01* 441 | X424002Y3140D01* 442 | Y1712D01* 443 | X424716Y284D01* 444 | X425430Y-430D01* 445 | X427573Y-1145D01* 446 | X434000D01* 447 | X429001D02* 448 | X424002Y-9000D01* 449 | X420646Y5997D02* 450 | Y-4715D01* 451 | X419932Y-6858D01* 452 | X418503Y-8286D01* 453 | X416361Y-9000D01* 454 | X414933D01* 455 | X412790Y-8286D01* 456 | X411362Y-6858D01* 457 | X410648Y-4715D01* 458 | Y5997D01* 459 | X406506D02* 460 | Y-9000D01* 461 | Y5997D02* 462 | X396508Y-9000D01* 463 | Y5997D02* 464 | Y-9000D01* 465 | X369000Y72997D02* 466 | Y58000D01* 467 | Y72997D02* 468 | X362573D01* 469 | X360430Y72283D01* 470 | X359716Y71568D01* 471 | X359002Y70140D01* 472 | Y68712D01* 473 | X359716Y67284D01* 474 | X360430Y66570D01* 475 | X362573Y65855D01* 476 | X369000D02* 477 | X362573D01* 478 | X360430Y65141D01* 479 | X359716Y64427D01* 480 | X359002Y62999D01* 481 | Y60856D01* 482 | X359716Y59428D01* 483 | X360430Y58714D01* 484 | X362573Y58000D01* 485 | X369000D01* 486 | X351361Y72997D02* 487 | X352789Y72283D01* 488 | X354217Y70854D01* 489 | X354932Y69426D01* 490 | X355646Y67284D01* 491 | Y63713D01* 492 | X354932Y61571D01* 493 | X354217Y60142D01* 494 | X352789Y58714D01* 495 | X351361Y58000D01* 496 | X348504D01* 497 | X347076Y58714D01* 498 | X345648Y60142D01* 499 | X344934Y61571D01* 500 | X344220Y63713D01* 501 | Y67284D01* 502 | X344934Y69426D01* 503 | X345648Y70854D01* 504 | X347076Y72283D01* 505 | X348504Y72997D01* 506 | X351361D01* 507 | X336436D02* 508 | X337864Y72283D01* 509 | X339292Y70854D01* 510 | X340006Y69426D01* 511 | X340720Y67284D01* 512 | Y63713D01* 513 | X340006Y61571D01* 514 | X339292Y60142D01* 515 | X337864Y58714D01* 516 | X336436Y58000D01* 517 | X333579D01* 518 | X332151Y58714D01* 519 | X330723Y60142D01* 520 | X330008Y61571D01* 521 | X329294Y63713D01* 522 | Y67284D01* 523 | X330008Y69426D01* 524 | X330723Y70854D01* 525 | X332151Y72283D01* 526 | X333579Y72997D01* 527 | X336436D01* 528 | X320796D02* 529 | Y58000D01* 530 | X325795Y72997D02* 531 | X315797D01* 532 | X309727D02* 533 | X311869Y72283D01* 534 | X313298Y70140D01* 535 | X314012Y66570D01* 536 | Y64427D01* 537 | X313298Y60856D01* 538 | X311869Y58714D01* 539 | X309727Y58000D01* 540 | X308299D01* 541 | X306156Y58714D01* 542 | X304728Y60856D01* 543 | X304014Y64427D01* 544 | Y66570D01* 545 | X304728Y70140D01* 546 | X306156Y72283D01* 547 | X308299Y72997D01* 548 | X309727D01* 549 | D55* 550 | X70000Y-15000D02* 551 | X100000D01* 552 | X70000D02* 553 | X80000Y-25000D01* 554 | X70000Y-15000D02* 555 | X80000Y-5000D01* 556 | X90000Y0D02* 557 | X100000Y10000D01* 558 | X90000Y20000D02* 559 | X100000Y10000D01* 560 | X70000D02* 561 | X100000D01* 562 | M02* 563 | -------------------------------------------------------------------------------- /Project Outputs for DB10012_UniversalSlave/Gerber/DB10012_UniversalSlave.GBP: -------------------------------------------------------------------------------- 1 | G04 Layer_Color=128* 2 | %FSLAX44Y44*% 3 | %MOMM*% 4 | G71* 5 | G01* 6 | G75* 7 | %ADD10R,1.4000X1.1000*% 8 | %ADD18R,0.6350X0.5000*% 9 | %ADD19R,0.5000X0.6350*% 10 | %ADD21R,1.1000X1.4000*% 11 | %ADD22R,1.1000X1.0000*% 12 | %ADD44R,2.1590X2.7430*% 13 | %ADD46R,1.1000X1.5000*% 14 | %ADD68R,1.0500X2.4000*% 15 | %ADD69R,6.3000X0.9500*% 16 | %ADD70R,1.0000X0.4500*% 17 | %ADD71R,1.4000X0.6000*% 18 | %ADD72R,4.6000X0.6100*% 19 | %ADD73R,4.6000X0.8100*% 20 | %ADD74R,4.9000X3.0000*% 21 | %ADD75R,1.2000X1.9000*% 22 | %ADD76R,1.6000X1.8000*% 23 | G36* 24 | X469500Y-149000D02* 25 | X438000D01* 26 | X443000Y-148500D01* 27 | X447500Y-147000D01* 28 | X451000Y-145000D01* 29 | X455500Y-140500D01* 30 | X457000Y-138000D01* 31 | X458000Y-136500D01* 32 | X469500D01* 33 | Y-149000D01* 34 | D02* 35 | G37* 36 | G36* 37 | X419000Y-138000D02* 38 | X421000Y-141000D01* 39 | X425000Y-145000D01* 40 | X427000Y-146000D01* 41 | X429000Y-147000D01* 42 | X431500Y-148000D01* 43 | X433500Y-148500D01* 44 | X438000Y-149000D01* 45 | X406500D01* 46 | Y-136500D01* 47 | X418000D01* 48 | X419000Y-138000D01* 49 | D02* 50 | G37* 51 | G36* 52 | X469500Y-117500D02* 53 | X458000D01* 54 | X456500Y-115000D01* 55 | X455000Y-113000D01* 56 | X451500Y-109500D01* 57 | X449000Y-108000D01* 58 | X446000Y-106500D01* 59 | X443000Y-105500D01* 60 | X438000Y-105000D01* 61 | X469500D01* 62 | Y-117500D01* 63 | D02* 64 | G37* 65 | G36* 66 | X432500Y-105500D02* 67 | X428500Y-107000D01* 68 | X425000Y-109000D01* 69 | X424500Y-109500D01* 70 | X422500Y-111000D01* 71 | X420000Y-114000D01* 72 | X419000Y-115500D01* 73 | X418000Y-117500D01* 74 | X406500D01* 75 | Y-105000D01* 76 | X438000D01* 77 | X432500Y-105500D01* 78 | D02* 79 | G37* 80 | D10* 81 | X386000Y104250D02* 82 | D03* 83 | Y121750D02* 84 | D03* 85 | X485000Y-150750D02* 86 | D03* 87 | Y-133250D02* 88 | D03* 89 | D18* 90 | X446000Y-25000D02* 91 | D03* 92 | Y-15000D02* 93 | D03* 94 | Y-5000D02* 95 | D03* 96 | Y5000D02* 97 | D03* 98 | Y15000D02* 99 | D03* 100 | Y25000D02* 101 | D03* 102 | D19* 103 | X290000Y-46000D02* 104 | D03* 105 | X280000D02* 106 | D03* 107 | X290000Y176000D02* 108 | D03* 109 | X280000D02* 110 | D03* 111 | Y145000D02* 112 | D03* 113 | X290000D02* 114 | D03* 115 | X280000Y125000D02* 116 | D03* 117 | X290000D02* 118 | D03* 119 | X280000Y115000D02* 120 | D03* 121 | X290000D02* 122 | D03* 123 | X280000Y95000D02* 124 | D03* 125 | X290000D02* 126 | D03* 127 | X280000Y135000D02* 128 | D03* 129 | X290000D02* 130 | D03* 131 | X280000Y-117000D02* 132 | D03* 133 | X290000D02* 134 | D03* 135 | X295000Y-5000D02* 136 | D03* 137 | X285000D02* 138 | D03* 139 | X280000Y-87000D02* 140 | D03* 141 | X290000D02* 142 | D03* 143 | X280000Y-77000D02* 144 | D03* 145 | X290000D02* 146 | D03* 147 | X280000Y-97000D02* 148 | D03* 149 | X290000D02* 150 | D03* 151 | X280000Y-107000D02* 152 | D03* 153 | X290000D02* 154 | D03* 155 | X280000Y-127000D02* 156 | D03* 157 | X290000D02* 158 | D03* 159 | X280000Y105000D02* 160 | D03* 161 | X290000D02* 162 | D03* 163 | D21* 164 | X353500Y-104000D02* 165 | D03* 166 | X371000D02* 167 | D03* 168 | X452250Y-173000D02* 169 | D03* 170 | X469750D02* 171 | D03* 172 | X434750D02* 173 | D03* 174 | X417250D02* 175 | D03* 176 | D22* 177 | X274500Y7000D02* 178 | D03* 179 | X291500D02* 180 | D03* 181 | X291500Y-17000D02* 182 | D03* 183 | X274500D02* 184 | D03* 185 | X302500Y-169000D02* 186 | D03* 187 | X285500D02* 188 | D03* 189 | X321500Y-114000D02* 190 | D03* 191 | X304500D02* 192 | D03* 193 | D44* 194 | X433900Y48000D02* 195 | D03* 196 | X478100D02* 197 | D03* 198 | D46* 199 | X481500Y20000D02* 200 | D03* 201 | X460500D02* 202 | D03* 203 | X481500Y-20000D02* 204 | D03* 205 | X460500D02* 206 | D03* 207 | X481500Y-0D02* 208 | D03* 209 | X460500D02* 210 | D03* 211 | D68* 212 | X303750Y-141000D02* 213 | D03* 214 | X322250D02* 215 | D03* 216 | D69* 217 | X438000Y-100250D02* 218 | D03* 219 | Y-153750D02* 220 | D03* 221 | D70* 222 | X337000Y80500D02* 223 | D03* 224 | Y129500D02* 225 | D03* 226 | D71* 227 | X313000Y123500D02* 228 | D03* 229 | Y86500D02* 230 | D03* 231 | X361000D02* 232 | D03* 233 | Y123500D02* 234 | D03* 235 | D72* 236 | X243000Y74300D02* 237 | D03* 238 | Y84500D02* 239 | D03* 240 | Y94700D02* 241 | D03* 242 | Y104900D02* 243 | D03* 244 | Y115100D02* 245 | D03* 246 | Y125300D02* 247 | D03* 248 | Y135500D02* 249 | D03* 250 | Y145700D02* 251 | D03* 252 | Y-147700D02* 253 | D03* 254 | Y-137500D02* 255 | D03* 256 | Y-127300D02* 257 | D03* 258 | Y-117100D02* 259 | D03* 260 | Y-106900D02* 261 | D03* 262 | Y-96700D02* 263 | D03* 264 | Y-86500D02* 265 | D03* 266 | Y-76300D02* 267 | D03* 268 | D73* 269 | Y43900D02* 270 | D03* 271 | Y62300D02* 272 | D03* 273 | Y157700D02* 274 | D03* 275 | Y176100D02* 276 | D03* 277 | Y-178100D02* 278 | D03* 279 | Y-159700D02* 280 | D03* 281 | Y-64300D02* 282 | D03* 283 | Y-45900D02* 284 | D03* 285 | D74* 286 | X36100Y20800D02* 287 | D03* 288 | Y199200D02* 289 | D03* 290 | Y-201200D02* 291 | D03* 292 | Y-22800D02* 293 | D03* 294 | D75* 295 | X339000Y-131000D02* 296 | D03* 297 | X383000D02* 298 | D03* 299 | D76* 300 | X433000Y-61000D02* 301 | D03* 302 | X463000D02* 303 | D03* 304 | M02* 305 | -------------------------------------------------------------------------------- /Project Outputs for DB10012_UniversalSlave/Gerber/DB10012_UniversalSlave.GBS: -------------------------------------------------------------------------------- 1 | G04 Layer_Color=16711935* 2 | %FSLAX44Y44*% 3 | %MOMM*% 4 | G71* 5 | G01* 6 | G75* 7 | %ADD48C,0.3000*% 8 | %ADD86R,1.6032X1.3032*% 9 | %ADD94R,0.8382X0.7032*% 10 | %ADD95R,0.7032X0.8382*% 11 | %ADD97R,1.3032X1.6032*% 12 | %ADD98R,1.3032X1.2032*% 13 | %ADD120R,2.3622X2.9462*% 14 | %ADD122R,1.3032X1.7032*% 15 | %ADD123C,2.1032*% 16 | %ADD124C,3.0032*% 17 | %ADD125C,3.2032*% 18 | %ADD126C,2.0032*% 19 | %ADD128C,7.2032*% 20 | %ADD129R,1.2532X2.6032*% 21 | %ADD130R,6.5032X1.1532*% 22 | %ADD131R,1.2032X0.6532*% 23 | %ADD132R,1.6032X0.8032*% 24 | %ADD133R,4.8032X0.8132*% 25 | %ADD134R,4.8032X1.0132*% 26 | %ADD135R,5.1032X3.2032*% 27 | %ADD136R,1.4032X2.1032*% 28 | %ADD137R,1.8032X2.0032*% 29 | %ADD138C,2.2032*% 30 | G36* 31 | X469633Y-135491D02* 32 | X469763Y-135517D01* 33 | X469890Y-135559D01* 34 | X470009Y-135618D01* 35 | X470120Y-135692D01* 36 | X470220Y-135780D01* 37 | X470308Y-135880D01* 38 | X470382Y-135991D01* 39 | X470441Y-136110D01* 40 | X470484Y-136236D01* 41 | X470509Y-136367D01* 42 | X470518Y-136500D01* 43 | Y-149000D01* 44 | X470509Y-149133D01* 45 | X470484Y-149263D01* 46 | X470441Y-149390D01* 47 | X470382Y-149509D01* 48 | X470308Y-149620D01* 49 | X470220Y-149720D01* 50 | X470120Y-149808D01* 51 | X470009Y-149882D01* 52 | X469890Y-149941D01* 53 | X469763Y-149984D01* 54 | X469633Y-150009D01* 55 | X469500Y-150018D01* 56 | X406500D01* 57 | X406367Y-150009D01* 58 | X406236Y-149984D01* 59 | X406110Y-149941D01* 60 | X405991Y-149882D01* 61 | X405880Y-149808D01* 62 | X405780Y-149720D01* 63 | X405692Y-149620D01* 64 | X405618Y-149509D01* 65 | X405559Y-149390D01* 66 | X405517Y-149263D01* 67 | X405490Y-149133D01* 68 | X405482Y-149000D01* 69 | Y-136500D01* 70 | X405490Y-136367D01* 71 | X405517Y-136236D01* 72 | X405559Y-136110D01* 73 | X405618Y-135991D01* 74 | X405692Y-135880D01* 75 | X405780Y-135780D01* 76 | X405880Y-135692D01* 77 | X405991Y-135618D01* 78 | X406110Y-135559D01* 79 | X406236Y-135517D01* 80 | X406367Y-135491D01* 81 | X406500Y-135482D01* 82 | X418000D01* 83 | X418034Y-135484D01* 84 | X418068Y-135484D01* 85 | X418100Y-135488D01* 86 | X418133Y-135491D01* 87 | X418166Y-135497D01* 88 | X418200Y-135502D01* 89 | X418231Y-135510D01* 90 | X418264Y-135517D01* 91 | X418296Y-135527D01* 92 | X418328Y-135536D01* 93 | X418358Y-135549D01* 94 | X418390Y-135559D01* 95 | X418420Y-135575D01* 96 | X418451Y-135587D01* 97 | X418479Y-135604D01* 98 | X418509Y-135618D01* 99 | X418537Y-135637D01* 100 | X418567Y-135654D01* 101 | X418593Y-135674D01* 102 | X418620Y-135692D01* 103 | X418645Y-135715D01* 104 | X418672Y-135735D01* 105 | X418695Y-135758D01* 106 | X418720Y-135780D01* 107 | X418742Y-135805D01* 108 | X418766Y-135829D01* 109 | X418786Y-135856D01* 110 | X418808Y-135880D01* 111 | X418826Y-135908D01* 112 | X418847Y-135935D01* 113 | X419847Y-137435D01* 114 | X419847Y-137435D01* 115 | X421791Y-140351D01* 116 | X425603Y-144163D01* 117 | X427455Y-145089D01* 118 | X429417Y-146070D01* 119 | X431814Y-147029D01* 120 | X433680Y-147496D01* 121 | X438006Y-147976D01* 122 | X442786Y-147498D01* 123 | X447082Y-146066D01* 124 | X450376Y-144184D01* 125 | X454691Y-139869D01* 126 | X456127Y-137476D01* 127 | X456141Y-137456D01* 128 | X456153Y-137435D01* 129 | X457153Y-135935D01* 130 | X457173Y-135908D01* 131 | X457192Y-135880D01* 132 | X457214Y-135856D01* 133 | X457234Y-135829D01* 134 | X457258Y-135805D01* 135 | X457280Y-135780D01* 136 | X457305Y-135758D01* 137 | X457328Y-135735D01* 138 | X457355Y-135715D01* 139 | X457380Y-135692D01* 140 | X457407Y-135674D01* 141 | X457434Y-135654D01* 142 | X457463Y-135637D01* 143 | X457491Y-135618D01* 144 | X457520Y-135604D01* 145 | X457549Y-135587D01* 146 | X457580Y-135575D01* 147 | X457610Y-135559D01* 148 | X457642Y-135549D01* 149 | X457672Y-135536D01* 150 | X457704Y-135527D01* 151 | X457737Y-135517D01* 152 | X457769Y-135510D01* 153 | X457800Y-135502D01* 154 | X457834Y-135497D01* 155 | X457867Y-135491D01* 156 | X457900Y-135488D01* 157 | X457932Y-135484D01* 158 | X457966Y-135484D01* 159 | X458000Y-135482D01* 160 | X469500D01* 161 | X469633Y-135491D01* 162 | D02* 163 | G37* 164 | G36* 165 | Y-103990D02* 166 | X469763Y-104017D01* 167 | X469890Y-104059D01* 168 | X470009Y-104118D01* 169 | X470120Y-104192D01* 170 | X470220Y-104280D01* 171 | X470308Y-104380D01* 172 | X470382Y-104491D01* 173 | X470441Y-104610D01* 174 | X470484Y-104736D01* 175 | X470509Y-104867D01* 176 | X470518Y-105000D01* 177 | Y-117500D01* 178 | X470509Y-117633D01* 179 | X470484Y-117764D01* 180 | X470441Y-117890D01* 181 | X470382Y-118009D01* 182 | X470308Y-118120D01* 183 | X470220Y-118220D01* 184 | X470120Y-118308D01* 185 | X470009Y-118382D01* 186 | X469890Y-118441D01* 187 | X469763Y-118483D01* 188 | X469633Y-118510D01* 189 | X469500Y-118518D01* 190 | X458000D01* 191 | X457942Y-118514D01* 192 | X457884Y-118511D01* 193 | X457876Y-118510D01* 194 | X457867Y-118510D01* 195 | X457810Y-118498D01* 196 | X457753Y-118488D01* 197 | X457745Y-118485D01* 198 | X457737Y-118483D01* 199 | X457682Y-118465D01* 200 | X457626Y-118447D01* 201 | X457618Y-118443D01* 202 | X457610Y-118441D01* 203 | X457559Y-118415D01* 204 | X457506Y-118390D01* 205 | X457499Y-118385D01* 206 | X457491Y-118382D01* 207 | X457443Y-118350D01* 208 | X457394Y-118318D01* 209 | X457387Y-118313D01* 210 | X457380Y-118308D01* 211 | X457337Y-118270D01* 212 | X457292Y-118232D01* 213 | X457286Y-118226D01* 214 | X457280Y-118220D01* 215 | X457242Y-118176D01* 216 | X457203Y-118133D01* 217 | X457198Y-118126D01* 218 | X457192Y-118120D01* 219 | X457160Y-118071D01* 220 | X457127Y-118024D01* 221 | X455654Y-115569D01* 222 | X454229Y-113669D01* 223 | X450869Y-110309D01* 224 | X448509Y-108893D01* 225 | X445609Y-107443D01* 226 | X442786Y-106502D01* 227 | X437995Y-106023D01* 228 | X432729Y-106502D01* 229 | X428934Y-107925D01* 230 | X425624Y-109816D01* 231 | X425220Y-110220D01* 232 | X425216Y-110224D01* 233 | X425212Y-110228D01* 234 | X425166Y-110268D01* 235 | X425120Y-110308D01* 236 | X425115Y-110311D01* 237 | X425111Y-110315D01* 238 | X423206Y-111743D01* 239 | X420817Y-114610D01* 240 | X419882Y-116012D01* 241 | X418911Y-117955D01* 242 | X418895Y-117982D01* 243 | X418882Y-118009D01* 244 | X418862Y-118039D01* 245 | X418843Y-118070D01* 246 | X418825Y-118095D01* 247 | X418808Y-118120D01* 248 | X418784Y-118147D01* 249 | X418762Y-118175D01* 250 | X418740Y-118197D01* 251 | X418720Y-118220D01* 252 | X418693Y-118244D01* 253 | X418667Y-118269D01* 254 | X418643Y-118288D01* 255 | X418620Y-118308D01* 256 | X418590Y-118328D01* 257 | X418561Y-118350D01* 258 | X418535Y-118365D01* 259 | X418509Y-118382D01* 260 | X418477Y-118398D01* 261 | X418445Y-118416D01* 262 | X418417Y-118427D01* 263 | X418390Y-118441D01* 264 | X418355Y-118452D01* 265 | X418322Y-118466D01* 266 | X418292Y-118474D01* 267 | X418264Y-118483D01* 268 | X418228Y-118490D01* 269 | X418193Y-118500D01* 270 | X418163Y-118504D01* 271 | X418133Y-118510D01* 272 | X418097Y-118512D01* 273 | X418061Y-118516D01* 274 | X418031Y-118516D01* 275 | X418000Y-118518D01* 276 | X406500D01* 277 | X406367Y-118510D01* 278 | X406236Y-118483D01* 279 | X406110Y-118441D01* 280 | X405991Y-118382D01* 281 | X405880Y-118308D01* 282 | X405780Y-118220D01* 283 | X405692Y-118120D01* 284 | X405618Y-118009D01* 285 | X405559Y-117890D01* 286 | X405517Y-117764D01* 287 | X405490Y-117633D01* 288 | X405482Y-117500D01* 289 | Y-105000D01* 290 | X405490Y-104867D01* 291 | X405517Y-104736D01* 292 | X405559Y-104610D01* 293 | X405618Y-104491D01* 294 | X405692Y-104380D01* 295 | X405780Y-104280D01* 296 | X405880Y-104192D01* 297 | X405991Y-104118D01* 298 | X406110Y-104059D01* 299 | X406236Y-104017D01* 300 | X406367Y-103990D01* 301 | X406500Y-103982D01* 302 | X469500D01* 303 | X469633Y-103990D01* 304 | D02* 305 | G37* 306 | D48* 307 | X385573Y155000D02* 308 | Y142146D01* 309 | Y92854D02* 310 | Y80000D01* 311 | X392000Y86427D02* 312 | X379146D01* 313 | D86* 314 | X386000Y104250D02* 315 | D03* 316 | Y121750D02* 317 | D03* 318 | X485000Y-150750D02* 319 | D03* 320 | Y-133250D02* 321 | D03* 322 | D94* 323 | X446000Y-25000D02* 324 | D03* 325 | Y-15000D02* 326 | D03* 327 | Y-5000D02* 328 | D03* 329 | Y5000D02* 330 | D03* 331 | Y15000D02* 332 | D03* 333 | Y25000D02* 334 | D03* 335 | D95* 336 | X290000Y-46000D02* 337 | D03* 338 | X280000D02* 339 | D03* 340 | X290000Y176000D02* 341 | D03* 342 | X280000D02* 343 | D03* 344 | Y145000D02* 345 | D03* 346 | X290000D02* 347 | D03* 348 | X280000Y125000D02* 349 | D03* 350 | X290000D02* 351 | D03* 352 | X280000Y115000D02* 353 | D03* 354 | X290000D02* 355 | D03* 356 | X280000Y95000D02* 357 | D03* 358 | X290000D02* 359 | D03* 360 | X280000Y135000D02* 361 | D03* 362 | X290000D02* 363 | D03* 364 | X280000Y-117000D02* 365 | D03* 366 | X290000D02* 367 | D03* 368 | X295000Y-5000D02* 369 | D03* 370 | X285000D02* 371 | D03* 372 | X280000Y-87000D02* 373 | D03* 374 | X290000D02* 375 | D03* 376 | X280000Y-77000D02* 377 | D03* 378 | X290000D02* 379 | D03* 380 | X280000Y-97000D02* 381 | D03* 382 | X290000D02* 383 | D03* 384 | X280000Y-107000D02* 385 | D03* 386 | X290000D02* 387 | D03* 388 | X280000Y-127000D02* 389 | D03* 390 | X290000D02* 391 | D03* 392 | X280000Y105000D02* 393 | D03* 394 | X290000D02* 395 | D03* 396 | D97* 397 | X353500Y-104000D02* 398 | D03* 399 | X371000D02* 400 | D03* 401 | X452250Y-173000D02* 402 | D03* 403 | X469750D02* 404 | D03* 405 | X434750D02* 406 | D03* 407 | X417250D02* 408 | D03* 409 | D98* 410 | X274500Y7000D02* 411 | D03* 412 | X291500D02* 413 | D03* 414 | X291500Y-17000D02* 415 | D03* 416 | X274500D02* 417 | D03* 418 | X302500Y-169000D02* 419 | D03* 420 | X285500D02* 421 | D03* 422 | X321500Y-114000D02* 423 | D03* 424 | X304500D02* 425 | D03* 426 | D120* 427 | X433900Y48000D02* 428 | D03* 429 | X478100D02* 430 | D03* 431 | D122* 432 | X481500Y20000D02* 433 | D03* 434 | X460500D02* 435 | D03* 436 | X481500Y-20000D02* 437 | D03* 438 | X460500D02* 439 | D03* 440 | X481500Y-0D02* 441 | D03* 442 | X460500D02* 443 | D03* 444 | D123* 445 | X14500Y-74250D02* 446 | D03* 447 | Y-145750D02* 448 | D03* 449 | Y145750D02* 450 | D03* 451 | Y74250D02* 452 | D03* 453 | D124* 454 | X36100Y46500D02* 455 | D03* 456 | Y173500D02* 457 | D03* 458 | Y-175500D02* 459 | D03* 460 | Y-48500D02* 461 | D03* 462 | D125* 463 | X420000Y155000D02* 464 | D03* 465 | Y104200D02* 466 | D03* 467 | D126* 468 | X152400Y-203200D02* 469 | D03* 470 | X76200Y203200D02* 471 | D03* 472 | X254000Y-203200D02* 473 | D03* 474 | X304800Y203200D02* 475 | D03* 476 | X101600D02* 477 | D03* 478 | X228600D02* 479 | D03* 480 | X127000D02* 481 | D03* 482 | X152400D02* 483 | D03* 484 | X177800D02* 485 | D03* 486 | X203200D02* 487 | D03* 488 | X254000D02* 489 | D03* 490 | X279400D02* 491 | D03* 492 | X406400D02* 493 | D03* 494 | X431800D02* 495 | D03* 496 | X457200D02* 497 | D03* 498 | Y-203200D02* 499 | D03* 500 | X431800D02* 501 | D03* 502 | X406400D02* 503 | D03* 504 | X228600D02* 505 | D03* 506 | X203200D02* 507 | D03* 508 | X177800D02* 509 | D03* 510 | X127000D02* 511 | D03* 512 | X101600D02* 513 | D03* 514 | X76200D02* 515 | D03* 516 | X304800D02* 517 | D03* 518 | X279400D02* 519 | D03* 520 | D128* 521 | X355000Y-185000D02* 522 | D03* 523 | Y185000D02* 524 | D03* 525 | D129* 526 | X303750Y-141000D02* 527 | D03* 528 | X322250D02* 529 | D03* 530 | D130* 531 | X438000Y-100250D02* 532 | D03* 533 | Y-153750D02* 534 | D03* 535 | D131* 536 | X337000Y80500D02* 537 | D03* 538 | Y129500D02* 539 | D03* 540 | D132* 541 | X313000Y123500D02* 542 | D03* 543 | Y86500D02* 544 | D03* 545 | X361000D02* 546 | D03* 547 | Y123500D02* 548 | D03* 549 | D133* 550 | X243000Y74300D02* 551 | D03* 552 | Y84500D02* 553 | D03* 554 | Y94700D02* 555 | D03* 556 | Y104900D02* 557 | D03* 558 | Y115100D02* 559 | D03* 560 | Y125300D02* 561 | D03* 562 | Y135500D02* 563 | D03* 564 | Y145700D02* 565 | D03* 566 | Y-147700D02* 567 | D03* 568 | Y-137500D02* 569 | D03* 570 | Y-127300D02* 571 | D03* 572 | Y-117100D02* 573 | D03* 574 | Y-106900D02* 575 | D03* 576 | Y-96700D02* 577 | D03* 578 | Y-86500D02* 579 | D03* 580 | Y-76300D02* 581 | D03* 582 | D134* 583 | Y43900D02* 584 | D03* 585 | Y62300D02* 586 | D03* 587 | Y157700D02* 588 | D03* 589 | Y176100D02* 590 | D03* 591 | Y-178100D02* 592 | D03* 593 | Y-159700D02* 594 | D03* 595 | Y-64300D02* 596 | D03* 597 | Y-45900D02* 598 | D03* 599 | D135* 600 | X36100Y20800D02* 601 | D03* 602 | Y199200D02* 603 | D03* 604 | Y-201200D02* 605 | D03* 606 | Y-22800D02* 607 | D03* 608 | D136* 609 | X339000Y-131000D02* 610 | D03* 611 | X383000D02* 612 | D03* 613 | D137* 614 | X433000Y-61000D02* 615 | D03* 616 | X463000D02* 617 | D03* 618 | D138* 619 | X50000Y0D02* 620 | D03* 621 | M02* 622 | -------------------------------------------------------------------------------- /Project Outputs for DB10012_UniversalSlave/Gerber/DB10012_UniversalSlave.GKO: -------------------------------------------------------------------------------- 1 | G04 Layer_Color=16711935* 2 | %FSLAX44Y44*% 3 | %MOMM*% 4 | G71* 5 | G01* 6 | G75* 7 | %ADD47C,0.2000*% 8 | D47* 9 | X0Y-195000D02* 10 | G03* 11 | X25000Y-220000I25000J0D01* 12 | G01* 13 | X475000D02* 14 | G03* 15 | X500000Y-195000I0J25000D01* 16 | G01* 17 | Y195000D02* 18 | G03* 19 | X475000Y220000I-25000J0D01* 20 | G01* 21 | X25000D02* 22 | G03* 23 | X0Y195000I0J-25000D01* 24 | G01* 25 | Y-195000D02* 26 | Y195000D01* 27 | X25000Y-220000D02* 28 | X475000D01* 29 | X500000Y-195000D02* 30 | Y195000D01* 31 | X25000Y220000D02* 32 | X475000D01* 33 | M02* 34 | -------------------------------------------------------------------------------- /Project Outputs for DB10012_UniversalSlave/Gerber/DB10012_UniversalSlave.GM1: -------------------------------------------------------------------------------- 1 | G04 Layer_Color=16711935* 2 | %FSLAX44Y44*% 3 | %MOMM*% 4 | G71* 5 | G01* 6 | G75* 7 | M02* 8 | -------------------------------------------------------------------------------- /Project Outputs for DB10012_UniversalSlave/Gerber/DB10012_UniversalSlave.GTO: -------------------------------------------------------------------------------- 1 | G04 Layer_Color=65535* 2 | %FSLAX44Y44*% 3 | %MOMM*% 4 | G71* 5 | G01* 6 | G75* 7 | %ADD47C,0.2000*% 8 | %ADD48C,0.3000*% 9 | %ADD50C,0.2500*% 10 | %ADD56C,0.1500*% 11 | %ADD78C,0.2540*% 12 | %ADD79C,0.7500*% 13 | %ADD80C,0.1000*% 14 | D47* 15 | X341000Y-117000D02* 16 | G03* 17 | X347000Y-117000I3000J0D01* 18 | G01* 19 | X91000Y115500D02* 20 | X109000D01* 21 | X87500Y87000D02* 22 | Y133000D01* 23 | X112500Y87000D02* 24 | Y133000D01* 25 | X90800Y106000D02* 26 | X100000Y115200D01* 27 | X91000Y106000D02* 28 | X109000D01* 29 | X109100Y106100D01* 30 | X100000Y115200D02* 31 | X109100Y106100D01* 32 | X61000Y104500D02* 33 | X79000D01* 34 | X82500Y87000D02* 35 | Y133000D01* 36 | X57500Y87000D02* 37 | Y133000D01* 38 | X70000Y104800D02* 39 | X79200Y114000D01* 40 | X61000D02* 41 | X79000D01* 42 | X60900Y113900D02* 43 | X61000Y114000D01* 44 | X60900Y113900D02* 45 | X70000Y104800D01* 46 | X347000Y-117000D02* 47 | X350000D01* 48 | X338000D02* 49 | X341000D01* 50 | X350000Y-145000D02* 51 | Y-117000D01* 52 | X338000Y-145000D02* 53 | X350000D01* 54 | X338000D02* 55 | Y-117000D01* 56 | X420000Y-96000D02* 57 | Y-66000D01* 58 | Y-96000D02* 59 | X450000D01* 60 | Y-66000D01* 61 | X420000D02* 62 | X450000D01* 63 | X445000Y-68500D02* 64 | X450000D01* 65 | X445000D02* 66 | Y-66000D01* 67 | X447500D01* 68 | Y-68500D02* 69 | Y-66000D01* 70 | X445000Y-67250D02* 71 | X450000D01* 72 | X28000Y-75000D02* 73 | X44000D01* 74 | Y-77000D02* 75 | Y-75000D01* 76 | Y-145000D02* 77 | Y-143000D01* 78 | X28000Y-145000D02* 79 | X44000D01* 80 | X0D02* 81 | Y-75000D01* 82 | X28000Y145000D02* 83 | X44000D01* 84 | Y143000D02* 85 | Y145000D01* 86 | Y75000D02* 87 | Y77000D01* 88 | X28000Y75000D02* 89 | X44000D01* 90 | X0D02* 91 | Y145000D01* 92 | X328000Y80000D02* 93 | X346000D01* 94 | X328000Y130000D02* 95 | X346000D01* 96 | X409000Y-133000D02* 97 | X463000D01* 98 | X409000Y-169000D02* 99 | X463000D01* 100 | X429200Y-163500D02* 101 | Y-138500D01* 102 | Y-163500D02* 103 | X441700Y-151000D01* 104 | X429200Y-138500D02* 105 | X441700Y-151000D01* 106 | Y-163500D02* 107 | Y-138500D01* 108 | X473000Y16000D02* 109 | Y24000D01* 110 | X469500Y23500D02* 111 | X473000Y20000D01* 112 | X469500Y16500D02* 113 | X473000Y20000D01* 114 | X473000Y-4000D02* 115 | Y4000D01* 116 | X469500Y3500D02* 117 | X473000Y0D01* 118 | X469500Y-3500D02* 119 | X473000Y0D01* 120 | X473000Y-24000D02* 121 | Y-16000D01* 122 | X469500Y-16500D02* 123 | X473000Y-20000D01* 124 | X469500Y-23500D02* 125 | X473000Y-20000D01* 126 | D48* 127 | X458000Y154250D02* 128 | Y162250D01* 129 | X461000D01* 130 | X458000Y55750D02* 131 | X461000D01* 132 | X458000D02* 133 | Y63750D01* 134 | X499000Y55750D02* 135 | Y162250D01* 136 | D50* 137 | X314250Y132550D02* 138 | G03* 139 | X314250Y132550I-1250J0D01* 140 | G01* 141 | D56* 142 | X318932Y-77452D02* 143 | X322932D01* 144 | X318932Y-102451D02* 145 | X322932D01* 146 | X82747Y-65425D02* 147 | X85575Y-68253D01* 148 | X100425Y-47747D02* 149 | X103253Y-50575D01* 150 | X315000Y45000D02* 151 | X318000D01* 152 | X315000Y42000D02* 153 | Y45000D01* 154 | Y-45000D02* 155 | X318000D01* 156 | X315000D02* 157 | Y-42000D01* 158 | X405000Y-45000D02* 159 | Y-42000D01* 160 | X402000Y-45000D02* 161 | X405000D01* 162 | X402000Y45000D02* 163 | X405000D01* 164 | Y42000D02* 165 | Y45000D01* 166 | X315000Y-42000D02* 167 | X316000D01* 168 | Y-45000D02* 169 | Y-42000D01* 170 | Y-45000D02* 171 | X317000D01* 172 | Y-42000D01* 173 | X318000D01* 174 | Y-45000D02* 175 | Y-42000D01* 176 | X316000D02* 177 | X317000D01* 178 | X314000D02* 179 | X317000D01* 180 | X314000Y-46000D02* 181 | Y-42000D01* 182 | Y-46000D02* 183 | X318000D01* 184 | Y-45000D01* 185 | D78* 186 | X335000Y-114000D02* 187 | G03* 188 | X335000Y-114000I-1000J0D01* 189 | G01* 190 | X94500Y-160500D02* 191 | Y-155500D01* 192 | Y-160500D02* 193 | X99500D01* 194 | X134500D02* 195 | X139500D01* 196 | Y-155500D01* 197 | Y-120500D02* 198 | Y-115500D01* 199 | X134500D02* 200 | X139500D01* 201 | X99500Y-120500D02* 202 | Y-115500D01* 203 | X94500Y-120500D02* 204 | X99500Y-115500D01* 205 | X94500Y-120500D02* 206 | X99500D01* 207 | D79* 208 | X104718Y0D02* 209 | G03* 210 | X104718Y0I-2500J0D01* 211 | G01* 212 | D80* 213 | X116360Y-3536D02* 214 | Y3536D01* 215 | Y-3536D02* 216 | X180000Y-67175D01* 217 | X247175Y0D01* 218 | X180000Y67175D02* 219 | X247175Y0D01* 220 | X116360Y3536D02* 221 | X180000Y67175D01* 222 | M02* 223 | -------------------------------------------------------------------------------- /Project Outputs for DB10012_UniversalSlave/Gerber/DB10012_UniversalSlave.GTP: -------------------------------------------------------------------------------- 1 | G04 Layer_Color=8421504* 2 | %FSLAX44Y44*% 3 | %MOMM*% 4 | G71* 5 | G01* 6 | G75* 7 | %ADD10R,1.4000X1.1000*% 8 | %ADD11R,1.9000X1.2000*% 9 | %ADD12R,1.4000X1.2000*% 10 | G04:AMPARAMS|DCode=13|XSize=1.4mm|YSize=1.2mm|CornerRadius=0mm|HoleSize=0mm|Usage=FLASHONLY|Rotation=315.000|XOffset=0mm|YOffset=0mm|HoleType=Round|Shape=Rectangle|* 11 | %AMROTATEDRECTD13* 12 | 4,1,4,-0.9192,0.0707,-0.0707,0.9192,0.9192,-0.0707,0.0707,-0.9192,-0.9192,0.0707,0.0* 13 | % 14 | %ADD13ROTATEDRECTD13*% 15 | 16 | %ADD14R,0.9000X0.6900*% 17 | %ADD15R,0.9900X0.6900*% 18 | %ADD16R,0.3000X1.0000*% 19 | %ADD18R,0.6350X0.5000*% 20 | %ADD19R,0.5000X0.6350*% 21 | G04:AMPARAMS|DCode=20|XSize=0.635mm|YSize=0.5mm|CornerRadius=0mm|HoleSize=0mm|Usage=FLASHONLY|Rotation=45.000|XOffset=0mm|YOffset=0mm|HoleType=Round|Shape=Rectangle|* 22 | %AMROTATEDRECTD20* 23 | 4,1,4,-0.0477,-0.4013,-0.4013,-0.0477,0.0477,0.4013,0.4013,0.0477,-0.0477,-0.4013,0.0* 24 | % 25 | %ADD20ROTATEDRECTD20*% 26 | 27 | %ADD21R,1.1000X1.4000*% 28 | %ADD22R,1.1000X1.0000*% 29 | %ADD23R,1.0000X1.1000*% 30 | G04:AMPARAMS|DCode=24|XSize=0.635mm|YSize=0.5mm|CornerRadius=0mm|HoleSize=0mm|Usage=FLASHONLY|Rotation=315.000|XOffset=0mm|YOffset=0mm|HoleType=Round|Shape=Rectangle|* 31 | %AMROTATEDRECTD24* 32 | 4,1,4,-0.4013,0.0477,-0.0477,0.4013,0.4013,-0.0477,0.0477,-0.4013,-0.4013,0.0477,0.0* 33 | % 34 | %ADD24ROTATEDRECTD24*% 35 | 36 | %ADD25R,1.9000X1.7500*% 37 | %ADD26R,1.4000X0.4000*% 38 | %ADD27R,1.4500X1.1500*% 39 | %ADD28R,1.6000X0.8000*% 40 | %ADD29R,3.0000X2.1000*% 41 | %ADD30R,1.8000X0.6000*% 42 | G04:AMPARAMS|DCode=31|XSize=0.6mm|YSize=1.8mm|CornerRadius=0.15mm|HoleSize=0mm|Usage=FLASHONLY|Rotation=90.000|XOffset=0mm|YOffset=0mm|HoleType=Round|Shape=RoundedRectangle|* 43 | %AMROUNDEDRECTD31* 44 | 21,1,0.6000,1.5000,0,0,90.0* 45 | 21,1,0.3000,1.8000,0,0,90.0* 46 | 1,1,0.3000,0.7500,0.1500* 47 | 1,1,0.3000,0.7500,-0.1500* 48 | 1,1,0.3000,-0.7500,-0.1500* 49 | 1,1,0.3000,-0.7500,0.1500* 50 | % 51 | %ADD31ROUNDEDRECTD31*% 52 | %ADD33R,0.7500X0.3000*% 53 | %ADD34R,0.3000X0.7500*% 54 | G04:AMPARAMS|DCode=36|XSize=0.28mm|YSize=0.69mm|CornerRadius=0.042mm|HoleSize=0mm|Usage=FLASHONLY|Rotation=90.000|XOffset=0mm|YOffset=0mm|HoleType=Round|Shape=RoundedRectangle|* 55 | %AMROUNDEDRECTD36* 56 | 21,1,0.2800,0.6060,0,0,90.0* 57 | 21,1,0.1960,0.6900,0,0,90.0* 58 | 1,1,0.0840,0.3030,0.0980* 59 | 1,1,0.0840,0.3030,-0.0980* 60 | 1,1,0.0840,-0.3030,-0.0980* 61 | 1,1,0.0840,-0.3030,0.0980* 62 | % 63 | %ADD36ROUNDEDRECTD36*% 64 | G04:AMPARAMS|DCode=37|XSize=0.28mm|YSize=0.64mm|CornerRadius=0.042mm|HoleSize=0mm|Usage=FLASHONLY|Rotation=90.000|XOffset=0mm|YOffset=0mm|HoleType=Round|Shape=RoundedRectangle|* 65 | %AMROUNDEDRECTD37* 66 | 21,1,0.2800,0.5560,0,0,90.0* 67 | 21,1,0.1960,0.6400,0,0,90.0* 68 | 1,1,0.0840,0.2780,0.0980* 69 | 1,1,0.0840,0.2780,-0.0980* 70 | 1,1,0.0840,-0.2780,-0.0980* 71 | 1,1,0.0840,-0.2780,0.0980* 72 | % 73 | %ADD37ROUNDEDRECTD37*% 74 | G04:AMPARAMS|DCode=38|XSize=0.28mm|YSize=0.69mm|CornerRadius=0.042mm|HoleSize=0mm|Usage=FLASHONLY|Rotation=0.000|XOffset=0mm|YOffset=0mm|HoleType=Round|Shape=RoundedRectangle|* 75 | %AMROUNDEDRECTD38* 76 | 21,1,0.2800,0.6060,0,0,0.0* 77 | 21,1,0.1960,0.6900,0,0,0.0* 78 | 1,1,0.0840,0.0980,-0.3030* 79 | 1,1,0.0840,-0.0980,-0.3030* 80 | 1,1,0.0840,-0.0980,0.3030* 81 | 1,1,0.0840,0.0980,0.3030* 82 | % 83 | %ADD38ROUNDEDRECTD38*% 84 | G04:AMPARAMS|DCode=39|XSize=0.28mm|YSize=0.64mm|CornerRadius=0.042mm|HoleSize=0mm|Usage=FLASHONLY|Rotation=0.000|XOffset=0mm|YOffset=0mm|HoleType=Round|Shape=RoundedRectangle|* 85 | %AMROUNDEDRECTD39* 86 | 21,1,0.2800,0.5560,0,0,0.0* 87 | 21,1,0.1960,0.6400,0,0,0.0* 88 | 1,1,0.0840,0.0980,-0.2780* 89 | 1,1,0.0840,-0.0980,-0.2780* 90 | 1,1,0.0840,-0.0980,0.2780* 91 | 1,1,0.0840,0.0980,0.2780* 92 | % 93 | %ADD39ROUNDEDRECTD39*% 94 | G04:AMPARAMS|DCode=40|XSize=1.5mm|YSize=0.28mm|CornerRadius=0mm|HoleSize=0mm|Usage=FLASHONLY|Rotation=45.000|XOffset=0mm|YOffset=0mm|HoleType=Round|Shape=Rectangle|* 95 | %AMROTATEDRECTD40* 96 | 4,1,4,-0.4313,-0.6293,-0.6293,-0.4313,0.4313,0.6293,0.6293,0.4313,-0.4313,-0.6293,0.0* 97 | % 98 | %ADD40ROTATEDRECTD40*% 99 | 100 | G04:AMPARAMS|DCode=41|XSize=1.5mm|YSize=0.4mm|CornerRadius=0mm|HoleSize=0mm|Usage=FLASHONLY|Rotation=45.000|XOffset=0mm|YOffset=0mm|HoleType=Round|Shape=Rectangle|* 101 | %AMROTATEDRECTD41* 102 | 4,1,4,-0.3889,-0.6717,-0.6717,-0.3889,0.3889,0.6717,0.6717,0.3889,-0.3889,-0.6717,0.0* 103 | % 104 | %ADD41ROTATEDRECTD41*% 105 | 106 | G04:AMPARAMS|DCode=42|XSize=1.5mm|YSize=0.28mm|CornerRadius=0mm|HoleSize=0mm|Usage=FLASHONLY|Rotation=315.000|XOffset=0mm|YOffset=0mm|HoleType=Round|Shape=Rectangle|* 107 | %AMROTATEDRECTD42* 108 | 4,1,4,-0.6293,0.4313,-0.4313,0.6293,0.6293,-0.4313,0.4313,-0.6293,-0.6293,0.4313,0.0* 109 | % 110 | %ADD42ROTATEDRECTD42*% 111 | 112 | G04:AMPARAMS|DCode=43|XSize=1.5mm|YSize=0.4mm|CornerRadius=0mm|HoleSize=0mm|Usage=FLASHONLY|Rotation=315.000|XOffset=0mm|YOffset=0mm|HoleType=Round|Shape=Rectangle|* 113 | %AMROTATEDRECTD43* 114 | 4,1,4,-0.6717,0.3889,-0.3889,0.6717,0.6717,-0.3889,0.3889,-0.6717,-0.6717,0.3889,0.0* 115 | % 116 | %ADD43ROTATEDRECTD43*% 117 | 118 | %ADD44R,2.1590X2.7430*% 119 | %ADD45R,1.8000X1.6000*% 120 | %ADD46R,1.1000X1.5000*% 121 | %ADD81R,0.7000X0.6000*% 122 | %ADD82R,0.7000X0.6000*% 123 | %ADD83R,2.0000X2.0000*% 124 | %ADD84R,1.5000X1.5000*% 125 | %ADD85R,1.5000X1.5000*% 126 | D10* 127 | X70000Y149250D02* 128 | D03* 129 | Y166750D02* 130 | D03* 131 | X384000Y-138750D02* 132 | D03* 133 | Y-121250D02* 134 | D03* 135 | X60000Y-85000D02* 136 | D03* 137 | Y-67500D02* 138 | D03* 139 | X463000Y-56250D02* 140 | D03* 141 | Y-73750D02* 142 | D03* 143 | Y-113750D02* 144 | D03* 145 | Y-96250D02* 146 | D03* 147 | D11* 148 | X100000Y132000D02* 149 | D03* 150 | X100000Y88000D02* 151 | D03* 152 | X70000Y88000D02* 153 | D03* 154 | Y132000D02* 155 | D03* 156 | D12* 157 | X309932Y-81452D02* 158 | D03* 159 | Y-98451D02* 160 | D03* 161 | X331931Y-81452D02* 162 | D03* 163 | Y-98451D02* 164 | D03* 165 | D13* 166 | X94768Y-71789D02* 167 | D03* 168 | X106789Y-59768D02* 169 | D03* 170 | X79211Y-56232D02* 171 | D03* 172 | X91232Y-44211D02* 173 | D03* 174 | D14* 175 | X356950Y-121500D02* 176 | D03* 177 | Y-140500D02* 178 | D03* 179 | D15* 180 | X331050Y-121500D02* 181 | D03* 182 | Y-131000D02* 183 | D03* 184 | Y-140500D02* 185 | D03* 186 | D16* 187 | X435000Y-105000D02* 188 | D03* 189 | X430000D02* 190 | D03* 191 | X425000D02* 192 | D03* 193 | X440000D02* 194 | D03* 195 | X445000D02* 196 | D03* 197 | Y-57000D02* 198 | D03* 199 | X440000D02* 200 | D03* 201 | X425000D02* 202 | D03* 203 | X430000D02* 204 | D03* 205 | X435000D02* 206 | D03* 207 | D18* 208 | X317000Y-133000D02* 209 | D03* 210 | Y-143000D02* 211 | D03* 212 | X306000Y-143000D02* 213 | D03* 214 | Y-153000D02* 215 | D03* 216 | X349000Y61000D02* 217 | D03* 218 | Y71000D02* 219 | D03* 220 | X339000D02* 221 | D03* 222 | Y61000D02* 223 | D03* 224 | X117000Y-175000D02* 225 | D03* 226 | Y-185000D02* 227 | D03* 228 | X309000Y71000D02* 229 | D03* 230 | Y61000D02* 231 | D03* 232 | X329000Y71000D02* 233 | D03* 234 | Y61000D02* 235 | D03* 236 | X411000Y-94000D02* 237 | D03* 238 | Y-104000D02* 239 | D03* 240 | X400000D02* 241 | D03* 242 | Y-94000D02* 243 | D03* 244 | X369000Y-130000D02* 245 | D03* 246 | Y-140000D02* 247 | D03* 248 | X367000Y-69000D02* 249 | D03* 250 | Y-59000D02* 251 | D03* 252 | X337000D02* 253 | D03* 254 | Y-69000D02* 255 | D03* 256 | X390000Y-60000D02* 257 | D03* 258 | Y-70000D02* 259 | D03* 260 | X346431Y-84952D02* 261 | D03* 262 | Y-94952D02* 263 | D03* 264 | X369000Y61000D02* 265 | D03* 266 | Y71000D02* 267 | D03* 268 | X381000Y61000D02* 269 | D03* 270 | Y71000D02* 271 | D03* 272 | X319000Y61000D02* 273 | D03* 274 | Y71000D02* 275 | D03* 276 | X347000Y-59000D02* 277 | D03* 278 | Y-69000D02* 279 | D03* 280 | X357000Y-59000D02* 281 | D03* 282 | Y-69000D02* 283 | D03* 284 | X106000Y-175000D02* 285 | D03* 286 | Y-185000D02* 287 | D03* 288 | X428000Y-41000D02* 289 | D03* 290 | Y-31000D02* 291 | D03* 292 | X446000Y25000D02* 293 | D03* 294 | Y15000D02* 295 | D03* 296 | Y5000D02* 297 | D03* 298 | Y-5000D02* 299 | D03* 300 | Y-15000D02* 301 | D03* 302 | Y-25000D02* 303 | D03* 304 | D19* 305 | X391000Y112000D02* 306 | D03* 307 | X381000D02* 308 | D03* 309 | X376000Y-91000D02* 310 | D03* 311 | X366000D02* 312 | D03* 313 | X381000Y99031D02* 314 | D03* 315 | X391000D02* 316 | D03* 317 | X381000Y86031D02* 318 | D03* 319 | X391000D02* 320 | D03* 321 | X280000Y-77000D02* 322 | D03* 323 | X290000D02* 324 | D03* 325 | X280000Y-107000D02* 326 | D03* 327 | X290000D02* 328 | D03* 329 | X280000Y-127000D02* 330 | D03* 331 | X290000D02* 332 | D03* 333 | X280000Y-97000D02* 334 | D03* 335 | X290000D02* 336 | D03* 337 | X137000Y-103000D02* 338 | D03* 339 | X127000D02* 340 | D03* 341 | X285000Y-5000D02* 342 | D03* 343 | X295000D02* 344 | D03* 345 | X137000Y-93000D02* 346 | D03* 347 | X127000D02* 348 | D03* 349 | X280000Y145000D02* 350 | D03* 351 | X290000D02* 352 | D03* 353 | X280000Y115000D02* 354 | D03* 355 | X290000D02* 356 | D03* 357 | X280000Y95000D02* 358 | D03* 359 | X290000D02* 360 | D03* 361 | X280000Y125000D02* 362 | D03* 363 | X290000D02* 364 | D03* 365 | X265000Y-15000D02* 366 | D03* 367 | X275000D02* 368 | D03* 369 | X420000Y-19647D02* 370 | D03* 371 | X430000D02* 372 | D03* 373 | X420000Y38000D02* 374 | D03* 375 | X430000D02* 376 | D03* 377 | X320431Y-67952D02* 378 | D03* 379 | X310431D02* 380 | D03* 381 | X275000Y-30000D02* 382 | D03* 383 | X285000D02* 384 | D03* 385 | X265000Y5000D02* 386 | D03* 387 | X275000D02* 388 | D03* 389 | X275000Y20000D02* 390 | D03* 391 | X285000D02* 392 | D03* 393 | X297000Y-57000D02* 394 | D03* 395 | X307000D02* 396 | D03* 397 | X297000Y44000D02* 398 | D03* 399 | X287000D02* 400 | D03* 401 | X290000Y85000D02* 402 | D03* 403 | X280000D02* 404 | D03* 405 | X290000Y155000D02* 406 | D03* 407 | X280000D02* 408 | D03* 409 | X295000Y-15000D02* 410 | D03* 411 | X285000D02* 412 | D03* 413 | X295000Y5000D02* 414 | D03* 415 | X285000D02* 416 | D03* 417 | X420000Y-3000D02* 418 | D03* 419 | X430000D02* 420 | D03* 421 | X376000Y-80000D02* 422 | D03* 423 | X366000D02* 424 | D03* 425 | X381000Y134000D02* 426 | D03* 427 | X391000D02* 428 | D03* 429 | X290000Y-67000D02* 430 | D03* 431 | X280000D02* 432 | D03* 433 | X290000Y-137000D02* 434 | D03* 435 | X280000D02* 436 | D03* 437 | X381000Y124000D02* 438 | D03* 439 | X391000D02* 440 | D03* 441 | D20* 442 | X107465Y50535D02* 443 | D03* 444 | X114536Y43464D02* 445 | D03* 446 | X204464Y82535D02* 447 | D03* 448 | X211535Y75465D02* 449 | D03* 450 | X109536Y-41536D02* 451 | D03* 452 | X102465Y-34464D02* 453 | D03* 454 | X116465Y-48464D02* 455 | D03* 456 | X123535Y-55535D02* 457 | D03* 458 | X133535Y-81536D02* 459 | D03* 460 | X126465Y-74465D02* 461 | D03* 462 | X141536Y-73535D02* 463 | D03* 464 | X134465Y-66465D02* 465 | D03* 466 | D21* 467 | X408250Y-124000D02* 468 | D03* 469 | X425750D02* 470 | D03* 471 | X414250Y182000D02* 472 | D03* 473 | X431750D02* 474 | D03* 475 | X452250Y-180000D02* 476 | D03* 477 | X469750D02* 478 | D03* 479 | X434750D02* 480 | D03* 481 | X417250D02* 482 | D03* 483 | D22* 484 | X458500Y-40000D02* 485 | D03* 486 | X441500D02* 487 | D03* 488 | X277500Y32000D02* 489 | D03* 490 | X294500D02* 491 | D03* 492 | X277500Y-42000D02* 493 | D03* 494 | X294500D02* 495 | D03* 496 | X285500Y-169000D02* 497 | D03* 498 | X302500D02* 499 | D03* 500 | X367500Y-106000D02* 501 | D03* 502 | X384500D02* 503 | D03* 504 | X76500Y-167000D02* 505 | D03* 506 | X59500D02* 507 | D03* 508 | X76500Y-149000D02* 509 | D03* 510 | X59500D02* 511 | D03* 512 | D23* 513 | X261000Y-77500D02* 514 | D03* 515 | Y-60500D02* 516 | D03* 517 | Y96500D02* 518 | D03* 519 | Y79500D02* 520 | D03* 521 | X160000Y-106500D02* 522 | D03* 523 | Y-89500D02* 524 | D03* 525 | X155000Y-135500D02* 526 | D03* 527 | Y-152500D02* 528 | D03* 529 | D24* 530 | X109879Y-77808D02* 531 | D03* 532 | X102808Y-84879D02* 533 | D03* 534 | X117879Y-85808D02* 535 | D03* 536 | X110808Y-92879D02* 537 | D03* 538 | X96465Y25464D02* 539 | D03* 540 | X103535Y32536D02* 541 | D03* 542 | X261535Y-26465D02* 543 | D03* 544 | X254464Y-33535D02* 545 | D03* 546 | X216535Y-72464D02* 547 | D03* 548 | X209464Y-79535D02* 549 | D03* 550 | D25* 551 | X14500Y-121250D02* 552 | D03* 553 | Y-98750D02* 554 | D03* 555 | Y98750D02* 556 | D03* 557 | Y121250D02* 558 | D03* 559 | D26* 560 | X41000Y-110000D02* 561 | D03* 562 | Y-103500D02* 563 | D03* 564 | Y-97000D02* 565 | D03* 566 | Y-116500D02* 567 | D03* 568 | Y-123000D02* 569 | D03* 570 | Y110000D02* 571 | D03* 572 | Y116500D02* 573 | D03* 574 | Y123000D02* 575 | D03* 576 | Y103500D02* 577 | D03* 578 | Y97000D02* 579 | D03* 580 | D27* 581 | X36800Y-86500D02* 582 | D03* 583 | Y-133500D02* 584 | D03* 585 | Y133500D02* 586 | D03* 587 | Y86500D02* 588 | D03* 589 | D28* 590 | X451000Y146500D02* 591 | D03* 592 | Y96500D02* 593 | D03* 594 | Y84000D02* 595 | D03* 596 | Y71500D02* 597 | D03* 598 | Y134000D02* 599 | D03* 600 | Y121500D02* 601 | D03* 602 | Y109000D02* 603 | D03* 604 | D29* 605 | X480000Y172000D02* 606 | D03* 607 | Y46000D02* 608 | D03* 609 | D30* 610 | X363000Y124050D02* 611 | D03* 612 | Y111350D02* 613 | D03* 614 | Y98650D02* 615 | D03* 616 | Y85950D02* 617 | D03* 618 | X311000D02* 619 | D03* 620 | Y98650D02* 621 | D03* 622 | Y111350D02* 623 | D03* 624 | D31* 625 | Y124050D02* 626 | D03* 627 | D33* 628 | X97000Y-135500D02* 629 | D03* 630 | Y-130500D02* 631 | D03* 632 | Y-125500D02* 633 | D03* 634 | Y-150500D02* 635 | D03* 636 | Y-145500D02* 637 | D03* 638 | Y-140500D02* 639 | D03* 640 | X137000D02* 641 | D03* 642 | Y-145500D02* 643 | D03* 644 | Y-150500D02* 645 | D03* 646 | Y-125500D02* 647 | D03* 648 | Y-130500D02* 649 | D03* 650 | Y-135500D02* 651 | D03* 652 | D34* 653 | X119500Y-118000D02* 654 | D03* 655 | X124500D02* 656 | D03* 657 | X129500D02* 658 | D03* 659 | X104500D02* 660 | D03* 661 | X109500D02* 662 | D03* 663 | X114500D02* 664 | D03* 665 | X119500Y-158000D02* 666 | D03* 667 | X124500D02* 668 | D03* 669 | X129500D02* 670 | D03* 671 | X104500D02* 672 | D03* 673 | X109500D02* 674 | D03* 675 | X114500D02* 676 | D03* 677 | D36* 678 | X316900Y2500D02* 679 | D03* 680 | Y7500D02* 681 | D03* 682 | Y12500D02* 683 | D03* 684 | Y17500D02* 685 | D03* 686 | Y22500D02* 687 | D03* 688 | Y27500D02* 689 | D03* 690 | Y32500D02* 691 | D03* 692 | Y-32500D02* 693 | D03* 694 | Y-27500D02* 695 | D03* 696 | Y-22500D02* 697 | D03* 698 | Y-17500D02* 699 | D03* 700 | Y-12500D02* 701 | D03* 702 | Y-7500D02* 703 | D03* 704 | Y-2500D02* 705 | D03* 706 | X403100Y2500D02* 707 | D03* 708 | Y7500D02* 709 | D03* 710 | Y12500D02* 711 | D03* 712 | Y17500D02* 713 | D03* 714 | Y22500D02* 715 | D03* 716 | Y27500D02* 717 | D03* 718 | Y32500D02* 719 | D03* 720 | Y-32500D02* 721 | D03* 722 | Y-27500D02* 723 | D03* 724 | Y-22500D02* 725 | D03* 726 | Y-17500D02* 727 | D03* 728 | Y-12500D02* 729 | D03* 730 | Y-7500D02* 731 | D03* 732 | Y-2500D02* 733 | D03* 734 | D37* 735 | X316700Y37500D02* 736 | D03* 737 | Y-37500D02* 738 | D03* 739 | X403300Y37500D02* 740 | D03* 741 | Y-37500D02* 742 | D03* 743 | D38* 744 | X362500Y-43100D02* 745 | D03* 746 | X367500D02* 747 | D03* 748 | X372500D02* 749 | D03* 750 | X377500D02* 751 | D03* 752 | X382500D02* 753 | D03* 754 | X387500D02* 755 | D03* 756 | X392500D02* 757 | D03* 758 | X327500D02* 759 | D03* 760 | X332500D02* 761 | D03* 762 | X337500D02* 763 | D03* 764 | X342500D02* 765 | D03* 766 | X347500D02* 767 | D03* 768 | X352500D02* 769 | D03* 770 | X357500D02* 771 | D03* 772 | Y43100D02* 773 | D03* 774 | X352500D02* 775 | D03* 776 | X347500D02* 777 | D03* 778 | X342500D02* 779 | D03* 780 | X337500D02* 781 | D03* 782 | X332500D02* 783 | D03* 784 | X327500D02* 785 | D03* 786 | X392500D02* 787 | D03* 788 | X387500D02* 789 | D03* 790 | X382500D02* 791 | D03* 792 | X377500D02* 793 | D03* 794 | X372500D02* 795 | D03* 796 | X367500D02* 797 | D03* 798 | X362500D02* 799 | D03* 800 | D39* 801 | X397500Y-43300D02* 802 | D03* 803 | X322500D02* 804 | D03* 805 | Y43300D02* 806 | D03* 807 | X397500D02* 808 | D03* 809 | D40* 810 | X219951Y43487D02* 811 | D03* 812 | X216416Y47023D02* 813 | D03* 814 | X212880Y50558D02* 815 | D03* 816 | X223487Y39952D02* 817 | D03* 818 | X227023Y36416D02* 819 | D03* 820 | X230558Y32880D02* 821 | D03* 822 | X209345Y54094D02* 823 | D03* 824 | X205809Y57629D02* 825 | D03* 826 | X202274Y61165D02* 827 | D03* 828 | X198738Y64700D02* 829 | D03* 830 | X234094Y29345D02* 831 | D03* 832 | X237629Y25809D02* 833 | D03* 834 | X241165Y22274D02* 835 | D03* 836 | X244700Y18738D02* 837 | D03* 838 | X140049Y-43487D02* 839 | D03* 840 | X143584Y-47023D02* 841 | D03* 842 | X147120Y-50558D02* 843 | D03* 844 | X136513Y-39952D02* 845 | D03* 846 | X132977Y-36416D02* 847 | D03* 848 | X129442Y-32880D02* 849 | D03* 850 | X150655Y-54094D02* 851 | D03* 852 | X154191Y-57629D02* 853 | D03* 854 | X157726Y-61165D02* 855 | D03* 856 | X161262Y-64700D02* 857 | D03* 858 | X125906Y-29345D02* 859 | D03* 860 | X122371Y-25809D02* 861 | D03* 862 | X118835Y-22274D02* 863 | D03* 864 | X115300Y-18738D02* 865 | D03* 866 | D41* 867 | X194778Y68660D02* 868 | D03* 869 | X248660Y14778D02* 870 | D03* 871 | X165222Y-68660D02* 872 | D03* 873 | X111340Y-14778D02* 874 | D03* 875 | D42* 876 | X223487Y-39952D02* 877 | D03* 878 | X227023Y-36416D02* 879 | D03* 880 | X230558Y-32880D02* 881 | D03* 882 | X219951Y-43487D02* 883 | D03* 884 | X216416Y-47023D02* 885 | D03* 886 | X212880Y-50558D02* 887 | D03* 888 | X234094Y-29345D02* 889 | D03* 890 | X237629Y-25809D02* 891 | D03* 892 | X241165Y-22274D02* 893 | D03* 894 | X244700Y-18738D02* 895 | D03* 896 | X209345Y-54094D02* 897 | D03* 898 | X205809Y-57629D02* 899 | D03* 900 | X202274Y-61165D02* 901 | D03* 902 | X198738Y-64700D02* 903 | D03* 904 | X161262Y64700D02* 905 | D03* 906 | X157726Y61165D02* 907 | D03* 908 | X154191Y57629D02* 909 | D03* 910 | X150655Y54094D02* 911 | D03* 912 | X115300Y18738D02* 913 | D03* 914 | X118835Y22274D02* 915 | D03* 916 | X122371Y25809D02* 917 | D03* 918 | X125906Y29345D02* 919 | D03* 920 | X147120Y50558D02* 921 | D03* 922 | X143584Y47023D02* 923 | D03* 924 | X140049Y43487D02* 925 | D03* 926 | X129442Y32880D02* 927 | D03* 928 | X132977Y36416D02* 929 | D03* 930 | X136513Y39952D02* 931 | D03* 932 | D43* 933 | X248660Y-14778D02* 934 | D03* 935 | X194778Y-68660D02* 936 | D03* 937 | X165222Y68660D02* 938 | D03* 939 | X111340Y14778D02* 940 | D03* 941 | D44* 942 | X413900Y-151000D02* 943 | D03* 944 | X458100D02* 945 | D03* 946 | D45* 947 | X485000Y-74000D02* 948 | D03* 949 | Y-44000D02* 950 | D03* 951 | D46* 952 | X460500Y20000D02* 953 | D03* 954 | X481500D02* 955 | D03* 956 | X460500Y0D02* 957 | D03* 958 | X481500D02* 959 | D03* 960 | X460500Y-20000D02* 961 | D03* 962 | X481500D02* 963 | D03* 964 | D81* 965 | X440500Y-76000D02* 966 | D03* 967 | X429500Y-76000D02* 968 | D03* 969 | X429500Y-86000D02* 970 | D03* 971 | D82* 972 | X440500Y-86000D02* 973 | D03* 974 | D83* 975 | X117000Y-138000D02* 976 | D03* 977 | D84* 978 | X360000Y0D02* 979 | D03* 980 | X337500Y-0D02* 981 | D03* 982 | X360000Y22500D02* 983 | D03* 984 | X382500Y-22500D02* 985 | D03* 986 | X382500Y22500D02* 987 | D03* 988 | D85* 989 | X360000Y-22500D02* 990 | D03* 991 | X337500Y-22500D02* 992 | D03* 993 | X337500Y22500D02* 994 | D03* 995 | X382500Y-0D02* 996 | D03* 997 | M02* 998 | -------------------------------------------------------------------------------- /Project Outputs for DB10012_UniversalSlave/Gerber/DB10012_UniversalSlave.GTS: -------------------------------------------------------------------------------- 1 | G04 Layer_Color=8388736* 2 | %FSLAX44Y44*% 3 | %MOMM*% 4 | G71* 5 | G01* 6 | G75* 7 | %ADD86R,1.6032X1.3032*% 8 | %ADD87R,2.1032X1.4032*% 9 | %ADD88R,1.6032X1.4032*% 10 | G04:AMPARAMS|DCode=89|XSize=1.6032mm|YSize=1.4032mm|CornerRadius=0mm|HoleSize=0mm|Usage=FLASHONLY|Rotation=315.000|XOffset=0mm|YOffset=0mm|HoleType=Round|Shape=Rectangle|* 11 | %AMROTATEDRECTD89* 12 | 4,1,4,-1.0629,0.0707,-0.0707,1.0629,1.0629,-0.0707,0.0707,-1.0629,-1.0629,0.0707,0.0* 13 | % 14 | %ADD89ROTATEDRECTD89*% 15 | 16 | %ADD90R,1.1032X0.8932*% 17 | %ADD91R,1.1932X0.8932*% 18 | %ADD92R,0.5032X1.2032*% 19 | %ADD93R,2.1032X1.9332*% 20 | %ADD94R,0.8382X0.7032*% 21 | %ADD95R,0.7032X0.8382*% 22 | G04:AMPARAMS|DCode=96|XSize=0.8382mm|YSize=0.7032mm|CornerRadius=0mm|HoleSize=0mm|Usage=FLASHONLY|Rotation=45.000|XOffset=0mm|YOffset=0mm|HoleType=Round|Shape=Rectangle|* 23 | %AMROTATEDRECTD96* 24 | 4,1,4,-0.0477,-0.5450,-0.5450,-0.0477,0.0477,0.5450,0.5450,0.0477,-0.0477,-0.5450,0.0* 25 | % 26 | %ADD96ROTATEDRECTD96*% 27 | 28 | %ADD97R,1.3032X1.6032*% 29 | %ADD98R,1.3032X1.2032*% 30 | %ADD99R,1.2032X1.3032*% 31 | G04:AMPARAMS|DCode=100|XSize=0.8382mm|YSize=0.7032mm|CornerRadius=0mm|HoleSize=0mm|Usage=FLASHONLY|Rotation=315.000|XOffset=0mm|YOffset=0mm|HoleType=Round|Shape=Rectangle|* 32 | %AMROTATEDRECTD100* 33 | 4,1,4,-0.5450,0.0477,-0.0477,0.5450,0.5450,-0.0477,0.0477,-0.5450,-0.5450,0.0477,0.0* 34 | % 35 | %ADD100ROTATEDRECTD100*% 36 | 37 | %ADD101R,2.1032X1.9532*% 38 | %ADD102R,1.6032X0.6032*% 39 | %ADD103R,1.6532X1.3532*% 40 | %ADD104R,1.8032X1.0032*% 41 | %ADD105R,3.2032X2.3032*% 42 | %ADD106R,2.0032X0.8032*% 43 | G04:AMPARAMS|DCode=107|XSize=0.8032mm|YSize=2.0032mm|CornerRadius=0.2516mm|HoleSize=0mm|Usage=FLASHONLY|Rotation=90.000|XOffset=0mm|YOffset=0mm|HoleType=Round|Shape=RoundedRectangle|* 44 | %AMROUNDEDRECTD107* 45 | 21,1,0.8032,1.5000,0,0,90.0* 46 | 21,1,0.3000,2.0032,0,0,90.0* 47 | 1,1,0.5032,0.7500,0.1500* 48 | 1,1,0.5032,0.7500,-0.1500* 49 | 1,1,0.5032,-0.7500,-0.1500* 50 | 1,1,0.5032,-0.7500,0.1500* 51 | % 52 | %ADD107ROUNDEDRECTD107*% 53 | %ADD108R,2.8032X2.8032*% 54 | %ADD109R,0.9532X0.5032*% 55 | %ADD110R,0.5032X0.9532*% 56 | %ADD111R,6.4032X6.4032*% 57 | G04:AMPARAMS|DCode=112|XSize=0.4832mm|YSize=0.8932mm|CornerRadius=0.1436mm|HoleSize=0mm|Usage=FLASHONLY|Rotation=90.000|XOffset=0mm|YOffset=0mm|HoleType=Round|Shape=RoundedRectangle|* 58 | %AMROUNDEDRECTD112* 59 | 21,1,0.4832,0.6060,0,0,90.0* 60 | 21,1,0.1960,0.8932,0,0,90.0* 61 | 1,1,0.2872,0.3030,0.0980* 62 | 1,1,0.2872,0.3030,-0.0980* 63 | 1,1,0.2872,-0.3030,-0.0980* 64 | 1,1,0.2872,-0.3030,0.0980* 65 | % 66 | %ADD112ROUNDEDRECTD112*% 67 | G04:AMPARAMS|DCode=113|XSize=0.4832mm|YSize=0.8432mm|CornerRadius=0.1436mm|HoleSize=0mm|Usage=FLASHONLY|Rotation=90.000|XOffset=0mm|YOffset=0mm|HoleType=Round|Shape=RoundedRectangle|* 68 | %AMROUNDEDRECTD113* 69 | 21,1,0.4832,0.5560,0,0,90.0* 70 | 21,1,0.1960,0.8432,0,0,90.0* 71 | 1,1,0.2872,0.2780,0.0980* 72 | 1,1,0.2872,0.2780,-0.0980* 73 | 1,1,0.2872,-0.2780,-0.0980* 74 | 1,1,0.2872,-0.2780,0.0980* 75 | % 76 | %ADD113ROUNDEDRECTD113*% 77 | G04:AMPARAMS|DCode=114|XSize=0.4832mm|YSize=0.8932mm|CornerRadius=0.1436mm|HoleSize=0mm|Usage=FLASHONLY|Rotation=0.000|XOffset=0mm|YOffset=0mm|HoleType=Round|Shape=RoundedRectangle|* 78 | %AMROUNDEDRECTD114* 79 | 21,1,0.4832,0.6060,0,0,0.0* 80 | 21,1,0.1960,0.8932,0,0,0.0* 81 | 1,1,0.2872,0.0980,-0.3030* 82 | 1,1,0.2872,-0.0980,-0.3030* 83 | 1,1,0.2872,-0.0980,0.3030* 84 | 1,1,0.2872,0.0980,0.3030* 85 | % 86 | %ADD114ROUNDEDRECTD114*% 87 | G04:AMPARAMS|DCode=115|XSize=0.4832mm|YSize=0.8432mm|CornerRadius=0.1436mm|HoleSize=0mm|Usage=FLASHONLY|Rotation=0.000|XOffset=0mm|YOffset=0mm|HoleType=Round|Shape=RoundedRectangle|* 88 | %AMROUNDEDRECTD115* 89 | 21,1,0.4832,0.5560,0,0,0.0* 90 | 21,1,0.1960,0.8432,0,0,0.0* 91 | 1,1,0.2872,0.0980,-0.2780* 92 | 1,1,0.2872,-0.0980,-0.2780* 93 | 1,1,0.2872,-0.0980,0.2780* 94 | 1,1,0.2872,0.0980,0.2780* 95 | % 96 | %ADD115ROUNDEDRECTD115*% 97 | G04:AMPARAMS|DCode=116|XSize=1.7032mm|YSize=0.4832mm|CornerRadius=0mm|HoleSize=0mm|Usage=FLASHONLY|Rotation=45.000|XOffset=0mm|YOffset=0mm|HoleType=Round|Shape=Rectangle|* 98 | %AMROTATEDRECTD116* 99 | 4,1,4,-0.4313,-0.7730,-0.7730,-0.4313,0.4313,0.7730,0.7730,0.4313,-0.4313,-0.7730,0.0* 100 | % 101 | %ADD116ROTATEDRECTD116*% 102 | 103 | G04:AMPARAMS|DCode=117|XSize=1.7032mm|YSize=0.6032mm|CornerRadius=0mm|HoleSize=0mm|Usage=FLASHONLY|Rotation=45.000|XOffset=0mm|YOffset=0mm|HoleType=Round|Shape=Rectangle|* 104 | %AMROTATEDRECTD117* 105 | 4,1,4,-0.3889,-0.8154,-0.8154,-0.3889,0.3889,0.8154,0.8154,0.3889,-0.3889,-0.8154,0.0* 106 | % 107 | %ADD117ROTATEDRECTD117*% 108 | 109 | G04:AMPARAMS|DCode=118|XSize=1.7032mm|YSize=0.4832mm|CornerRadius=0mm|HoleSize=0mm|Usage=FLASHONLY|Rotation=315.000|XOffset=0mm|YOffset=0mm|HoleType=Round|Shape=Rectangle|* 110 | %AMROTATEDRECTD118* 111 | 4,1,4,-0.7730,0.4313,-0.4313,0.7730,0.7730,-0.4313,0.4313,-0.7730,-0.7730,0.4313,0.0* 112 | % 113 | %ADD118ROTATEDRECTD118*% 114 | 115 | G04:AMPARAMS|DCode=119|XSize=1.7032mm|YSize=0.6032mm|CornerRadius=0mm|HoleSize=0mm|Usage=FLASHONLY|Rotation=315.000|XOffset=0mm|YOffset=0mm|HoleType=Round|Shape=Rectangle|* 116 | %AMROTATEDRECTD119* 117 | 4,1,4,-0.8154,0.3889,-0.3889,0.8154,0.8154,-0.3889,0.3889,-0.8154,-0.8154,0.3889,0.0* 118 | % 119 | %ADD119ROTATEDRECTD119*% 120 | 121 | %ADD120R,2.3622X2.9462*% 122 | %ADD121R,2.0032X1.8032*% 123 | %ADD122R,1.3032X1.7032*% 124 | %ADD123C,2.1032*% 125 | %ADD124C,3.0032*% 126 | %ADD125C,3.2032*% 127 | %ADD126C,2.0032*% 128 | %ADD127C,8.7032*% 129 | %ADD128C,7.2032*% 130 | D86* 131 | X70000Y149250D02* 132 | D03* 133 | Y166750D02* 134 | D03* 135 | X384000Y-138750D02* 136 | D03* 137 | Y-121250D02* 138 | D03* 139 | X60000Y-85000D02* 140 | D03* 141 | Y-67500D02* 142 | D03* 143 | X463000Y-56250D02* 144 | D03* 145 | Y-73750D02* 146 | D03* 147 | Y-113750D02* 148 | D03* 149 | Y-96250D02* 150 | D03* 151 | D87* 152 | X100000Y132000D02* 153 | D03* 154 | X100000Y88000D02* 155 | D03* 156 | X70000Y88000D02* 157 | D03* 158 | Y132000D02* 159 | D03* 160 | D88* 161 | X309932Y-81452D02* 162 | D03* 163 | Y-98451D02* 164 | D03* 165 | X331931Y-81452D02* 166 | D03* 167 | Y-98451D02* 168 | D03* 169 | D89* 170 | X94768Y-71789D02* 171 | D03* 172 | X106789Y-59768D02* 173 | D03* 174 | X79211Y-56232D02* 175 | D03* 176 | X91232Y-44211D02* 177 | D03* 178 | D90* 179 | X356950Y-121500D02* 180 | D03* 181 | Y-140500D02* 182 | D03* 183 | D91* 184 | X331050Y-121500D02* 185 | D03* 186 | Y-131000D02* 187 | D03* 188 | Y-140500D02* 189 | D03* 190 | D92* 191 | X435000Y-105000D02* 192 | D03* 193 | X430000D02* 194 | D03* 195 | X425000D02* 196 | D03* 197 | X440000D02* 198 | D03* 199 | X445000D02* 200 | D03* 201 | Y-57000D02* 202 | D03* 203 | X440000D02* 204 | D03* 205 | X425000D02* 206 | D03* 207 | X430000D02* 208 | D03* 209 | X435000D02* 210 | D03* 211 | D93* 212 | Y-81000D02* 213 | D03* 214 | D94* 215 | X317000Y-133000D02* 216 | D03* 217 | Y-143000D02* 218 | D03* 219 | X306000Y-143000D02* 220 | D03* 221 | Y-153000D02* 222 | D03* 223 | X349000Y61000D02* 224 | D03* 225 | Y71000D02* 226 | D03* 227 | X339000D02* 228 | D03* 229 | Y61000D02* 230 | D03* 231 | X117000Y-175000D02* 232 | D03* 233 | Y-185000D02* 234 | D03* 235 | X309000Y71000D02* 236 | D03* 237 | Y61000D02* 238 | D03* 239 | X329000Y71000D02* 240 | D03* 241 | Y61000D02* 242 | D03* 243 | X411000Y-94000D02* 244 | D03* 245 | Y-104000D02* 246 | D03* 247 | X400000D02* 248 | D03* 249 | Y-94000D02* 250 | D03* 251 | X369000Y-130000D02* 252 | D03* 253 | Y-140000D02* 254 | D03* 255 | X367000Y-69000D02* 256 | D03* 257 | Y-59000D02* 258 | D03* 259 | X337000D02* 260 | D03* 261 | Y-69000D02* 262 | D03* 263 | X390000Y-60000D02* 264 | D03* 265 | Y-70000D02* 266 | D03* 267 | X346431Y-84952D02* 268 | D03* 269 | Y-94952D02* 270 | D03* 271 | X369000Y61000D02* 272 | D03* 273 | Y71000D02* 274 | D03* 275 | X381000Y61000D02* 276 | D03* 277 | Y71000D02* 278 | D03* 279 | X319000Y61000D02* 280 | D03* 281 | Y71000D02* 282 | D03* 283 | X347000Y-59000D02* 284 | D03* 285 | Y-69000D02* 286 | D03* 287 | X357000Y-59000D02* 288 | D03* 289 | Y-69000D02* 290 | D03* 291 | X106000Y-175000D02* 292 | D03* 293 | Y-185000D02* 294 | D03* 295 | X428000Y-41000D02* 296 | D03* 297 | Y-31000D02* 298 | D03* 299 | X446000Y25000D02* 300 | D03* 301 | Y15000D02* 302 | D03* 303 | Y5000D02* 304 | D03* 305 | Y-5000D02* 306 | D03* 307 | Y-15000D02* 308 | D03* 309 | Y-25000D02* 310 | D03* 311 | D95* 312 | X391000Y112000D02* 313 | D03* 314 | X381000D02* 315 | D03* 316 | X376000Y-91000D02* 317 | D03* 318 | X366000D02* 319 | D03* 320 | X381000Y99031D02* 321 | D03* 322 | X391000D02* 323 | D03* 324 | X381000Y86031D02* 325 | D03* 326 | X391000D02* 327 | D03* 328 | X280000Y-77000D02* 329 | D03* 330 | X290000D02* 331 | D03* 332 | X280000Y-107000D02* 333 | D03* 334 | X290000D02* 335 | D03* 336 | X280000Y-127000D02* 337 | D03* 338 | X290000D02* 339 | D03* 340 | X280000Y-97000D02* 341 | D03* 342 | X290000D02* 343 | D03* 344 | X137000Y-103000D02* 345 | D03* 346 | X127000D02* 347 | D03* 348 | X285000Y-5000D02* 349 | D03* 350 | X295000D02* 351 | D03* 352 | X137000Y-93000D02* 353 | D03* 354 | X127000D02* 355 | D03* 356 | X280000Y145000D02* 357 | D03* 358 | X290000D02* 359 | D03* 360 | X280000Y115000D02* 361 | D03* 362 | X290000D02* 363 | D03* 364 | X280000Y95000D02* 365 | D03* 366 | X290000D02* 367 | D03* 368 | X280000Y125000D02* 369 | D03* 370 | X290000D02* 371 | D03* 372 | X265000Y-15000D02* 373 | D03* 374 | X275000D02* 375 | D03* 376 | X420000Y-19647D02* 377 | D03* 378 | X430000D02* 379 | D03* 380 | X420000Y38000D02* 381 | D03* 382 | X430000D02* 383 | D03* 384 | X320431Y-67952D02* 385 | D03* 386 | X310431D02* 387 | D03* 388 | X275000Y-30000D02* 389 | D03* 390 | X285000D02* 391 | D03* 392 | X265000Y5000D02* 393 | D03* 394 | X275000D02* 395 | D03* 396 | X275000Y20000D02* 397 | D03* 398 | X285000D02* 399 | D03* 400 | X297000Y-57000D02* 401 | D03* 402 | X307000D02* 403 | D03* 404 | X297000Y44000D02* 405 | D03* 406 | X287000D02* 407 | D03* 408 | X290000Y85000D02* 409 | D03* 410 | X280000D02* 411 | D03* 412 | X290000Y155000D02* 413 | D03* 414 | X280000D02* 415 | D03* 416 | X295000Y-15000D02* 417 | D03* 418 | X285000D02* 419 | D03* 420 | X295000Y5000D02* 421 | D03* 422 | X285000D02* 423 | D03* 424 | X420000Y-3000D02* 425 | D03* 426 | X430000D02* 427 | D03* 428 | X376000Y-80000D02* 429 | D03* 430 | X366000D02* 431 | D03* 432 | X381000Y134000D02* 433 | D03* 434 | X391000D02* 435 | D03* 436 | X290000Y-67000D02* 437 | D03* 438 | X280000D02* 439 | D03* 440 | X290000Y-137000D02* 441 | D03* 442 | X280000D02* 443 | D03* 444 | X381000Y124000D02* 445 | D03* 446 | X391000D02* 447 | D03* 448 | D96* 449 | X107465Y50535D02* 450 | D03* 451 | X114536Y43464D02* 452 | D03* 453 | X204464Y82535D02* 454 | D03* 455 | X211535Y75465D02* 456 | D03* 457 | X109536Y-41536D02* 458 | D03* 459 | X102465Y-34464D02* 460 | D03* 461 | X116465Y-48464D02* 462 | D03* 463 | X123535Y-55535D02* 464 | D03* 465 | X133535Y-81536D02* 466 | D03* 467 | X126465Y-74465D02* 468 | D03* 469 | X141536Y-73535D02* 470 | D03* 471 | X134465Y-66465D02* 472 | D03* 473 | D97* 474 | X408250Y-124000D02* 475 | D03* 476 | X425750D02* 477 | D03* 478 | X414250Y182000D02* 479 | D03* 480 | X431750D02* 481 | D03* 482 | X452250Y-180000D02* 483 | D03* 484 | X469750D02* 485 | D03* 486 | X434750D02* 487 | D03* 488 | X417250D02* 489 | D03* 490 | D98* 491 | X458500Y-40000D02* 492 | D03* 493 | X441500D02* 494 | D03* 495 | X277500Y32000D02* 496 | D03* 497 | X294500D02* 498 | D03* 499 | X277500Y-42000D02* 500 | D03* 501 | X294500D02* 502 | D03* 503 | X285500Y-169000D02* 504 | D03* 505 | X302500D02* 506 | D03* 507 | X367500Y-106000D02* 508 | D03* 509 | X384500D02* 510 | D03* 511 | X76500Y-167000D02* 512 | D03* 513 | X59500D02* 514 | D03* 515 | X76500Y-149000D02* 516 | D03* 517 | X59500D02* 518 | D03* 519 | D99* 520 | X261000Y-77500D02* 521 | D03* 522 | Y-60500D02* 523 | D03* 524 | Y96500D02* 525 | D03* 526 | Y79500D02* 527 | D03* 528 | X160000Y-106500D02* 529 | D03* 530 | Y-89500D02* 531 | D03* 532 | X155000Y-135500D02* 533 | D03* 534 | Y-152500D02* 535 | D03* 536 | D100* 537 | X109879Y-77808D02* 538 | D03* 539 | X102808Y-84879D02* 540 | D03* 541 | X117879Y-85808D02* 542 | D03* 543 | X110808Y-92879D02* 544 | D03* 545 | X96465Y25464D02* 546 | D03* 547 | X103535Y32536D02* 548 | D03* 549 | X261535Y-26465D02* 550 | D03* 551 | X254464Y-33535D02* 552 | D03* 553 | X216535Y-72464D02* 554 | D03* 555 | X209464Y-79535D02* 556 | D03* 557 | D101* 558 | X14500Y-121250D02* 559 | D03* 560 | Y-98750D02* 561 | D03* 562 | Y98750D02* 563 | D03* 564 | Y121250D02* 565 | D03* 566 | D102* 567 | X41000Y-110000D02* 568 | D03* 569 | Y-103500D02* 570 | D03* 571 | Y-97000D02* 572 | D03* 573 | Y-116500D02* 574 | D03* 575 | Y-123000D02* 576 | D03* 577 | Y110000D02* 578 | D03* 579 | Y116500D02* 580 | D03* 581 | Y123000D02* 582 | D03* 583 | Y103500D02* 584 | D03* 585 | Y97000D02* 586 | D03* 587 | D103* 588 | X36800Y-86500D02* 589 | D03* 590 | Y-133500D02* 591 | D03* 592 | Y133500D02* 593 | D03* 594 | Y86500D02* 595 | D03* 596 | D104* 597 | X451000Y146500D02* 598 | D03* 599 | Y96500D02* 600 | D03* 601 | Y84000D02* 602 | D03* 603 | Y71500D02* 604 | D03* 605 | Y134000D02* 606 | D03* 607 | Y121500D02* 608 | D03* 609 | Y109000D02* 610 | D03* 611 | D105* 612 | X480000Y172000D02* 613 | D03* 614 | Y46000D02* 615 | D03* 616 | D106* 617 | X363000Y124050D02* 618 | D03* 619 | Y111350D02* 620 | D03* 621 | Y98650D02* 622 | D03* 623 | Y85950D02* 624 | D03* 625 | X311000D02* 626 | D03* 627 | Y98650D02* 628 | D03* 629 | Y111350D02* 630 | D03* 631 | D107* 632 | Y124050D02* 633 | D03* 634 | D108* 635 | X117000Y-138000D02* 636 | D03* 637 | D109* 638 | X97000Y-135500D02* 639 | D03* 640 | Y-130500D02* 641 | D03* 642 | Y-125500D02* 643 | D03* 644 | Y-150500D02* 645 | D03* 646 | Y-145500D02* 647 | D03* 648 | Y-140500D02* 649 | D03* 650 | X137000D02* 651 | D03* 652 | Y-145500D02* 653 | D03* 654 | Y-150500D02* 655 | D03* 656 | Y-125500D02* 657 | D03* 658 | Y-130500D02* 659 | D03* 660 | Y-135500D02* 661 | D03* 662 | D110* 663 | X119500Y-118000D02* 664 | D03* 665 | X124500D02* 666 | D03* 667 | X129500D02* 668 | D03* 669 | X104500D02* 670 | D03* 671 | X109500D02* 672 | D03* 673 | X114500D02* 674 | D03* 675 | X119500Y-158000D02* 676 | D03* 677 | X124500D02* 678 | D03* 679 | X129500D02* 680 | D03* 681 | X104500D02* 682 | D03* 683 | X109500D02* 684 | D03* 685 | X114500D02* 686 | D03* 687 | D111* 688 | X360000Y0D02* 689 | D03* 690 | D112* 691 | X316900Y2500D02* 692 | D03* 693 | Y7500D02* 694 | D03* 695 | Y12500D02* 696 | D03* 697 | Y17500D02* 698 | D03* 699 | Y22500D02* 700 | D03* 701 | Y27500D02* 702 | D03* 703 | Y32500D02* 704 | D03* 705 | Y-32500D02* 706 | D03* 707 | Y-27500D02* 708 | D03* 709 | Y-22500D02* 710 | D03* 711 | Y-17500D02* 712 | D03* 713 | Y-12500D02* 714 | D03* 715 | Y-7500D02* 716 | D03* 717 | Y-2500D02* 718 | D03* 719 | X403100Y2500D02* 720 | D03* 721 | Y7500D02* 722 | D03* 723 | Y12500D02* 724 | D03* 725 | Y17500D02* 726 | D03* 727 | Y22500D02* 728 | D03* 729 | Y27500D02* 730 | D03* 731 | Y32500D02* 732 | D03* 733 | Y-32500D02* 734 | D03* 735 | Y-27500D02* 736 | D03* 737 | Y-22500D02* 738 | D03* 739 | Y-17500D02* 740 | D03* 741 | Y-12500D02* 742 | D03* 743 | Y-7500D02* 744 | D03* 745 | Y-2500D02* 746 | D03* 747 | D113* 748 | X316700Y37500D02* 749 | D03* 750 | Y-37500D02* 751 | D03* 752 | X403300Y37500D02* 753 | D03* 754 | Y-37500D02* 755 | D03* 756 | D114* 757 | X362500Y-43100D02* 758 | D03* 759 | X367500D02* 760 | D03* 761 | X372500D02* 762 | D03* 763 | X377500D02* 764 | D03* 765 | X382500D02* 766 | D03* 767 | X387500D02* 768 | D03* 769 | X392500D02* 770 | D03* 771 | X327500D02* 772 | D03* 773 | X332500D02* 774 | D03* 775 | X337500D02* 776 | D03* 777 | X342500D02* 778 | D03* 779 | X347500D02* 780 | D03* 781 | X352500D02* 782 | D03* 783 | X357500D02* 784 | D03* 785 | Y43100D02* 786 | D03* 787 | X352500D02* 788 | D03* 789 | X347500D02* 790 | D03* 791 | X342500D02* 792 | D03* 793 | X337500D02* 794 | D03* 795 | X332500D02* 796 | D03* 797 | X327500D02* 798 | D03* 799 | X392500D02* 800 | D03* 801 | X387500D02* 802 | D03* 803 | X382500D02* 804 | D03* 805 | X377500D02* 806 | D03* 807 | X372500D02* 808 | D03* 809 | X367500D02* 810 | D03* 811 | X362500D02* 812 | D03* 813 | D115* 814 | X397500Y-43300D02* 815 | D03* 816 | X322500D02* 817 | D03* 818 | Y43300D02* 819 | D03* 820 | X397500D02* 821 | D03* 822 | D116* 823 | X219951Y43487D02* 824 | D03* 825 | X216416Y47023D02* 826 | D03* 827 | X212880Y50558D02* 828 | D03* 829 | X223487Y39952D02* 830 | D03* 831 | X227023Y36416D02* 832 | D03* 833 | X230558Y32880D02* 834 | D03* 835 | X209345Y54094D02* 836 | D03* 837 | X205809Y57629D02* 838 | D03* 839 | X202274Y61165D02* 840 | D03* 841 | X198738Y64700D02* 842 | D03* 843 | X234094Y29345D02* 844 | D03* 845 | X237629Y25809D02* 846 | D03* 847 | X241165Y22274D02* 848 | D03* 849 | X244700Y18738D02* 850 | D03* 851 | X140049Y-43487D02* 852 | D03* 853 | X143584Y-47023D02* 854 | D03* 855 | X147120Y-50558D02* 856 | D03* 857 | X136513Y-39952D02* 858 | D03* 859 | X132977Y-36416D02* 860 | D03* 861 | X129442Y-32880D02* 862 | D03* 863 | X150655Y-54094D02* 864 | D03* 865 | X154191Y-57629D02* 866 | D03* 867 | X157726Y-61165D02* 868 | D03* 869 | X161262Y-64700D02* 870 | D03* 871 | X125906Y-29345D02* 872 | D03* 873 | X122371Y-25809D02* 874 | D03* 875 | X118835Y-22274D02* 876 | D03* 877 | X115300Y-18738D02* 878 | D03* 879 | D117* 880 | X194778Y68660D02* 881 | D03* 882 | X248660Y14778D02* 883 | D03* 884 | X165222Y-68660D02* 885 | D03* 886 | X111340Y-14778D02* 887 | D03* 888 | D118* 889 | X223487Y-39952D02* 890 | D03* 891 | X227023Y-36416D02* 892 | D03* 893 | X230558Y-32880D02* 894 | D03* 895 | X219951Y-43487D02* 896 | D03* 897 | X216416Y-47023D02* 898 | D03* 899 | X212880Y-50558D02* 900 | D03* 901 | X234094Y-29345D02* 902 | D03* 903 | X237629Y-25809D02* 904 | D03* 905 | X241165Y-22274D02* 906 | D03* 907 | X244700Y-18738D02* 908 | D03* 909 | X209345Y-54094D02* 910 | D03* 911 | X205809Y-57629D02* 912 | D03* 913 | X202274Y-61165D02* 914 | D03* 915 | X198738Y-64700D02* 916 | D03* 917 | X161262Y64700D02* 918 | D03* 919 | X157726Y61165D02* 920 | D03* 921 | X154191Y57629D02* 922 | D03* 923 | X150655Y54094D02* 924 | D03* 925 | X115300Y18738D02* 926 | D03* 927 | X118835Y22274D02* 928 | D03* 929 | X122371Y25809D02* 930 | D03* 931 | X125906Y29345D02* 932 | D03* 933 | X147120Y50558D02* 934 | D03* 935 | X143584Y47023D02* 936 | D03* 937 | X140049Y43487D02* 938 | D03* 939 | X129442Y32880D02* 940 | D03* 941 | X132977Y36416D02* 942 | D03* 943 | X136513Y39952D02* 944 | D03* 945 | D119* 946 | X248660Y-14778D02* 947 | D03* 948 | X194778Y-68660D02* 949 | D03* 950 | X165222Y68660D02* 951 | D03* 952 | X111340Y14778D02* 953 | D03* 954 | D120* 955 | X413900Y-151000D02* 956 | D03* 957 | X458100D02* 958 | D03* 959 | D121* 960 | X485000Y-74000D02* 961 | D03* 962 | Y-44000D02* 963 | D03* 964 | D122* 965 | X460500Y20000D02* 966 | D03* 967 | X481500D02* 968 | D03* 969 | X460500Y0D02* 970 | D03* 971 | X481500D02* 972 | D03* 973 | X460500Y-20000D02* 974 | D03* 975 | X481500D02* 976 | D03* 977 | D123* 978 | X14500Y-74250D02* 979 | D03* 980 | Y-145750D02* 981 | D03* 982 | Y145750D02* 983 | D03* 984 | Y74250D02* 985 | D03* 986 | D124* 987 | X36100Y46500D02* 988 | D03* 989 | Y173500D02* 990 | D03* 991 | Y-175500D02* 992 | D03* 993 | Y-48500D02* 994 | D03* 995 | D125* 996 | X420000Y155000D02* 997 | D03* 998 | Y104200D02* 999 | D03* 1000 | D126* 1001 | X152400Y-203200D02* 1002 | D03* 1003 | X76200Y203200D02* 1004 | D03* 1005 | X254000Y-203200D02* 1006 | D03* 1007 | X304800Y203200D02* 1008 | D03* 1009 | X101600D02* 1010 | D03* 1011 | X228600D02* 1012 | D03* 1013 | X127000D02* 1014 | D03* 1015 | X152400D02* 1016 | D03* 1017 | X177800D02* 1018 | D03* 1019 | X203200D02* 1020 | D03* 1021 | X254000D02* 1022 | D03* 1023 | X279400D02* 1024 | D03* 1025 | X406400D02* 1026 | D03* 1027 | X431800D02* 1028 | D03* 1029 | X457200D02* 1030 | D03* 1031 | Y-203200D02* 1032 | D03* 1033 | X431800D02* 1034 | D03* 1035 | X406400D02* 1036 | D03* 1037 | X228600D02* 1038 | D03* 1039 | X203200D02* 1040 | D03* 1041 | X177800D02* 1042 | D03* 1043 | X127000D02* 1044 | D03* 1045 | X101600D02* 1046 | D03* 1047 | X76200D02* 1048 | D03* 1049 | X304800D02* 1050 | D03* 1051 | X279400D02* 1052 | D03* 1053 | D127* 1054 | X50000Y0D02* 1055 | D03* 1056 | D128* 1057 | X355000Y-185000D02* 1058 | D03* 1059 | Y185000D02* 1060 | D03* 1061 | M02* 1062 | -------------------------------------------------------------------------------- /Project Outputs for DB10012_UniversalSlave/Gerber/DB10012_UniversalSlave.REP: -------------------------------------------------------------------------------- 1 | ************************************************************* 2 | FileName = DB10012_UniversalSlave.GBR 3 | AutoAperture = True 4 | ************************************************************* 5 | Generating : L1 6 | File : DB10012_UniversalSlave.GTL 7 | 8 | Adding Layer : L1 9 | 10 | Adding Layer : Multi-Layer 11 | 12 | 13 | Used DCodes : 14 | D10 15 | D11 16 | D12 17 | D13 18 | D14 19 | D15 20 | D16 21 | D17 22 | D18 23 | D19 24 | D20 25 | D21 26 | D22 27 | D23 28 | D24 29 | D25 30 | D26 31 | D27 32 | D28 33 | D29 34 | D30 35 | D31 36 | D32 37 | D33 38 | D34 39 | D35 40 | D36 41 | D37 42 | D38 43 | D39 44 | D40 45 | D41 46 | D42 47 | D43 48 | D44 49 | D45 50 | D46 51 | D47 52 | D48 53 | D49 54 | D50 55 | D51 56 | D52 57 | D53 58 | D54 59 | D55 60 | D56 61 | D57 62 | D58 63 | D59 64 | D60 65 | D61 66 | D62 67 | D63 68 | D64 69 | D65 70 | ************************************************************* 71 | 72 | ************************************************************* 73 | Generating : L2 74 | File : DB10012_UniversalSlave.G1 75 | 76 | Adding Layer : L2 77 | 78 | Adding Layer : Multi-Layer 79 | 80 | 81 | Used DCodes : 82 | D56 83 | D57 84 | D58 85 | D59 86 | D60 87 | D63 88 | D66 89 | D67 90 | ************************************************************* 91 | 92 | ************************************************************* 93 | Generating : L3 94 | File : DB10012_UniversalSlave.G2 95 | 96 | Adding Layer : L3 97 | 98 | Adding Layer : Multi-Layer 99 | 100 | 101 | Used DCodes : 102 | D47 103 | D49 104 | D52 105 | D53 106 | D56 107 | D57 108 | D58 109 | D59 110 | D60 111 | D63 112 | D64 113 | D65 114 | D66 115 | D67 116 | ************************************************************* 117 | 118 | ************************************************************* 119 | Generating : L4 120 | File : DB10012_UniversalSlave.G3 121 | 122 | Adding Layer : L4 123 | 124 | Adding Layer : Multi-Layer 125 | 126 | 127 | Used DCodes : 128 | D47 129 | D51 130 | D52 131 | D56 132 | D57 133 | D58 134 | D59 135 | D60 136 | D63 137 | D65 138 | D66 139 | D67 140 | ************************************************************* 141 | 142 | ************************************************************* 143 | Generating : L5 144 | File : DB10012_UniversalSlave.G4 145 | 146 | Adding Layer : L5 147 | 148 | Adding Layer : Multi-Layer 149 | 150 | 151 | Used DCodes : 152 | D56 153 | D57 154 | D58 155 | D59 156 | D60 157 | D63 158 | D66 159 | D67 160 | ************************************************************* 161 | 162 | ************************************************************* 163 | Generating : L6 164 | File : DB10012_UniversalSlave.GBL 165 | 166 | Adding Layer : L6 167 | 168 | Adding Layer : Multi-Layer 169 | 170 | 171 | Used DCodes : 172 | D10 173 | D18 174 | D19 175 | D21 176 | D22 177 | D44 178 | D46 179 | D47 180 | D48 181 | D49 182 | D50 183 | D51 184 | D52 185 | D53 186 | D54 187 | D56 188 | D57 189 | D58 190 | D59 191 | D60 192 | D62 193 | D63 194 | D64 195 | D65 196 | D66 197 | D68 198 | D69 199 | D70 200 | D71 201 | D72 202 | D73 203 | D74 204 | D75 205 | D76 206 | D77 207 | ************************************************************* 208 | 209 | ************************************************************* 210 | Generating : Top Overlay 211 | File : DB10012_UniversalSlave.GTO 212 | 213 | Adding Layer : Top Overlay 214 | 215 | 216 | Used DCodes : 217 | D47 218 | D48 219 | D50 220 | D56 221 | D78 222 | D79 223 | D80 224 | ************************************************************* 225 | 226 | ************************************************************* 227 | Generating : Top Paste 228 | File : DB10012_UniversalSlave.GTP 229 | 230 | Adding Layer : Top Paste 231 | 232 | Adding Layer : L1 233 | 234 | Adding Layer : Multi-Layer 235 | 236 | 237 | Used DCodes : 238 | D10 239 | D11 240 | D12 241 | D13 242 | D14 243 | D15 244 | D16 245 | D18 246 | D19 247 | D20 248 | D21 249 | D22 250 | D23 251 | D24 252 | D25 253 | D26 254 | D27 255 | D28 256 | D29 257 | D30 258 | D31 259 | D33 260 | D34 261 | D36 262 | D37 263 | D38 264 | D39 265 | D40 266 | D41 267 | D42 268 | D43 269 | D44 270 | D45 271 | D46 272 | D81 273 | D82 274 | D83 275 | D84 276 | D85 277 | ************************************************************* 278 | 279 | ************************************************************* 280 | Generating : Top Solder 281 | File : DB10012_UniversalSlave.GTS 282 | 283 | Adding Layer : Top Solder 284 | 285 | Adding Layer : L1 286 | 287 | Adding Layer : Multi-Layer 288 | 289 | 290 | Used DCodes : 291 | D86 292 | D87 293 | D88 294 | D89 295 | D90 296 | D91 297 | D92 298 | D93 299 | D94 300 | D95 301 | D96 302 | D97 303 | D98 304 | D99 305 | D100 306 | D101 307 | D102 308 | D103 309 | D104 310 | D105 311 | D106 312 | D107 313 | D108 314 | D109 315 | D110 316 | D111 317 | D112 318 | D113 319 | D114 320 | D115 321 | D116 322 | D117 323 | D118 324 | D119 325 | D120 326 | D121 327 | D122 328 | D123 329 | D124 330 | D125 331 | D126 332 | D127 333 | D128 334 | ************************************************************* 335 | 336 | ************************************************************* 337 | Generating : Bottom Solder 338 | File : DB10012_UniversalSlave.GBS 339 | 340 | Adding Layer : Bottom Solder 341 | 342 | Adding Layer : L6 343 | 344 | Adding Layer : Multi-Layer 345 | 346 | 347 | Used DCodes : 348 | D48 349 | D86 350 | D94 351 | D95 352 | D97 353 | D98 354 | D120 355 | D122 356 | D123 357 | D124 358 | D125 359 | D126 360 | D128 361 | D129 362 | D130 363 | D131 364 | D132 365 | D133 366 | D134 367 | D135 368 | D136 369 | D137 370 | D138 371 | ************************************************************* 372 | 373 | ************************************************************* 374 | Generating : Bottom Paste 375 | File : DB10012_UniversalSlave.GBP 376 | 377 | Adding Layer : Bottom Paste 378 | 379 | Adding Layer : L6 380 | 381 | Adding Layer : Multi-Layer 382 | 383 | 384 | Used DCodes : 385 | D10 386 | D18 387 | D19 388 | D21 389 | D22 390 | D44 391 | D46 392 | D68 393 | D69 394 | D70 395 | D71 396 | D72 397 | D73 398 | D74 399 | D75 400 | D76 401 | ************************************************************* 402 | 403 | ************************************************************* 404 | Generating : Bottom Overlay 405 | File : DB10012_UniversalSlave.GBO 406 | 407 | Adding Layer : Bottom Overlay 408 | 409 | 410 | Used DCodes : 411 | D47 412 | D48 413 | D50 414 | D55 415 | ************************************************************* 416 | 417 | ************************************************************* 418 | Generating : Keep-Out Layer 419 | File : DB10012_UniversalSlave.GKO 420 | 421 | Adding Layer : Keep-Out Layer 422 | 423 | 424 | Used DCodes : 425 | D47 426 | ************************************************************* 427 | 428 | ************************************************************* 429 | Generating : Mechanical 1 430 | File : DB10012_UniversalSlave.GM1 431 | 432 | Adding Layer : Mechanical 1 433 | 434 | 435 | Used DCodes : 436 | ************************************************************* 437 | 438 | -------------------------------------------------------------------------------- /Project Outputs for DB10012_UniversalSlave/Gerber/DB10012_UniversalSlave.RUL: -------------------------------------------------------------------------------- 1 | DRC Rules Export File for PCB: C:\Projecten\DieBieSlave\Github\Hardware\DB10012_UniversalSlave.PcbDoc 2 | RuleKind=Clearance|RuleName=ClearancePolygon|Scope=Board|Minimum=9.84 3 | RuleKind=ShortCircuit|RuleName=ShortCircuit|Scope=Board|Allowed=0 4 | RuleKind=Clearance|RuleName=Clearance|Scope=Board|Minimum=7.87 5 | RuleKind=Width|RuleName=Width|Scope=Board|Minimum=4.92 6 | RuleKind=SolderMaskExpansion|RuleName=SolderMaskExpansion|Scope=Board|Minimum=4.00 7 | -------------------------------------------------------------------------------- /Project Outputs for DB10012_UniversalSlave/Gerber/DB10012_UniversalSlave.apr: -------------------------------------------------------------------------------- 1 | D10 RECTANGULAR 55.118 43.307 0.000 FLASH 0.000 2 | D11 RECTANGULAR 47.244 74.803 0.000 FLASH 90.000 3 | D12 RECTANGULAR 55.118 47.244 0.000 FLASH 180.000 4 | D14 RECTANGULAR 27.165 35.433 0.000 FLASH 90.000 5 | D15 RECTANGULAR 27.165 38.976 0.000 FLASH 90.000 6 | D16 RECTANGULAR 39.370 11.811 0.000 FLASH 270.000 7 | D17 RECTANGULAR 68.110 74.803 0.000 FLASH 90.000 8 | D18 RECTANGULAR 25.000 19.685 0.000 FLASH 0.000 9 | D19 RECTANGULAR 25.000 19.685 0.000 FLASH 270.000 10 | D21 RECTANGULAR 55.118 43.307 0.000 FLASH 90.000 11 | D22 RECTANGULAR 39.370 43.307 0.000 FLASH 270.000 12 | D23 RECTANGULAR 39.370 43.307 0.000 FLASH 180.000 13 | D25 RECTANGULAR 74.803 68.898 0.000 FLASH 0.000 14 | D26 RECTANGULAR 55.118 15.748 0.000 FLASH 0.000 15 | D27 RECTANGULAR 57.087 45.276 0.000 FLASH 0.000 16 | D28 RECTANGULAR 31.496 62.992 0.000 FLASH 270.000 17 | D29 RECTANGULAR 82.677 118.110 0.000 FLASH 270.000 18 | D30 RECTANGULAR 23.622 70.866 0.000 FLASH 90.000 19 | D32 RECTANGULAR 102.362 102.362 0.000 FLASH 0.000 20 | D33 RECTANGULAR 29.528 11.811 0.000 FLASH 0.000 21 | D34 RECTANGULAR 29.528 11.811 0.000 FLASH 270.000 22 | D35 RECTANGULAR 244.095 244.095 0.000 FLASH 90.000 23 | D44 RECTANGULAR 85.000 107.992 0.000 FLASH 0.000 24 | D45 RECTANGULAR 70.866 62.992 0.000 FLASH 180.000 25 | D46 RECTANGULAR 59.055 43.307 0.000 FLASH 90.000 26 | D47 ROUNDED 7.874 7.874 0.000 LINE 0.000 27 | D48 ROUNDED 11.811 11.811 0.000 LINE 0.000 28 | D49 ROUNDED 31.496 31.496 0.000 LINE 0.000 29 | D50 ROUNDED 9.842 9.842 0.000 LINE 0.000 30 | D51 ROUNDED 15.748 15.748 0.000 LINE 0.000 31 | D52 ROUNDED 23.622 23.622 0.000 LINE 0.000 32 | D53 ROUNDED 39.370 39.370 0.000 LINE 0.000 33 | D54 ROUNDED 21.654 21.654 0.000 LINE 0.000 34 | D55 ROUNDED 19.685 19.685 0.000 LINE 0.000 35 | D56 ROUNDED 5.905 5.905 0.000 LINE 0.000 36 | D57 ROUNDED 74.803 74.803 0.000 FLASH 0.000 37 | D58 ROUNDED 110.236 110.236 0.000 FLASH 0.000 38 | D59 ROUNDED 118.110 118.110 0.000 FLASH 0.000 39 | D60 ROUNDED 70.866 70.866 0.000 FLASH 0.000 40 | D61 ROUNDED 334.646 334.646 0.000 FLASH 0.000 41 | D62 ROUNDED 275.591 275.591 0.000 FLASH 0.000 42 | D63 ROUNDED 21.654 21.654 0.000 FLASH 0.000 43 | D64 ROUNDED 31.496 31.496 0.000 FLASH 0.000 44 | D65 ROUNDED 15.748 15.748 0.000 FLASH 0.000 45 | D66 ROUNDED 78.740 78.740 0.000 FLASH 0.000 46 | D67 ROUNDED 165.354 165.354 0.000 FLASH 0.000 47 | D68 RECTANGULAR 41.339 94.488 0.000 FLASH 180.000 48 | D69 RECTANGULAR 248.031 37.402 0.000 FLASH 180.000 49 | D70 RECTANGULAR 17.716 39.370 0.000 FLASH 270.000 50 | D71 RECTANGULAR 23.622 55.118 0.000 FLASH 90.000 51 | D72 RECTANGULAR 24.016 181.102 0.000 FLASH 270.000 52 | D73 RECTANGULAR 31.890 181.102 0.000 FLASH 270.000 53 | D74 RECTANGULAR 118.110 192.913 0.000 FLASH 270.000 54 | D75 RECTANGULAR 47.244 74.803 0.000 FLASH 180.000 55 | D76 RECTANGULAR 70.866 62.992 0.000 FLASH 270.000 56 | D77 ROUNDED 47.244 47.244 0.000 LINE 0.000 57 | D78 ROUNDED 10.000 10.000 0.000 LINE 0.000 58 | D79 ROUNDED 29.528 29.528 0.000 LINE 0.000 59 | D80 ROUNDED 3.937 3.937 0.000 LINE 0.000 60 | D81 RECTANGULAR 27.559 23.622 0.000 FLASH 0.000 61 | D82 RECTANGULAR 27.559 23.622 0.000 FLASH 0.000 62 | D83 RECTANGULAR 78.740 78.740 0.000 FLASH 0.000 63 | D84 RECTANGULAR 59.055 59.055 0.000 FLASH 0.000 64 | D85 RECTANGULAR 59.055 59.055 0.000 FLASH 0.000 65 | D86 RECTANGULAR 63.118 51.307 0.000 FLASH 0.000 66 | D87 RECTANGULAR 55.244 82.803 0.000 FLASH 90.000 67 | D88 RECTANGULAR 63.118 55.244 0.000 FLASH 180.000 68 | D90 RECTANGULAR 35.165 43.433 0.000 FLASH 90.000 69 | D91 RECTANGULAR 35.165 46.976 0.000 FLASH 90.000 70 | D92 RECTANGULAR 47.370 19.811 0.000 FLASH 270.000 71 | D93 RECTANGULAR 76.110 82.803 0.000 FLASH 90.000 72 | D94 RECTANGULAR 33.000 27.685 0.000 FLASH 0.000 73 | D95 RECTANGULAR 33.000 27.685 0.000 FLASH 270.000 74 | D97 RECTANGULAR 63.118 51.307 0.000 FLASH 90.000 75 | D98 RECTANGULAR 47.370 51.307 0.000 FLASH 270.000 76 | D99 RECTANGULAR 47.370 51.307 0.000 FLASH 180.000 77 | D101 RECTANGULAR 82.803 76.898 0.000 FLASH 0.000 78 | D102 RECTANGULAR 63.118 23.748 0.000 FLASH 0.000 79 | D103 RECTANGULAR 65.087 53.276 0.000 FLASH 0.000 80 | D104 RECTANGULAR 39.496 70.992 0.000 FLASH 270.000 81 | D105 RECTANGULAR 90.677 126.110 0.000 FLASH 270.000 82 | D106 RECTANGULAR 31.622 78.866 0.000 FLASH 90.000 83 | D108 RECTANGULAR 110.362 110.362 0.000 FLASH 0.000 84 | D109 RECTANGULAR 37.528 19.811 0.000 FLASH 0.000 85 | D110 RECTANGULAR 37.528 19.811 0.000 FLASH 270.000 86 | D111 RECTANGULAR 252.095 252.095 0.000 FLASH 90.000 87 | D120 RECTANGULAR 93.000 115.992 0.000 FLASH 0.000 88 | D121 RECTANGULAR 78.866 70.992 0.000 FLASH 180.000 89 | D122 RECTANGULAR 67.055 51.307 0.000 FLASH 90.000 90 | D123 ROUNDED 82.803 82.803 0.000 FLASH 0.000 91 | D124 ROUNDED 118.236 118.236 0.000 FLASH 0.000 92 | D125 ROUNDED 126.110 126.110 0.000 FLASH 0.000 93 | D126 ROUNDED 78.866 78.866 0.000 FLASH 0.000 94 | D127 ROUNDED 342.646 342.646 0.000 FLASH 0.000 95 | D128 ROUNDED 283.591 283.591 0.000 FLASH 0.000 96 | D129 RECTANGULAR 49.339 102.488 0.000 FLASH 180.000 97 | D130 RECTANGULAR 256.031 45.402 0.000 FLASH 180.000 98 | D131 RECTANGULAR 25.716 47.370 0.000 FLASH 270.000 99 | D132 RECTANGULAR 31.622 63.118 0.000 FLASH 90.000 100 | D133 RECTANGULAR 32.016 189.102 0.000 FLASH 270.000 101 | D134 RECTANGULAR 39.890 189.102 0.000 FLASH 270.000 102 | D135 RECTANGULAR 126.110 200.913 0.000 FLASH 270.000 103 | D136 RECTANGULAR 55.244 82.803 0.000 FLASH 180.000 104 | D137 RECTANGULAR 78.866 70.992 0.000 FLASH 270.000 105 | D138 ROUNDED 86.740 86.740 0.000 FLASH 0.000 106 | -------------------------------------------------------------------------------- /Project Outputs for DB10012_UniversalSlave/NC Drill/DB10012_UniversalSlave.DRR: -------------------------------------------------------------------------------- 1 | ---------------------------------------------------------------------------------------------------------------------------------- 2 | NCDrill File Report For: DB10012_UniversalSlave.PcbDoc 26-Mar-17 19:19:40 3 | ---------------------------------------------------------------------------------------------------------------------------------- 4 | 5 | Layer Pair : L1 to L6 6 | ASCII RoundHoles File : DB10012_UniversalSlave.TXT 7 | 8 | Tool Hole Size Hole Tolerance Hole Type Hole Count Plated Tool Travel 9 | ---------------------------------------------------------------------------------------------------------------------------------- 10 | T1 0.2mm (8mil) Round 20 PTH 29.64mm (1.17inch) 11 | T2 0.25mm (10mil) Round 305 PTH 708.97mm (27.91inch) 12 | T3 0.4mm (16mil) Round 10 PTH 96.08mm (3.78inch) 13 | T4 1mm (39mil) Round 26 PTH 119.38mm (4.70inch) 14 | T5 1.2mm (47mil) Round 1 PTH 0.00mm (0.00inch) 15 | T6 1.3mm (51mil) Round 4 PTH 29.15mm (1.15inch) 16 | T7 1.6mm (63mil) Round 2 PTH 5.08mm (0.20inch) 17 | T8 2.8mm (110mil) Round 4 PTH 34.90mm (1.37inch) 18 | T9 3.2mm (126mil) Round 2 PTH 37.00mm (1.46inch) 19 | ---------------------------------------------------------------------------------------------------------------------------------- 20 | Totals 374 21 | 22 | Total Processing Time (hh:mm:ss) : 00:00:00 23 | -------------------------------------------------------------------------------- /Project Outputs for DB10012_UniversalSlave/NC Drill/DB10012_UniversalSlave.LDP: -------------------------------------------------------------------------------- 1 | Layer Pairs Export File for PCB: C:\Projecten\DieBieSlave\Github\Hardware\DB10012_UniversalSlave.PcbDoc 2 | LayersSetName=Top_Bot_Thru_Holes|DrillFile=db10012_universalslave.txt|DrillLayers=gtl,g1,g2,g3,g4,gbl 3 | -------------------------------------------------------------------------------- /Project Outputs for DB10012_UniversalSlave/NC Drill/DB10012_UniversalSlave.TXT: -------------------------------------------------------------------------------- 1 | M48 2 | ;Layer_Color=9474304 3 | ;FILE_FORMAT=4:4 4 | METRIC,LZ 5 | ;TYPE=PLATED 6 | T1F00S00C0.2000 7 | T2F00S00C0.2500 8 | T3F00S00C0.4000 9 | T4F00S00C1.0000 10 | T5F00S00C1.2000 11 | T6F00S00C1.3000 12 | T7F00S00C1.6000 13 | T8F00S00C2.8000 14 | T9F00S00C3.2000 15 | % 16 | T01 17 | X00303Y-00028 18 | Y-00022 19 | Y-00014 20 | Y-00008 21 | Y-00002 22 | Y00005 23 | X003032Y00012 24 | Y00018 25 | X003082Y00022 26 | Y00008 27 | X00308Y-00018 28 | Y-00032 29 | X00355Y-00051 30 | Y00052 31 | X00349 32 | X00343 33 | X00337 34 | X00331 35 | X00325 36 | X00319Y0005 37 | T02 38 | X0048Y-00184 39 | Y-00177 40 | Y-0017 41 | Y-00123 42 | X0049 43 | X00492Y-00095 44 | Y-00087 45 | X0047Y-00084 46 | X00463 47 | X00456 48 | X00449Y-00082 49 | Y-00075 50 | Y-00068 51 | Y-00089 52 | Y-00117 53 | X00442 54 | Y-00124 55 | X00449 56 | X00421Y-00089 57 | Y-00082 58 | Y-00075 59 | Y-00068 60 | X00418Y-00061 61 | X00411Y-00087 62 | X004 63 | Y-00076 64 | X00397Y-00113 65 | Y-0012 66 | Y-00127 67 | Y-00134 68 | Y-00141 69 | X00388Y-00157 70 | X00407Y-0017 71 | Y-00177 72 | Y-00184 73 | X00315Y-0019 74 | X00292 75 | X00267Y-00191 76 | X00272Y-00154 77 | X00281Y-0016 78 | X0029 79 | X00299 80 | X00307 81 | X00315Y-00159 82 | X00333Y-00149 83 | X00322Y-00124 84 | X00315 85 | X00307 86 | X00299 87 | X00272Y-00127 88 | Y-00137 89 | Y-00117 90 | Y-00107 91 | Y-00097 92 | Y-00087 93 | Y-00077 94 | Y-00067 95 | X00298Y-0007 96 | Y-00081 97 | Y-00092 98 | X00323Y-00106 99 | X00332Y-0011 100 | X00343Y-00112 101 | Y-00103 102 | X00347Y-00077 103 | X00358 104 | Y-00088 105 | X00369Y-00116 106 | Y-00123 107 | X0036Y-00131 108 | X00291Y-00149 109 | X00214Y-00147 110 | X00195 111 | Y-00173 112 | X00217Y-00192 113 | X00214Y-00108 114 | X0021Y-00099 115 | X00201 116 | X00188 117 | X00182Y-00104 118 | X00176Y-00099 119 | X00195Y-00106 120 | X00208Y-00087 121 | X00215Y-00091 122 | X00171Y-00078 123 | X00175Y-0007 124 | X00149Y-00093 125 | Y-00103 126 | X00146Y-00115 127 | X0016Y-00117 128 | X00164Y-00153 129 | X00155Y-00162 130 | X00146Y-00153 131 | X00127Y-00148 132 | Y-00128 133 | X00107 134 | X00088Y-00129 135 | X00087Y-00148 136 | X00094Y-00159 137 | X00106Y-00168 138 | X00107Y-00148 139 | X00127Y-00176 140 | X00076Y-00176 141 | X0006Y-00176 142 | Y-00158 143 | Y-0014 144 | X0005Y-00149 145 | X00049Y-0013 146 | X00053Y-00124 147 | X0007Y-00123 148 | Y-00115 149 | Y-00103 150 | X00061Y-00097 151 | X0006Y-00057 152 | X00048Y-00068 153 | X0009Y-00083 154 | X00097Y-0009 155 | X00093Y-00114 156 | X00115343Y-00072343 157 | X00122Y-00067 158 | X00129Y-00061 159 | X00029Y-00124 160 | X00087Y-00031 161 | X0010031Y-00026 162 | X00143393 163 | X00158Y-00028 164 | X00167Y-00036 165 | X00175Y-00043 166 | X00182Y-00048 167 | X00189Y-00043 168 | X00208Y-00033 169 | X00214Y-00027 170 | X00218Y-00014 171 | X00226Y-00015 172 | X00235Y-00009 173 | X00232Y00003 174 | X00241 175 | X00258Y00002 176 | Y00013 177 | X00251Y-00005 178 | X00258Y-00012 179 | X0027Y-00005 180 | X00278 181 | X00268Y-00031 182 | X00292Y-0003 183 | X00307Y-00049 184 | X00339Y-00052 185 | X00347Y-00053 186 | X00345Y-00028 187 | X00332 188 | Y-00015 189 | X00345 190 | Y0 191 | X00332 192 | Y00015 193 | Y00028 194 | X00345 195 | Y00015 196 | X0036 197 | Y00028 198 | X00375 199 | X00388 200 | Y00015 201 | X00375 202 | Y0 203 | X00388 204 | Y-00015 205 | Y-00028 206 | X00375 207 | Y-00015 208 | X0036 209 | Y-00028 210 | Y0 211 | X00363Y00053 212 | X00371 213 | X00379 214 | X00387 215 | X00395 216 | X00409Y00047 217 | X004Y00088 218 | X00399Y00116 219 | X00348Y00117647 220 | X00329Y00113 221 | X00319Y00132 222 | X00306Y00137 223 | X00298Y00135 224 | X00272 225 | Y00145 226 | Y00154 227 | Y00125 228 | Y00115 229 | Y00105 230 | Y00095 231 | Y00085 232 | X00273Y00063 233 | X00279Y00052 234 | X00287 235 | X00279Y00042 236 | X00306Y00036 237 | X00298Y00077 238 | Y00105 239 | X00326Y00086 240 | X00337 241 | X00349 242 | Y00078 243 | X00211Y00089 244 | X00196Y00083 245 | X00188Y00086 246 | Y00094 247 | Y00102 248 | X00198Y00107 249 | Y0012 250 | Y00129 251 | Y00139 252 | Y00163 253 | X0016 254 | X00131Y0017 255 | X00109 256 | X00113Y00148 257 | Y00122 258 | X00131Y00125 259 | Y00107 260 | Y00086 261 | X00126Y00069 262 | X00118 263 | X00106Y00062 264 | X00109Y00037 265 | X00091Y00031 266 | X00148Y00033 267 | X00155Y0004 268 | X00163Y00045 269 | X0017Y00051 270 | X00177Y00045 271 | X00186 272 | X00183Y00036 273 | X00188Y00057 274 | X00194Y00051 275 | X00186Y00072 276 | X0018Y00085 277 | X00172 278 | X00164Y00086 279 | X00167Y00078 280 | X0016Y00107 281 | Y00125 282 | X00184 283 | X00136Y00058 284 | X00135Y00011 285 | X00129Y00005 286 | X00151Y0 287 | Y00014 288 | X00172Y-00007 289 | X00214Y-00006 290 | X00226Y00009 291 | X00225Y00017 292 | X00201Y00022 293 | X00247Y-00036 294 | X00243Y-00056 295 | X00171Y-00055 296 | X00165Y-0005 297 | X00382Y-00053 298 | X0039 299 | X0041Y-00044 300 | X00049Y00063 301 | Y0009 302 | X00053Y00096 303 | X00057Y00108 304 | Y00116 305 | Y0015 306 | Y00169 307 | X00083 308 | Y0015 309 | X00029Y00096 310 | X00464 311 | Y00084 312 | X00463Y00072 313 | X0047 314 | X0046Y00055 315 | Y00048 316 | Y00041 317 | X00438Y00024 318 | X00432Y00014 319 | X00438Y00007 320 | Y-00015 321 | X0043Y-00011 322 | X00437Y-00026 323 | X00421Y-00032 324 | X00413Y-00036 325 | Y-00028 326 | Y-00019647 327 | Y-00003 328 | Y00015 329 | Y00038 330 | X00419Y-00044 331 | X00418Y-00054 332 | X00468Y-00047 333 | Y-0004 334 | Y-00033 335 | X00492Y-0002 336 | Y0 337 | Y0002 338 | Y00096 339 | X00464Y00109 340 | Y00134 341 | Y00146 342 | X0048Y00195 343 | T03 344 | X00474Y-00203 345 | Y-00195 346 | X00075Y-00089 347 | Y-00079 348 | X00095Y00074 349 | X00105 350 | X001Y0011 351 | X0009 352 | X00396Y00155 353 | Y00165 354 | T04 355 | X004318Y-002032 356 | X004572 357 | X004064 358 | X003048 359 | X002794 360 | X00254 361 | X002286 362 | X002032 363 | X001778 364 | X001524 365 | X00127 366 | X001016 367 | X000762 368 | Y002032 369 | X001016 370 | X00127 371 | X001524 372 | X001778 373 | X002032 374 | X002286 375 | X00254 376 | X002794 377 | X003048 378 | X004064 379 | X004318 380 | X004572 381 | T05 382 | X0005Y0 383 | T06 384 | X000145Y-0014575 385 | Y-0007425 386 | Y0007425 387 | Y0014575 388 | T07 389 | X0042Y001042 390 | Y00155 391 | T08 392 | X000361Y-001755 393 | Y-000485 394 | Y000465 395 | Y001735 396 | T09 397 | X00355Y-00185 398 | Y00185 399 | M30 400 | -------------------------------------------------------------------------------- /Project Outputs for DB10012_UniversalSlave/Status Report.Txt: -------------------------------------------------------------------------------- 1 | Output: Bill of Materials 2 | Type : BOM 3 | From : Variant [[No Variations]] of Project [DB10012_UniversalSlave.PrjPcb] 4 | 5 | 6 | Files Generated : 0 7 | Documents Printed : 0 8 | 9 | Finished Output Generation At 17:40:14 On 17-8-2017 10 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | DieBieSlave - Hardware 2 | === 3 | # Introduction 4 | During my work at the University of Twente at the faculty of Biomechanical Engineering I gained interest in EtherCAT and its applications. I learned that many of the projects at this faculty (and other faculties in the field of robotics) desire a custom coupling between a unique sensor and EtherCAT, a coupling that is not always easy to realise with the existing slaves. During my work I helped designing an EtherCAT slave based on the ET1100, this ASIC comes in a BGA package, needs two external ethernet phy's and lots of passive components. The ET1100 is more than capable of coupling all desired applications to EtherCAT however in some applications it's to cumbersome to implement knowing that the LAN9252 can do almost the same and has the ASIC + 2 Phy's intergrated in one QFN package. 5 | 6 | Knowing about the existence of the LAN9252 and hearing the need for a "sensor <--> EtherCAT" interface motivated me to design the project presented here; the DieBieSlave, a universal EtherCAT slave that is able to couple 'any' I2C, SPI, UART, analog, digital or CAN based sensor to EtherCAT. The idea is that the DieBieSlave is universal for any sensor application and has all the 'complex' EtherCAT, power supply and microcontroller hardware on one PCB whilst the only thing that differs per sensor implementation is a cheap and simple daughter board. Every sensor of course needs its unique code to initialise and sample the sensor. 7 | 8 | The DieBieSlave looks like this: 9 | ![alt text](Binaries/Images/DieBieSlaveV0_2TOP0.png "DieBieSlave V0.2 TopView") 10 | ![alt text](Binaries/Images/DieBieSlaveV0_2BOT0.png "DieBieSlave V0.2 TopView") 11 | ![alt text](Binaries/Images/DieBieSlaveV0_2TOP1.png "DieBieSlave V0.2 TopView") 12 | ![alt text](Binaries/Images/DieBieSlaveV0_2BOT1.png "DieBieSlave V0.2 TopView") 13 | 14 | On the topside you can see: 15 | * DC (10-30V) power input jack. 16 | * EtherCAT input/output connectors 17 | * EtherCAT, power and software status LEDs 18 | * BOOT0 HW serial bootloader enable button 19 | 20 | On the bottom: 21 | * Micro USB connector that is connected to the HW serial UART1 for general serial communication and HW Bootloader 22 | * Micro USB connector that is connected to the HW USB peripheral of the STM32F303RET6 23 | * 7Pin picoblade debug connector that is connected to the SWD and UART2 peripheral of the STM32F303RET6. 24 | 25 | Both sides: 26 | The holes on both edges of the DieBieSlave interface to all exposed (I2C, SPI, UART, analog, digital and CAN) peripherals on the STM32F303RET6 and should be connected to the desired target sensor. Standard 2.54mm headers can be soldered to both sides of the DieBieSlave allowing the use of standard 2.54mm male/female headers to connect standaard prototype board to either the small area on top or the full area on the bottom (realising either a compact or extensive interface). The board connected to the pin on te side that interfaces to a sensor is called a daughter board. 27 | 28 | More details can be found in the schematic [here](/Project%20Outputs%20for%20DB10012_UniversalSlave/DB10012_DieBieSlave.PDF). 29 | 30 | ### Latest hardware release (production files) 31 | 32 | * V0.1 Initial hardware 33 | This version has the following bug: 34 | * The INT pint of the LAN9252 was incorrectly connected to PC5 (cannot be muxed to INT input when I2C INT input also used) but should have been connected to PB0 (allows INT functionality at all times). This bug is fixxed in V0.2. 35 | 36 | * V0.2 Fixed version of V0.1 with added functionality (current version) 37 | This version has some added functionality: 38 | * The DC-DC power input 10-30V is also routed to the header pins, now the DieBieSlave can be powered by the daughter board if desired. 39 | 40 | Production data for most recent version can be found [here](Project%20Outputs%20for%20DB10012_UniversalSlave). And the schematic in PDF [here](DB10012_UniversalSlave.PDF). 41 | 42 | ### Features 43 | The DieBieSlave is designed in such a way that it is easy to manufacture and has a relatively small footprint (by a professional). The implementation of a daughter board is completely up to the user. The DieBieSlave PCB has the following features: 44 | 45 | * Power LED on both sides of the PCB. 46 | * EtherCAT RUN LED on both sides of the PCB. 47 | * Sofware status LED on both sides of the PCB connected to pin PB15. 48 | * DC input range of 10-30V (possibly broader but untested) allowing simple implementation in 12V and 24V systems. 49 | * Onboard +5V and +3V3 SMPS power supplies that are exposed to the daughter board header. 50 | * Large powerful microcontroller with DSP and FPU STM32F303RET6 (cortex-M4 512Kbytes flash and 64Kbyte SRAM). 51 | * RJ45 EtherCAT in and output connectors. 52 | * LAN9252 QFN based EtherCAT ASIC. 53 | 54 | ### Electrical specifications 55 | * DC input power range 10-30V reverse polarisation protected 56 | * The +5V power supply can deliver up to 400mA 57 | * The +3V3 power supply can deliver up to 200mA 58 | 59 | # Realisation 60 | As stated in the introduction the DieBieSlave is a universal EtherCAT slave implementation that will always need a daughter board supplying the DieBieSlave with information that should be put on the BUS. An example DieBieSlave and daughter board implementation is given here: 61 | ![alt text](Binaries/Images/DieBieSlave_V0_2_07.jpg "Daughter board and DieBieSlave separated") 62 | ![alt text](Binaries/Images/DieBieSlave_V0_2_08.jpg "Daughter board and DieBieSlave connected") 63 | As seen the daughter board can be anything from standard perforated prototype board up to a custom designed board carrying the sensor. 64 | 65 | #### LAN9252 vs ET1100 66 | Altrough the LAN9252 seems a perfect replacement for the ET1100 with its two embedded phy's, the QFN package and its low amount of external components it has a big drawback on the software side. Whilst the ET1100 has a transparant interface to its internal RAM over SPI the LAN9252 has not and needs some form of adres translation that prevents large chunks of (PDO) data to be written in a single block, this prevents the use of DMA syncing between uC and LAN9252. The only alternative is rather software labour intensive (the adres translation needs to be done in software) compared to its DMA alternative. This is no deal breaker for sensor acquisition (sensors need very little processor power) but will be a drawback in realtime systems like motor controllers. 67 | 68 | #### Used technology 69 | The IC's used with their corresponding functionality: 70 | * STM32F303RET6 -> Main microcontroller. 71 | * LAN9252/ML -> EtherCAT slave controller with build-in phy's. 72 | * M24C16-WMN6P -> EEPROM for LAN9252 73 | * LM25011MY/NOPB -> DC power input to +5V converter. 74 | * LMR10510XMFE/NOPB -> +5V to +3V3 converter. 75 | * 74980111211 -> RJ45 connectors with integrated magnetics. 76 | * CP2104-F03-GM -> USB serial converter for bootloader and general serial communication. 77 | 78 | ![alt text](Binaries/Images/DieBieSlave_V0_2_06.jpg "DieBieSlave V0.2 Dual PCB picture") 79 | ![alt text](Binaries/Images/DieBieSlave_V0_2_02.jpg "DieBieSlave V0.2 Bottom overview") 80 | ![alt text](Binaries/Images/DieBieSlave_V0_2_03.jpg "DieBieSlave V0.2 Top overview") 81 | ![alt text](Binaries/Images/DieBieSlave_V0_2_04.jpg "DieBieSlave V0.2 Bottom component overview") 82 | ![alt text](Binaries/Images/DieBieSlave_V0_2_05.jpg "DieBieSlave V0.2 Bottom component overview") 83 | 84 | # Example usage 85 | #### MPU9250/NunChuck to EtherCAT 86 | Interfacing a Nun-chuck controller and MPU9250 sensors with EtherCAT: 87 | 88 | [![VIDEO01](http://img.youtube.com/vi/i7gFqLQb0EA/0.jpg)](http://www.youtube.com/watch?v=i7gFqLQb0EA) 89 | 90 | #### More pictures 91 | ![alt text](Binaries/Images/DieBieSlave_V0_2_09.jpg "NunChuck slave and dual MPU9250 slave") 92 | ![alt text](Binaries/Images/DieBieSlave_V0_2_10.jpg "NunChuck slave and dual MPU9250 slave") 93 | ![alt text](Binaries/Images/DieBieSlave_V0_2_11.jpg "View of a Shield example") 94 | ![alt text](Binaries/Images/DieBieSlave_V0_2TwinCAT_01.png "TwinCAT screenshot of both slave examples connected") 95 | ![alt text](Binaries/Images/DieBieSlave_V0_2SlaveEditor_01.png "Slave editor view of the SOES configuration") 96 | --------------------------------------------------------------------------------