├── .gitattributes ├── Design-Files ├── dev-board-BOM.csv ├── dev-board.dch ├── dev-board.dip ├── module-BOM.csv ├── other-formats │ ├── soc-module.asc │ ├── soc-module_eagle.brd │ ├── soc-module_eagle.sch │ ├── soc-module_layout.asc │ ├── soc-module_orcad.min │ ├── soc-module_pads.asc │ ├── soc-module_pcad.pcb │ ├── soc-module_pcad.sch │ └── soc.pcb ├── soc_module_R1-assembly.dip ├── soc_module_R1.dch └── soc_module_R1.dip ├── Exports ├── Devboard-assembly.pdf ├── Devboard-schematic.pdf ├── gerbers-devboard │ ├── BoardOutline.gbr │ ├── Bottom.gbr │ ├── BottomMask.gbr │ ├── BottomPaste.gbr │ ├── BottomSilk.gbr │ ├── Ground.gbr │ ├── Power.gbr │ ├── Through.drl │ ├── Top.gbr │ ├── TopMask.gbr │ ├── TopPaste.gbr │ ├── TopSilk.gbr │ └── components.csv ├── gerbers-r1 │ ├── BoardOutline.gbr │ ├── Bottom.gbr │ ├── BottomMask.gbr │ ├── BottomPaste.gbr │ ├── BottomSilk.gbr │ ├── Ground-L2.gbr │ ├── Ground-L2_Bottom.drl │ ├── Power-L3.gbr │ ├── Power-L3_Bottom.drl │ ├── Through.drl │ ├── Top.gbr │ ├── TopMask.gbr │ ├── TopPaste.gbr │ ├── TopSilk.gbr │ ├── Top_Ground-L2.drl │ ├── Top_Power-L3.drl │ └── components.csv ├── module-assembly.pdf └── module-schematic.pdf ├── LICENSE ├── Library-Files ├── HTLoRa.eli ├── HTLoRa.lib ├── htlora-pattern.asc ├── htlora-pattern.lbr ├── htlora-schematic.asc └── htlora-schematic.lbr └── README.md /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pdf filter=lfs diff=lfs merge=lfs -text 2 | *.dch filter=lfs diff=lfs merge=lfs -text 3 | *.dip filter=lfs diff=lfs merge=lfs -text 4 | *.eli filter=lfs diff=lfs merge=lfs -text 5 | *.lib filter=lfs diff=lfs merge=lfs -text 6 | *.asc filter=lfs diff=lfs merge=lfs -text 7 | *.br filter=lfs diff=lfs merge=lfs -text 8 | *.brd filter=lfs diff=lfs merge=lfs -text 9 | *.sch filter=lfs diff=lfs merge=lfs -text 10 | *.min filter=lfs diff=lfs merge=lfs -text 11 | *.pcb filter=lfs diff=lfs merge=lfs -text 12 | -------------------------------------------------------------------------------- /Design-Files/dev-board-BOM.csv: -------------------------------------------------------------------------------- 1 | "#","RefDes","Value","Name","Part","Quantity" 2 | "1","B1","BLM15EG121SZ1D","IND_0402","BLM15EG121SZ1D","1" 3 | "2","B2","BLM15HG601BH1D","IND_0402","BLM15HG601BH1D","1" 4 | "3","B3","BLM15EG121SZ1D","IND_0402","BLM15EG121SZ1D","1" 5 | "4","B4","BLM15HG601BH1D","IND_0402","BLM15HG601BH1D","1" 6 | "5","B5","BLM15HG601BH1D","IND_0402","BLM15HG601BH1D","1" 7 | "6","C1","10u","CAP_0603","GRM188R61E106KA73D","1" 8 | "7","C2","10u","CAP_0603","GRM188R61E106KA73D","1" 9 | "8","C3","1u","CAP_0402","GRM155R61E105MA12D","1" 10 | "9","C4","22u","CAP_0603","C1608X5R1A226M080AC","1" 11 | "10","C5","22u","CAP_0603","C1608X5R1A226M080AC","1" 12 | "11","C6","1u","CAP_0402","GRM155R61E105MA12D","1" 13 | "12","C7","1u","CAP_0402","GRM155R61E105MA12D","1" 14 | "13","C8","1u","CAP_0402","GRM155R61E105MA12D","1" 15 | "14","C9","10u","CAP_0603","GRM188R61E106KA73D","1" 16 | "15","C10","22u","CAP_0603","C1608X5R1A226M080AC","1" 17 | "16","C11","22u","CAP_0603","C1608X5R1A226M080AC","1" 18 | "17","C12","1u","CAP_0402","GRM155R61E105MA12D","1" 19 | "18","C13","1u","CAP_0402","GRM155R61E105MA12D","1" 20 | "19","C14","1u","CAP_0402","GRM155R61E105MA12D","1" 21 | "20","C15","1u","CAP_0402","GRM155R61E105MA12D","1" 22 | "21","C16","1u","CAP_0402","GRM155R61E105MA12D","1" 23 | "22","C17","10n","CAP_0402","GRM155R71H103KA88D","1" 24 | "23","C18","47p","CAP_0402","GCM1555C1H470JA16D","1" 25 | "24","C19","47p","CAP_0402","GCM1555C1H470JA16D","1" 26 | "25","C20","100n","CAP_0402","GCM155R71C104KA55D","1" 27 | "26","C21","10u","CAP_0603","GRM188R61E106KA73D","1" 28 | "27","C22","47p","CAP_0402","GCM1555C1H470JA16D","1" 29 | "28","C101","No Stuff","CAP_0402","No Stuff","1" 30 | "29","C102","No Stuff","CAP_0402","No Stuff","1" 31 | "30","CN1","","SMA_EDGE","Part 1","1" 32 | "31","D1","Red","LS Q976-NR-1","Part 1","1" 33 | "32","D2","Green","LT Q39G-Q1OO-25-1","Part 1","1" 34 | "33","D3","Blue","LB Q39E-N1OO-35-1","Part 1","1" 35 | "34","D4","White","LW Q38G-Q1OO-3K6L-1","Part 1","1" 36 | "35","D5","Yellow","APG1608CGKC-T","Part 1","1" 37 | "36","D6","","DIODE_0402","Part 1","1" 38 | "37","D7","","DIODE_0402","Part 1","1" 39 | "38","D8","Orange","LO Q976-PS-25-0-20-R18","Part 1","1" 40 | "39","D9","Yel-Green","LG Q396-PS-35","Part 1","1" 41 | "40","J1","","ARDUINO ZERO","Part 1","1" 42 | "41","J2","","644456-6","Part 1","1" 43 | "42","J3","","FTS-105-01-L-D","Part 1","1" 44 | "43","J4","","644456-8","Part 1","1" 45 | "44","J5","","ZX62D-B-5PA8","ZX62D-B-5PA8(30)","1" 46 | "45","J6","","M02JST-PTH-2","Part 1","1" 47 | "46","J7","","644456-3","Part 1","1" 48 | "47","J8","","644456-3","Part 1","1" 49 | "48","J9","","644456-3","Part 1","1" 50 | "49","L1","15u","IND_0805","Part 1","1" 51 | "50","L2","2.2u","IND_0603","Part 1","1" 52 | "51","L3","2.2u","IND_0603","Part 1","1" 53 | "52","L101","","IND_0402","Part 1","1" 54 | "53","R1","330","RES_0402","Part 1","1" 55 | "54","R2","330","RES_0402","Part 1","1" 56 | "55","R3","180","RES_0402","Part 1","1" 57 | "56","R4","330","RES_0402","Part 1","1" 58 | "57","R5","620","RES_0402","Part 1","1" 59 | "58","R6","9.09k","RES_0201","Part 1","1" 60 | "59","R10","1M","RES_0201","Part 1","1" 61 | "60","R11","27","RES_0201","Part 1","1" 62 | "61","R12","27","RES_0201","Part 1","1" 63 | "62","R13","27","RES_0201","Part 1","1" 64 | "63","R14","10k","RES_0201","Part 1","1" 65 | "64","R15","10k","RES_0201","Part 1","1" 66 | "65","R16","240","RES_0402","Part 1","1" 67 | "66","R17","240","RES_0402","Part 1","1" 68 | "67","R18","100k","RES_0201","Part 1","1" 69 | "68","R7A","No Stuff","RES_0402","No Stuff","1" 70 | "69","R7B","No Stuff","RES_0402","No Stuff","1" 71 | "70","R8A","No Stuff","RES_0402","No Stuff","1" 72 | "71","R8B","No Stuff","RES_0402","No Stuff","1" 73 | "72","R9A","No Stuff","RES_0402","No Stuff","1" 74 | "73","R9B","No Stuff","RES_0402","No Stuff","1" 75 | "74","S1","","B3F-1000","Part 1","1" 76 | "75","S2","","B3F-3102","Part 1","1" 77 | "76","TP1","","TESTPOINT","Part 1","1" 78 | "77","TP2","","TESTPOINT","Part 1","1" 79 | "78","U1","","HTLoRa-Module","Part 1","1" 80 | "79","U2","","TPS62743","TPS62743YFPR","1" 81 | "80","U3","","TPS62743","TPS62743YFPR","1" 82 | "81","U4","","FT230XS","FT230XS-R","1" 83 | "82","U5","TCK108AG","TCK106/7/8AG","TCK108AG,LF","1" 84 | "83","U6","","FPF1320UCX","Part 1","1" 85 | "84","U7","","STBC08","STBC08PMR","1" 86 | "","","","","","84" 87 | -------------------------------------------------------------------------------- /Design-Files/dev-board.dch: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5dedd02c43ba87b99b99b62bab0181a5f6cfa114d9f8d80ffa9a7c12b0fd5b47 3 | size 493835 4 | -------------------------------------------------------------------------------- /Design-Files/dev-board.dip: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7ffa0fa1e410063c0dc744cf7a456796d947e7af1f1248a1d346c4f778b78947 3 | size 1111800 4 | -------------------------------------------------------------------------------- /Design-Files/module-BOM.csv: -------------------------------------------------------------------------------- 1 | "#","RefDes","Value","Name","Part","Quantity" 2 | "1","C1","10n","CAP_0201","GRM033R71E103KE14D","1" 3 | "2","C2","100n","CAP_0201","GRM033R61A104ME15D","1" 4 | "3","C3","100n","CAP_0201","GRM033R61A104ME15D","1" 5 | "4","C4","10n","CAP_0402","GRM033R71E103KE14D","1" 6 | "5","C5","100n","CAP_0201","GRM033R61A104ME15D","1" 7 | "6","C6","100n","CAP_0201","GRM033R61A104ME15D","1" 8 | "7","C7","33p","CAP_0201","GRM0335C1H330JA01D","1" 9 | "8","C8","100n","CAP_0201","GRM033R61A104ME15D","1" 10 | "9","C9","33p","CAP_0201","GRM0335C1H330JA01D","1" 11 | "10","C10","33p","CAP_0201","GRM0335C1H330JA01D","1" 12 | "11","C11","33p","CAP_0201","GRM0335C1H330JA01D","1" 13 | "12","C12","4.7p","CAP_0201","GRM0335C1H4R7CA01D","1" 14 | "13","C13","4.7p","CAP_0201","GRM0335C1H4R7CA01D","1" 15 | "14","C14","100n","CAP_0201","GRM033R61A104ME15D","1" 16 | "15","C15","1n","CAP_0201","GRM0335C1E102FA01D","1" 17 | "16","C16","2.2u","CAP_0402","Part 1","1" 18 | "17","C17","1.0u","CAP_0201","GRM033R60J105MEA2D","1" 19 | "18","C18","47n","CAP_0201","GRM033R61C473KE84D","1" 20 | "19","C19","68p","CAP_0201","GRM0335C1H680JA01D","1" 21 | "20","C20","47n","CAP_0201","GRM033R61C473KE84D","1" 22 | "21","C21","68p","CAP_0201","GRM0335C1H680JA01D","1" 23 | "22","C22","1.8p","CAP_0201","GJM0335C1H1R8BB01D?","1" 24 | "23","C23","2.4p","CAP_0402","GJM1555C1H2R4BB01D","1" 25 | "24","C24","No Stuff","CAP_0201","Part 1","1" 26 | "25","C25","3.0p","CAP_0201","GJM0335C1H3R0BB01D","1" 27 | "26","C26","5.6p","CAP_0201","GJM0335C1H5R6CB01D","1" 28 | "27","C27","39p","CAP_0201","GJM1555C1H390JB01D","1" 29 | "28","C28","1.8p","CAP_0201","GJM0335C1H1R8BB01D","1" 30 | "29","C29","3.0p","CAP_0201","GJM0335C1H3R0BB01D","1" 31 | "30","C30","5.6p","CAP_0201","GJM0335C1H5R6CB01D","1" 32 | "31","C31","39p","CAP_0201","GJM1555C1H390JB01D","1" 33 | "32","C32","1.8p","CAP_0201","GJM0335C1H1R8BB01D","1" 34 | "33","F3","","HTLoRa-Module","Part 1","1" 35 | "34","L1","15n","IND_0402","LQW15AN15NH00D","1" 36 | "35","L2","47n","IND_0402","Part 1","1" 37 | "36","L3","2.5n","IND_0201","LQP03HQ2N5C02D","1" 38 | "37","L4","4.7n","IND_0201","LQP03HQ4N7J02D","1" 39 | "38","L5","47n","IND_0402","Part 1","1" 40 | "39","L6","2.5n","IND_0201","LQP03HQ2N5C02D","1" 41 | "40","L7","4.7n","IND_0201","LQP03HQ4N7J02D","1" 42 | "41","R1","100k","RES_0201","Part 1","1" 43 | "42","R2","100k","RES_0201","Part 1","1" 44 | "43","U1","","STM32WLE5Jx","Part 1","1" 45 | "44","U2","","SKY13373-460LF","Part 1","1" 46 | "45","U3","","LP5907 XSON-4","Part 1","1" 47 | "46","X1","32.768k","12SMXA","Part 1","1" 48 | "47","X2a","32M","SMD4-2.0x1.6","Part 1","1" 49 | "48","X2b","32 MHz","TY Type (TCXO)","TXKTPCSANF-32.000000","1" 50 | "","","","","","48" 51 | -------------------------------------------------------------------------------- /Design-Files/other-formats/soc-module.asc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:03ce11bc99d09fc2a7229c3079d82bacf5ac21cb44ccde53af0481a7d6fa2cf6 3 | size 3862824 4 | -------------------------------------------------------------------------------- /Design-Files/other-formats/soc-module_eagle.brd: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d61702bce4bf537dfcf32609aec180b919f6bfde3666bd3828d0eb460cb94271 3 | size 163440 4 | -------------------------------------------------------------------------------- /Design-Files/other-formats/soc-module_eagle.sch: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9117f5061d0667dbd8d4d5f0c0686834973947f8e8e386d2ccaaeae95c13971d 3 | size 233410 4 | -------------------------------------------------------------------------------- /Design-Files/other-formats/soc-module_layout.asc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8cf5b14129c6110f0ba884fe621a983c867473f3e900a606f0bb4e7f70149857 3 | size 4521041 4 | -------------------------------------------------------------------------------- /Design-Files/other-formats/soc-module_orcad.min: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c64a7ddef85f3bc5c86fcf354fdc8321e68dd533d40f5da8d57b1d56059d3208 3 | size 236772 4 | -------------------------------------------------------------------------------- /Design-Files/other-formats/soc-module_pads.asc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:554cf8ec1ab5ef9497135c5606d69f1911f4435659ce34bcc774470b32e2ea68 3 | size 131288 4 | -------------------------------------------------------------------------------- /Design-Files/other-formats/soc-module_pcad.pcb: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d0d09bd7fc825882386287c3a2a3ba41a4cb3e2b8fad953b8beae92e78399307 3 | size 323094 4 | -------------------------------------------------------------------------------- /Design-Files/other-formats/soc-module_pcad.sch: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b158c1894e6bbb1d89e00835d95d9ae73c862ab4dca1e2b2d61ef5954deeca61 3 | size 507825 4 | -------------------------------------------------------------------------------- /Design-Files/other-formats/soc.pcb: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d0d09bd7fc825882386287c3a2a3ba41a4cb3e2b8fad953b8beae92e78399307 3 | size 323094 4 | -------------------------------------------------------------------------------- /Design-Files/soc_module_R1-assembly.dip: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:58f671953e8eb5f828fd31cd0d98ae6593256e3f3f6194c36f50b4b07c9bfc28 3 | size 459873 4 | -------------------------------------------------------------------------------- /Design-Files/soc_module_R1.dch: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:637bfa470600599da19c26e021e579972d89a0114efdcb31c00def52161c9b13 3 | size 502259 4 | -------------------------------------------------------------------------------- /Design-Files/soc_module_R1.dip: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:38419bb026d7a8cba5e16aa2d35617d4c6aedbf6e7e2c623cdf5a8d412218e09 3 | size 459873 4 | -------------------------------------------------------------------------------- /Exports/Devboard-assembly.pdf: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d96fb09f0639e5ad5718d71a673a33ac71280835b16abaa9b1b2abbef36ec267 3 | size 552781 4 | -------------------------------------------------------------------------------- /Exports/Devboard-schematic.pdf: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6235e89d6864213a49654c8285bcce75258518f44d659d155bb1395984011ca2 3 | size 1299278 4 | -------------------------------------------------------------------------------- /Exports/gerbers-devboard/BoardOutline.gbr: -------------------------------------------------------------------------------- 1 | G04 DipTrace 3.3.1.0* 2 | G04 BoardOutline.gbr* 3 | %MOMM*% 4 | G04 #@! TF.FileFunction,Profile* 5 | G04 #@! TF.Part,Single* 6 | %ADD11C,0.14*% 7 | %FSLAX35Y35*% 8 | G04* 9 | G71* 10 | G90* 11 | G75* 12 | G01* 13 | G04 BoardOutline* 14 | %LPD*% 15 | X200000Y0D2* 16 | D11* 17 | G02X0Y200000I5000J205000D01* 18 | G01* 19 | Y5140000D1* 20 | G02X200000Y5340000I205000J-5000D01* 21 | G01* 22 | X6650000D1* 23 | G02X6850000Y5140000I-5000J-205000D01* 24 | G01* 25 | Y200000D1* 26 | G02X6650000Y0I-205000J5000D01* 27 | G01* 28 | X200000D1* 29 | M02* 30 | -------------------------------------------------------------------------------- /Exports/gerbers-devboard/BottomMask.gbr: -------------------------------------------------------------------------------- 1 | G04 DipTrace 3.3.1.0* 2 | G04 BottomMask.gbr* 3 | %MOMM*% 4 | G04 #@! TF.FileFunction,Soldermask,Bot* 5 | G04 #@! TF.Part,Single* 6 | %ADD23R,4.064X1.524*% 7 | %ADD29R,1.7X1.7*% 8 | %ADD35O,1.35X1.15*% 9 | %ADD37R,2.0X2.1*% 10 | %ADD45C,1.4478*% 11 | %ADD67C,3.175*% 12 | %ADD76C,2.0*% 13 | %ADD79C,1.724*% 14 | %ADD105C,1.2*% 15 | %ADD107R,1.2X1.2*% 16 | %ADD108C,1.9*% 17 | %ADD110R,1.9X1.9*% 18 | %FSLAX35Y35*% 19 | G04* 20 | G71* 21 | G90* 22 | G75* 23 | G01* 24 | G04 BotMask* 25 | %LPD*% 26 | D23* 27 | X6610000Y2416000D3* 28 | Y2924000D3* 29 | D110* 30 | X3556000Y3302000D3* 31 | D108* 32 | Y3048000D3* 33 | Y2794000D3* 34 | Y2540000D3* 35 | Y2286000D3* 36 | Y2032000D3* 37 | D107* 38 | X3121500Y2794000D3* 39 | D105* 40 | Y2667000D3* 41 | Y2540000D3* 42 | Y2413000D3* 43 | Y2286000D3* 44 | X3248500Y2794000D3* 45 | Y2667000D3* 46 | Y2540000D3* 47 | Y2413000D3* 48 | Y2286000D3* 49 | D35* 50 | X450000Y1005000D3* 51 | X450023Y520000D3* 52 | D37* 53 | X150000Y1115000D3* 54 | Y410000D3* 55 | D45* 56 | X650000Y3850000D3* 57 | Y4050000D3* 58 | D110* 59 | X2286000Y1524000D3* 60 | D108* 61 | Y1270000D3* 62 | Y1016000D3* 63 | D110* 64 | Y2794000D3* 65 | D108* 66 | Y2540000D3* 67 | Y2286000D3* 68 | D110* 69 | Y4064000D3* 70 | D108* 71 | Y3810000D3* 72 | Y3556000D3* 73 | D79* 74 | X4318000Y3810000D3* 75 | X4826000Y2286000D3* 76 | D29* 77 | X4064000Y254000D3* 78 | X3556000D3* 79 | X3302000D3* 80 | X3048000D3* 81 | X2794000D3* 82 | X6350000D3* 83 | X6096000D3* 84 | X5842000D3* 85 | X5588000D3* 86 | X5334000D3* 87 | X5080000D3* 88 | X4160520Y5080000D3* 89 | X3906520D3* 90 | X3652520D3* 91 | X3398520D3* 92 | X3144520D3* 93 | X2890520D3* 94 | X2636520D3* 95 | X2379980D3* 96 | X2128520D3* 97 | X1874520D3* 98 | X6350000D3* 99 | X6096000D3* 100 | X5842000D3* 101 | X5588000D3* 102 | X5334000D3* 103 | X5080000D3* 104 | X4826000D3* 105 | X4572000D3* 106 | X3810000Y254000D3* 107 | X4572000D3* 108 | X4318000D3* 109 | D67* 110 | X1397000D3* 111 | X1524000Y5080000D3* 112 | X6604000Y762000D3* 113 | X6600000Y3556000D3* 114 | D29* 115 | X4318000Y4826000D3* 116 | X4064000D3* 117 | X3810000D3* 118 | X3556000D3* 119 | X3302000D3* 120 | X3048000D3* 121 | X2794000D3* 122 | X2537460D3* 123 | X2286000D3* 124 | X2032000D3* 125 | X6350000D3* 126 | X6096000D3* 127 | X5842000D3* 128 | X5588000D3* 129 | X5334000D3* 130 | X5080000D3* 131 | X4826000D3* 132 | X4572000D3* 133 | D110* 134 | X254000Y1778000D3* 135 | D108* 136 | Y2032000D3* 137 | Y2286000D3* 138 | Y2540000D3* 139 | D110* 140 | X6096000Y3810000D3* 141 | D108* 142 | Y3556000D3* 143 | Y3302000D3* 144 | Y3048000D3* 145 | D110* 146 | X445000Y5065000D3* 147 | D108* 148 | Y4615000D3* 149 | X1095000D3* 150 | Y5065000D3* 151 | D110* 152 | X1800000Y302500D3* 153 | D108* 154 | X2300000D3* 155 | D76* 156 | X1700000Y552500D3* 157 | X2400000D3* 158 | M02* 159 | -------------------------------------------------------------------------------- /Exports/gerbers-devboard/BottomPaste.gbr: -------------------------------------------------------------------------------- 1 | G04 DipTrace 3.3.1.0* 2 | G04 BottomPaste.gbr* 3 | %MOMM*% 4 | G04 #@! TF.FileFunction,Paste,Bot* 5 | G04 #@! TF.Part,Single* 6 | %FSLAX35Y35*% 7 | G04* 8 | G71* 9 | G90* 10 | G75* 11 | G01* 12 | G04 BotPaste* 13 | %LPD*% 14 | M02* 15 | -------------------------------------------------------------------------------- /Exports/gerbers-devboard/BottomSilk.gbr: -------------------------------------------------------------------------------- 1 | G04 DipTrace 3.3.1.0* 2 | G04 BottomSilk.gbr* 3 | %MOMM*% 4 | G04 #@! TF.FileFunction,Legend,Bot* 5 | G04 #@! TF.Part,Single* 6 | %FSLAX35Y35*% 7 | G04* 8 | G71* 9 | G90* 10 | G75* 11 | G01* 12 | G04 BotSilk* 13 | %LPD*% 14 | M02* 15 | -------------------------------------------------------------------------------- /Exports/gerbers-devboard/Through.drl: -------------------------------------------------------------------------------- 1 | M48 2 | METRIC,0000.00 3 | T01C0.2 4 | T02C0.65 5 | T03C0.7 6 | T04C0.85 7 | T05C0.9 8 | T06C0.965 9 | T07C1.0 10 | T08C1.1 11 | T09C1.3 12 | T10C3.175 13 | % 14 | T01 15 | X+001428Y+001746 16 | X+001430Y+001801 17 | X+001475Y+001700 18 | X+001532Y+001700 19 | X+001575Y+001825 20 | X+001515Y+001920 21 | X+001475Y+001920 22 | X+001375Y+001980 23 | X+001305Y+002075 24 | X+001245Y+002120 25 | X+001150Y+002030 26 | X+001200Y+001975 27 | X+001135Y+001900 28 | X+001200Y+001825 29 | X+001135Y+001740 30 | X+001200Y+001675 31 | X+001160Y+001605 32 | X+001240Y+001520 33 | X+001310Y+001565 34 | X+001370Y+001495 35 | X+001460Y+001565 36 | X+001535Y+001495 37 | X+001610Y+001565 38 | X+001695Y+001495 39 | X+001760Y+001565 40 | X+001875Y+001565 41 | X+001865Y+001495 42 | X+001970Y+001570 43 | X+001885Y+001300 44 | X+001990Y+001145 45 | X+001600Y+001025 46 | X+001600Y+000760 47 | X+001300Y+000815 48 | X+001224Y+000706 49 | X+001025Y+000865 50 | X+000910Y+000980 51 | X+000850Y+000980 52 | X+000790Y+000980 53 | X+000780Y+001055 54 | X+000845Y+001305 55 | X+000905Y+001330 56 | X+001035Y+001305 57 | X+001195Y+001325 58 | X+001250Y+001015 59 | X+001095Y+000465 60 | X+001150Y+000415 61 | X+000970Y+000450 62 | X+000843Y+000463 63 | X+000760Y+000715 64 | X+000590Y+000865 65 | X+000320Y+001185 66 | X+000450Y+001300 67 | X+000555Y+001400 68 | X+000680Y+001460 69 | X+000790Y+001450 70 | X+000735Y+001690 71 | X+000735Y+002145 72 | X+001020Y+002300 73 | X+001020Y+002450 74 | X+001020Y+002525 75 | X+001020Y+002600 76 | X+001140Y+002655 77 | X+001201Y+002580 78 | X+001140Y+002495 79 | X+001201Y+002430 80 | X+001165Y+002360 81 | X+001245Y+002275 82 | X+001315Y+002320 83 | X+001375Y+002250 84 | X+001375Y+002140 85 | X+001455Y+002077 86 | X+001525Y+002140 87 | X+001605Y+002075 88 | X+001680Y+002140 89 | X+001755Y+002075 90 | X+001820Y+002120 91 | X+001910Y+002035 92 | X+001875Y+001955 93 | X+001875Y+001860 94 | X+001965Y+001905 95 | X+002075Y+001895 96 | X+002160Y+001785 97 | X+002420Y+001615 98 | X+002405Y+002080 99 | X+002065Y+002090 100 | X+002031Y+002194 101 | X+001975Y+002325 102 | X+001880Y+002320 103 | X+001870Y+002250 104 | X+001765Y+002320 105 | X+001700Y+002250 106 | X+001615Y+002320 107 | X+001540Y+002250 108 | X+001465Y+002320 109 | X+001495Y+002450 110 | X+001430Y+002535 111 | X+001480Y+002675 112 | X+001520Y+002675 113 | X+001580Y+002580 114 | X+001775Y+002625 115 | X+001750Y+002715 116 | X+001760Y+002830 117 | X+001825Y+002875 118 | X+001915Y+002790 119 | X+001880Y+002710 120 | X+001880Y+002615 121 | X+001970Y+002660 122 | X+002090Y+002660 123 | X+002090Y+002915 124 | X+001730Y+003055 125 | X+001730Y+003145 126 | X+001730Y+003255 127 | X+001615Y+003355 128 | X+001405Y+003170 129 | X+001405Y+003120 130 | X+001360Y+003145 131 | X+001220Y+003060 132 | X+001185Y+003085 133 | X+001120Y+003060 134 | X+001055Y+003055 135 | X+001010Y+003035 136 | X+001010Y+003080 137 | X+001125Y+003205 138 | X+001080Y+003235 139 | X+001125Y+003260 140 | X+001015Y+003570 141 | X+000930Y+003570 142 | X+000880Y+003570 143 | X+000710Y+003635 144 | X+000780Y+003410 145 | X+000780Y+003300 146 | X+000590Y+003300 147 | X+000590Y+003410 148 | X+000410Y+003450 149 | X+000070Y+003470 150 | X+000070Y+003270 151 | X+000070Y+003070 152 | X+000070Y+002870 153 | X+000070Y+002670 154 | X+000070Y+002470 155 | X+000070Y+002270 156 | X+000070Y+002070 157 | X+000070Y+001870 158 | X+000070Y+001670 159 | X+000070Y+001470 160 | X+000070Y+001270 161 | X+000325Y+000335 162 | X+000270Y+000070 163 | X+000120Y+000120 164 | X+000070Y+000230 165 | X+000470Y+000070 166 | X+000670Y+000070 167 | X+000870Y+000070 168 | X+001070Y+000070 169 | X+001270Y+000070 170 | X+001540Y+000070 171 | X+001670Y+000070 172 | X+001870Y+000070 173 | X+002070Y+000070 174 | X+002270Y+000070 175 | X+002470Y+000070 176 | X+002670Y+000070 177 | X+002870Y+000070 178 | X+003070Y+000070 179 | X+003270Y+000070 180 | X+003470Y+000070 181 | X+003670Y+000070 182 | X+003870Y+000070 183 | X+004070Y+000070 184 | X+004270Y+000070 185 | X+004470Y+000070 186 | X+004670Y+000070 187 | X+004870Y+000070 188 | X+005070Y+000070 189 | X+005270Y+000070 190 | X+005470Y+000070 191 | X+005670Y+000070 192 | X+005870Y+000070 193 | X+006070Y+000070 194 | X+006270Y+000070 195 | X+006470Y+000070 196 | X+006670Y+000070 197 | X+006755Y+000155 198 | X+006780Y+000270 199 | X+006780Y+000470 200 | X+006780Y+000620 201 | X+006780Y+000910 202 | X+006780Y+001070 203 | X+006780Y+001270 204 | X+006780Y+001470 205 | X+006780Y+001670 206 | X+006780Y+001870 207 | X+006780Y+002070 208 | X+006780Y+002270 209 | X+006780Y+002370 210 | X+006780Y+002465 211 | X+006600Y+002270 212 | X+006435Y+002370 213 | X+006435Y+002465 214 | X+006370Y+002565 215 | X+006300Y+002585 216 | X+006300Y+002465 217 | X+006160Y+002470 218 | X+006160Y+002585 219 | X+006070Y+002585 220 | X+005980Y+002585 221 | X+005885Y+002585 222 | X+005885Y+002470 223 | X+005760Y+002470 224 | X+005760Y+002585 225 | X+005680Y+002585 226 | X+005600Y+002585 227 | X+005455Y+002515 228 | X+005420Y+002440 229 | X+005380Y+002380 230 | X+005480Y+002285 231 | X+005230Y+002430 232 | X+005145Y+002370 233 | X+005130Y+002310 234 | X+005090Y+002230 235 | X+005105Y+002435 236 | X+004830Y+002435 237 | X+004750Y+002435 238 | X+004590Y+002435 239 | X+004510Y+002225 240 | X+004475Y+001860 241 | X+004710Y+001840 242 | X+004615Y+001585 243 | X+004370Y+001585 244 | X+004180Y+001585 245 | X+004180Y+001785 246 | X+004180Y+001950 247 | X+004185Y+002455 248 | X+004185Y+002645 249 | X+004155Y+002775 250 | X+004315Y+002750 251 | X+004310Y+002990 252 | X+004255Y+003025 253 | X+004250Y+003130 254 | X+004295Y+003155 255 | X+004315Y+003310 256 | X+004315Y+003390 257 | X+004315Y+003470 258 | X+004390Y+003555 259 | X+004470Y+003710 260 | X+004610Y+003755 261 | X+004830Y+003635 262 | X+004870Y+003890 263 | X+004870Y+004195 264 | X+004850Y+004360 265 | X+004985Y+004505 266 | X+005005Y+004705 267 | X+004795Y+004705 268 | X+004555Y+004705 269 | X+004285Y+004705 270 | X+004060Y+004705 271 | X+003875Y+004705 272 | X+003685Y+004705 273 | X+003430Y+004705 274 | X+003180Y+004705 275 | X+002920Y+004705 276 | X+002665Y+004705 277 | X+002410Y+004705 278 | X+002160Y+004705 279 | X+001900Y+004705 280 | X+001340Y+004760 281 | X+001390Y+004435 282 | X+001165Y+003920 283 | X+001165Y+003875 284 | X+001165Y+003830 285 | X+000405Y+003960 286 | X+000070Y+003870 287 | X+000070Y+003670 288 | X+000070Y+004070 289 | X+000070Y+004270 290 | X+000070Y+004470 291 | X+000070Y+004670 292 | X+000070Y+004870 293 | X+000070Y+005070 294 | X+000120Y+005220 295 | X+000270Y+005270 296 | X+000470Y+005270 297 | X+000670Y+005270 298 | X+000870Y+005270 299 | X+001070Y+005270 300 | X+001270Y+005270 301 | X+001370Y+005270 302 | X+001670Y+005270 303 | X+001870Y+005270 304 | X+002070Y+005270 305 | X+002270Y+005270 306 | X+002470Y+005270 307 | X+002670Y+005270 308 | X+002870Y+005270 309 | X+003070Y+005270 310 | X+003270Y+005270 311 | X+003470Y+005270 312 | X+003670Y+005270 313 | X+003870Y+005270 314 | X+004070Y+005270 315 | X+004270Y+005270 316 | X+004470Y+005270 317 | X+004670Y+005270 318 | X+004870Y+005270 319 | X+005070Y+005270 320 | X+005270Y+005270 321 | X+005470Y+005270 322 | X+005670Y+005270 323 | X+005870Y+005270 324 | X+006070Y+005270 325 | X+006270Y+005270 326 | X+006470Y+005270 327 | X+006670Y+005270 328 | X+006750Y+005195 329 | X+006780Y+005070 330 | X+006780Y+004870 331 | X+006780Y+004670 332 | X+006780Y+004470 333 | X+006780Y+004270 334 | X+006780Y+004070 335 | X+006780Y+003870 336 | X+006780Y+003680 337 | X+006780Y+003435 338 | X+006780Y+003270 339 | X+006780Y+003070 340 | X+006780Y+002975 341 | X+006780Y+002875 342 | X+006600Y+003070 343 | X+006435Y+002975 344 | X+006435Y+002875 345 | X+006370Y+002775 346 | X+006300Y+002755 347 | X+006200Y+002755 348 | X+006100Y+002755 349 | X+006000Y+002755 350 | X+005900Y+002755 351 | X+005800Y+002755 352 | X+005700Y+002755 353 | X+005600Y+002755 354 | X+005830Y+002985 355 | X+005970Y+003145 356 | X+005895Y+003385 357 | X+005805Y+003575 358 | X+005445Y+003800 359 | X+005335Y+003710 360 | X+005285Y+003655 361 | X+005335Y+003625 362 | X+005205Y+003280 363 | X+005205Y+003030 364 | X+005205Y+002780 365 | X+004950Y+002780 366 | X+004950Y+003030 367 | X+004950Y+003280 368 | X+004695Y+003280 369 | X+004695Y+003030 370 | X+004695Y+002780 371 | X+004050Y+002925 372 | X+003960Y+003005 373 | X+003895Y+003135 374 | X+003895Y+003270 375 | X+004000Y+003365 376 | X+004057Y+003707 377 | X+004165Y+003855 378 | X+004415Y+004020 379 | X+004450Y+003975 380 | X+004450Y+004065 381 | X+004415Y+004110 382 | X+004450Y+004155 383 | X+004415Y+004200 384 | X+004565Y+004195 385 | X+004630Y+004360 386 | X+004400Y+004360 387 | X+003875Y+004375 388 | X+003820Y+004175 389 | X+003640Y+004070 390 | X+003455Y+004170 391 | X+003285Y+003995 392 | X+003440Y+003855 393 | X+003395Y+003645 394 | X+003200Y+003615 395 | X+003325Y+003220 396 | X+003685Y+002925 397 | X+003335Y+002730 398 | X+003335Y+002595 399 | X+003685Y+002420 400 | X+003460Y+001785 401 | X+003330Y+001785 402 | X+003265Y+001720 403 | X+003220Y+001665 404 | X+003265Y+001860 405 | X+003460Y+001580 406 | X+002930Y+001610 407 | X+002925Y+001785 408 | X+002925Y+001930 409 | X+002930Y+001375 410 | X+002930Y+001315 411 | X+002930Y+001255 412 | X+002930Y+001195 413 | X+002930Y+001135 414 | X+003290Y+000910 415 | X+003465Y+000905 416 | X+004055Y+000640 417 | X+004415Y+000960 418 | X+004375Y+001305 419 | X+004860Y+001610 420 | X+005225Y+001400 421 | X+005410Y+001685 422 | X+005225Y+002025 423 | X+006055Y+002005 424 | X+006290Y+001370 425 | X+005885Y+000935 426 | X+005960Y+000525 427 | X+006190Y+000400 428 | X+005445Y+000495 429 | X+004940Y+000435 430 | X+004940Y+000760 431 | X+005235Y+000970 432 | X+005655Y+003145 433 | X+006415Y+003230 434 | X+006420Y+004050 435 | X+005985Y+004330 436 | X+005805Y+004440 437 | X+005585Y+004335 438 | X+005805Y+004185 439 | X+005295Y+004250 440 | X+005220Y+004195 441 | X+005220Y+004320 442 | X+005150Y+004305 443 | X+005240Y+004705 444 | X+005485Y+004705 445 | X+005755Y+004705 446 | X+005985Y+004705 447 | X+006220Y+004705 448 | X+006495Y+004705 449 | X+003635Y+004345 450 | X+002635Y+004440 451 | X+002700Y+003790 452 | X+002285Y+003295 453 | X+002590Y+003035 454 | X+002930Y+002820 455 | X+001685Y+002895 456 | X+001610Y+002830 457 | X+001530Y+002895 458 | X+001460Y+002833 459 | X+001380Y+002895 460 | X+001310Y+002830 461 | X+001250Y+002875 462 | X+001205Y+002910 463 | X+001130Y+002910 464 | X+001155Y+002785 465 | X+001205Y+002730 466 | X+001380Y+002735 467 | X+000960Y+002785 468 | X+000380Y+002785 469 | X+000380Y+002460 470 | X+000380Y+002265 471 | X+001745Y+001960 472 | X+001770Y+001870 473 | X+002050Y+000625 474 | X+002545Y+000500 475 | X+002015Y+003805 476 | X+000865Y+004760 477 | X+000540Y+004445 478 | X+000405Y+004360 479 | X+000405Y+004760 480 | T02 481 | X+000460Y+001005G85X+000440Y+001005 482 | X+000460Y+000520G85X+000440Y+000520 483 | T03 484 | X+003121Y+002794 485 | X+003121Y+002667 486 | X+003121Y+002540 487 | X+003121Y+002413 488 | X+003121Y+002286 489 | X+003248Y+002286 490 | X+003248Y+002413 491 | X+003248Y+002540 492 | X+003248Y+002667 493 | X+003248Y+002794 494 | X+000650Y+003850 495 | X+000650Y+004050 496 | T04 497 | X+000183Y+001115G85X+000117Y+001115 498 | X+000183Y+000410G85X+000117Y+000410 499 | T05 500 | X+004064Y+000254 501 | X+004318Y+000254 502 | X+004572Y+000254 503 | X+005080Y+000254 504 | X+005334Y+000254 505 | X+005588Y+000254 506 | X+005842Y+000254 507 | X+006096Y+000254 508 | X+006350Y+000254 509 | X+003810Y+000254 510 | X+003556Y+000254 511 | X+003302Y+000254 512 | X+003048Y+000254 513 | X+002794Y+000254 514 | X+002794Y+004826 515 | X+003048Y+004826 516 | X+003302Y+004826 517 | X+003556Y+004826 518 | X+003810Y+004826 519 | X+004064Y+004826 520 | X+004318Y+004826 521 | X+004572Y+004826 522 | X+004572Y+005080 523 | X+004826Y+005080 524 | X+005080Y+005080 525 | X+005334Y+005080 526 | X+005588Y+005080 527 | X+005842Y+005080 528 | X+006096Y+005080 529 | X+006096Y+004826 530 | X+006350Y+004826 531 | X+006350Y+005080 532 | X+005842Y+004826 533 | X+005588Y+004826 534 | X+005334Y+004826 535 | X+005080Y+004826 536 | X+004826Y+004826 537 | X+004161Y+005080 538 | X+003907Y+005080 539 | X+003653Y+005080 540 | X+003399Y+005080 541 | X+003145Y+005080 542 | X+002891Y+005080 543 | X+002637Y+005080 544 | X+002380Y+005080 545 | X+002129Y+005080 546 | X+001875Y+005080 547 | X+002032Y+004826 548 | X+002286Y+004826 549 | X+002537Y+004826 550 | T06 551 | X+004318Y+003810 552 | X+004826Y+002286 553 | T07 554 | X+000445Y+005065 555 | X+000445Y+004615 556 | X+001095Y+004615 557 | X+001095Y+005065 558 | X+001800Y+000303 559 | X+002300Y+000303 560 | T08 561 | X+003556Y+003302 562 | X+003556Y+003048 563 | X+003556Y+002794 564 | X+003556Y+002540 565 | X+003556Y+002286 566 | X+003556Y+002032 567 | X+002286Y+002286 568 | X+002286Y+002540 569 | X+002286Y+002794 570 | X+002286Y+003556 571 | X+002286Y+003810 572 | X+002286Y+004064 573 | X+000254Y+002540 574 | X+000254Y+002286 575 | X+000254Y+002032 576 | X+000254Y+001778 577 | X+002286Y+001524 578 | X+002286Y+001270 579 | X+002286Y+001016 580 | X+006096Y+003048 581 | X+006096Y+003302 582 | X+006096Y+003556 583 | X+006096Y+003810 584 | T09 585 | X+001700Y+000553 586 | X+002400Y+000553 587 | T10 588 | X+001397Y+000254 589 | X+001524Y+005080 590 | X+006600Y+003556 591 | X+006604Y+000762 592 | T00 593 | M30 594 | -------------------------------------------------------------------------------- /Exports/gerbers-devboard/TopMask.gbr: -------------------------------------------------------------------------------- 1 | G04 DipTrace 3.3.1.0* 2 | G04 TopMask.gbr* 3 | %MOMM*% 4 | G04 #@! TF.FileFunction,Soldermask,Top* 5 | G04 #@! TF.Part,Single* 6 | %ADD23R,4.064X1.524*% 7 | %ADD29R,1.7X1.7*% 8 | %ADD31R,1.0X1.0*% 9 | %ADD35O,1.35X1.15*% 10 | %ADD37R,2.0X2.1*% 11 | %ADD39R,1.45X0.5*% 12 | %ADD41R,2.0X1.9*% 13 | %ADD45C,1.4478*% 14 | %ADD50C,0.28*% 15 | %ADD53R,0.64X0.84*% 16 | %ADD55R,2.5X1.75*% 17 | %ADD58R,0.5X1.9*% 18 | %ADD60C,0.35*% 19 | %ADD67C,3.175*% 20 | %ADD76C,2.0*% 21 | %ADD79C,1.724*% 22 | %ADD81R,1.7X1.5*% 23 | %ADD94R,1.2X1.3*% 24 | %ADD105C,1.2*% 25 | %ADD107R,1.2X1.2*% 26 | %ADD108C,1.9*% 27 | %ADD110R,1.9X1.9*% 28 | %ADD111R,1.1X0.9*% 29 | %ADD113R,0.79X0.92*% 30 | %ADD115R,1.3X1.2*% 31 | %ADD117R,0.9X1.1*% 32 | %ADD118R,1.4X1.65*% 33 | %ADD122C,1.8*% 34 | %ADD124R,0.7X1.2*% 35 | %ADD126R,1.2X0.7*% 36 | %FSLAX35Y35*% 37 | G04* 38 | G71* 39 | G90* 40 | G75* 41 | G01* 42 | G04 TopMask* 43 | %LPD*% 44 | D126* 45 | X4394999Y3470000D3* 46 | Y3390000D3* 47 | Y3310000D3* 48 | Y3230000D3* 49 | Y3150000D3* 50 | Y3070000D3* 51 | Y2990000D3* 52 | Y2910000D3* 53 | Y2830000D3* 54 | Y2750000D3* 55 | Y2670000D3* 56 | Y2590000D3* 57 | D124* 58 | X4509999Y2520000D3* 59 | X4589999D3* 60 | X4669999D3* 61 | X4749999D3* 62 | X4829999D3* 63 | X4909999D3* 64 | X4989999D3* 65 | X5069999D3* 66 | X5149999D3* 67 | X5229999D3* 68 | X5309999D3* 69 | X5389999D3* 70 | D126* 71 | X5504999Y2590000D3* 72 | Y2670000D3* 73 | Y2750000D3* 74 | Y2830000D3* 75 | Y2910000D3* 76 | Y2990000D3* 77 | Y3070000D3* 78 | Y3150000D3* 79 | Y3230000D3* 80 | Y3310000D3* 81 | Y3390000D3* 82 | Y3470000D3* 83 | D124* 84 | X5389999Y3540000D3* 85 | X5309999D3* 86 | X5229999D3* 87 | X5149999D3* 88 | X5069999D3* 89 | X4989999D3* 90 | X4909999D3* 91 | X4829999D3* 92 | X4749999D3* 93 | X4669999D3* 94 | X4589999D3* 95 | X4509999D3* 96 | D122* 97 | X4694999Y3280000D3* 98 | Y3030000D3* 99 | Y2780000D3* 100 | X4949999Y3280000D3* 101 | Y3030000D3* 102 | Y2780000D3* 103 | X5204999Y3280000D3* 104 | Y3030000D3* 105 | Y2780000D3* 106 | D23* 107 | X6610000Y2416000D3* 108 | Y2670000D3* 109 | Y2924000D3* 110 | D118* 111 | X4475000Y2355000D3* 112 | X4305000D3* 113 | D117* 114 | X5825000Y2670000D3* 115 | Y2540000D3* 116 | X6230000Y2670000D3* 117 | Y2540000D3* 118 | D115* 119 | X4170000Y3270000D3* 120 | X4000000D3* 121 | D113* 122 | X6076000Y2670000D3* 123 | X5980000D3* 124 | D115* 125 | X4170000Y3130000D3* 126 | X4000000D3* 127 | D111* 128 | X4180000Y3005000D3* 129 | X4050000D3* 130 | D110* 131 | X3556000Y3302000D3* 132 | D108* 133 | Y3048000D3* 134 | Y2794000D3* 135 | Y2540000D3* 136 | Y2286000D3* 137 | Y2032000D3* 138 | D107* 139 | X3121500Y2794000D3* 140 | D105* 141 | Y2667000D3* 142 | Y2540000D3* 143 | Y2413000D3* 144 | Y2286000D3* 145 | X3248500Y2794000D3* 146 | Y2667000D3* 147 | Y2540000D3* 148 | Y2413000D3* 149 | Y2286000D3* 150 | D35* 151 | X450000Y1005000D3* 152 | X450023Y520000D3* 153 | D37* 154 | X150000Y1115000D3* 155 | Y410000D3* 156 | D39* 157 | X418000Y892500D3* 158 | Y827500D3* 159 | Y762500D3* 160 | Y697500D3* 161 | Y632500D3* 162 | D41* 163 | X150500Y877800D3* 164 | Y647700D3* 165 | D111* 166 | X815000Y2600000D3* 167 | X945000D3* 168 | X815000Y2450000D3* 169 | X945000D3* 170 | X815000Y2300000D3* 171 | X945000D3* 172 | D31* 173 | X682500Y2600000D3* 174 | X517500D3* 175 | X682500Y2450000D3* 176 | X517500D3* 177 | X682500Y2300000D3* 178 | X517500D3* 179 | D111* 180 | X652500Y2900000D3* 181 | X782500D3* 182 | D31* 183 | X520000D3* 184 | X355000D3* 185 | D94* 186 | X2590000Y1355000D3* 187 | Y1525000D3* 188 | D45* 189 | X650000Y3850000D3* 190 | Y4050000D3* 191 | D111* 192 | X655000Y3050000D3* 193 | X785000D3* 194 | D31* 195 | X522500D3* 196 | X357500D3* 197 | D94* 198 | X2590000Y1015000D3* 199 | Y1185000D3* 200 | D113* 201 | X1875000Y1785000D3* 202 | X1971000D3* 203 | Y1660000D3* 204 | X1875000D3* 205 | D115* 206 | X1480000Y1990000D3* 207 | X1650000D3* 208 | D94* 209 | X1645000Y1675000D3* 210 | Y1845000D3* 211 | D117* 212 | X905000Y3365000D3* 213 | Y3495000D3* 214 | D113* 215 | X1875000Y2540000D3* 216 | X1971000D3* 217 | X1970000Y2415000D3* 218 | X1874000D3* 219 | D115* 220 | X1480000Y2745000D3* 221 | X1650000D3* 222 | D94* 223 | X1645000Y2430000D3* 224 | Y2600000D3* 225 | D117* 226 | X465000Y3345000D3* 227 | Y3215000D3* 228 | D50* 229 | X1475000Y2610000D3* 230 | Y2570000D3* 231 | Y2530000D3* 232 | X1515000Y2490000D3* 233 | X1475000D3* 234 | X1515000Y2530000D3* 235 | Y2570000D3* 236 | Y2610000D3* 237 | X1475000Y1855000D3* 238 | Y1815000D3* 239 | Y1775000D3* 240 | X1515000Y1735000D3* 241 | X1475000D3* 242 | X1515000Y1775000D3* 243 | Y1815000D3* 244 | Y1855000D3* 245 | D53* 246 | X780000Y3505000D3* 247 | X685000D3* 248 | X590000D3* 249 | Y3205000D3* 250 | X685000D3* 251 | X780000D3* 252 | D55* 253 | X685000Y3355000D3* 254 | D110* 255 | X2286000Y1524000D3* 256 | D108* 257 | Y1270000D3* 258 | Y1016000D3* 259 | D110* 260 | Y2794000D3* 261 | D108* 262 | Y2540000D3* 263 | Y2286000D3* 264 | D94* 265 | X2590000Y2285000D3* 266 | Y2455000D3* 267 | Y2625000D3* 268 | Y2795000D3* 269 | D58* 270 | X842750Y587250D3* 271 | X906250D3* 272 | X969750D3* 273 | X1033250D3* 274 | X1096750D3* 275 | X1160250D3* 276 | X1223800D3* 277 | X1287250D3* 278 | Y1187250D3* 279 | X1223800D3* 280 | X1160250D3* 281 | X1096750D3* 282 | X1033250D3* 283 | X969750D3* 284 | X906200D3* 285 | X842750D3* 286 | D113* 287 | X700000Y970000D3* 288 | X604000D3* 289 | D50* 290 | X1070000Y3135000D3* 291 | Y3095000D3* 292 | X1110000D3* 293 | Y3135000D3* 294 | D110* 295 | X2286000Y4064000D3* 296 | D108* 297 | Y3810000D3* 298 | Y3556000D3* 299 | D94* 300 | X2590000Y3555000D3* 301 | Y3725000D3* 302 | Y3895000D3* 303 | Y4065000D3* 304 | D60* 305 | X1235000Y3195000D3* 306 | Y3145000D3* 307 | X1285000Y3095000D3* 308 | X1235000D3* 309 | X1285000Y3145000D3* 310 | Y3195000D3* 311 | D117* 312 | X1015000Y3495000D3* 313 | Y3365000D3* 314 | D111* 315 | X1485000Y3255000D3* 316 | X1615000D3* 317 | D117* 318 | X1125000Y3495000D3* 319 | Y3365000D3* 320 | X1345000Y3495000D3* 321 | Y3365000D3* 322 | X1235000D3* 323 | Y3495000D3* 324 | D111* 325 | X1485000Y3035000D3* 326 | X1615000D3* 327 | X1485000Y3145000D3* 328 | X1615000D3* 329 | D117* 330 | X555000Y1170000D3* 331 | Y1300000D3* 332 | X1505000Y1145000D3* 333 | Y1015000D3* 334 | Y630000D3* 335 | Y760000D3* 336 | X1395000Y1015000D3* 337 | Y1145000D3* 338 | Y760000D3* 339 | Y630000D3* 340 | X1080000Y325000D3* 341 | Y195000D3* 342 | X840000Y325000D3* 343 | Y195000D3* 344 | X960000Y325000D3* 345 | Y195000D3* 346 | D94* 347 | X680000Y1180000D3* 348 | Y1350000D3* 349 | D31* 350 | X682500Y2000000D3* 351 | X517500D3* 352 | X682500Y1850000D3* 353 | X517500D3* 354 | D81* 355 | X1035000Y4065000D3* 356 | Y3875000D3* 357 | D111* 358 | X815000Y2000000D3* 359 | X945000D3* 360 | X815000Y1850000D3* 361 | X945000D3* 362 | D79* 363 | X4318000Y3810000D3* 364 | X4826000Y2286000D3* 365 | D29* 366 | X4064000Y254000D3* 367 | X3556000D3* 368 | X3302000D3* 369 | X3048000D3* 370 | X2794000D3* 371 | X6350000D3* 372 | X6096000D3* 373 | X5842000D3* 374 | X5588000D3* 375 | X5334000D3* 376 | X5080000D3* 377 | X4160520Y5080000D3* 378 | X3906520D3* 379 | X3652520D3* 380 | X3398520D3* 381 | X3144520D3* 382 | X2890520D3* 383 | X2636520D3* 384 | X2379980D3* 385 | X2128520D3* 386 | X1874520D3* 387 | X6350000D3* 388 | X6096000D3* 389 | X5842000D3* 390 | X5588000D3* 391 | X5334000D3* 392 | X5080000D3* 393 | X4826000D3* 394 | X4572000D3* 395 | X3810000Y254000D3* 396 | X4572000D3* 397 | X4318000D3* 398 | D67* 399 | X1397000D3* 400 | X1524000Y5080000D3* 401 | X6604000Y762000D3* 402 | X6600000Y3556000D3* 403 | D29* 404 | X4318000Y4826000D3* 405 | X4064000D3* 406 | X3810000D3* 407 | X3556000D3* 408 | X3302000D3* 409 | X3048000D3* 410 | X2794000D3* 411 | X2537460D3* 412 | X2286000D3* 413 | X2032000D3* 414 | X6350000D3* 415 | X6096000D3* 416 | X5842000D3* 417 | X5588000D3* 418 | X5334000D3* 419 | X5080000D3* 420 | X4826000D3* 421 | X4572000D3* 422 | D110* 423 | X254000Y1778000D3* 424 | D108* 425 | Y2032000D3* 426 | Y2286000D3* 427 | Y2540000D3* 428 | D110* 429 | X6096000Y3810000D3* 430 | D108* 431 | Y3556000D3* 432 | Y3302000D3* 433 | Y3048000D3* 434 | D110* 435 | X445000Y5065000D3* 436 | D108* 437 | Y4615000D3* 438 | X1095000D3* 439 | Y5065000D3* 440 | D110* 441 | X1800000Y302500D3* 442 | D108* 443 | X2300000D3* 444 | D76* 445 | X1700000Y552500D3* 446 | X2400000D3* 447 | D117* 448 | X260000Y4905000D3* 449 | Y5035000D3* 450 | Y4775000D3* 451 | Y4645000D3* 452 | M02* 453 | -------------------------------------------------------------------------------- /Exports/gerbers-devboard/TopPaste.gbr: -------------------------------------------------------------------------------- 1 | G04 DipTrace 3.3.1.0* 2 | G04 TopPaste.gbr* 3 | %MOMM*% 4 | G04 #@! TF.FileFunction,Paste,Top* 5 | G04 #@! TF.Part,Single* 6 | %ADD14C,0.16*% 7 | %ADD52R,0.5X0.7*% 8 | %ADD54R,0.45X0.65*% 9 | %ADD56R,2.3X1.55*% 10 | %ADD61C,0.21*% 11 | %ADD82R,1.3X1.1*% 12 | %ADD85R,0.2X1.6*% 13 | %ADD95R,0.8X0.9*% 14 | %ADD96R,0.6X0.6*% 15 | %ADD98R,1.7X1.6*% 16 | %ADD100R,1.15X0.2*% 17 | %ADD112R,0.7X0.5*% 18 | %ADD114R,0.39X0.52*% 19 | %ADD116R,0.9X0.8*% 20 | %ADD119R,1.0X1.25*% 21 | %ADD123C,1.4*% 22 | %ADD125R,0.3X0.8*% 23 | %ADD127R,0.8X0.3*% 24 | %FSLAX35Y35*% 25 | G04* 26 | G71* 27 | G90* 28 | G75* 29 | G01* 30 | G04 TopPaste* 31 | %LPD*% 32 | D127* 33 | X4394999Y3470000D3* 34 | Y3390000D3* 35 | Y3310000D3* 36 | Y3230000D3* 37 | Y3150000D3* 38 | Y3070000D3* 39 | Y2990000D3* 40 | Y2910000D3* 41 | Y2830000D3* 42 | Y2750000D3* 43 | Y2670000D3* 44 | Y2590000D3* 45 | D125* 46 | X4509999Y2520000D3* 47 | X4589999D3* 48 | X4669999D3* 49 | X4749999D3* 50 | X4829999D3* 51 | X4909999D3* 52 | X4989999D3* 53 | X5069999D3* 54 | X5149999D3* 55 | X5229999D3* 56 | X5309999D3* 57 | X5389999D3* 58 | D127* 59 | X5504999Y2590000D3* 60 | Y2670000D3* 61 | Y2750000D3* 62 | Y2830000D3* 63 | Y2910000D3* 64 | Y2990000D3* 65 | Y3070000D3* 66 | Y3150000D3* 67 | Y3230000D3* 68 | Y3310000D3* 69 | Y3390000D3* 70 | Y3470000D3* 71 | D125* 72 | X5389999Y3540000D3* 73 | X5309999D3* 74 | X5229999D3* 75 | X5149999D3* 76 | X5069999D3* 77 | X4989999D3* 78 | X4909999D3* 79 | X4829999D3* 80 | X4749999D3* 81 | X4669999D3* 82 | X4589999D3* 83 | X4509999D3* 84 | D123* 85 | X4694999Y3280000D3* 86 | Y3030000D3* 87 | Y2780000D3* 88 | X4949999Y3280000D3* 89 | Y3030000D3* 90 | Y2780000D3* 91 | X5204999Y3280000D3* 92 | Y3030000D3* 93 | Y2780000D3* 94 | D119* 95 | X4475000Y2355000D3* 96 | X4305000D3* 97 | D52* 98 | X5825000Y2670000D3* 99 | Y2540000D3* 100 | X6230000Y2670000D3* 101 | Y2540000D3* 102 | D116* 103 | X4170000Y3270000D3* 104 | X4000000D3* 105 | D114* 106 | X6076000Y2670000D3* 107 | X5980000D3* 108 | D116* 109 | X4170000Y3130000D3* 110 | X4000000D3* 111 | D112* 112 | X4180000Y3005000D3* 113 | X4050000D3* 114 | D100* 115 | X418000Y892500D3* 116 | Y827500D3* 117 | Y762500D3* 118 | Y697500D3* 119 | Y632500D3* 120 | D98* 121 | X150500Y877800D3* 122 | Y647700D3* 123 | D112* 124 | X815000Y2600000D3* 125 | X945000D3* 126 | X815000Y2450000D3* 127 | X945000D3* 128 | X815000Y2300000D3* 129 | X945000D3* 130 | D96* 131 | X682500Y2600000D3* 132 | X517500D3* 133 | X682500Y2450000D3* 134 | X517500D3* 135 | X682500Y2300000D3* 136 | X517500D3* 137 | D112* 138 | X652500Y2900000D3* 139 | X782500D3* 140 | D96* 141 | X520000D3* 142 | X355000D3* 143 | D95* 144 | X2590000Y1355000D3* 145 | Y1525000D3* 146 | D112* 147 | X655000Y3050000D3* 148 | X785000D3* 149 | D96* 150 | X522500D3* 151 | X357500D3* 152 | D95* 153 | X2590000Y1015000D3* 154 | Y1185000D3* 155 | D114* 156 | X1875000Y1785000D3* 157 | X1971000D3* 158 | Y1660000D3* 159 | X1875000D3* 160 | D116* 161 | X1480000Y1990000D3* 162 | X1650000D3* 163 | D95* 164 | X1645000Y1675000D3* 165 | Y1845000D3* 166 | D52* 167 | X905000Y3365000D3* 168 | Y3495000D3* 169 | D114* 170 | X1875000Y2540000D3* 171 | X1971000D3* 172 | X1970000Y2415000D3* 173 | X1874000D3* 174 | D116* 175 | X1480000Y2745000D3* 176 | X1650000D3* 177 | D95* 178 | X1645000Y2430000D3* 179 | Y2600000D3* 180 | D52* 181 | X465000Y3345000D3* 182 | Y3215000D3* 183 | D14* 184 | X1475000Y2610000D3* 185 | Y2570000D3* 186 | Y2530000D3* 187 | X1515000Y2490000D3* 188 | X1475000D3* 189 | X1515000Y2530000D3* 190 | Y2570000D3* 191 | Y2610000D3* 192 | X1475000Y1855000D3* 193 | Y1815000D3* 194 | Y1775000D3* 195 | X1515000Y1735000D3* 196 | X1475000D3* 197 | X1515000Y1775000D3* 198 | Y1815000D3* 199 | Y1855000D3* 200 | D54* 201 | X780000Y3505000D3* 202 | X685000D3* 203 | X590000D3* 204 | Y3205000D3* 205 | X685000D3* 206 | X780000D3* 207 | D56* 208 | X685000Y3355000D3* 209 | D95* 210 | X2590000Y2285000D3* 211 | Y2455000D3* 212 | Y2625000D3* 213 | Y2795000D3* 214 | D85* 215 | X842750Y587250D3* 216 | X906250D3* 217 | X969750D3* 218 | X1033250D3* 219 | X1096750D3* 220 | X1160250D3* 221 | X1223800D3* 222 | X1287250D3* 223 | Y1187250D3* 224 | X1223800D3* 225 | X1160250D3* 226 | X1096750D3* 227 | X1033250D3* 228 | X969750D3* 229 | X906200D3* 230 | X842750D3* 231 | D114* 232 | X700000Y970000D3* 233 | X604000D3* 234 | D14* 235 | X1070000Y3135000D3* 236 | Y3095000D3* 237 | X1110000D3* 238 | Y3135000D3* 239 | D95* 240 | X2590000Y3555000D3* 241 | Y3725000D3* 242 | Y3895000D3* 243 | Y4065000D3* 244 | D61* 245 | X1235000Y3195000D3* 246 | Y3145000D3* 247 | X1285000Y3095000D3* 248 | X1235000D3* 249 | X1285000Y3145000D3* 250 | Y3195000D3* 251 | D52* 252 | X1015000Y3495000D3* 253 | Y3365000D3* 254 | D112* 255 | X1485000Y3255000D3* 256 | X1615000D3* 257 | D52* 258 | X1125000Y3495000D3* 259 | Y3365000D3* 260 | X1345000Y3495000D3* 261 | Y3365000D3* 262 | X1235000D3* 263 | Y3495000D3* 264 | D112* 265 | X1485000Y3035000D3* 266 | X1615000D3* 267 | X1485000Y3145000D3* 268 | X1615000D3* 269 | D52* 270 | X555000Y1170000D3* 271 | Y1300000D3* 272 | X1505000Y1145000D3* 273 | Y1015000D3* 274 | Y630000D3* 275 | Y760000D3* 276 | X1395000Y1015000D3* 277 | Y1145000D3* 278 | Y760000D3* 279 | Y630000D3* 280 | X1080000Y325000D3* 281 | Y195000D3* 282 | X840000Y325000D3* 283 | Y195000D3* 284 | X960000Y325000D3* 285 | Y195000D3* 286 | D95* 287 | X680000Y1180000D3* 288 | Y1350000D3* 289 | D96* 290 | X682500Y2000000D3* 291 | X517500D3* 292 | X682500Y1850000D3* 293 | X517500D3* 294 | D82* 295 | X1035000Y4065000D3* 296 | Y3875000D3* 297 | D112* 298 | X815000Y2000000D3* 299 | X945000D3* 300 | X815000Y1850000D3* 301 | X945000D3* 302 | D52* 303 | X260000Y4905000D3* 304 | Y5035000D3* 305 | Y4775000D3* 306 | Y4645000D3* 307 | M02* 308 | -------------------------------------------------------------------------------- /Exports/gerbers-devboard/components.csv: -------------------------------------------------------------------------------- 1 | RefDes;Name;Pattern;X (mm);Y (mm);Side;Rotate;Value 2 | U1;HTLoRa-Module;LGA-HTLoRa;49.5;30.3;Top;0; 3 | CN1;SMA_EDGE;SMA-EDGE;66.1;26.7;Top;90; 4 | L1;IND_0805;IND_0805;43.9;23.55;Top;180;15u 5 | C102;CAP_0402;CAP_0402;58.25;26.05;Top;270; 6 | C101;CAP_0402;CAP_0402;62.3;26.05;Top;270; 7 | C1;CAP_0603;CAP_0603;40.85;32.7;Top;180;10u 8 | L101;IND_0402;IND_0402;60.28;26.7;Top;180; 9 | C2;CAP_0603;CAP_0603;40.85;31.3;Top;180;10u 10 | C3;CAP_0402;CAP_0402;41.15;30.05;Top;180;1u 11 | J4;644456-6;HDR-1x6T/2.54/15x2;35.56;26.67;Top;270; 12 | J5;FTS-105-01-L-D;HDR-2x5T/1.27x1.27/6x3;31.85;25.4;Top;270; 13 | J2;ZX62D-B-5PA8;ZX62D-B-5PA8;2.838;7.625;Top;270; 14 | R1;RES_0402;RES_0402;8.8;26;Top;0; 15 | R2;RES_0402;RES_0402;8.8;24.5;Top;0; 16 | R3;RES_0402;RES_0402;8.8;23;Top;0; 17 | D1;APG1608CGKC-T;APG1608;6;26;Top;0;Orange 18 | D2;APG1608CGKC-T;APG1608;6;24.5;Top;0;Green 19 | D3;APG1608CGKC-T;APG1608;6;23;Top;0;Blue 20 | R4;RES_0402;RES_0402;7.175;29;Top;0; 21 | D4;APG1608CGKC-T;APG1608;4.375;29;Top;0;White 22 | R7A;RES_0603;RES_0603;25.9;14.4;Top;90; 23 | J3;S2B-PH-K-S(LF)(SN);JST-2-PTH;4.4;39.5;Top;90; 24 | R5;RES_0402;RES_0402;7.2;30.5;Top;0; 25 | D5;APG1608CGKC-T;APG1608;4.4;30.5;Top;0;Violet 26 | R7B;RES_0603;RES_0603;25.9;11;Top;90; 27 | B1;IND_0402;IND_0402;19.23;17.85;Top;0; 28 | B2;IND_0402;IND_0402;19.23;16.6;Top;180; 29 | C10;CAP_0603;CAP_0603;15.65;19.9;Top;0;22u 30 | C11;CAP_0603;CAP_0603;16.45;17.6;Top;90;22u 31 | C12;CAP_0402;CAP_0402;17.7;17.3;Top;90;1u 32 | C13;CAP_0402;CAP_0402;20.75;17.3;Top;90;1u 33 | C8;CAP_0402;CAP_0402;9.05;34.3;Top;90;1u 34 | B3;IND_0402;IND_0402;19.23;25.4;Top;0; 35 | B4;IND_0402;IND_0402;19.22;24.15;Top;180; 36 | L2;IND_0805;IND_0805;13.1;25.5;Top;270;2.2u 37 | C4;CAP_0603;CAP_0603;15.65;27.45;Top;0;22u 38 | C5;CAP_0603;CAP_0603;16.45;25.15;Top;90;22u 39 | C6;CAP_0402;CAP_0402;17.7;24.85;Top;90;1u 40 | C7;CAP_0402;CAP_0402;20.75;24.85;Top;90;1u 41 | L3;IND_0805;IND_0805;13.1;17.95;Top;270;2.2u 42 | R6;RES_0402;RES_0402;4.65;32.8;Top;270;9.09k 43 | U2;TPS62743;YFP (R-XBGA-N8);14.95;25.5;Top;270; 44 | U3;TPS62743;YFP (R-XBGA-N8);14.95;17.95;Top;270; 45 | U7;STBC08;DFN-6;6.85;33.55;Top;180; 46 | J7;644456-3;HDR-1x3T/2.54/7x2;22.86;12.7;Top;270; 47 | J8;644456-3;HDR-1x3T/2.54/7x2;22.86;25.4;Top;270; 48 | R8B;RES_0603;RES_0603;25.9;23.7;Top;90; 49 | R8A;RES_0603;RES_0603;25.9;27.1;Top;90; 50 | U4;FT230XS;FT230XS (SSOP-16);10.65;8.873;Top;90; 51 | B5;IND_0402;IND_0402;6.52;9.7;Top;180; 52 | U5;TCK106/7/8AG;Micro-Foot 4 type2;10.9;31.15;Top;270; 53 | J9;644456-3;HDR-1x3T/2.54/7x2;22.86;38.1;Top;270; 54 | R9B;RES_0603;RES_0603;25.9;36.4;Top;90; 55 | R9A;RES_0603;RES_0603;25.9;39.8;Top;90; 56 | U6;FPF1320UCX;WLCSP-6, 1.0x1.5mm;12.6;31.45;Top;0; 57 | R10;RES_0402;RES_0402;10.15;34.3;Top;270;100k 58 | C14;CAP_0402;CAP_0402;15.5;32.55;Top;0;1u 59 | D6;DIODE_0402;DIO_0402;11.25;34.3;Top;270; 60 | D7;DIODE_0402;DIO_0402;13.45;34.3;Top;270; 61 | R11;RES_0402;RES_0402;12.35;34.3;Top;90;27 62 | C15;CAP_0402;CAP_0402;15.5;30.35;Top;0;1u 63 | C16;CAP_0402;CAP_0402;15.5;31.45;Top;0;1u 64 | C17;CAP_0402;CAP_0402;5.55;12.35;Top;90;10n 65 | C18;CAP_0402;CAP_0402;15.05;10.8;Top;270;47p 66 | C19;CAP_0402;CAP_0402;15.05;6.95;Top;90;47p 67 | R12;RES_0402;RES_0402;13.95;10.8;Top;90;27 68 | R13;RES_0402;RES_0402;13.95;6.95;Top;270;27 69 | R14;RES_0402;RES_0402;10.8;2.6;Top;270;10k 70 | R15;RES_0402;RES_0402;8.4;2.6;Top;270;10k 71 | C20;CAP_0402;CAP_0402;9.6;2.6;Top;270;100n 72 | C21;CAP_0603;CAP_0603;6.8;12.65;Top;90;10u 73 | D8;APG1608CGKC-T;APG1608;6;20;Top;0;Orange 74 | D9;APG1608CGKC-T;APG1608;6;18.5;Top;0;Green 75 | C9;CAP_0805;CAP_0805;10.35;39.7;Top;270;10u 76 | R16;RES_0402;RES_0402;8.8;20;Top;0; 77 | R17;RES_0402;RES_0402;8.8;18.5;Top;0; 78 | TP1;TESTPOINT;TESTPOINT;43.18;38.1;Top;0; 79 | TP2;TESTPOINT;TESTPOINT;48.26;22.86;Top;0; 80 | J6;644456-4;HDR-1x4T/2.54/10x2;2.54;21.59;Top;90; 81 | J10;644456-4;HDR-1x4T/2.54/10x2;60.96;34.29;Top;270; 82 | S1;B3F-1000;B3F-1;7.7;48.4;Top;0; 83 | C22;CAP_0402;CAP_0402;2.6;49.7;Top;90;47p 84 | R18;RES_0402;RES_0402;2.6;47.1;Top;270;27 85 | -------------------------------------------------------------------------------- /Exports/gerbers-r1/BoardOutline.gbr: -------------------------------------------------------------------------------- 1 | G04 DipTrace 3.3.1.0* 2 | G04 BoardOutline.gbr* 3 | %MOMM*% 4 | G04 #@! TF.FileFunction,Profile* 5 | G04 #@! TF.Part,Single* 6 | %ADD11C,0.14*% 7 | %FSLAX35Y35*% 8 | G04* 9 | G71* 10 | G90* 11 | G75* 12 | G01* 13 | G04 BoardOutline* 14 | %LPD*% 15 | X0Y0D2* 16 | D11* 17 | X1250000D1* 18 | Y1160000D1* 19 | X0D1* 20 | Y0D1* 21 | M02* 22 | -------------------------------------------------------------------------------- /Exports/gerbers-r1/Bottom.gbr: -------------------------------------------------------------------------------- 1 | G04 DipTrace 3.3.1.0* 2 | G04 Bottom.gbr* 3 | %MOMM*% 4 | G04 #@! TF.FileFunction,Copper,L4,Bot* 5 | G04 #@! TF.Part,Single* 6 | G04 #@! TA.AperFunction,Conductor* 7 | %ADD11C,0.14*% 8 | %ADD12C,0.0762*% 9 | %ADD13C,0.153*% 10 | %ADD14C,0.3*% 11 | G04 #@! TA.AperFunction,CopperBalancing* 12 | %ADD16C,0.1*% 13 | %ADD56R,0.9X0.4*% 14 | %ADD58R,0.4X0.9*% 15 | %ADD60C,1.4*% 16 | %ADD62C,1.4*% 17 | %ADD64C,0.5*% 18 | G04 #@! TA.AperFunction,ViaPad* 19 | %ADD66C,0.306*% 20 | %FSLAX35Y35*% 21 | G04* 22 | G71* 23 | G90* 24 | G75* 25 | G01* 26 | G04 Bottom* 27 | %LPD*% 28 | X711757Y263457D2* 29 | D12* 30 | X726963Y278663D1* 31 | Y377170D1* 32 | G02X730187Y408393I136515J1685D01* 33 | G01* 34 | X748637Y462343D1* 35 | G03X755897Y492597I-107171J41716D01* 36 | G01* 37 | Y622937D1* 38 | X802553Y669593D1* 39 | X898680D1* 40 | X929087Y700000D1* 41 | X1180000D1* 42 | X45000Y575000D2* 43 | D14* 44 | Y505000D1* 45 | X611000Y844000D2* 46 | D12* 47 | X625000Y830000D1* 48 | X335140Y850250D2* 49 | X402900D1* 50 | X403003Y850353D1* 51 | X390353D1* 52 | X370000Y830000D1* 53 | X350000Y595000D2* 54 | X355000D1* 55 | X370000Y580000D1* 56 | X45000Y540000D2* 57 | X70000D1* 58 | X1160000Y140000D2* 59 | X1180000D1* 60 | X1160000Y300000D2* 61 | X1180000D1* 62 | X1200000Y620000D2* 63 | X1180000D1* 64 | X505000Y1110000D2* 65 | Y1090000D1* 66 | X585000Y1110000D2* 67 | Y1090000D1* 68 | X630170Y362523D2* 69 | Y335170D1* 70 | X625000Y330000D1* 71 | X671550Y324427D2* 72 | X630573D1* 73 | X625000Y330000D1* 74 | X881137Y350073D2* 75 | Y331137D1* 76 | X880000Y330000D1* 77 | X870953Y599147D2* 78 | Y589047D1* 79 | X880000Y580000D1* 80 | X870000Y830000D2* 81 | X880000D1* 82 | X632153Y577193D2* 83 | X627807D1* 84 | X625000Y580000D1* 85 | X375243Y319800D2* 86 | Y324757D1* 87 | X370000Y330000D1* 88 | X43017Y859883D2* 89 | X75017D1* 90 | X70117D1* 91 | X70000Y860000D1* 92 | X276087Y418913D2* 93 | Y433990D1* 94 | X255483Y478430D1* 95 | G02X235210Y546547I223358J103553D01* 96 | G01* 97 | Y879363D1* 98 | X160000Y1020853D2* 99 | X129730Y990583D1* 100 | Y519087D1* 101 | X167953Y480863D1* 102 | Y370000D1* 103 | X160000Y1020853D2* 104 | D13* 105 | X174703Y1035557D1* 106 | Y1090000D1* 107 | X185000D1* 108 | X1180000Y221267D2* 109 | D11* 110 | Y220000D1* 111 | X272430Y1029283D2* 112 | D13* 113 | X265000Y1056000D1* 114 | D12* 115 | Y1090000D1* 116 | X509473Y291960D2* 117 | Y263180D1* 118 | X527930Y244723D1* 119 | X618823D1* 120 | G03X709563Y334437I-1008J91766D01* 121 | G01* 122 | Y385700D1* 123 | G02X718063Y425570I139869J-8978D01* 124 | G01* 125 | X732780Y467420D1* 126 | G03X739610Y502010I-80887J33941D01* 127 | G01* 128 | Y628843D1* 129 | X795890Y685123D1* 130 | X892483D1* 131 | X915293Y707933D1* 132 | Y750067D1* 133 | X927730Y762503D1* 134 | G03X951277Y871713I-48258J67548D01* 135 | G01* 136 | X944610Y899110D1* 137 | X984263Y89297D2* 138 | Y90380D1* 139 | X979230Y100000D1* 140 | X988000D1* 141 | Y73000D1* 142 | X985000Y70000D1* 143 | X868120Y124183D2* 144 | Y130530D1* 145 | X898650Y100000D1* 146 | X897813D1* 147 | X905000Y70000D1* 148 | X804967Y138330D2* 149 | X817977Y125320D1* 150 | Y96813D1* 151 | X835557Y70000D1* 152 | X825000D1* 153 | X768527Y155850D2* 154 | X760000Y140143D1* 155 | Y108000D1* 156 | X752000Y63000D1* 157 | X745000Y70000D1* 158 | X689643Y154980D2* 159 | X679990Y139140D1* 160 | Y70000D1* 161 | X665000D1* 162 | X728773Y155853D2* 163 | X701850Y182777D1* 164 | X674777D1* 165 | X585000Y93000D1* 166 | Y70000D1* 167 | X424000Y1064000D2* 168 | X425000Y1065000D1* 169 | Y1090000D1* 170 | X330620Y414283D2* 171 | X340000Y440000D1* 172 | G03X324557Y500003I-40857J21474D01* 173 | G01* 174 | G02X288000Y579597I65189J78133D01* 175 | G01* 176 | Y830743D1* 177 | G02X311683Y891683I78990J4374D01* 178 | G01* 179 | X394937Y974937D1* 180 | X444087D1* 181 | Y1061433D2* 182 | D13* 183 | X436000D1* 184 | D12* 185 | X425000Y1090000D1* 186 | X284000Y992000D2* 187 | X304000D1* 188 | X345000Y1033000D1* 189 | Y1090000D1* 190 | X94917Y1020823D2* 191 | D13* 192 | X70000D1* 193 | Y1020000D1* 194 | X92337Y940177D2* 195 | Y944000D1* 196 | D12* 197 | X74000Y936000D1* 198 | X70000Y940000D1* 199 | X199983Y296187D2* 200 | X152000Y300000D1* 201 | X70000D1* 202 | X367640Y427360D2* 203 | X394563D1* 204 | G03X448370Y456533I-6768J76689D01* 205 | G01* 206 | G03X509037Y606397I-211090J172663D01* 207 | G01* 208 | Y864830D1* 209 | G02X604887Y955727I95844J-5082D01* 210 | G01* 211 | X660050D1* 212 | X708000Y1064000D2* 213 | D13* 214 | X739573D1* 215 | D12* 216 | X745000Y1090000D1* 217 | X140907Y469397D2* 218 | D13* 219 | X70000D1* 220 | D12* 221 | Y460000D1* 222 | X197837Y342837D2* 223 | X174050Y342007D1* 224 | X133243D1* 225 | X103250Y372000D1* 226 | X78000D1* 227 | X70000Y380000D1* 228 | X1065000Y70000D2* 229 | Y100000D1* 230 | X1028000D1* 231 | X140993Y208007D2* 232 | X134993Y204000D1* 233 | X104000D1* 234 | X70000Y212000D1* 235 | Y220000D1* 236 | X368000Y136000D2* 237 | X356000Y124000D1* 238 | Y107997D1* 239 | X345990Y97987D1* 240 | X348000Y92000D1* 241 | X345000Y65000D1* 242 | Y70000D1* 243 | X426497Y135290D2* 244 | Y96000D1* 245 | X420000Y75000D1* 246 | X425000Y70000D1* 247 | X503887Y146703D2* 248 | X505000Y70000D1* 249 | X474857Y270850D2* 250 | X470877Y296640D1* 251 | X468550Y312547D1* 252 | Y346203D1* 253 | G02X489237Y448373I249795J2602D01* 254 | G01* 255 | X495507Y461207D1* 256 | G03X539773Y589283I-323816J183607D01* 257 | G01* 258 | X539783Y833600D1* 259 | G02X623417Y911930I81821J-3548D01* 260 | G01* 261 | X676280D1* 262 | X721120Y956770D1* 263 | X991500D1* 264 | X1026540Y887000D2* 265 | X1133540Y780000D1* 266 | X1180000D1* 267 | X275690Y320690D2* 268 | X300867Y285500D1* 269 | G03X453107Y330320I69261J45708D01* 270 | G01* 271 | Y365210D1* 272 | G02X469537Y445987I216969J-2072D01* 273 | G01* 274 | X478687Y464887D1* 275 | G03X524513Y595470I-288641J174628D01* 276 | G01* 277 | Y834870D1* 278 | G02X622120Y927873I96496J-3552D01* 279 | G01* 280 | X670357D1* 281 | X714717Y972233D1* 282 | X967240D1* 283 | X979427Y984420D1* 284 | X1003527D1* 285 | X1030723Y957223D1* 286 | X1067580Y886673D2* 287 | X1094253Y860000D1* 288 | X1180000D1* 289 | X533633Y361273D2* 290 | X553593Y381233D1* 291 | G02X626680Y412963I71050J-63618D01* 292 | G01* 293 | X675593D1* 294 | G03X701913Y429690I-4125J35561D01* 295 | G01* 296 | X719050Y481907D1* 297 | G03X724140Y514013I-108236J33616D01* 298 | G01* 299 | Y833597D1* 300 | X816573Y926030D1* 301 | X961357D1* 302 | X973323Y914063D1* 303 | X1093317D1* 304 | X1115253Y936000D1* 305 | X1152000D1* 306 | X1156000Y940000D1* 307 | X1180000D1* 308 | X496377Y348623D2* 309 | X501387Y365587D1* 310 | G02X516450Y387197I53117J-20971D01* 311 | G01* 312 | G02X622133Y428473I101701J-104460D01* 313 | G01* 314 | X672777D1* 315 | G03X687123Y438893I-1349J16944D01* 316 | G01* 317 | X701580Y484247D1* 318 | G03X707757Y521917I-140993J42460D01* 319 | G01* 320 | Y839257D1* 321 | X809963Y941463D1* 322 | X967593D1* 323 | X979650Y929407D1* 324 | X1086547D1* 325 | X1141763Y984623D1* 326 | Y1020000D1* 327 | X1180000D1* 328 | X414940Y463483D2* 329 | X436857Y480040D1* 330 | G03X493793Y610237I-160381J147685D01* 331 | G01* 332 | Y867153D1* 333 | G02X595403Y971213I104666J-563D01* 334 | G01* 335 | X636873D1* 336 | X653227Y987567D1* 337 | X878093D1* 338 | X1026267Y1026267D1* 339 | X1065000Y1065000D1* 340 | Y1090000D1* 341 | X374380Y470620D2* 342 | X381717D1* 343 | G02X406907Y490993I38860J-22287D01* 344 | G01* 345 | G03X478113Y615707I-101742J140776D01* 346 | G01* 347 | Y866093D1* 348 | G02X595147Y986533I117447J2957D01* 349 | G01* 350 | X628680D1* 351 | X645127Y1002980D1* 352 | X851260D1* 353 | X947450Y1028557D1* 354 | X969957Y1051063D1* 355 | X985000D1* 356 | Y1090000D1* 357 | X316717Y464673D2* 358 | X302630Y495783D1* 359 | G02X272000Y574387I79866J76392D01* 360 | G01* 361 | X272090Y845203D1* 362 | G02X300487Y902490I94145J-10986D01* 363 | G01* 364 | X383257Y985083D1* 365 | G02X424890Y1002053I42096J-43721D01* 366 | G01* 367 | X622627D1* 368 | X638790Y1018217D1* 369 | X844490D1* 370 | X868530Y1028697D1* 371 | X894690Y1054853D1* 372 | X905000Y1090000D1* 373 | X825000D2* 374 | Y1052000D1* 375 | X812380D1* 376 | X793953Y1033573D1* 377 | X632200D1* 378 | X616203Y1017577D1* 379 | X422383D1* 380 | G03X370970Y994840I1989J-73994D01* 381 | G01* 382 | X286650Y910520D1* 383 | G03X256610Y845613I59925J-67139D01* 384 | G01* 385 | Y542410D1* 386 | G03X294413Y446497I429551J113897D01* 387 | G01* 388 | X295027Y445353D1* 389 | G02X300017Y396280I-44530J-29318D01* 390 | G01* 391 | G02X243603Y343150I-87952J36873D01* 392 | G01* 393 | X439113Y644403D2* 394 | D13* 395 | X455417Y660707D1* 396 | Y885383D1* 397 | X464133Y921653D1* 398 | X466827Y934597D1* 399 | X309133Y161363D2* 400 | D12* 401 | X277400Y129630D1* 402 | Y108433D1* 403 | X264000Y70000D1* 404 | X265000D1* 405 | X459340Y235660D2* 406 | X480733Y229243D1* 407 | X715870D1* 408 | X742477Y255850D1* 409 | Y347243D1* 410 | X825853Y430620D1* 411 | X925000D1* 412 | X1045387D1* 413 | X1142753Y527987D1* 414 | X1147527D1* 415 | X1180000Y550000D1* 416 | Y540000D1* 417 | X462007Y197333D2* 418 | X468737Y200000D1* 419 | X482610Y213873D1* 420 | X722167D1* 421 | X757813Y249520D1* 422 | Y340147D1* 423 | X832683Y415017D1* 424 | X861397D1* 425 | G02X956000Y388000I-7418J-205119D01* 426 | G01* 427 | X1060930D1* 428 | X1132103Y459173D1* 429 | X1180000D1* 430 | Y460000D1* 431 | X505300Y186047D2* 432 | X554610Y198363D1* 433 | X728690D1* 434 | X778327Y248000D1* 435 | X932000D1* 436 | X992000D1* 437 | X1124000Y380000D1* 438 | X1180000D1* 439 | X284000Y952000D2* 440 | X319340Y965090D1* 441 | X361710Y1007460D1* 442 | G02X421707Y1033340I59394J-55206D01* 443 | G01* 444 | X610117D1* 445 | X626520Y1049743D1* 446 | X659293D1* 447 | X665000Y1090000D1* 448 | X92607Y701477D2* 449 | D14* 450 | X92507Y736000D1* 451 | X92607Y701477D2* 452 | D12* 453 | X71477D1* 454 | X70000Y700000D1* 455 | X226927Y162927D2* 456 | X185000Y121000D1* 457 | Y70000D1* 458 | X44927Y619730D2* 459 | X69730D1* 460 | X70000Y620000D1* 461 | D66* 462 | X711757Y263457D3* 463 | X611000Y844000D3* 464 | X276087Y418913D3* 465 | X235210Y879363D3* 466 | X160000Y1020853D3* 467 | X167953Y370000D3* 468 | X160000Y1020853D3* 469 | X1180000Y221267D3* 470 | X272430Y1029283D3* 471 | X509473Y291960D3* 472 | X944610Y899110D3* 473 | X984263Y89297D3* 474 | X868120Y124183D3* 475 | X804967Y138330D3* 476 | X768527Y155850D3* 477 | X689643Y154980D3* 478 | X728773Y155853D3* 479 | X330620Y414283D3* 480 | X444087Y974937D3* 481 | Y1061433D3* 482 | X284000Y992000D3* 483 | X94917Y1020823D3* 484 | X92337Y940177D3* 485 | X199983Y296187D3* 486 | X367640Y427360D3* 487 | X660050Y955727D3* 488 | X708000Y1064000D3* 489 | X140907Y469397D3* 490 | X197837Y342837D3* 491 | X1028000Y100000D3* 492 | X140993Y208007D3* 493 | X368000Y136000D3* 494 | X426497Y135290D3* 495 | X503887Y146703D3* 496 | X474857Y270850D3* 497 | X991500Y956770D3* 498 | X1026540Y887000D3* 499 | X275690Y320690D3* 500 | X1030723Y957223D3* 501 | X1067580Y886673D3* 502 | X533633Y361273D3* 503 | X496377Y348623D3* 504 | X414940Y463483D3* 505 | X374380Y470620D3* 506 | X316717Y464673D3* 507 | X243603Y343150D3* 508 | X439113Y644403D3* 509 | X466827Y934597D3* 510 | X309133Y161363D3* 511 | X459340Y235660D3* 512 | X925000Y430620D3* 513 | X462007Y197333D3* 514 | X956000Y388000D3* 515 | X505300Y186047D3* 516 | X932000Y248000D3* 517 | X284000Y952000D3* 518 | X226927Y162927D3* 519 | X43017Y859883D3* 520 | X75017D3* 521 | X92507Y736000D3* 522 | X92607Y701477D3* 523 | X90000Y815000D3* 524 | X100000Y785000D3* 525 | X44927Y619730D3* 526 | X140000Y140000D3* 527 | X165000Y165000D3* 528 | X45000Y540000D3* 529 | X350000Y595000D3* 530 | X249640Y248610D3* 531 | X375243Y319800D3* 532 | X45000Y575000D3* 533 | Y505000D3* 534 | X900000Y870000D3* 535 | X870000Y830000D3* 536 | X890000Y290000D3* 537 | X820467Y292110D3* 538 | X809183Y828687D3* 539 | X927847Y600390D3* 540 | X870953Y599147D3* 541 | X881137Y350073D3* 542 | X653350Y608123D3* 543 | X671550Y324427D3* 544 | X630170Y362523D3* 545 | X632153Y577193D3* 546 | X661680Y829730D3* 547 | X585000Y1110000D3* 548 | X505000D3* 549 | X403003Y850353D3* 550 | X1200000Y620000D3* 551 | X335140Y850250D3* 552 | X1200000Y300000D3* 553 | X1160000D3* 554 | Y140000D3* 555 | X1200000D3* 556 | Y50000D3* 557 | X214740Y165333D2* 558 | D16* 559 | X244770D1* 560 | X205073Y155667D2* 561 | X244830D1* 562 | X195403Y146000D2* 563 | X242680D1* 564 | X185757Y136333D2* 565 | X237057D1* 566 | X176087Y126667D2* 567 | X230983D1* 568 | X171010Y117000D2* 569 | X200923D1* 570 | X171010Y107333D2* 571 | X197993D1* 572 | X171010Y97667D2* 573 | X197993D1* 574 | X171010Y88000D2* 575 | X197993D1* 576 | X171010Y78333D2* 577 | X197993D1* 578 | X231980Y125907D2* 579 | Y128020D1* 580 | X233210D1* 581 | X245857Y149723D1* 582 | X245667Y174907D1* 583 | X223383Y174960D1* 584 | X170007Y121593D1* 585 | X170000Y74747D1* 586 | X198980Y73263D1* 587 | X199060Y112783D1* 588 | X199543Y114270D1* 589 | X200467Y115537D1* 590 | X205060Y120047D1* 591 | X206453Y120757D1* 592 | X208000Y121000D1* 593 | X229140D1* 594 | X231977Y125893D1* 595 | X218413Y255333D2* 596 | X268990D1* 597 | X208743Y245667D2* 598 | X267603D1* 599 | X199077Y236000D2* 600 | X257937D1* 601 | X189407Y226333D2* 602 | X248267D1* 603 | X179740Y216667D2* 604 | X238600D1* 605 | X170287Y207000D2* 606 | X228930D1* 607 | X168217Y197333D2* 608 | X219263D1* 609 | X161693Y187667D2* 610 | X209597D1* 611 | X141070Y178000D2* 612 | X199927D1* 613 | X131400Y168333D2* 614 | X190260D1* 615 | X121733Y158667D2* 616 | X180593D1* 617 | X101010Y149000D2* 618 | X170923D1* 619 | X101010Y139333D2* 620 | X161257D1* 621 | X101010Y129667D2* 622 | X151587D1* 623 | X169283Y207217D2* 624 | X168963Y203577D1* 625 | X167927Y199257D1* 626 | X166227Y195150D1* 627 | X163903Y191360D1* 628 | X161020Y187980D1* 629 | X157640Y185097D1* 630 | X153850Y182773D1* 631 | X149743Y181073D1* 632 | X145423Y180037D1* 633 | X141783Y179717D1* 634 | X117940Y155953D1* 635 | X116547Y155243D1* 636 | X115000Y155000D1* 637 | X100020D1* 638 | X100000Y125020D1* 639 | X147910Y125000D1* 640 | X270000Y247073D1* 641 | Y264980D1* 642 | X227090Y265000D1* 643 | X169303Y207230D1* 644 | X76010Y820333D2* 645 | X111530D1* 646 | X76010Y810667D2* 647 | X111530D1* 648 | X76010Y801000D2* 649 | X111530D1* 650 | X76010Y791333D2* 651 | X111530D1* 652 | X76010Y781667D2* 653 | X111530D1* 654 | X76010Y772000D2* 655 | X111530D1* 656 | X112520Y826600D2* 657 | X74983D1* 658 | X75000Y765020D1* 659 | X112520Y765000D1* 660 | Y826607D1* 661 | D56* 662 | X70000Y1020000D3* 663 | Y940000D3* 664 | Y860000D3* 665 | Y780000D3* 666 | Y700000D3* 667 | Y620000D3* 668 | Y540000D3* 669 | Y460000D3* 670 | Y380000D3* 671 | Y300000D3* 672 | Y220000D3* 673 | Y140000D3* 674 | D58* 675 | X185000Y70000D3* 676 | X265000D3* 677 | X345000D3* 678 | X425000D3* 679 | X505000D3* 680 | X585000D3* 681 | X665000D3* 682 | X745000D3* 683 | X825000D3* 684 | X905000D3* 685 | X985000D3* 686 | X1065000D3* 687 | D56* 688 | X1180000Y140000D3* 689 | Y220000D3* 690 | Y300000D3* 691 | Y380000D3* 692 | Y460000D3* 693 | Y540000D3* 694 | Y620000D3* 695 | Y700000D3* 696 | Y780000D3* 697 | Y860000D3* 698 | Y940000D3* 699 | Y1020000D3* 700 | D58* 701 | X1065000Y1090000D3* 702 | X985000D3* 703 | X905000D3* 704 | X825000D3* 705 | X745000D3* 706 | X665000D3* 707 | X585000D3* 708 | X505000D3* 709 | X425000D3* 710 | X345000D3* 711 | X265000D3* 712 | X185000D3* 713 | D60* 714 | X370000Y830000D3* 715 | Y580000D3* 716 | X625000Y830000D3* 717 | Y580000D3* 718 | X880000Y830000D3* 719 | Y580000D3* 720 | D62* 721 | Y330000D3* 722 | X625000D3* 723 | D60* 724 | X370000D3* 725 | D64* 726 | X200000Y960000D3* 727 | M02* 728 | -------------------------------------------------------------------------------- /Exports/gerbers-r1/BottomMask.gbr: -------------------------------------------------------------------------------- 1 | G04 DipTrace 3.3.1.0* 2 | G04 BottomMask.gbr* 3 | %MOMM*% 4 | G04 #@! TF.FileFunction,Soldermask,Bot* 5 | G04 #@! TF.Part,Single* 6 | %ADD57R,0.94X0.44*% 7 | %ADD59R,0.44X0.94*% 8 | %ADD61C,1.44*% 9 | %ADD63C,1.44*% 10 | %ADD69C,0.7*% 11 | %FSLAX35Y35*% 12 | G04* 13 | G71* 14 | G90* 15 | G75* 16 | G01* 17 | G04 BotMask* 18 | %LPD*% 19 | D57* 20 | X70000Y1020000D3* 21 | Y940000D3* 22 | Y860000D3* 23 | Y780000D3* 24 | Y700000D3* 25 | Y620000D3* 26 | Y540000D3* 27 | Y460000D3* 28 | Y380000D3* 29 | Y300000D3* 30 | Y220000D3* 31 | Y140000D3* 32 | D59* 33 | X185000Y70000D3* 34 | X265000D3* 35 | X345000D3* 36 | X425000D3* 37 | X505000D3* 38 | X585000D3* 39 | X665000D3* 40 | X745000D3* 41 | X825000D3* 42 | X905000D3* 43 | X985000D3* 44 | X1065000D3* 45 | D57* 46 | X1180000Y140000D3* 47 | Y220000D3* 48 | Y300000D3* 49 | Y380000D3* 50 | Y460000D3* 51 | Y540000D3* 52 | Y620000D3* 53 | Y700000D3* 54 | Y780000D3* 55 | Y860000D3* 56 | Y940000D3* 57 | Y1020000D3* 58 | D59* 59 | X1065000Y1090000D3* 60 | X985000D3* 61 | X905000D3* 62 | X825000D3* 63 | X745000D3* 64 | X665000D3* 65 | X585000D3* 66 | X505000D3* 67 | X425000D3* 68 | X345000D3* 69 | X265000D3* 70 | X185000D3* 71 | D61* 72 | X370000Y830000D3* 73 | Y580000D3* 74 | X625000Y830000D3* 75 | Y580000D3* 76 | X880000Y830000D3* 77 | Y580000D3* 78 | D63* 79 | Y330000D3* 80 | X625000D3* 81 | D61* 82 | X370000D3* 83 | D69* 84 | X200000Y960000D3* 85 | M02* 86 | -------------------------------------------------------------------------------- /Exports/gerbers-r1/BottomPaste.gbr: -------------------------------------------------------------------------------- 1 | G04 DipTrace 3.3.1.0* 2 | G04 BottomPaste.gbr* 3 | %MOMM*% 4 | G04 #@! TF.FileFunction,Paste,Bot* 5 | G04 #@! TF.Part,Single* 6 | %ADD14C,0.3*% 7 | %FSLAX35Y35*% 8 | G04* 9 | G71* 10 | G90* 11 | G75* 12 | G01* 13 | G04 BotPaste* 14 | %LPD*% 15 | D14* 16 | X200000Y960000D3* 17 | M02* 18 | -------------------------------------------------------------------------------- /Exports/gerbers-r1/BottomSilk.gbr: -------------------------------------------------------------------------------- 1 | G04 DipTrace 3.3.1.0* 2 | G04 BottomSilk.gbr* 3 | %MOMM*% 4 | G04 #@! TF.FileFunction,Legend,Bot* 5 | G04 #@! TF.Part,Single* 6 | %FSLAX35Y35*% 7 | G04* 8 | G71* 9 | G90* 10 | G75* 11 | G01* 12 | G04 BotSilk* 13 | %LPD*% 14 | M02* 15 | -------------------------------------------------------------------------------- /Exports/gerbers-r1/Ground-L2_Bottom.drl: -------------------------------------------------------------------------------- 1 | M48 2 | METRIC,0000.00 3 | T01C0.153 4 | % 5 | T01 6 | X+000045Y+000505 7 | X+000045Y+000540 8 | X+000045Y+000575 9 | X+000335Y+000850 10 | X+000403Y+000850 11 | X+001160Y+000300 12 | X+001200Y+000300 13 | T00 14 | M30 15 | -------------------------------------------------------------------------------- /Exports/gerbers-r1/Power-L3_Bottom.drl: -------------------------------------------------------------------------------- 1 | M48 2 | METRIC,0000.00 3 | T01C0.153 4 | % 5 | T01 6 | X+000093Y+000701 7 | X+000093Y+000736 8 | X+000100Y+000785 9 | X+000090Y+000815 10 | T00 11 | M30 12 | -------------------------------------------------------------------------------- /Exports/gerbers-r1/Through.drl: -------------------------------------------------------------------------------- 1 | M48 2 | METRIC,0000.00 3 | T01C0.153 4 | % 5 | T01 6 | X+000350Y+000595 7 | X+000415Y+000463 8 | X+000374Y+000471 9 | X+000368Y+000427 10 | X+000331Y+000414 11 | X+000317Y+000465 12 | X+000276Y+000419 13 | X+000168Y+000370 14 | X+000198Y+000343 15 | X+000244Y+000343 16 | X+000276Y+000321 17 | X+000250Y+000249 18 | X+000200Y+000296 19 | X+000141Y+000208 20 | X+000165Y+000165 21 | X+000140Y+000140 22 | X+000227Y+000163 23 | X+000309Y+000161 24 | X+000368Y+000136 25 | X+000426Y+000135 26 | X+000462Y+000197 27 | X+000459Y+000236 28 | X+000475Y+000271 29 | X+000509Y+000292 30 | X+000496Y+000349 31 | X+000534Y+000361 32 | X+000632Y+000577 33 | X+000653Y+000608 34 | X+000928Y+000600 35 | X+000871Y+000599 36 | X+000672Y+000324 37 | X+000630Y+000363 38 | X+000712Y+000263 39 | X+000805Y+000138 40 | X+000769Y+000156 41 | X+000729Y+000156 42 | X+000690Y+000155 43 | X+000504Y+000147 44 | X+000505Y+000186 45 | X+000375Y+000320 46 | X+000141Y+000469 47 | X+000045Y+000620 48 | X+000075Y+000860 49 | X+000043Y+000860 50 | X+000092Y+000940 51 | X+000160Y+001021 52 | X+000095Y+001021 53 | X+000272Y+001029 54 | X+000284Y+000992 55 | X+000284Y+000952 56 | X+000235Y+000879 57 | X+000467Y+000935 58 | X+000444Y+000975 59 | X+000444Y+001061 60 | X+000505Y+001110 61 | X+000585Y+001110 62 | X+000708Y+001064 63 | X+000900Y+000870 64 | X+000870Y+000830 65 | X+000809Y+000829 66 | X+000662Y+000830 67 | X+000611Y+000844 68 | X+000660Y+000956 69 | X+000439Y+000644 70 | X+000868Y+000124 71 | X+000984Y+000089 72 | X+001028Y+000100 73 | X+001160Y+000140 74 | X+001200Y+000140 75 | X+001180Y+000221 76 | X+001200Y+000620 77 | X+000991Y+000957 78 | X+001031Y+000957 79 | X+001027Y+000887 80 | X+001068Y+000887 81 | X+000945Y+000899 82 | X+000925Y+000431 83 | X+000956Y+000388 84 | X+000932Y+000248 85 | X+000890Y+000290 86 | X+000881Y+000350 87 | X+000820Y+000292 88 | X+001200Y+000050 89 | T00 90 | M30 91 | -------------------------------------------------------------------------------- /Exports/gerbers-r1/TopMask.gbr: -------------------------------------------------------------------------------- 1 | G04 DipTrace 3.3.1.0* 2 | G04 TopMask.gbr* 3 | %MOMM*% 4 | G04 #@! TF.FileFunction,Soldermask,Top* 5 | G04 #@! TF.Part,Single* 6 | %AMOUTLINE1* 7 | 4,1,4, 8 | 0.22003,0.17, 9 | 0.22003,-0.17, 10 | -0.22003,-0.17, 11 | -0.22003,0.17, 12 | 0.22003,0.17, 13 | 0*% 14 | %AMOUTLINE4* 15 | 4,1,5, 16 | 0.105,-0.18, 17 | 0.105,0.18, 18 | 0.09852,0.18, 19 | -0.105,-0.0209, 20 | -0.105,-0.18, 21 | 0.105,-0.18, 22 | 0*% 23 | %AMOUTLINE6* 24 | 4,1,4, 25 | 0.0,0.32343, 26 | 0.32343,0.0, 27 | 0.0,-0.32343, 28 | -0.32343,0.0, 29 | 0.0,0.32343, 30 | 0*% 31 | %AMOUTLINE9* 32 | 4,1,5, 33 | 0.105,0.18, 34 | 0.105,-0.18, 35 | 0.09852,-0.18, 36 | -0.105,0.0209, 37 | -0.105,0.18, 38 | 0.105,0.18, 39 | 0*% 40 | %AMOUTLINE11* 41 | 4,1,5, 42 | -0.105,0.18, 43 | -0.105,-0.18, 44 | -0.09852,-0.18, 45 | 0.105,0.0209, 46 | 0.105,0.18, 47 | -0.105,0.18, 48 | 0*% 49 | %AMOUTLINE13* 50 | 4,1,5, 51 | -0.105,-0.18, 52 | -0.105,0.18, 53 | -0.09852,0.18, 54 | 0.105,-0.0209, 55 | 0.105,-0.18, 56 | -0.105,-0.18, 57 | 0*% 58 | %ADD24R,0.45X0.41*% 59 | %ADD27R,0.41X0.45*% 60 | %ADD30R,0.76X0.63*% 61 | %ADD33R,0.44X0.34*% 62 | %ADD36R,0.34X0.44*% 63 | %ADD39R,0.63X0.76*% 64 | %ADD42C,0.33*% 65 | %ADD46R,0.3X0.54*% 66 | %ADD49R,0.54X0.3*% 67 | %ADD51R,0.76X0.76*% 68 | %ADD65C,1.5*% 69 | %ADD78R,1.0X0.9*% 70 | %ADD80R,1.3X0.7*% 71 | %ADD82R,1.0X0.8*% 72 | %ADD101OUTLINE1*% 73 | %ADD104OUTLINE4*% 74 | %ADD106OUTLINE6*% 75 | %ADD109OUTLINE9*% 76 | %ADD111OUTLINE11*% 77 | %ADD113OUTLINE13*% 78 | %FSLAX35Y35*% 79 | G04* 80 | G71* 81 | G90* 82 | G75* 83 | G01* 84 | G04 TopMask* 85 | %LPD*% 86 | D24* 87 | X224000Y1021000D3* 88 | Y1083000D3* 89 | X96000Y538000D3* 90 | Y600000D3* 91 | Y420000D3* 92 | Y482000D3* 93 | Y360000D3* 94 | Y298000D3* 95 | D27* 96 | X488000Y92000D3* 97 | X550000D3* 98 | X384000Y692000D3* 99 | X322000D3* 100 | D24* 101 | X96000Y236000D3* 102 | Y174000D3* 103 | D27* 104 | X184000Y92000D3* 105 | X122000D3* 106 | X250000D3* 107 | X312000D3* 108 | X221000Y960000D3* 109 | X159000D3* 110 | X232000Y692000D3* 111 | X170000D3* 112 | D24* 113 | X660000Y1032000D3* 114 | Y1094000D3* 115 | D27* 116 | X349000Y844000D3* 117 | X411000D3* 118 | X766000Y964000D3* 119 | X704000D3* 120 | X766000Y904000D3* 121 | X704000D3* 122 | X512000Y692000D3* 123 | X574000D3* 124 | X512000Y844000D3* 125 | X574000D3* 126 | D24* 127 | X834157Y387867D3* 128 | Y449867D3* 129 | D27* 130 | X951000Y192000D3* 131 | X889000D3* 132 | X1036000D3* 133 | X1098000D3* 134 | X808000Y784000D3* 135 | X870000D3* 136 | D24* 137 | X952000Y788000D3* 138 | Y850000D3* 139 | D27* 140 | Y728000D3* 141 | X1014000D3* 142 | X1068000Y560000D3* 143 | X1130000D3* 144 | X759740Y600000D3* 145 | X697740D3* 146 | D24* 147 | X822280Y599000D3* 148 | Y661000D3* 149 | D27* 150 | X809000Y545000D3* 151 | X871000D3* 152 | D24* 153 | X983863Y599000D3* 154 | Y661000D3* 155 | D101* 156 | X833757Y336273D3* 157 | X763750D3* 158 | D30* 159 | X728000Y836000D3* 160 | Y740000D3* 161 | D33* 162 | X808000Y724000D3* 163 | X878000D3* 164 | D36* 165 | X1068000Y688000D3* 166 | Y618000D3* 167 | D39* 168 | X500000Y768000D3* 169 | X596000D3* 170 | D33* 171 | X690000Y545000D3* 172 | X760000D3* 173 | X915000D3* 174 | X985000D3* 175 | D24* 176 | X160000Y1021000D3* 177 | Y1083000D3* 178 | D27* 179 | X411000Y776000D3* 180 | X349000D3* 181 | D42* 182 | X200000Y195000D3* 183 | Y245000D3* 184 | Y345000D3* 185 | Y395000D3* 186 | Y495000D3* 187 | Y545000D3* 188 | Y595000D3* 189 | X250000Y195000D3* 190 | Y245000D3* 191 | Y295000D3* 192 | Y345000D3* 193 | Y395000D3* 194 | Y445000D3* 195 | Y495000D3* 196 | Y545000D3* 197 | Y595000D3* 198 | X300000Y195000D3* 199 | Y245000D3* 200 | Y295000D3* 201 | Y345000D3* 202 | Y395000D3* 203 | Y445000D3* 204 | Y495000D3* 205 | Y545000D3* 206 | X350000Y245000D3* 207 | Y295000D3* 208 | Y345000D3* 209 | Y395000D3* 210 | Y445000D3* 211 | Y495000D3* 212 | Y545000D3* 213 | Y595000D3* 214 | X400000Y195000D3* 215 | Y245000D3* 216 | Y295000D3* 217 | Y345000D3* 218 | Y395000D3* 219 | Y445000D3* 220 | Y495000D3* 221 | Y545000D3* 222 | Y595000D3* 223 | X450000Y195000D3* 224 | Y245000D3* 225 | Y295000D3* 226 | Y345000D3* 227 | Y395000D3* 228 | Y445000D3* 229 | Y495000D3* 230 | Y545000D3* 231 | X500000Y245000D3* 232 | Y295000D3* 233 | Y345000D3* 234 | Y395000D3* 235 | Y445000D3* 236 | Y495000D3* 237 | Y545000D3* 238 | Y595000D3* 239 | X550000Y195000D3* 240 | Y245000D3* 241 | Y295000D3* 242 | Y345000D3* 243 | Y395000D3* 244 | Y445000D3* 245 | Y495000D3* 246 | Y545000D3* 247 | Y595000D3* 248 | X600000Y195000D3* 249 | Y245000D3* 250 | Y295000D3* 251 | Y395000D3* 252 | Y445000D3* 253 | Y545000D3* 254 | Y595000D3* 255 | D46* 256 | X1068000Y468000D3* 257 | X1018000D3* 258 | X968000D3* 259 | D49* 260 | X925000Y425000D3* 261 | Y375000D3* 262 | Y325000D3* 263 | D46* 264 | X968000Y282000D3* 265 | X1018000D3* 266 | X1068000D3* 267 | D49* 268 | X1111000Y325000D3* 269 | Y375000D3* 270 | Y425000D3* 271 | D51* 272 | X1018000Y375000D3* 273 | D104* 274 | X895870Y875630D3* 275 | D106* 276 | X863370Y918630D3* 277 | D109* 278 | X895870Y961630D3* 279 | D111* 280 | X830870D3* 281 | D113* 282 | Y875630D3* 283 | D82* 284 | X855000Y1060000D3* 285 | X985000D3* 286 | D24* 287 | X766000Y1032000D3* 288 | Y1094000D3* 289 | D80* 290 | X192000Y768000D3* 291 | Y888000D3* 292 | D78* 293 | X557500Y927500D3* 294 | Y1072500D3* 295 | X372500Y927500D3* 296 | Y1072500D3* 297 | D65* 298 | X1120000Y1000000D3* 299 | M02* 300 | -------------------------------------------------------------------------------- /Exports/gerbers-r1/TopPaste.gbr: -------------------------------------------------------------------------------- 1 | G04 DipTrace 3.3.1.0* 2 | G04 TopPaste.gbr* 3 | %MOMM*% 4 | G04 #@! TF.FileFunction,Paste,Top* 5 | G04 #@! TF.Part,Single* 6 | %AMOUTLINE2* 7 | 4,1,4, 8 | 0.18003,0.13, 9 | 0.18003,-0.13, 10 | -0.18003,-0.13, 11 | -0.18003,0.13, 12 | 0.18003,0.13, 13 | 0*% 14 | %AMOUTLINE4* 15 | 4,1,5, 16 | 0.105,-0.18, 17 | 0.105,0.18, 18 | 0.09852,0.18, 19 | -0.105,-0.0209, 20 | -0.105,-0.18, 21 | 0.105,-0.18, 22 | 0*% 23 | %AMOUTLINE7* 24 | 4,1,4, 25 | 0.0,0.30929, 26 | 0.30929,0.0, 27 | 0.0,-0.30929, 28 | -0.30929,0.0, 29 | 0.0,0.30929, 30 | 0*% 31 | %AMOUTLINE9* 32 | 4,1,5, 33 | 0.105,0.18, 34 | 0.105,-0.18, 35 | 0.09852,-0.18, 36 | -0.105,0.0209, 37 | -0.105,0.18, 38 | 0.105,0.18, 39 | 0*% 40 | %AMOUTLINE11* 41 | 4,1,5, 42 | -0.105,0.18, 43 | -0.105,-0.18, 44 | -0.09852,-0.18, 45 | 0.105,0.0209, 46 | 0.105,0.18, 47 | -0.105,0.18, 48 | 0*% 49 | %AMOUTLINE13* 50 | 4,1,5, 51 | -0.105,-0.18, 52 | -0.105,0.18, 53 | -0.09852,0.18, 54 | 0.105,-0.0209, 55 | 0.105,-0.18, 56 | -0.105,-0.18, 57 | 0*% 58 | %ADD25R,0.37X0.33*% 59 | %ADD28R,0.33X0.37*% 60 | %ADD31R,0.68X0.55*% 61 | %ADD34R,0.36X0.26*% 62 | %ADD37R,0.26X0.36*% 63 | %ADD40R,0.55X0.68*% 64 | %ADD43C,0.28*% 65 | %ADD47R,0.15X0.39*% 66 | %ADD50R,0.39X0.15*% 67 | %ADD52R,0.56X0.56*% 68 | %ADD79R,0.85X0.75*% 69 | %ADD81R,1.15X0.55*% 70 | %ADD83R,0.85X0.65*% 71 | %ADD102OUTLINE2*% 72 | %ADD104OUTLINE4*% 73 | %ADD107OUTLINE7*% 74 | %ADD109OUTLINE9*% 75 | %ADD111OUTLINE11*% 76 | %ADD113OUTLINE13*% 77 | %FSLAX35Y35*% 78 | G04* 79 | G71* 80 | G90* 81 | G75* 82 | G01* 83 | G04 TopPaste* 84 | %LPD*% 85 | D25* 86 | X224000Y1021000D3* 87 | Y1083000D3* 88 | X96000Y538000D3* 89 | Y600000D3* 90 | Y420000D3* 91 | Y482000D3* 92 | Y360000D3* 93 | Y298000D3* 94 | D28* 95 | X488000Y92000D3* 96 | X550000D3* 97 | X384000Y692000D3* 98 | X322000D3* 99 | D25* 100 | X96000Y236000D3* 101 | Y174000D3* 102 | D28* 103 | X184000Y92000D3* 104 | X122000D3* 105 | X250000D3* 106 | X312000D3* 107 | X221000Y960000D3* 108 | X159000D3* 109 | X232000Y692000D3* 110 | X170000D3* 111 | D25* 112 | X660000Y1032000D3* 113 | Y1094000D3* 114 | D28* 115 | X349000Y844000D3* 116 | X411000D3* 117 | X766000Y964000D3* 118 | X704000D3* 119 | X766000Y904000D3* 120 | X704000D3* 121 | X512000Y692000D3* 122 | X574000D3* 123 | X512000Y844000D3* 124 | X574000D3* 125 | D25* 126 | X834157Y387867D3* 127 | Y449867D3* 128 | D28* 129 | X951000Y192000D3* 130 | X889000D3* 131 | X1036000D3* 132 | X1098000D3* 133 | X808000Y784000D3* 134 | X870000D3* 135 | D25* 136 | X952000Y788000D3* 137 | Y850000D3* 138 | D28* 139 | Y728000D3* 140 | X1014000D3* 141 | X1068000Y560000D3* 142 | X1130000D3* 143 | X759740Y600000D3* 144 | X697740D3* 145 | D25* 146 | X822280Y599000D3* 147 | Y661000D3* 148 | D28* 149 | X809000Y545000D3* 150 | X871000D3* 151 | D25* 152 | X983863Y599000D3* 153 | Y661000D3* 154 | D102* 155 | X833757Y336273D3* 156 | X763750D3* 157 | D31* 158 | X728000Y836000D3* 159 | Y740000D3* 160 | D34* 161 | X808000Y724000D3* 162 | X878000D3* 163 | D37* 164 | X1068000Y688000D3* 165 | Y618000D3* 166 | D40* 167 | X500000Y768000D3* 168 | X596000D3* 169 | D34* 170 | X690000Y545000D3* 171 | X760000D3* 172 | X915000D3* 173 | X985000D3* 174 | D25* 175 | X160000Y1021000D3* 176 | Y1083000D3* 177 | D28* 178 | X411000Y776000D3* 179 | X349000D3* 180 | D43* 181 | X200000Y195000D3* 182 | Y245000D3* 183 | Y345000D3* 184 | Y395000D3* 185 | Y495000D3* 186 | Y545000D3* 187 | Y595000D3* 188 | X250000Y195000D3* 189 | Y245000D3* 190 | Y295000D3* 191 | Y345000D3* 192 | Y395000D3* 193 | Y445000D3* 194 | Y495000D3* 195 | Y545000D3* 196 | Y595000D3* 197 | X300000Y195000D3* 198 | Y245000D3* 199 | Y295000D3* 200 | Y345000D3* 201 | Y395000D3* 202 | Y445000D3* 203 | Y495000D3* 204 | Y545000D3* 205 | X350000Y245000D3* 206 | Y295000D3* 207 | Y345000D3* 208 | Y395000D3* 209 | Y445000D3* 210 | Y495000D3* 211 | Y545000D3* 212 | Y595000D3* 213 | X400000Y195000D3* 214 | Y245000D3* 215 | Y295000D3* 216 | Y345000D3* 217 | Y395000D3* 218 | Y445000D3* 219 | Y495000D3* 220 | Y545000D3* 221 | Y595000D3* 222 | X450000Y195000D3* 223 | Y245000D3* 224 | Y295000D3* 225 | Y345000D3* 226 | Y395000D3* 227 | Y445000D3* 228 | Y495000D3* 229 | Y545000D3* 230 | X500000Y245000D3* 231 | Y295000D3* 232 | Y345000D3* 233 | Y395000D3* 234 | Y445000D3* 235 | Y495000D3* 236 | Y545000D3* 237 | Y595000D3* 238 | X550000Y195000D3* 239 | Y245000D3* 240 | Y295000D3* 241 | Y345000D3* 242 | Y395000D3* 243 | Y445000D3* 244 | Y495000D3* 245 | Y545000D3* 246 | Y595000D3* 247 | X600000Y195000D3* 248 | Y245000D3* 249 | Y295000D3* 250 | Y395000D3* 251 | Y445000D3* 252 | Y545000D3* 253 | Y595000D3* 254 | D47* 255 | X1068000Y468000D3* 256 | X1018000D3* 257 | X968000D3* 258 | D50* 259 | X925000Y425000D3* 260 | Y375000D3* 261 | Y325000D3* 262 | D47* 263 | X968000Y282000D3* 264 | X1018000D3* 265 | X1068000D3* 266 | D50* 267 | X1111000Y325000D3* 268 | Y375000D3* 269 | Y425000D3* 270 | D52* 271 | X1018000Y375000D3* 272 | D104* 273 | X895870Y875630D3* 274 | D107* 275 | X863370Y918630D3* 276 | D109* 277 | X895870Y961630D3* 278 | D111* 279 | X830870D3* 280 | D113* 281 | Y875630D3* 282 | D83* 283 | X855000Y1060000D3* 284 | X985000D3* 285 | D25* 286 | X766000Y1032000D3* 287 | Y1094000D3* 288 | D81* 289 | X192000Y768000D3* 290 | Y888000D3* 291 | D79* 292 | X557500Y927500D3* 293 | Y1072500D3* 294 | X372500Y927500D3* 295 | Y1072500D3* 296 | M02* 297 | -------------------------------------------------------------------------------- /Exports/gerbers-r1/TopSilk.gbr: -------------------------------------------------------------------------------- 1 | G04 DipTrace 3.3.1.0* 2 | G04 TopSilk.gbr* 3 | %MOMM*% 4 | G04 #@! TF.FileFunction,Legend,Top* 5 | G04 #@! TF.Part,Single* 6 | %ADD21C,0.2*% 7 | %ADD41C,0.49995*% 8 | %ADD44C,0.75002*% 9 | %ADD103C,0.07843*% 10 | %FSLAX35Y35*% 11 | G04* 12 | G71* 13 | G90* 14 | G75* 15 | G01* 16 | G04 TopSilk* 17 | %LPD*% 18 | X149995Y144995D2* 19 | D21* 20 | X650000D1* 21 | Y645000D1* 22 | X149995D1* 23 | Y144995D1* 24 | D41* 25 | X124997Y119997D3* 26 | D44* 27 | X1155499Y512499D3* 28 | X1097996Y515003D2* 29 | D21* 30 | X878000D1* 31 | Y235000D1* 32 | X1158003D1* 33 | Y454996D1* 34 | X833372Y828630D2* 35 | X793370D1* 36 | Y883636D1* 37 | X141996Y723000D2* 38 | X242004D1* 39 | X630000Y1045010D2* 40 | Y1140000D1* 41 | X544998D1* 42 | X40000Y720000D2* 43 | Y1120000D1* 44 | X440000D1* 45 | X704966Y437105D2* 46 | D103* 47 | X702552Y441935D1* 48 | X697666Y446820D1* 49 | X692837Y449235D1* 50 | X683123D1* 51 | X678237Y446820D1* 52 | X673408Y441935D1* 53 | X670937Y437105D1* 54 | X668523Y429805D1* 55 | Y417620D1* 56 | X670937Y410376D1* 57 | X673408Y405491D1* 58 | X678237Y400662D1* 59 | X683123Y398191D1* 60 | X692837D1* 61 | X697666Y400662D1* 62 | X702552Y405491D1* 63 | X704966Y410376D1* 64 | X723123Y437049D2* 65 | Y439464D1* 66 | X725538Y444349D1* 67 | X727953Y446764D1* 68 | X732838Y449178D1* 69 | X742553D1* 70 | X747382Y446764D1* 71 | X749797Y444349D1* 72 | X752267Y439464D1* 73 | Y434635D1* 74 | X749797Y429749D1* 75 | X744967Y422505D1* 76 | X720653Y398191D1* 77 | X754682D1* 78 | X772839Y437049D2* 79 | Y439464D1* 80 | X775254Y444349D1* 81 | X777668Y446764D1* 82 | X782554Y449178D1* 83 | X792268D1* 84 | X797097Y446764D1* 85 | X799512Y444349D1* 86 | X801983Y439464D1* 87 | Y434635D1* 88 | X799512Y429749D1* 89 | X794683Y422505D1* 90 | X770368Y398191D1* 91 | X804397D1* 92 | X890380Y143065D2* 93 | X887965Y147895D1* 94 | X883080Y152780D1* 95 | X878251Y155195D1* 96 | X868536D1* 97 | X863651Y152780D1* 98 | X858821Y147895D1* 99 | X856351Y143065D1* 100 | X853936Y135765D1* 101 | Y123580D1* 102 | X856351Y116336D1* 103 | X858821Y111451D1* 104 | X863651Y106622D1* 105 | X868536Y104151D1* 106 | X878251D1* 107 | X883080Y106622D1* 108 | X887965Y111451D1* 109 | X890380Y116336D1* 110 | X908537Y143009D2* 111 | Y145424D1* 112 | X910951Y150309D1* 113 | X913366Y152724D1* 114 | X918251Y155138D1* 115 | X927966D1* 116 | X932795Y152724D1* 117 | X935210Y150309D1* 118 | X937681Y145424D1* 119 | Y140595D1* 120 | X935210Y135709D1* 121 | X930381Y128465D1* 122 | X906066Y104151D1* 123 | X940095D1* 124 | X960667Y155138D2* 125 | X987340D1* 126 | X972796Y135709D1* 127 | X980096D1* 128 | X984925Y133295D1* 129 | X987340Y130880D1* 130 | X989811Y123580D1* 131 | Y118751D1* 132 | X987340Y111451D1* 133 | X982511Y106565D1* 134 | X975211Y104151D1* 135 | X967911D1* 136 | X960667Y106565D1* 137 | X958252Y109036D1* 138 | X955782Y113865D1* 139 | X1039919Y144685D2* 140 | X1037504Y149515D1* 141 | X1032619Y154400D1* 142 | X1027790Y156815D1* 143 | X1018075D1* 144 | X1013190Y154400D1* 145 | X1008361Y149515D1* 146 | X1005890Y144685D1* 147 | X1003475Y137385D1* 148 | Y125200D1* 149 | X1005890Y117956D1* 150 | X1008361Y113071D1* 151 | X1013190Y108242D1* 152 | X1018075Y105771D1* 153 | X1027790D1* 154 | X1032619Y108242D1* 155 | X1037504Y113071D1* 156 | X1039919Y117956D1* 157 | X1058076Y144629D2* 158 | Y147044D1* 159 | X1060491Y151929D1* 160 | X1062905Y154344D1* 161 | X1067791Y156758D1* 162 | X1077505D1* 163 | X1082335Y154344D1* 164 | X1084749Y151929D1* 165 | X1087220Y147044D1* 166 | Y142215D1* 167 | X1084749Y137329D1* 168 | X1079920Y130085D1* 169 | X1055605Y105771D1* 170 | X1089635D1* 171 | X1129636D2* 172 | Y156758D1* 173 | X1105321Y122785D1* 174 | X1141765D1* 175 | X1030578Y833149D2* 176 | X1028164Y837978D1* 177 | X1023278Y842863D1* 178 | X1018449Y845278D1* 179 | X1008735D1* 180 | X1003849Y842863D1* 181 | X999020Y837978D1* 182 | X996549Y833149D1* 183 | X994135Y825849D1* 184 | Y813663D1* 185 | X996549Y806420D1* 186 | X999020Y801534D1* 187 | X1003849Y796705D1* 188 | X1008735Y794234D1* 189 | X1018449D1* 190 | X1023278Y796705D1* 191 | X1028164Y801534D1* 192 | X1030578Y806420D1* 193 | X1048736Y833093D2* 194 | Y835507D1* 195 | X1051150Y840393D1* 196 | X1053565Y842807D1* 197 | X1058450Y845222D1* 198 | X1068165D1* 199 | X1072994Y842807D1* 200 | X1075409Y840393D1* 201 | X1077879Y835507D1* 202 | Y830678D1* 203 | X1075409Y825793D1* 204 | X1070579Y818549D1* 205 | X1046265Y794234D1* 206 | X1080294D1* 207 | X1125124Y837978D2* 208 | X1122709Y842807D1* 209 | X1115409Y845222D1* 210 | X1110580D1* 211 | X1103280Y842807D1* 212 | X1098395Y835507D1* 213 | X1095980Y823378D1* 214 | Y811249D1* 215 | X1098395Y801534D1* 216 | X1103280Y796649D1* 217 | X1110580Y794234D1* 218 | X1112995D1* 219 | X1120239Y796649D1* 220 | X1125124Y801534D1* 221 | X1127539Y808834D1* 222 | Y811249D1* 223 | X1125124Y818549D1* 224 | X1120239Y823378D1* 225 | X1112995Y825793D1* 226 | X1110580D1* 227 | X1103280Y823378D1* 228 | X1098395Y818549D1* 229 | X1095980Y811249D1* 230 | X669076Y362605D2* 231 | Y311561D1* 232 | X698219D1* 233 | X713906Y352834D2* 234 | X718791Y355305D1* 235 | X726091Y362548D1* 236 | Y311561D1* 237 | X1101216Y680335D2* 238 | Y629291D1* 239 | X1130360D1* 240 | X1170361D2* 241 | Y680278D1* 242 | X1146046Y646305D1* 243 | X1182490D1* 244 | X100747Y1022183D2* 245 | Y1044027D1* 246 | X98276Y1051327D1* 247 | X95861Y1053798D1* 248 | X91032Y1056212D1* 249 | X86147D1* 250 | X81318Y1053798D1* 251 | X78847Y1051327D1* 252 | X76432Y1044027D1* 253 | Y1022183D1* 254 | X127476D1* 255 | X100747Y1039198D2* 256 | X127476Y1056212D1* 257 | X86203Y1071899D2* 258 | X83732Y1076784D1* 259 | X76488Y1084084D1* 260 | X127476D1* 261 | X668050Y147395D2* 262 | Y110951D1* 263 | X670464Y103651D1* 264 | X675350Y98822D1* 265 | X682650Y96351D1* 266 | X687479D1* 267 | X694779Y98822D1* 268 | X699664Y103651D1* 269 | X702079Y110951D1* 270 | Y147395D1* 271 | X717765Y137624D2* 272 | X722650Y140095D1* 273 | X729950Y147338D1* 274 | Y96351D1* 275 | X775518Y288938D2* 276 | Y252494D1* 277 | X777932Y245194D1* 278 | X782818Y240365D1* 279 | X790118Y237894D1* 280 | X794947D1* 281 | X802247Y240365D1* 282 | X807132Y245194D1* 283 | X809547Y252494D1* 284 | Y288938D1* 285 | X827704Y276753D2* 286 | Y279167D1* 287 | X830119Y284053D1* 288 | X832533Y286467D1* 289 | X837419Y288882D1* 290 | X847133D1* 291 | X851962Y286467D1* 292 | X854377Y284053D1* 293 | X856848Y279167D1* 294 | Y274338D1* 295 | X854377Y269453D1* 296 | X849548Y262209D1* 297 | X825233Y237894D1* 298 | X859262D1* 299 | X930108Y940575D2* 300 | Y904131D1* 301 | X932522Y896831D1* 302 | X937408Y892002D1* 303 | X944708Y889531D1* 304 | X949537D1* 305 | X956837Y892002D1* 306 | X961722Y896831D1* 307 | X964137Y904131D1* 308 | Y940575D1* 309 | X984709Y940518D2* 310 | X1011382D1* 311 | X996838Y921089D1* 312 | X1004138D1* 313 | X1008967Y918675D1* 314 | X1011382Y916260D1* 315 | X1013852Y908960D1* 316 | Y904131D1* 317 | X1011382Y896831D1* 318 | X1006552Y891945D1* 319 | X999252Y889531D1* 320 | X991952D1* 321 | X984709Y891945D1* 322 | X982294Y894416D1* 323 | X979823Y899245D1* 324 | X1080877Y1110689D2* 325 | X1078462Y1115518D1* 326 | X1073577Y1120403D1* 327 | X1068748Y1122818D1* 328 | X1059033D1* 329 | X1054148Y1120403D1* 330 | X1049319Y1115518D1* 331 | X1046848Y1110689D1* 332 | X1044433Y1103389D1* 333 | Y1091203D1* 334 | X1046848Y1083960D1* 335 | X1049319Y1079074D1* 336 | X1054148Y1074245D1* 337 | X1059033Y1071774D1* 338 | X1068748D1* 339 | X1073577Y1074245D1* 340 | X1078462Y1079074D1* 341 | X1080877Y1083960D1* 342 | X1096563Y1113047D2* 343 | X1101449Y1115518D1* 344 | X1108749Y1122762D1* 345 | Y1071774D1* 346 | X1153579Y1115518D2* 347 | X1151164Y1120347D1* 348 | X1143864Y1122762D1* 349 | X1139035D1* 350 | X1131735Y1120347D1* 351 | X1126850Y1113047D1* 352 | X1124435Y1100918D1* 353 | Y1088789D1* 354 | X1126850Y1079074D1* 355 | X1131735Y1074189D1* 356 | X1139035Y1071774D1* 357 | X1141450D1* 358 | X1148693Y1074189D1* 359 | X1153579Y1079074D1* 360 | X1155993Y1086374D1* 361 | Y1088789D1* 362 | X1153579Y1096089D1* 363 | X1148693Y1100918D1* 364 | X1141450Y1103333D1* 365 | X1139035D1* 366 | X1131735Y1100918D1* 367 | X1126850Y1096089D1* 368 | X1124435Y1088789D1* 369 | X66765Y795950D2* 370 | X117809Y829979D1* 371 | X66765D2* 372 | X117809Y795950D1* 373 | X76536Y845665D2* 374 | X74066Y850551D1* 375 | X66822Y857851D1* 376 | X117809Y857850D1* 377 | X264255Y958588D2* 378 | X315299Y992617D1* 379 | X264255D2* 380 | X315299Y958588D1* 381 | X276441Y1010774D2* 382 | X274026D1* 383 | X269141Y1013189D1* 384 | X266726Y1015603D1* 385 | X264312Y1020489D1* 386 | Y1030203D1* 387 | X266726Y1035033D1* 388 | X269141Y1037447D1* 389 | X274026Y1039918D1* 390 | X278856D1* 391 | X283741Y1037447D1* 392 | X290985Y1032618D1* 393 | X315299Y1008303D1* 394 | Y1042332D1* 395 | M02* 396 | -------------------------------------------------------------------------------- /Exports/gerbers-r1/Top_Ground-L2.drl: -------------------------------------------------------------------------------- 1 | M48 2 | METRIC,0000.00 3 | T01C0.153 4 | % 5 | T01 6 | X+000322Y+000692 7 | X+000197Y+000192 8 | X+000500Y+000395 9 | X+000500Y+000445 10 | X+000504Y+000545 11 | X+000698Y+000658 12 | X+000751Y+000681 13 | X+000809Y+000683 14 | X+000880Y+000674 15 | X+000940Y+000671 16 | X+000833Y+000492 17 | X+000789Y+000453 18 | X+000743Y+000493 19 | X+000678Y+000506 20 | X+000677Y+000422 21 | X+000726Y+000390 22 | X+000720Y+000323 23 | X+000755Y+000262 24 | X+000788Y+000215 25 | X+000835Y+000175 26 | X+000720Y+000050 27 | X+000620Y+000050 28 | X+000520Y+000050 29 | X+000246Y+000495 30 | X+000095Y+000485 31 | X+000050Y+000665 32 | X+000050Y+000760 33 | X+000050Y+000910 34 | X+000159Y+000959 35 | X+000050Y+001010 36 | X+000050Y+001110 37 | X+000220Y+001110 38 | X+000300Y+001110 39 | X+000400Y+001110 40 | X+000700Y+001110 41 | X+000785Y+001110 42 | X+000865Y+000915 43 | X+000644Y+000914 44 | X+000705Y+000964 45 | X+000666Y+000756 46 | X+000643Y+000705 47 | X+000599Y+000664 48 | X+000170Y+000695 49 | X+000050Y+000380 50 | X+000050Y+000280 51 | X+000050Y+000165 52 | X+000050Y+000050 53 | X+000140Y+000050 54 | X+000280Y+000050 55 | X+000380Y+000050 56 | X+000820Y+000050 57 | X+000905Y+000147 58 | X+000969Y+000147 59 | X+001038Y+000147 60 | X+001103Y+000147 61 | X+001103Y+000239 62 | X+001117Y+000297 63 | X+001200Y+000430 64 | X+001200Y+000520 65 | X+001110Y+000500 66 | X+001029Y+000519 67 | X+001030Y+000601 68 | X+001028Y+000672 69 | X+001110Y+000665 70 | X+001110Y+000605 71 | X+001200Y+000710 72 | X+001200Y+000810 73 | X+001200Y+000910 74 | X+001200Y+001010 75 | X+001200Y+001110 76 | X+001120Y+001110 77 | X+001030Y+001110 78 | X+000930Y+001110 79 | X+000985Y+000880 80 | X+001000Y+000830 81 | X+001000Y+000775 82 | X+001060Y+000770 83 | X+001100Y+000730 84 | X+000924Y+000493 85 | X+000995Y+000355 86 | X+001040Y+000395 87 | X+001019Y+000237 88 | X+000971Y+000237 89 | X+000882Y+000243 90 | X+000872Y+000429 91 | X+000920Y+000050 92 | X+001020Y+000050 93 | X+001110Y+000050 94 | T00 95 | M30 96 | -------------------------------------------------------------------------------- /Exports/gerbers-r1/Top_Power-L3.drl: -------------------------------------------------------------------------------- 1 | M48 2 | METRIC,0000.00 3 | T01C0.153 4 | % 5 | T01 6 | X+000384Y+000691 7 | X+000400Y+000595 8 | X+000400Y+000545 9 | X+000447Y+000498 10 | X+000198Y+000399 11 | X+000150Y+000250 12 | X+000550Y+000399 13 | X+000546Y+000549 14 | X+000697Y+000602 15 | X+000488Y+000092 16 | X+000414Y+000243 17 | X+000198Y+000493 18 | X+000198Y+000548 19 | X+000130Y+001070 20 | X+000835Y+001045 21 | X+000835Y+001005 22 | X+000604Y+000749 23 | X+000095Y+000540 24 | X+000095Y+000360 25 | T00 26 | M30 27 | -------------------------------------------------------------------------------- /Exports/gerbers-r1/components.csv: -------------------------------------------------------------------------------- 1 | RefDes;Name;Pattern;X (mm);Y (mm);Side;Rotate;Value 2 | C1;CAP_0402;RES_0201;2.24;10.52;Top;90;1n 3 | C2;CAP_0402;RES_0201;0.96;5.69;Top;90;100n 4 | C4;CAP_0402;RES_0201;0.96;4.51;Top;90;10n 5 | C5;CAP_0402;RES_0201;0.96;3.29;Top;270;100n 6 | C6;CAP_0402;RES_0201;5.19;0.92;Top;0;100n 7 | C7;CAP_0402;RES_0201;3.53;6.92;Top;180;100n 8 | C9;CAP_0402;RES_0201;0.96;2.05;Top;270;100n 9 | C10;CAP_0402;RES_0201;1.53;0.92;Top;180;100n 10 | C11;CAP_0402;RES_0201;2.81;0.92;Top;0;100n 11 | C12;CAP_0402;RES_0201;1.9;9.6;Top;180;5p 12 | C13;CAP_0402;RES_0201;2.01;6.92;Top;180;5p 13 | C14;CAP_0402;RES_0201;6.6;10.63;Top;90;100n 14 | C15;CAP_0402;RES_0201;3.8;8.44;Top;0;np 15 | C18;CAP_0402;RES_0201;7.35;9.64;Top;180;100n 16 | C19;CAP_0402;RES_0201;7.35;9.04;Top;180;1n 17 | C20;CAP_0402;RES_0201;5.43;6.92;Top;0;10n 18 | C21;CAP_0402;RES_0201;5.43;8.44;Top;0;5p 19 | C22;CAP_0402;RES_0201;8.342;4.189;Top;90;5p 20 | C23;CAP_0402;RES_0201;9.2;1.92;Top;180;5p 21 | C24;CAP_0402;RES_0201;10.67;1.92;Top;0;5p 22 | C25;CAP_0402;RES_0201;8.39;7.84;Top;0;5p 23 | C26;CAP_0402;RES_0201;9.52;8.19;Top;90;5p 24 | C27;CAP_0402;RES_0201;9.83;7.28;Top;0;5p 25 | C28;CAP_0402;RES_0201;10.99;5.6;Top;0;5p 26 | C29;CAP_0402;RES_0201;7.287;6;Top;180;5p 27 | C30;CAP_0402;RES_0201;8.223;6.3;Top;90;5p 28 | C31;CAP_0402;RES_0201;8.4;5.45;Top;0;5p 29 | C32;CAP_0402;RES_0201;9.839;6.3;Top;90;5p 30 | L1;IND_0201;IND_0201;7.988;3.363;Top;180; 31 | L2;IND_0402;IND_0402;7.28;7.88;Top;270; 32 | L3;IND_0201;IND_0201;8.43;7.24;Top;0; 33 | L4;IND_0201;IND_0201;10.68;6.53;Top;270; 34 | L5;IND_0402;IND_0402;5.48;7.68;Top;0; 35 | L6;IND_0201;IND_0201;7.25;5.45;Top;0; 36 | L7;IND_0201;IND_0201;9.5;5.45;Top;0; 37 | R1;RES_0402;RES_0201;1.6;10.52;Top;90;100k 38 | R2;RES_0402;RES_0201;3.8;7.76;Top;180;Nk 39 | U1;STM32WLE5Jx;UFBGA73-STM32WL;4;3.95;Top;90; 40 | U2;SKY13373-460LF;SKY13373-460LF;10.18;3.75;Top;270; 41 | U3;LP5907 XSON-4;DQN0004A (X2SON4);8.634;9.186;Top;90; 42 | C16;CAP_0402;CAP_0402;9.2;10.6;Top;0;100n 43 | C17;CAP_0402;RES_0201;7.66;10.63;Top;90;1u 44 | X1;SMD2-1.6x1.0;SMD2-1.6x1.0;1.92;8.28;Top;90;32.768k 45 | X2;SMD4-2.5x2.0;SMD4-2.5x2.0;4.65;10;Top;180;32 MHz 46 | -------------------------------------------------------------------------------- /Exports/module-assembly.pdf: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cc7ccfcf59751e20985844b8fb7b7a46c725d24bcdcfbe772744c140d6febb28 3 | size 160863 4 | -------------------------------------------------------------------------------- /Exports/module-schematic.pdf: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1853b219e7ac0e06fce33412c608787f150c3707318a9d6d478345078a1beff6 3 | size 577886 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /Library-Files/HTLoRa.eli: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:75bb2d0cb3d4d58d53fd964175c7157c8463773258dea266b7f7f0965b1d8ecd 3 | size 10138 4 | -------------------------------------------------------------------------------- /Library-Files/HTLoRa.lib: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:35ea73a3171fc794a932b46c42e2528d6d8603f6f8b32a122a937239bb3a333c 3 | size 5391 4 | -------------------------------------------------------------------------------- /Library-Files/htlora-pattern.asc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:88dc350b03a1be2bf7db22d0421f03401edb7bdeda61a1b38670e49ef490f7a1 3 | size 42131 4 | -------------------------------------------------------------------------------- /Library-Files/htlora-pattern.lbr: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | HTLoRa 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | -------------------------------------------------------------------------------- /Library-Files/htlora-schematic.asc: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e7be19270aee3a7c9ae855be155655cb2fdf3f0a84f499eba141d71ec953dacd 3 | size 85068 4 | -------------------------------------------------------------------------------- /Library-Files/htlora-schematic.lbr: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | HTLoRa 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 | 233 | 234 | 235 | 236 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 244 | 245 | 246 | 247 | 248 | 249 | 250 | 251 | 252 | 253 | 254 | 255 | 256 | 257 | 258 | 259 | 260 | 261 | 262 | 263 | 264 | 265 | 266 | 267 | 268 | 269 | 270 | 271 | 272 | 273 | 274 | 275 | 276 | 277 | 278 | 279 | 280 | 281 | 282 | 283 | 284 | 285 | 286 | 287 | 288 | 289 | 290 | 291 | 292 | 293 | 294 | 295 | 296 | 297 | 298 | 299 | 300 | 301 | 302 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # stm32wl-module-1 2 | A LoRa+MCU module that can be implemented as a tiny PCB (roughly 12 x 11 mm). It uses the STM32WLE5 IC. An Arduino-form-factor dev board design is also provided. 3 | 4 | ## HW Features ## 5 | 6 | ### Overview ### 7 | * STM32WLE5 MCU + LoRa Transceiver 8 | * Split TX/RX for maximum sensitivity 9 | * Supports full TX dynamic range via individual high-power and low-power TX paths 10 | * 32.768 kHz high-precision RTC crystal 11 | * 32.000 MHz +/- 1ppm TCXO 12 | * Configurable to use multiple DC supply options: 13 | * 1.8V + 3.3V (best performance) 14 | * 1.8V only (low power TX only) 15 | * 3.3V only 16 | * 3.3V with user-supplied, off-module LC tank circuit to support integrated DC-DC buck. 17 | 18 | ### PCB specs ### 19 | This is a moderate-density PCB design utilizing a BGA, so it cannot be produced on a low-cost PCB process. On the plus side, it's so small that the price-per-board is low. 20 | * The module is designed to be produced on the PCBWay 4-layer Stackup at 0.4 mm board thickness, using normal FR-4. 21 | * It requires blind vias and via-in-pad, although there are __no buried vias__. 22 | * Space / Trace tolerance is 0.075 mm. 23 | * For low-volume garage manufacturing, a 5 x 4 PCB panel works nicely. 24 | 25 | ### Compatibility with Murata ABZ-type modules ### 26 | This module fits the same footprint as the Murata ABZ-type modules, although it is not pin-compatible. The pin positions have been kept as close as possible to the corresponding positions on the ABZ modules, but due to the different features of the underlying hardware, some pins have been optimized to different locations. 27 | 28 | ## CAD Format ## 29 | The project was created in DipTrace. It's a high quality PCB CAD program at a reasonable price. Conversions to other CAD file formats are welcome and appreciated, although, at this time, DipTrace is selected as the CAD program for mainline, forward development. 30 | 31 | ## Licensing ## 32 | The license is GPL v3, which means that derivative works based on this work must be distributed also via GPL v3 or a compatible license. If you wish to use this work outside the limitations of the GPL v3, please contact the creator (JP Norair) and we can arrange something. As a personal note, I (JP Norair, creator of LPGSM) am less interested in profiting with money on this particular project than I am with cultivating it into the ultimate reference design for low power RF. So various forms of in-kind contributions are preferred. 33 | 34 | --------------------------------------------------------------------------------