├── sc14cvmdect-devboard.pdf ├── header_boards └── audio_header │ ├── audio_header.pdf │ ├── fp-lib-table │ ├── README.md │ ├── custom_footprints.pretty │ ├── Speaker_CUI_CMR-15062S-67.kicad_mod │ └── Jack_3.5mm_CUI_SJ-4351X-SMT_Horizontal.kicad_mod │ └── audio_header.kicad_pro ├── fp-lib-table ├── sym-lib-table ├── .gitignore ├── README.md ├── .github └── workflows │ ├── pcb_image.yaml │ └── render_pdf.yaml ├── custom_library ├── sc14cvmdect-pinout.csv ├── custom_library.pretty │ └── SC14CVMDECT.kicad_mod ├── custom_library.kicad_sym └── sc14cvmdect.kicad_sym ├── LICENSE.txt └── sc14cvmdect-devboard.kicad_pro /sc14cvmdect-devboard.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funkeleinhorn/sc14cvmdect-devboard/HEAD/sc14cvmdect-devboard.pdf -------------------------------------------------------------------------------- /header_boards/audio_header/audio_header.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funkeleinhorn/sc14cvmdect-devboard/HEAD/header_boards/audio_header/audio_header.pdf -------------------------------------------------------------------------------- /fp-lib-table: -------------------------------------------------------------------------------- 1 | (fp_lib_table 2 | (version 7) 3 | (lib (name "custom_library")(type "KiCad")(uri "${KIPRJMOD}/custom_library/custom_library.pretty")(options "")(descr "")) 4 | ) 5 | -------------------------------------------------------------------------------- /header_boards/audio_header/fp-lib-table: -------------------------------------------------------------------------------- 1 | (fp_lib_table 2 | (version 7) 3 | (lib (name "custom_footprints")(type "KiCad")(uri "${KIPRJMOD}/custom_footprints.pretty")(options "")(descr "")) 4 | ) 5 | -------------------------------------------------------------------------------- /sym-lib-table: -------------------------------------------------------------------------------- 1 | (sym_lib_table 2 | (version 7) 3 | (lib (name "custom_library")(type "KiCad")(uri "${KIPRJMOD}/custom_library/custom_library.kicad_sym")(options "")(descr "")) 4 | (lib (name "kicad-pride-flags")(type "KiCad")(uri "/home/funkeleinhorn/repos/github/uart-converter-pcb/kicad-pride-flags.kicad_sym")(options "")(descr "")) 5 | ) 6 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # For PCBs designed using KiCad: https://www.kicad.org/ 2 | # Format documentation: https://kicad.org/help/file-formats/ 3 | 4 | # Temporary files 5 | *.000 6 | *.bak 7 | *.bck 8 | *.kicad_pcb-bak 9 | *.kicad_sch-bak 10 | *-backups 11 | *.kicad_prl 12 | *.sch-bak 13 | *~ 14 | _autosave-* 15 | *.tmp 16 | *-save.pro 17 | *-save.kicad_pcb 18 | fp-info-cache 19 | ~*.lck 20 | \#auto_saved_files# 21 | 22 | # Netlist files (exported from Eeschema) 23 | *.net 24 | 25 | # Autorouter files (exported from Pcbnew) 26 | *.dsn 27 | *.ses 28 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # SC14CVMDECT Devboard 2 | 3 | ![Static Badge](https://img.shields.io/badge/-Open_Hardware-white?logo=opensourcehardware&logoColor=blue) 4 | ![GitHub License](https://img.shields.io/github/license/funkeleinhorn/sc14cvmdect-devboard) 5 | [![Upload to - AISLER](https://img.shields.io/badge/Upload_to_-AISLER-ff8000)](https://aisler.net/p/new?url=https://raw.githubusercontent.com/funkeleinhorn/sc14cvmdect-devboard/refs/heads/main/sc14cvmdect-devboard.kicad_pcb&ref=github) 6 | 7 | Open Hardware devboard for the [SC14CVMDECT](https://www.renesas.com/en/products/wireless-connectivity/dect/sc14cvmdect-cordless-voice-module) module from Renesas. 8 | Documentation of the devboard and the existing Open Source Software implementations for the SC14CVMDECT module can be found at [redected.org](https://redected.org). 9 | 10 | This project is licensed as open hardware. See LICENSE.txt for details. 11 | 12 | ## Images 13 | 14 | Here you can see how the PCB looks: 15 | 16 | ![top](https://funkeleinhorn.github.io/sc14cvmdect-devboard/devboard/top.png) 17 | ![bottom](https://funkeleinhorn.github.io/sc14cvmdect-devboard/devboard/bottom.png) 18 | -------------------------------------------------------------------------------- /header_boards/audio_header/README.md: -------------------------------------------------------------------------------- 1 | # SC14CVMDECT Devboard Audio Header 2 | 3 | ![Static Badge](https://img.shields.io/badge/-Open_Hardware-white?logo=opensourcehardware&logoColor=blue) 4 | ![GitHub License](https://img.shields.io/github/license/funkeleinhorn/sc14cvmdect-devboard) 5 | [![Upload to - AISLER](https://img.shields.io/badge/Upload_to_-AISLER-ff8000)](https://aisler.net/p/new?url=https://raw.githubusercontent.com/funkeleinhorn/sc14cvmdect-devboard/refs/heads/main/sc14cvmdect-devboard.kicad_pcb&ref=github) 6 | 7 | Header board providing audio circutry for the Open Hardware devboard for the [SC14CVMDECT](https://www.renesas.com/en/products/wireless-connectivity/dect/sc14cvmdect-cordless-voice-module) module from Renesas. 8 | Documentation of the devboard and the header boards can be found at [redected.org](https://redected.org). 9 | 10 | This project is licensed as open hardware. See LICENSE.txt for details. 11 | 12 | ## Images 13 | 14 | Here you can see how the PCB looks: 15 | 16 | ![top](https://funkeleinhorn.github.io/sc14cvmdect-devboard/headers/audio/top.png) 17 | ![bottom](https://funkeleinhorn.github.io/sc14cvmdect-devboard/headers/audio/bottom.png) 18 | -------------------------------------------------------------------------------- /.github/workflows/pcb_image.yaml: -------------------------------------------------------------------------------- 1 | name: pcb_image 2 | on: 3 | push: 4 | jobs: 5 | render-image: 6 | name: render-image 7 | runs-on: ubuntu-latest 8 | steps: 9 | - name: Check out the repo 10 | uses: actions/checkout@v4 11 | 12 | - name: render pcb image 13 | uses: linalinn/kicad-render@main 14 | with: 15 | pcb_file: sc14cvmdect-devboard.kicad_pcb 16 | output_path: ${{ github.workspace }}/images/devboard 17 | - name: render audio header image 18 | uses: linalinn/kicad-render@main 19 | with: 20 | pcb_file: header_boards/audio_header/audio_header.kicad_pcb 21 | output_path: ${{ github.workspace }}/images/headers/audio 22 | - name: Setup Pages 23 | if: github.ref == 'refs/heads/main' 24 | uses: actions/configure-pages@v5 25 | 26 | - name: Upload Artifact 27 | if: github.ref == 'refs/heads/main' 28 | uses: actions/upload-pages-artifact@v3 29 | with: 30 | path: "images" 31 | 32 | deploy-pages: 33 | if: github.ref == 'refs/heads/main' 34 | runs-on: ubuntu-latest 35 | needs: render-image 36 | 37 | permissions: 38 | pages: write 39 | id-token: write 40 | 41 | environment: 42 | name: github-pages 43 | url: ${{ steps.deployment.outputs.page_url }} 44 | 45 | steps: 46 | - name: Deploy to GitHub Pages 47 | id: deployment 48 | uses: actions/deploy-pages@v4 49 | -------------------------------------------------------------------------------- /.github/workflows/render_pdf.yaml: -------------------------------------------------------------------------------- 1 | name: Export Schematic PDF 2 | 3 | on: 4 | push: 5 | paths: 6 | - 'sc14cvmdect-devboard.kicad_sch' 7 | - 'header_boards/audio_header/audio_header.kicad_sch' 8 | workflow_dispatch: 9 | 10 | jobs: 11 | export-schematic-pdf: 12 | runs-on: ubuntu-latest 13 | permissions: 14 | contents: write 15 | 16 | steps: 17 | - name: Check out repository 18 | uses: actions/checkout@v3 19 | 20 | - name: Install kicad / kicad-cli 21 | run: | 22 | sudo add-apt-repository --yes ppa:kicad/kicad-9.0-releases 23 | sudo apt update 24 | sudo apt install --install-recommends kicad 25 | 26 | - name: Export schematic to PDF 27 | run: | 28 | kicad-cli sch export pdf sc14cvmdect-devboard.kicad_sch --output sc14cvmdect-devboard.pdf 29 | kicad-cli sch export pdf header_boards/audio_header/audio_header.kicad_sch --output header_boards/audio_header/audio_header.pdf 30 | 31 | - name: Commit and push changes 32 | run: | 33 | git config user.name "github-actions" 34 | git config user.email "github-actions@github.com" 35 | 36 | # Stage the PDF 37 | git add sc14cvmdect-devboard.pdf 38 | git add header_boards/audio_header/audio_header.pdf 39 | 40 | # Commit only if there are changes 41 | if git diff --cached --quiet; then 42 | echo "No changes to commit." 43 | else 44 | git commit -m "chore: update schematic PDF [skip ci]" 45 | git push 46 | fi 47 | -------------------------------------------------------------------------------- /custom_library/sc14cvmdect-pinout.csv: -------------------------------------------------------------------------------- 1 | Name,SC14CVMDECT,,,, 2 | Reference,U,,,, 3 | Datasheet,https://4donline.ihs.com/images/VipMasterIC/IC/RNCC/RNCC-S-A0015592214/RNCC-S-A0015785019-1.pdf?hkey=6D3A4C79FDBF58556ACFDE234799DDF0,,,, 4 | Description,"The SC14CVMDECT SF is a member of the Cordless 5 | Module family with integrated radio transceiver and 6 | baseband processor in a single package. It is designed 7 | for hosted and embedded cordless voice and data 8 | applications in the DECT frequency band. Its simple to 9 | use API commands allow easy setup of a wireless link 10 | between two or more nodes.",,,, 11 | Keywords,"DECT, RF, TELEPHONY",,,, 12 | Footprint,,,,, 13 | Footprint Filter,,,,, 14 | ,,,,, 15 | PIN,Name,Type,Side,Description, 16 | "63,64",VBATIN,power_in,top,Main supply voltage < 3.45 V., 17 | 25,VDDPA,power_in,top,CLASSD Audio Amplifier supply voltage up to 3.45 V.GND or leave unconnected if CLASSD Audio Amplifier is not used., 18 | ,,,,, 19 | "1,6,14,28,38,45,49-51,60,70-72,74,76-78,80",GND,power_in,bottom,, 20 | 11,VREFm,power_out,bottom,"Negative microphone reference (star point), connect to GND.", 21 | ,,,,, 22 | 29,PON/P1[6],input,left,"Power on, Switches on the device if Voltage > 1.5 V. May be directly connected to VBAT, also with Li-Ion batteries.After startup the software takes over then PON pin to keep the device on after which the PON pin may be released.", 23 | ,,space,left,, 24 | 52,RSTn,input,left,"Active low Reset input with Schmitt-trigger input, open-drain output. Input may not exceed 2.0 V. An internal capacitor of 47 nF is mounted on this pin.", 25 | ,,space,left,, 26 | 53,JTAG,bidirectional,left,JTAG-SDI+, one wire Debug interface with open-drain. 27 | ,,space,left,, 28 | 40,SPI_DI/PWM1/P0[7],bidirectional,left,I/O Port SPI Data Input, 29 | 41,SPI_DO/P0[6],bidirectional,left,I/O Port SPI Data Out, 30 | 42,SPI_CLK/P0[5],bidirectional,left,I/O Port SPI Clock, 31 | 43,SPI_EN/P0[4],bidirectional,left,I/O port SPI_EN: Active low., 32 | ,,space,left,, 33 | 44,SCL2/URX2/P0[3],bidirectional,left,"I/O port Access bus clock, UART Serial In.", 34 | 46,SDA2/UTX2/P0[2],bidirectional,left,"I/O port Access bus data, UART Serial Out.", 35 | ,,space,left,, 36 | 47,URX/PWM0/P0[1],bidirectional,left,I/O port UART Serial In, 37 | 48,UTX/P0[0],output,left,I/O Port UART Serial Out, 38 | ,,space,left,, 39 | 54,PCM_FSC/SF/P2[5],bidirectional,left,I/O Port PCM_FSC: PCM Frame Sync, 40 | 55,PCM_DO/SCL1/DP3/P2[4],bidirectional,left,"""I/O port SCL1; I2C clock PCM_DO: PCM Data output""", 41 | 56,PCM_DI/SDA1/DP2/P2[3],bidirectional,left,I/O Port SDA1: I2C Data PCM_DI: PCM Data input, 42 | 57,PCM_CLK/P2[2],bidirectional,left,I/O Port PCM_CLK: PCM clock input/output, 43 | ,,space,left,, 44 | 58,LED4/PM1/P2[1],bidirectional,left,I/O Port PWM1: Pulse Width Modulation output LED4: 2.5 mA/5 mA LED current sink, 45 | 59,LED3/PM0/P2[0],bidirectional,left,I/O Port PWM0: - LED3: 2.5 mA/5 mA LED current sink, 46 | ,,space,left,, 47 | 30,ULP_XTAL,input,left,32.768 kHz XTAL clock input. Connect to GND if not used. (Note 6), 48 | 31,ULP_PORT,input,left,Ultra Low Power Port Pin. Connect to GND if not used. (Note 6), 49 | ,,space,left,, 50 | 2,P0,output,left,Control port for FAD. See 4.13, 51 | 4,P0n,output,left,Control port for FAD. See 4.13, 52 | 3,RFP0,output,left,Control port for FAD. See 4.13, 53 | 5,RFP0n,output,left,Control port for FAD. See 4.13, 54 | ,,,,, 55 | 7,VREFp,power_out,right,Positive microphone supply voltage, 56 | 8,MICp/CIDINn,input,right,Positive microphone input, 57 | 9,MICn/CIDOUT,input,right,Negative handset microphone input, 58 | 10,MICh/LINEIN,input,right,Headset microphone input with fixed input protection, 59 | ,,space,right,, 60 | 12,LSRp/LINEOUT/AGND,output,right,Positive handset loudspeaker output, 61 | 13,LSRn/LINEOUT/AGND,output,right,Negative handset loudspeaker output, 62 | ,,space,right,, 63 | 24,PAOUTp/DP1/P3[1],bidirectional,right,External/Big loudspeaker positive outputs, 64 | 27,PAOUTn/DP0/P3[0],bidirectional,right,External/Big loudspeaker positive output, 65 | ,,space,right,, 66 | 65,CIDINp/P3[2],bidirectional,right,I/O Port, 67 | 66,RINGp/P3[7],bidirectional,right,I/O Port, 68 | 67,RINGn/P3[6],bidirectional,right,I/O Port, 69 | 68,RINGING/RINGOUT/P3[5],bidirectional,right,I/O Port, 70 | 69,PARADET/P3[4],bidirectional,right,I/O Port, 71 | ,,space,right,, 72 | 15,ADC0/P3[3],bidirectional,right,I/O Port, 73 | 16,ADC1/INT0/P1[0],bidirectional,right,I/O Port, 74 | ,,space,right,, 75 | 17,SOCp,input,right,Battery state of charge positive input. Connect to GND if not used. See 4.9, 76 | 18,SOCn,input,right,Battery state of charge negative input. Star point connected to the SOC resistor. Connect to GND if not used. See 4.9, 77 | 19,DC_SENSE,input,right,Voltage sense input. Connect to GND if not used., 78 | 20,DC_I,input,right,Current sense input of DC/DC converter. Connect to GND if not used, 79 | 21,DC_CTRL,output,right,Switching clock for the DC/DC converter., 80 | 22,CHARGE_CTRL,output,right,Charge control pin.Leave unconnected if not used. See 4.9, 81 | 23,CHARGE/P1[7],input,right,Charger connected indication. Switches on the device if voltage > 1.5 V. Must be connected to charger via resistor R > (Vcharger_max-3 V)/10 mA (round to next largest value in range). See 4.9, 82 | 26,CP_VOUT1,output,right,Charge Pump Output 1.A capacitor of 1 F to GND is internally connected to this pin., 83 | ,,space,right,, 84 | 32,BXTAL/INT7/P2[7],bidirectional,right,I/O port, 85 | 33,VDDE/RDI/INT5/P1[5],bidirectional,right,I/O Port, 86 | 34,TDOD/INT4/P1[4],bidirectional,right,I/O port, 87 | 35,SIO/INT3/P1[3],bidirectional,right,I/O Port, 88 | 36,SK/INT2/P1[2],bidirectional,right,I/O Port, 89 | 37,LE/INT1/P1[1],bidirectional,right,I/O Port , 90 | 39,WTF_IN/P2[6],bidirectional,right,I/O port, 91 | ,,space,right,, 92 | 73,RF1,input,right,RF signal for external antenna. See 4.13, 93 | 75,RF0,input,right,RF signal for external antenna. See 4.13, 94 | 79,TP1,input,right,Tuning point for internal antenna. Follow instructions of Section 8.5. , 95 | ,,space,right,, 96 | 61,VDDOUT,no_connect,right,Test purpose only. Must be left unconnected., 97 | 62,VBATS,no_connect,right,Test purpose only. Must be left unconnected., 98 | 81,TP2,no_connect,right,Must be left unconnected. See section 8.3.2 and Figure 36., 99 | 82,TP3,no_connect,right,Must be left unconnected. See section 8.3.2 and Figure 36., 100 | 83,TP4,no_connect,right,Must be left unconnected. See section 8.3.2 and Figure 36., 101 | 84,TP5,no_connect,right,Must be left unconnected. See section 8.3.2 and Figure 36., 102 | 85,TP6,no_connect,right,Must be left unconnected. See section 8.3.2 and Figure 36., 103 | 86,TP7,no_connect,right,Must be left unconnected. See section 8.3.2 and Figure 36., 104 | 87,TP8,no_connect,right,Must be left unconnected. See section 8.3.2 and Figure 36., 105 | 88,TP9,no_connect,right,Must be left unconnected. See section 8.3.2 and Figure 36., 106 | -------------------------------------------------------------------------------- /header_boards/audio_header/custom_footprints.pretty/Speaker_CUI_CMR-15062S-67.kicad_mod: -------------------------------------------------------------------------------- 1 | (footprint "Speaker_CUI_CMR-15062S-67" 2 | (version 20240108) 3 | (generator "pcbnew") 4 | (generator_version "8.0") 5 | (layer "F.Cu") 6 | (descr "Speaker, 30mW, 300-7000Hz, IP67 face, 12x6x2,25mm, https://www.sameskydevices.com/product/resource/cmr-15062s-67.pdf") 7 | (tags "speaker CUI") 8 | (property "Reference" "LS1" 9 | (at -0.2 4.2 0) 10 | (layer "F.SilkS") 11 | (uuid "7cad2752-f3b4-409d-98a7-b338a5467e72") 12 | (effects 13 | (font 14 | (size 1 1) 15 | (thickness 0.15) 16 | ) 17 | ) 18 | ) 19 | (property "Value" "Speaker" 20 | (at 0 4.5 0) 21 | (layer "F.Fab") 22 | (uuid "3541607b-7089-4c64-8aa5-49e0d0eaa0e4") 23 | (effects 24 | (font 25 | (size 1 1) 26 | (thickness 0.15) 27 | ) 28 | ) 29 | ) 30 | (property "Footprint" "custom_footprints:Speaker_CUI_CMR-15062S-67" 31 | (at 0 0 0) 32 | (unlocked yes) 33 | (layer "F.Fab") 34 | (hide yes) 35 | (uuid "af147745-971f-4a7b-8d2e-f2262e447cca") 36 | (effects 37 | (font 38 | (size 1.27 1.27) 39 | (thickness 0.15) 40 | ) 41 | ) 42 | ) 43 | (property "Datasheet" "https://www.sameskydevices.com/product/resource/cmr-15062s-67.pdf" 44 | (at -1.25 -0.05 0) 45 | (unlocked yes) 46 | (layer "F.Fab") 47 | (hide yes) 48 | (uuid "6b214e5d-5123-496c-a6f5-d4deeb16dac0") 49 | (effects 50 | (font 51 | (size 1.27 1.27) 52 | (thickness 0.15) 53 | ) 54 | ) 55 | ) 56 | (property "Description" "Speaker" 57 | (at 0 0 0) 58 | (unlocked yes) 59 | (layer "F.Fab") 60 | (hide yes) 61 | (uuid "ae10208a-3fa5-4c59-afde-35124099074b") 62 | (effects 63 | (font 64 | (size 1.27 1.27) 65 | (thickness 0.15) 66 | ) 67 | ) 68 | ) 69 | (attr smd) 70 | (fp_line 71 | (start -7.7 2.55) 72 | (end -7.7 3.55) 73 | (stroke 74 | (width 0.12) 75 | (type solid) 76 | ) 77 | (layer "F.SilkS") 78 | (uuid "16a5c270-7f9c-41a9-a8bc-4bf66a752be5") 79 | ) 80 | (fp_line 81 | (start -7.7 3.55) 82 | (end -6.7 3.55) 83 | (stroke 84 | (width 0.12) 85 | (type solid) 86 | ) 87 | (layer "F.SilkS") 88 | (uuid "12f41900-241e-489d-9d3e-e2d03e8b3270") 89 | ) 90 | (fp_line 91 | (start -7.35 -3.15) 92 | (end 7.35 -3.15) 93 | (stroke 94 | (width 0.12) 95 | (type solid) 96 | ) 97 | (layer "F.SilkS") 98 | (uuid "4ccdb7a1-b8dc-48c6-8ba3-a405deaf5d17") 99 | ) 100 | (fp_line 101 | (start -7.35 1) 102 | (end -7.35 -3.15) 103 | (stroke 104 | (width 0.12) 105 | (type solid) 106 | ) 107 | (layer "F.SilkS") 108 | (uuid "abefaad2-fc85-4e95-a6ff-c5600852cfc3") 109 | ) 110 | (fp_line 111 | (start 5.65 3.05) 112 | (end -5.65 3.05) 113 | (stroke 114 | (width 0.12) 115 | (type solid) 116 | ) 117 | (layer "F.SilkS") 118 | (uuid "e9f0e314-099d-4b43-aeb4-de04b536a46f") 119 | ) 120 | (fp_line 121 | (start 7.35 -3.15) 122 | (end 7.35 1) 123 | (stroke 124 | (width 0.12) 125 | (type solid) 126 | ) 127 | (layer "F.SilkS") 128 | (uuid "dd6d2840-0348-4ad4-87da-7577d10a6d87") 129 | ) 130 | (fp_line 131 | (start -7.9 0.75) 132 | (end -7.9 3.75) 133 | (stroke 134 | (width 0.05) 135 | (type solid) 136 | ) 137 | (layer "F.CrtYd") 138 | (uuid "4d1295b6-34ab-47b3-8533-cf268c369c5d") 139 | ) 140 | (fp_line 141 | (start -7.9 3.75) 142 | (end -5.4 3.75) 143 | (stroke 144 | (width 0.05) 145 | (type solid) 146 | ) 147 | (layer "F.CrtYd") 148 | (uuid "3baae91a-b035-40e2-ac76-cdd3ecad041a") 149 | ) 150 | (fp_line 151 | (start -7.75 -3.55) 152 | (end 7.75 -3.55) 153 | (stroke 154 | (width 0.05) 155 | (type solid) 156 | ) 157 | (layer "F.CrtYd") 158 | (uuid "21c87abc-8524-4a84-a5e9-999895a49f55") 159 | ) 160 | (fp_line 161 | (start -7.75 0.75) 162 | (end -7.9 0.75) 163 | (stroke 164 | (width 0.05) 165 | (type solid) 166 | ) 167 | (layer "F.CrtYd") 168 | (uuid "62dff7dd-e031-47ea-9799-a26d0bfc86a9") 169 | ) 170 | (fp_line 171 | (start -7.75 0.75) 172 | (end -7.75 -3.55) 173 | (stroke 174 | (width 0.05) 175 | (type solid) 176 | ) 177 | (layer "F.CrtYd") 178 | (uuid "e1797fff-a122-453e-9848-6fac77ada7a4") 179 | ) 180 | (fp_line 181 | (start -5.4 3.75) 182 | (end -5.4 3.45) 183 | (stroke 184 | (width 0.05) 185 | (type solid) 186 | ) 187 | (layer "F.CrtYd") 188 | (uuid "cb9dd007-f811-4c57-980c-11a9ce60fdc6") 189 | ) 190 | (fp_line 191 | (start 5.4 3.45) 192 | (end -5.4 3.45) 193 | (stroke 194 | (width 0.05) 195 | (type solid) 196 | ) 197 | (layer "F.CrtYd") 198 | (uuid "063c0301-fcb4-4a69-9ca5-1cfd5af6d7f0") 199 | ) 200 | (fp_line 201 | (start 5.4 3.75) 202 | (end 5.4 3.45) 203 | (stroke 204 | (width 0.05) 205 | (type solid) 206 | ) 207 | (layer "F.CrtYd") 208 | (uuid "8a22e4fd-4a36-4a92-b3e7-f2b0c9a43d79") 209 | ) 210 | (fp_line 211 | (start 7.75 -3.55) 212 | (end 7.75 0.75) 213 | (stroke 214 | (width 0.05) 215 | (type solid) 216 | ) 217 | (layer "F.CrtYd") 218 | (uuid "4e18cfd0-57da-46f1-99f2-0123990c9f82") 219 | ) 220 | (fp_line 221 | (start 7.75 0.75) 222 | (end 7.9 0.75) 223 | (stroke 224 | (width 0.05) 225 | (type solid) 226 | ) 227 | (layer "F.CrtYd") 228 | (uuid "77fe9b9c-439f-4ed1-884d-806668c55901") 229 | ) 230 | (fp_line 231 | (start 7.9 0.75) 232 | (end 7.9 3.75) 233 | (stroke 234 | (width 0.05) 235 | (type solid) 236 | ) 237 | (layer "F.CrtYd") 238 | (uuid "0e11f808-48e0-4baf-a0af-bec9d5278ea1") 239 | ) 240 | (fp_line 241 | (start 7.9 3.75) 242 | (end 5.4 3.75) 243 | (stroke 244 | (width 0.05) 245 | (type solid) 246 | ) 247 | (layer "F.CrtYd") 248 | (uuid "82faf236-6e48-45d3-bc23-ccf5642a8d70") 249 | ) 250 | (fp_line 251 | (start -7.25 -3.05) 252 | (end -7.25 2.95) 253 | (stroke 254 | (width 0.1) 255 | (type solid) 256 | ) 257 | (layer "F.Fab") 258 | (uuid "94794668-cc74-4e2a-8b93-def6e2479d97") 259 | ) 260 | (fp_line 261 | (start -7.25 2.95) 262 | (end 7.25 2.95) 263 | (stroke 264 | (width 0.1) 265 | (type solid) 266 | ) 267 | (layer "F.Fab") 268 | (uuid "7e10f199-4dba-4d1b-aa12-feb88a62e174") 269 | ) 270 | (fp_line 271 | (start -5.25 2.2) 272 | (end -4.25 2.2) 273 | (stroke 274 | (width 0.1) 275 | (type solid) 276 | ) 277 | (layer "F.Fab") 278 | (uuid "52a00cef-bd00-47a6-b46e-85db323bb22c") 279 | ) 280 | (fp_line 281 | (start -4.75 2.7) 282 | (end -4.75 1.7) 283 | (stroke 284 | (width 0.1) 285 | (type solid) 286 | ) 287 | (layer "F.Fab") 288 | (uuid "141ada68-75fc-4c44-b5fd-3f943b82c17d") 289 | ) 290 | (fp_line 291 | (start 7.25 -3.05) 292 | (end -7.25 -3.05) 293 | (stroke 294 | (width 0.1) 295 | (type solid) 296 | ) 297 | (layer "F.Fab") 298 | (uuid "754369f5-b1d4-43e0-8425-e48565e284e2") 299 | ) 300 | (fp_line 301 | (start 7.25 2.95) 302 | (end 7.25 -3.05) 303 | (stroke 304 | (width 0.1) 305 | (type solid) 306 | ) 307 | (layer "F.Fab") 308 | (uuid "3f4b5453-0b1f-4e5c-9cb0-66c68de35d11") 309 | ) 310 | (fp_text user "${REFERENCE}" 311 | (at -0.1 0 0) 312 | (layer "F.Fab") 313 | (uuid "5e3f458c-460b-47fb-9c0b-296a51f6405c") 314 | (effects 315 | (font 316 | (size 1 1) 317 | (thickness 0.15) 318 | ) 319 | ) 320 | ) 321 | (pad "1" smd rect 322 | (at -6.65 2.25 180) 323 | (size 1.5 2) 324 | (layers "F.Cu" "F.Mask") 325 | (uuid "97d11c68-90c7-4994-a672-0f7ada6de4b8") 326 | ) 327 | (pad "2" smd rect 328 | (at 6.65 2.25 180) 329 | (size 1.5 2) 330 | (layers "F.Cu" "F.Mask") 331 | (uuid "c0da88d5-3160-4822-bc7e-ff854a9fce29") 332 | ) 333 | (model "${KICAD8_3DMODEL_DIR}/Buzzer_Beeper.3dshapes/Speaker_CUI_CMR-1206S-67.wrl" 334 | (offset 335 | (xyz 0 0 0) 336 | ) 337 | (scale 338 | (xyz 1 1 1) 339 | ) 340 | (rotate 341 | (xyz 0 0 0) 342 | ) 343 | ) 344 | ) 345 | -------------------------------------------------------------------------------- /header_boards/audio_header/custom_footprints.pretty/Jack_3.5mm_CUI_SJ-4351X-SMT_Horizontal.kicad_mod: -------------------------------------------------------------------------------- 1 | (footprint "Jack_3.5mm_CUI_SJ-4351X-SMT_Horizontal" 2 | (version 20240108) 3 | (generator "pcbnew") 4 | (generator_version "8.0") 5 | (layer "F.Cu") 6 | (descr "Headphones with microphone connector, 3.5mm, 4 pins (http://www.qingpu-electronics.com/en/products/WQP-PJ320D-72.html)") 7 | (tags "3.5mm jack mic microphone phones headphones 4pins audio plug") 8 | (property "Reference" "REF**" 9 | (at 0 4.05 0) 10 | (layer "F.SilkS") 11 | (uuid "72bf4862-6c38-4c04-9e53-30a1f44b04e7") 12 | (effects 13 | (font 14 | (size 1 1) 15 | (thickness 0.15) 16 | ) 17 | ) 18 | ) 19 | (property "Value" "Jack_3.5mm_CUI_SJ-4351X-SMT_Horizontal" 20 | (at -0.025 6.75 0) 21 | (layer "F.Fab") 22 | (uuid "eced89f0-42f4-4d6a-8113-31ab39003463") 23 | (effects 24 | (font 25 | (size 1 1) 26 | (thickness 0.15) 27 | ) 28 | ) 29 | ) 30 | (property "Footprint" "" 31 | (at -2.05 0 0) 32 | (unlocked yes) 33 | (layer "F.Fab") 34 | (hide yes) 35 | (uuid "2c0392d7-72d4-43d1-854d-514393204b7e") 36 | (effects 37 | (font 38 | (size 1.27 1.27) 39 | (thickness 0.15) 40 | ) 41 | ) 42 | ) 43 | (property "Datasheet" "" 44 | (at -2.05 0 0) 45 | (unlocked yes) 46 | (layer "F.Fab") 47 | (hide yes) 48 | (uuid "bd354222-6dc0-471d-aa74-a454af75ba62") 49 | (effects 50 | (font 51 | (size 1.27 1.27) 52 | (thickness 0.15) 53 | ) 54 | ) 55 | ) 56 | (property "Description" "" 57 | (at -2.05 0 0) 58 | (unlocked yes) 59 | (layer "F.Fab") 60 | (hide yes) 61 | (uuid "2a973656-be96-4f93-9c87-d83ea41f8129") 62 | (effects 63 | (font 64 | (size 1.27 1.27) 65 | (thickness 0.15) 66 | ) 67 | ) 68 | ) 69 | (attr smd) 70 | (fp_line 71 | (start -10.15 -2.6) 72 | (end -10.15 2.6) 73 | (stroke 74 | (width 0.12) 75 | (type solid) 76 | ) 77 | (layer "F.SilkS") 78 | (uuid "88139ea6-9a69-4148-9078-003ed828d638") 79 | ) 80 | (fp_line 81 | (start -9.05 2.6) 82 | (end -10.15 2.6) 83 | (stroke 84 | (width 0.12) 85 | (type solid) 86 | ) 87 | (layer "F.SilkS") 88 | (uuid "02114695-c405-444d-ba5f-dee2e795dcfa") 89 | ) 90 | (fp_line 91 | (start -8.65 -3.1) 92 | (end -8.65 -2.6) 93 | (stroke 94 | (width 0.12) 95 | (type solid) 96 | ) 97 | (layer "F.SilkS") 98 | (uuid "cc182ced-eb8a-4d44-9393-92aae81bf1d0") 99 | ) 100 | (fp_line 101 | (start -8.65 -3.1) 102 | (end -7.15 -3.1) 103 | (stroke 104 | (width 0.12) 105 | (type solid) 106 | ) 107 | (layer "F.SilkS") 108 | (uuid "186fec66-3202-4b0e-9c93-d4ab542d2b69") 109 | ) 110 | (fp_line 111 | (start -8.65 -2.6) 112 | (end -10.15 -2.6) 113 | (stroke 114 | (width 0.12) 115 | (type solid) 116 | ) 117 | (layer "F.SilkS") 118 | (uuid "235b5b7a-5780-4e0c-87e4-7ca768eda98f") 119 | ) 120 | (fp_line 121 | (start -6.15 3.1) 122 | (end -6.85 3.1) 123 | (stroke 124 | (width 0.12) 125 | (type solid) 126 | ) 127 | (layer "F.SilkS") 128 | (uuid "96c90387-9c9e-468a-99b5-bf4a856ea969") 129 | ) 130 | (fp_line 131 | (start -4.95 -3.1) 132 | (end -4.35 -3.1) 133 | (stroke 134 | (width 0.12) 135 | (type solid) 136 | ) 137 | (layer "F.SilkS") 138 | (uuid "21bde006-cc2a-4cfb-951a-31960389fadc") 139 | ) 140 | (fp_line 141 | (start -2.15 -3.1) 142 | (end 7.05 -3.1) 143 | (stroke 144 | (width 0.12) 145 | (type solid) 146 | ) 147 | (layer "F.SilkS") 148 | (uuid "da94e851-a4d2-4f1e-9ada-86d2567ee8bb") 149 | ) 150 | (fp_line 151 | (start 3.35 3.1) 152 | (end -3.95 3.1) 153 | (stroke 154 | (width 0.12) 155 | (type solid) 156 | ) 157 | (layer "F.SilkS") 158 | (uuid "a2dd49c7-8906-491e-948c-81eeaf2b3325") 159 | ) 160 | (fp_line 161 | (start 7.05 -1.9) 162 | (end 7.05 -3.1) 163 | (stroke 164 | (width 0.12) 165 | (type solid) 166 | ) 167 | (layer "F.SilkS") 168 | (uuid "6e96cfa4-5680-4975-9e9e-36deb7e1efaa") 169 | ) 170 | (fp_line 171 | (start 7.05 3.1) 172 | (end 5.55 3.1) 173 | (stroke 174 | (width 0.12) 175 | (type solid) 176 | ) 177 | (layer "F.SilkS") 178 | (uuid "4fc7f839-cad7-4079-88db-0216b83983f2") 179 | ) 180 | (fp_line 181 | (start 7.05 3.1) 182 | (end 7.05 0.3) 183 | (stroke 184 | (width 0.12) 185 | (type solid) 186 | ) 187 | (layer "F.SilkS") 188 | (uuid "678943ad-5c7c-42e3-906a-dbdd0ba778f5") 189 | ) 190 | (fp_line 191 | (start -10.8 -5.5) 192 | (end 10.7 -5.5) 193 | (stroke 194 | (width 0.05) 195 | (type solid) 196 | ) 197 | (layer "F.CrtYd") 198 | (uuid "74cc2780-e484-476f-a9d6-8bb154c521c8") 199 | ) 200 | (fp_line 201 | (start -10.8 5.5) 202 | (end -10.8 -5.5) 203 | (stroke 204 | (width 0.05) 205 | (type solid) 206 | ) 207 | (layer "F.CrtYd") 208 | (uuid "a02b1dfa-aed1-4d9f-9990-fda2636ef4f3") 209 | ) 210 | (fp_line 211 | (start -10.8 5.5) 212 | (end 10.7 5.5) 213 | (stroke 214 | (width 0.05) 215 | (type solid) 216 | ) 217 | (layer "F.CrtYd") 218 | (uuid "0b8e230c-7e09-4ff6-98d1-eac56a758480") 219 | ) 220 | (fp_line 221 | (start 10.7 5.5) 222 | (end 10.7 -5.5) 223 | (stroke 224 | (width 0.05) 225 | (type solid) 226 | ) 227 | (layer "F.CrtYd") 228 | (uuid "703230b0-da82-4499-bb5c-d88fcea9b3ee") 229 | ) 230 | (fp_line 231 | (start -10.05 -2.5) 232 | (end -8.55 -2.5) 233 | (stroke 234 | (width 0.1) 235 | (type solid) 236 | ) 237 | (layer "F.Fab") 238 | (uuid "82fc0033-fd36-435b-803a-bffbac7119b8") 239 | ) 240 | (fp_line 241 | (start -10.05 2.5) 242 | (end -10.05 -2.5) 243 | (stroke 244 | (width 0.1) 245 | (type solid) 246 | ) 247 | (layer "F.Fab") 248 | (uuid "aee8e2e4-1056-490e-84f1-3eb65e431aa8") 249 | ) 250 | (fp_line 251 | (start -8.55 -3) 252 | (end 6.95 -3) 253 | (stroke 254 | (width 0.1) 255 | (type solid) 256 | ) 257 | (layer "F.Fab") 258 | (uuid "8c1b3488-fa5e-40c6-8c7c-9870e37ce676") 259 | ) 260 | (fp_line 261 | (start -8.55 -2.5) 262 | (end -8.55 -3) 263 | (stroke 264 | (width 0.1) 265 | (type solid) 266 | ) 267 | (layer "F.Fab") 268 | (uuid "31389142-0d41-4f6a-a250-7a093747c998") 269 | ) 270 | (fp_line 271 | (start -8.55 2.5) 272 | (end -10.05 2.5) 273 | (stroke 274 | (width 0.1) 275 | (type solid) 276 | ) 277 | (layer "F.Fab") 278 | (uuid "b91e3625-ff56-4760-944c-88f0ea446010") 279 | ) 280 | (fp_line 281 | (start -8.55 3) 282 | (end -8.55 2.5) 283 | (stroke 284 | (width 0.1) 285 | (type solid) 286 | ) 287 | (layer "F.Fab") 288 | (uuid "0ad2bb1e-e7d9-4d5e-91c7-173f3cfed231") 289 | ) 290 | (fp_line 291 | (start 6.95 -3) 292 | (end 6.95 3) 293 | (stroke 294 | (width 0.1) 295 | (type solid) 296 | ) 297 | (layer "F.Fab") 298 | (uuid "45f967ad-e717-4b3f-a913-40e93c8f8b27") 299 | ) 300 | (fp_line 301 | (start 6.95 3) 302 | (end -8.55 3) 303 | (stroke 304 | (width 0.1) 305 | (type solid) 306 | ) 307 | (layer "F.Fab") 308 | (uuid "0686b9c5-a027-4b36-ba85-81b53fbdf973") 309 | ) 310 | (fp_text user "${REFERENCE}" 311 | (at -0.45 0.2 0) 312 | (layer "F.Fab") 313 | (uuid "433f6484-6270-4747-abb3-d75b61f0566c") 314 | (effects 315 | (font 316 | (size 1 1) 317 | (thickness 0.15) 318 | ) 319 | ) 320 | ) 321 | (pad "" np_thru_hole circle 322 | (at -4.05 0) 323 | (size 1.9 1.9) 324 | (drill 1.5) 325 | (layers "F&B.Cu" "*.Mask") 326 | (uuid "ecc3a746-6817-4e5f-accd-4e273e49fb9d") 327 | ) 328 | (pad "" np_thru_hole circle 329 | (at 2.95 0) 330 | (size 1.9 1.9) 331 | (drill 1.5) 332 | (layers "F&B.Cu" "*.Mask") 333 | (uuid "956abb39-2b37-4eef-a87a-93e37b6c6d14") 334 | ) 335 | (pad "R1" smd rect 336 | (at -3.25 -3.5) 337 | (size 2 3) 338 | (layers "F.Cu" "F.Paste" "F.Mask") 339 | (uuid "0471b2b5-a483-4cc9-b90a-e928365c20d0") 340 | ) 341 | (pad "R2" smd rect 342 | (at -5.05 3.5) 343 | (size 2 3) 344 | (layers "F.Cu" "F.Paste" "F.Mask") 345 | (uuid "61062f4b-bcb0-49cd-9697-b248624a55b1") 346 | ) 347 | (pad "RS" smd rect 348 | (at -6.05 -3.5) 349 | (size 2 3) 350 | (layers "F.Cu" "F.Paste" "F.Mask") 351 | (uuid "997e9284-1a5c-4cd9-a361-ca79e8b4e077") 352 | ) 353 | (pad "S" smd rect 354 | (at -7.95 3.5) 355 | (size 2 3) 356 | (layers "F.Cu" "F.Paste" "F.Mask") 357 | (uuid "723b5222-9e67-4451-b708-6dc20c72d106") 358 | ) 359 | (pad "T" smd rect 360 | (at 4.45 3.5) 361 | (size 2 3) 362 | (layers "F.Cu" "F.Paste" "F.Mask") 363 | (uuid "3f85db67-cfce-416c-a6b3-e2d8d10ad3a8") 364 | ) 365 | (pad "TS" smd rect 366 | (at 8.45 -0.8 90) 367 | (size 2 3) 368 | (layers "F.Cu" "F.Paste" "F.Mask") 369 | (uuid "3ca97643-d78e-406c-85ba-c56fd372fa4e") 370 | ) 371 | (model "${KICAD8_3DMODEL_DIR}/Connector_Audio.3dshapes/Jack_3.5mm_PJ320D_Horizontal.wrl" 372 | (offset 373 | (xyz 0 0 0) 374 | ) 375 | (scale 376 | (xyz 1 1 1) 377 | ) 378 | (rotate 379 | (xyz 0 0 0) 380 | ) 381 | ) 382 | ) 383 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | CERN Open Hardware Licence Version 2 - Strongly Reciprocal 2 | 3 | 4 | Preamble 5 | 6 | CERN has developed this licence to promote collaboration among 7 | hardware designers and to provide a legal tool which supports the 8 | freedom to use, study, modify, share and distribute hardware designs 9 | and products based on those designs. Version 2 of the CERN Open 10 | Hardware Licence comes in three variants: CERN-OHL-P (permissive); and 11 | two reciprocal licences: CERN-OHL-W (weakly reciprocal) and this 12 | licence, CERN-OHL-S (strongly reciprocal). 13 | 14 | The CERN-OHL-S is copyright CERN 2020. Anyone is welcome to use it, in 15 | unmodified form only. 16 | 17 | Use of this Licence does not imply any endorsement by CERN of any 18 | Licensor or their designs nor does it imply any involvement by CERN in 19 | their development. 20 | 21 | 22 | 1 Definitions 23 | 24 | 1.1 'Licence' means this CERN-OHL-S. 25 | 26 | 1.2 'Compatible Licence' means 27 | 28 | a) any earlier version of the CERN Open Hardware licence, or 29 | 30 | b) any version of the CERN-OHL-S, or 31 | 32 | c) any licence which permits You to treat the Source to which 33 | it applies as licensed under CERN-OHL-S provided that on 34 | Conveyance of any such Source, or any associated Product You 35 | treat the Source in question as being licensed under 36 | CERN-OHL-S. 37 | 38 | 1.3 'Source' means information such as design materials or digital 39 | code which can be applied to Make or test a Product or to 40 | prepare a Product for use, Conveyance or sale, regardless of its 41 | medium or how it is expressed. It may include Notices. 42 | 43 | 1.4 'Covered Source' means Source that is explicitly made available 44 | under this Licence. 45 | 46 | 1.5 'Product' means any device, component, work or physical object, 47 | whether in finished or intermediate form, arising from the use, 48 | application or processing of Covered Source. 49 | 50 | 1.6 'Make' means to create or configure something, whether by 51 | manufacture, assembly, compiling, loading or applying Covered 52 | Source or another Product or otherwise. 53 | 54 | 1.7 'Available Component' means any part, sub-assembly, library or 55 | code which: 56 | 57 | a) is licensed to You as Complete Source under a Compatible 58 | Licence; or 59 | 60 | b) is available, at the time a Product or the Source containing 61 | it is first Conveyed, to You and any other prospective 62 | licensees 63 | 64 | i) as a physical part with sufficient rights and 65 | information (including any configuration and 66 | programming files and information about its 67 | characteristics and interfaces) to enable it either to 68 | be Made itself, or to be sourced and used to Make the 69 | Product; or 70 | ii) as part of the normal distribution of a tool used to 71 | design or Make the Product. 72 | 73 | 1.8 'Complete Source' means the set of all Source necessary to Make 74 | a Product, in the preferred form for making modifications, 75 | including necessary installation and interfacing information 76 | both for the Product, and for any included Available Components. 77 | If the format is proprietary, it must also be made available in 78 | a format (if the proprietary tool can create it) which is 79 | viewable with a tool available to potential licensees and 80 | licensed under a licence approved by the Free Software 81 | Foundation or the Open Source Initiative. Complete Source need 82 | not include the Source of any Available Component, provided that 83 | You include in the Complete Source sufficient information to 84 | enable a recipient to Make or source and use the Available 85 | Component to Make the Product. 86 | 87 | 1.9 'Source Location' means a location where a Licensor has placed 88 | Covered Source, and which that Licensor reasonably believes will 89 | remain easily accessible for at least three years for anyone to 90 | obtain a digital copy. 91 | 92 | 1.10 'Notice' means copyright, acknowledgement and trademark notices, 93 | Source Location references, modification notices (subsection 94 | 3.3(b)) and all notices that refer to this Licence and to the 95 | disclaimer of warranties that are included in the Covered 96 | Source. 97 | 98 | 1.11 'Licensee' or 'You' means any person exercising rights under 99 | this Licence. 100 | 101 | 1.12 'Licensor' means a natural or legal person who creates or 102 | modifies Covered Source. A person may be a Licensee and a 103 | Licensor at the same time. 104 | 105 | 1.13 'Convey' means to communicate to the public or distribute. 106 | 107 | 108 | 2 Applicability 109 | 110 | 2.1 This Licence governs the use, copying, modification, Conveying 111 | of Covered Source and Products, and the Making of Products. By 112 | exercising any right granted under this Licence, You irrevocably 113 | accept these terms and conditions. 114 | 115 | 2.2 This Licence is granted by the Licensor directly to You, and 116 | shall apply worldwide and without limitation in time. 117 | 118 | 2.3 You shall not attempt to restrict by contract or otherwise the 119 | rights granted under this Licence to other Licensees. 120 | 121 | 2.4 This Licence is not intended to restrict fair use, fair dealing, 122 | or any other similar right. 123 | 124 | 125 | 3 Copying, Modifying and Conveying Covered Source 126 | 127 | 3.1 You may copy and Convey verbatim copies of Covered Source, in 128 | any medium, provided You retain all Notices. 129 | 130 | 3.2 You may modify Covered Source, other than Notices, provided that 131 | You irrevocably undertake to make that modified Covered Source 132 | available from a Source Location should You Convey a Product in 133 | circumstances where the recipient does not otherwise receive a 134 | copy of the modified Covered Source. In each case subsection 3.3 135 | shall apply. 136 | 137 | You may only delete Notices if they are no longer applicable to 138 | the corresponding Covered Source as modified by You and You may 139 | add additional Notices applicable to Your modifications. 140 | Including Covered Source in a larger work is modifying the 141 | Covered Source, and the larger work becomes modified Covered 142 | Source. 143 | 144 | 3.3 You may Convey modified Covered Source (with the effect that You 145 | shall also become a Licensor) provided that You: 146 | 147 | a) retain Notices as required in subsection 3.2; 148 | 149 | b) add a Notice to the modified Covered Source stating that You 150 | have modified it, with the date and brief description of how 151 | You have modified it; 152 | 153 | c) add a Source Location Notice for the modified Covered Source 154 | if You Convey in circumstances where the recipient does not 155 | otherwise receive a copy of the modified Covered Source; and 156 | 157 | d) license the modified Covered Source under the terms and 158 | conditions of this Licence (or, as set out in subsection 159 | 8.3, a later version, if permitted by the licence of the 160 | original Covered Source). Such modified Covered Source must 161 | be licensed as a whole, but excluding Available Components 162 | contained in it, which remain licensed under their own 163 | applicable licences. 164 | 165 | 166 | 4 Making and Conveying Products 167 | 168 | You may Make Products, and/or Convey them, provided that You either 169 | provide each recipient with a copy of the Complete Source or ensure 170 | that each recipient is notified of the Source Location of the Complete 171 | Source. That Complete Source is Covered Source, and You must 172 | accordingly satisfy Your obligations set out in subsection 3.3. If 173 | specified in a Notice, the Product must visibly and securely display 174 | the Source Location on it or its packaging or documentation in the 175 | manner specified in that Notice. 176 | 177 | 178 | 5 Research and Development 179 | 180 | You may Convey Covered Source, modified Covered Source or Products to 181 | a legal entity carrying out development, testing or quality assurance 182 | work on Your behalf provided that the work is performed on terms which 183 | prevent the entity from both using the Source or Products for its own 184 | internal purposes and Conveying the Source or Products or any 185 | modifications to them to any person other than You. Any modifications 186 | made by the entity shall be deemed to be made by You pursuant to 187 | subsection 3.2. 188 | 189 | 190 | 6 DISCLAIMER AND LIABILITY 191 | 192 | 6.1 DISCLAIMER OF WARRANTY -- The Covered Source and any Products 193 | are provided 'as is' and any express or implied warranties, 194 | including, but not limited to, implied warranties of 195 | merchantability, of satisfactory quality, non-infringement of 196 | third party rights, and fitness for a particular purpose or use 197 | are disclaimed in respect of any Source or Product to the 198 | maximum extent permitted by law. The Licensor makes no 199 | representation that any Source or Product does not or will not 200 | infringe any patent, copyright, trade secret or other 201 | proprietary right. The entire risk as to the use, quality, and 202 | performance of any Source or Product shall be with You and not 203 | the Licensor. This disclaimer of warranty is an essential part 204 | of this Licence and a condition for the grant of any rights 205 | granted under this Licence. 206 | 207 | 6.2 EXCLUSION AND LIMITATION OF LIABILITY -- The Licensor shall, to 208 | the maximum extent permitted by law, have no liability for 209 | direct, indirect, special, incidental, consequential, exemplary, 210 | punitive or other damages of any character including, without 211 | limitation, procurement of substitute goods or services, loss of 212 | use, data or profits, or business interruption, however caused 213 | and on any theory of contract, warranty, tort (including 214 | negligence), product liability or otherwise, arising in any way 215 | in relation to the Covered Source, modified Covered Source 216 | and/or the Making or Conveyance of a Product, even if advised of 217 | the possibility of such damages, and You shall hold the 218 | Licensor(s) free and harmless from any liability, costs, 219 | damages, fees and expenses, including claims by third parties, 220 | in relation to such use. 221 | 222 | 223 | 7 Patents 224 | 225 | 7.1 Subject to the terms and conditions of this Licence, each 226 | Licensor hereby grants to You a perpetual, worldwide, 227 | non-exclusive, no-charge, royalty-free, irrevocable (except as 228 | stated in subsections 7.2 and 8.4) patent licence to Make, have 229 | Made, use, offer to sell, sell, import, and otherwise transfer 230 | the Covered Source and Products, where such licence applies only 231 | to those patent claims licensable by such Licensor that are 232 | necessarily infringed by exercising rights under the Covered 233 | Source as Conveyed by that Licensor. 234 | 235 | 7.2 If You institute patent litigation against any entity (including 236 | a cross-claim or counterclaim in a lawsuit) alleging that the 237 | Covered Source or a Product constitutes direct or contributory 238 | patent infringement, or You seek any declaration that a patent 239 | licensed to You under this Licence is invalid or unenforceable 240 | then any rights granted to You under this Licence shall 241 | terminate as of the date such process is initiated. 242 | 243 | 244 | 8 General 245 | 246 | 8.1 If any provisions of this Licence are or subsequently become 247 | invalid or unenforceable for any reason, the remaining 248 | provisions shall remain effective. 249 | 250 | 8.2 You shall not use any of the name (including acronyms and 251 | abbreviations), image, or logo by which the Licensor or CERN is 252 | known, except where needed to comply with section 3, or where 253 | the use is otherwise allowed by law. Any such permitted use 254 | shall be factual and shall not be made so as to suggest any kind 255 | of endorsement or implication of involvement by the Licensor or 256 | its personnel. 257 | 258 | 8.3 CERN may publish updated versions and variants of this Licence 259 | which it considers to be in the spirit of this version, but may 260 | differ in detail to address new problems or concerns. New 261 | versions will be published with a unique version number and a 262 | variant identifier specifying the variant. If the Licensor has 263 | specified that a given variant applies to the Covered Source 264 | without specifying a version, You may treat that Covered Source 265 | as being released under any version of the CERN-OHL with that 266 | variant. If no variant is specified, the Covered Source shall be 267 | treated as being released under CERN-OHL-S. The Licensor may 268 | also specify that the Covered Source is subject to a specific 269 | version of the CERN-OHL or any later version in which case You 270 | may apply this or any later version of CERN-OHL with the same 271 | variant identifier published by CERN. 272 | 273 | 8.4 This Licence shall terminate with immediate effect if You fail 274 | to comply with any of its terms and conditions. 275 | 276 | 8.5 However, if You cease all breaches of this Licence, then Your 277 | Licence from any Licensor is reinstated unless such Licensor has 278 | terminated this Licence by giving You, while You remain in 279 | breach, a notice specifying the breach and requiring You to cure 280 | it within 30 days, and You have failed to come into compliance 281 | in all material respects by the end of the 30 day period. Should 282 | You repeat the breach after receipt of a cure notice and 283 | subsequent reinstatement, this Licence will terminate 284 | immediately and permanently. Section 6 shall continue to apply 285 | after any termination. 286 | 287 | 8.6 This Licence shall not be enforceable except by a Licensor 288 | acting as such, and third party beneficiary rights are 289 | specifically excluded. 290 | 291 | -------------------------------------------------------------------------------- /sc14cvmdect-devboard.kicad_pro: -------------------------------------------------------------------------------- 1 | { 2 | "board": { 3 | "3dviewports": [], 4 | "design_settings": { 5 | "defaults": { 6 | "apply_defaults_to_fp_fields": false, 7 | "apply_defaults_to_fp_shapes": false, 8 | "apply_defaults_to_fp_text": false, 9 | "board_outline_line_width": 0.05, 10 | "copper_line_width": 0.2, 11 | "copper_text_italic": false, 12 | "copper_text_size_h": 1.5, 13 | "copper_text_size_v": 1.5, 14 | "copper_text_thickness": 0.3, 15 | "copper_text_upright": false, 16 | "courtyard_line_width": 0.05, 17 | "dimension_precision": 4, 18 | "dimension_units": 3, 19 | "dimensions": { 20 | "arrow_length": 1270000, 21 | "extension_offset": 500000, 22 | "keep_text_aligned": true, 23 | "suppress_zeroes": false, 24 | "text_position": 0, 25 | "units_format": 1 26 | }, 27 | "fab_line_width": 0.1, 28 | "fab_text_italic": false, 29 | "fab_text_size_h": 1.0, 30 | "fab_text_size_v": 1.0, 31 | "fab_text_thickness": 0.15, 32 | "fab_text_upright": false, 33 | "other_line_width": 0.1, 34 | "other_text_italic": false, 35 | "other_text_size_h": 1.0, 36 | "other_text_size_v": 1.0, 37 | "other_text_thickness": 0.15, 38 | "other_text_upright": false, 39 | "pads": { 40 | "drill": 0.0, 41 | "height": 3.8, 42 | "width": 2.0 43 | }, 44 | "silk_line_width": 0.1, 45 | "silk_text_italic": false, 46 | "silk_text_size_h": 1.0, 47 | "silk_text_size_v": 1.0, 48 | "silk_text_thickness": 0.1, 49 | "silk_text_upright": false, 50 | "zones": { 51 | "min_clearance": 0.5 52 | } 53 | }, 54 | "diff_pair_dimensions": [ 55 | { 56 | "gap": 0.0, 57 | "via_gap": 0.0, 58 | "width": 0.0 59 | } 60 | ], 61 | "drc_exclusions": [], 62 | "meta": { 63 | "version": 2 64 | }, 65 | "rule_severities": { 66 | "annular_width": "error", 67 | "clearance": "error", 68 | "connection_width": "warning", 69 | "copper_edge_clearance": "error", 70 | "copper_sliver": "warning", 71 | "courtyards_overlap": "error", 72 | "diff_pair_gap_out_of_range": "error", 73 | "diff_pair_uncoupled_length_too_long": "error", 74 | "drill_out_of_range": "error", 75 | "duplicate_footprints": "warning", 76 | "extra_footprint": "warning", 77 | "footprint": "error", 78 | "footprint_symbol_mismatch": "warning", 79 | "footprint_type_mismatch": "ignore", 80 | "hole_clearance": "error", 81 | "hole_near_hole": "error", 82 | "holes_co_located": "warning", 83 | "invalid_outline": "error", 84 | "isolated_copper": "warning", 85 | "item_on_disabled_layer": "error", 86 | "items_not_allowed": "error", 87 | "length_out_of_range": "error", 88 | "lib_footprint_issues": "warning", 89 | "lib_footprint_mismatch": "ignore", 90 | "malformed_courtyard": "error", 91 | "microvia_drill_out_of_range": "error", 92 | "missing_courtyard": "ignore", 93 | "missing_footprint": "warning", 94 | "net_conflict": "warning", 95 | "npth_inside_courtyard": "ignore", 96 | "padstack": "warning", 97 | "pth_inside_courtyard": "ignore", 98 | "shorting_items": "error", 99 | "silk_edge_clearance": "ignore", 100 | "silk_over_copper": "warning", 101 | "silk_overlap": "warning", 102 | "skew_out_of_range": "error", 103 | "solder_mask_bridge": "error", 104 | "starved_thermal": "warning", 105 | "text_height": "warning", 106 | "text_thickness": "warning", 107 | "through_hole_pad_without_hole": "error", 108 | "too_many_vias": "error", 109 | "track_dangling": "warning", 110 | "track_width": "error", 111 | "tracks_crossing": "error", 112 | "unconnected_items": "error", 113 | "unresolved_variable": "error", 114 | "via_dangling": "warning", 115 | "zones_intersect": "error" 116 | }, 117 | "rules": { 118 | "max_error": 0.005, 119 | "min_clearance": 0.125, 120 | "min_connection": 0.125, 121 | "min_copper_edge_clearance": 0.3, 122 | "min_hole_clearance": 0.25, 123 | "min_hole_to_hole": 0.25, 124 | "min_microvia_diameter": 0.2, 125 | "min_microvia_drill": 0.1, 126 | "min_resolved_spokes": 2, 127 | "min_silk_clearance": 0.0, 128 | "min_text_height": 0.8, 129 | "min_text_thickness": 0.08, 130 | "min_through_hole_diameter": 0.25, 131 | "min_track_width": 0.125, 132 | "min_via_annular_width": 0.1, 133 | "min_via_diameter": 0.45, 134 | "solder_mask_to_copper_clearance": 0.0, 135 | "use_height_for_length_calcs": true 136 | }, 137 | "teardrop_options": [ 138 | { 139 | "td_onpadsmd": true, 140 | "td_onroundshapesonly": false, 141 | "td_ontrackend": false, 142 | "td_onviapad": true 143 | } 144 | ], 145 | "teardrop_parameters": [ 146 | { 147 | "td_allow_use_two_tracks": true, 148 | "td_curve_segcount": 0, 149 | "td_height_ratio": 1.0, 150 | "td_length_ratio": 0.5, 151 | "td_maxheight": 2.0, 152 | "td_maxlen": 1.0, 153 | "td_on_pad_in_zone": false, 154 | "td_target_name": "td_round_shape", 155 | "td_width_to_size_filter_ratio": 0.9 156 | }, 157 | { 158 | "td_allow_use_two_tracks": true, 159 | "td_curve_segcount": 0, 160 | "td_height_ratio": 1.0, 161 | "td_length_ratio": 0.5, 162 | "td_maxheight": 2.0, 163 | "td_maxlen": 1.0, 164 | "td_on_pad_in_zone": false, 165 | "td_target_name": "td_rect_shape", 166 | "td_width_to_size_filter_ratio": 0.9 167 | }, 168 | { 169 | "td_allow_use_two_tracks": true, 170 | "td_curve_segcount": 0, 171 | "td_height_ratio": 1.0, 172 | "td_length_ratio": 0.5, 173 | "td_maxheight": 2.0, 174 | "td_maxlen": 1.0, 175 | "td_on_pad_in_zone": false, 176 | "td_target_name": "td_track_end", 177 | "td_width_to_size_filter_ratio": 0.9 178 | } 179 | ], 180 | "track_widths": [ 181 | 0.0, 182 | 0.125, 183 | 0.3, 184 | 0.4, 185 | 0.5 186 | ], 187 | "tuning_pattern_settings": { 188 | "diff_pair_defaults": { 189 | "corner_radius_percentage": 80, 190 | "corner_style": 1, 191 | "max_amplitude": 1.0, 192 | "min_amplitude": 0.2, 193 | "single_sided": false, 194 | "spacing": 1.0 195 | }, 196 | "diff_pair_skew_defaults": { 197 | "corner_radius_percentage": 80, 198 | "corner_style": 1, 199 | "max_amplitude": 1.0, 200 | "min_amplitude": 0.2, 201 | "single_sided": false, 202 | "spacing": 0.6 203 | }, 204 | "single_track_defaults": { 205 | "corner_radius_percentage": 80, 206 | "corner_style": 1, 207 | "max_amplitude": 1.0, 208 | "min_amplitude": 0.2, 209 | "single_sided": false, 210 | "spacing": 0.6 211 | } 212 | }, 213 | "via_dimensions": [ 214 | { 215 | "diameter": 0.0, 216 | "drill": 0.0 217 | } 218 | ], 219 | "zones_allow_external_fillets": false 220 | }, 221 | "ipc2581": { 222 | "dist": "", 223 | "distpn": "", 224 | "internal_id": "", 225 | "mfg": "", 226 | "mpn": "" 227 | }, 228 | "layer_pairs": [], 229 | "layer_presets": [], 230 | "viewports": [] 231 | }, 232 | "boards": [], 233 | "cvpcb": { 234 | "equivalence_files": [] 235 | }, 236 | "erc": { 237 | "erc_exclusions": [], 238 | "meta": { 239 | "version": 0 240 | }, 241 | "pin_map": [ 242 | [ 243 | 0, 244 | 0, 245 | 0, 246 | 0, 247 | 0, 248 | 0, 249 | 1, 250 | 0, 251 | 0, 252 | 0, 253 | 0, 254 | 2 255 | ], 256 | [ 257 | 0, 258 | 2, 259 | 0, 260 | 1, 261 | 0, 262 | 0, 263 | 1, 264 | 0, 265 | 2, 266 | 2, 267 | 2, 268 | 2 269 | ], 270 | [ 271 | 0, 272 | 0, 273 | 0, 274 | 0, 275 | 0, 276 | 0, 277 | 1, 278 | 0, 279 | 1, 280 | 0, 281 | 1, 282 | 2 283 | ], 284 | [ 285 | 0, 286 | 1, 287 | 0, 288 | 0, 289 | 0, 290 | 0, 291 | 1, 292 | 1, 293 | 2, 294 | 1, 295 | 1, 296 | 2 297 | ], 298 | [ 299 | 0, 300 | 0, 301 | 0, 302 | 0, 303 | 0, 304 | 0, 305 | 1, 306 | 0, 307 | 0, 308 | 0, 309 | 0, 310 | 2 311 | ], 312 | [ 313 | 0, 314 | 0, 315 | 0, 316 | 0, 317 | 0, 318 | 0, 319 | 0, 320 | 0, 321 | 0, 322 | 0, 323 | 0, 324 | 2 325 | ], 326 | [ 327 | 1, 328 | 1, 329 | 1, 330 | 1, 331 | 1, 332 | 0, 333 | 1, 334 | 1, 335 | 1, 336 | 1, 337 | 1, 338 | 2 339 | ], 340 | [ 341 | 0, 342 | 0, 343 | 0, 344 | 1, 345 | 0, 346 | 0, 347 | 1, 348 | 0, 349 | 0, 350 | 0, 351 | 0, 352 | 2 353 | ], 354 | [ 355 | 0, 356 | 2, 357 | 1, 358 | 2, 359 | 0, 360 | 0, 361 | 1, 362 | 0, 363 | 2, 364 | 2, 365 | 2, 366 | 2 367 | ], 368 | [ 369 | 0, 370 | 2, 371 | 0, 372 | 1, 373 | 0, 374 | 0, 375 | 1, 376 | 0, 377 | 2, 378 | 0, 379 | 0, 380 | 2 381 | ], 382 | [ 383 | 0, 384 | 2, 385 | 1, 386 | 1, 387 | 0, 388 | 0, 389 | 1, 390 | 0, 391 | 2, 392 | 0, 393 | 0, 394 | 2 395 | ], 396 | [ 397 | 2, 398 | 2, 399 | 2, 400 | 2, 401 | 2, 402 | 2, 403 | 2, 404 | 2, 405 | 2, 406 | 2, 407 | 2, 408 | 2 409 | ] 410 | ], 411 | "rule_severities": { 412 | "bus_definition_conflict": "error", 413 | "bus_entry_needed": "error", 414 | "bus_to_bus_conflict": "error", 415 | "bus_to_net_conflict": "error", 416 | "conflicting_netclasses": "error", 417 | "different_unit_footprint": "error", 418 | "different_unit_net": "error", 419 | "duplicate_reference": "error", 420 | "duplicate_sheet_names": "error", 421 | "endpoint_off_grid": "warning", 422 | "extra_units": "error", 423 | "footprint_filter": "ignore", 424 | "footprint_link_issues": "warning", 425 | "four_way_junction": "ignore", 426 | "global_label_dangling": "warning", 427 | "hier_label_mismatch": "error", 428 | "label_dangling": "error", 429 | "label_multiple_wires": "warning", 430 | "lib_symbol_issues": "warning", 431 | "lib_symbol_mismatch": "warning", 432 | "missing_bidi_pin": "warning", 433 | "missing_input_pin": "warning", 434 | "missing_power_pin": "error", 435 | "missing_unit": "warning", 436 | "multiple_net_names": "warning", 437 | "net_not_bus_member": "warning", 438 | "no_connect_connected": "warning", 439 | "no_connect_dangling": "warning", 440 | "pin_not_connected": "error", 441 | "pin_not_driven": "error", 442 | "pin_to_pin": "warning", 443 | "power_pin_not_driven": "error", 444 | "same_local_global_label": "warning", 445 | "similar_label_and_power": "warning", 446 | "similar_labels": "warning", 447 | "similar_power": "warning", 448 | "simulation_model_issue": "ignore", 449 | "single_global_label": "ignore", 450 | "unannotated": "error", 451 | "unconnected_wire_endpoint": "warning", 452 | "unit_value_mismatch": "error", 453 | "unresolved_variable": "error", 454 | "wire_dangling": "error" 455 | } 456 | }, 457 | "libraries": { 458 | "pinned_footprint_libs": [], 459 | "pinned_symbol_libs": [] 460 | }, 461 | "meta": { 462 | "filename": "sc14cvmdect-devboard.kicad_pro", 463 | "version": 3 464 | }, 465 | "net_settings": { 466 | "classes": [ 467 | { 468 | "bus_width": 12, 469 | "clearance": 0.2, 470 | "diff_pair_gap": 0.25, 471 | "diff_pair_via_gap": 0.25, 472 | "diff_pair_width": 0.2, 473 | "line_style": 0, 474 | "microvia_diameter": 0.3, 475 | "microvia_drill": 0.1, 476 | "name": "Default", 477 | "pcb_color": "rgba(0, 0, 0, 0.000)", 478 | "priority": 2147483647, 479 | "schematic_color": "rgba(0, 0, 0, 0.000)", 480 | "track_width": 0.2, 481 | "via_diameter": 0.5, 482 | "via_drill": 0.25, 483 | "wire_width": 6 484 | } 485 | ], 486 | "meta": { 487 | "version": 4 488 | }, 489 | "net_colors": null, 490 | "netclass_assignments": null, 491 | "netclass_patterns": [] 492 | }, 493 | "pcbnew": { 494 | "last_paths": { 495 | "gencad": "", 496 | "idf": "", 497 | "netlist": "", 498 | "plot": "", 499 | "pos_files": "", 500 | "specctra_dsn": "", 501 | "step": "", 502 | "svg": "", 503 | "vrml": "" 504 | }, 505 | "page_layout_descr_file": "" 506 | }, 507 | "schematic": { 508 | "annotate_start_num": 0, 509 | "bom_export_filename": "", 510 | "bom_fmt_presets": [], 511 | "bom_fmt_settings": { 512 | "field_delimiter": ",", 513 | "keep_line_breaks": false, 514 | "keep_tabs": false, 515 | "name": "CSV", 516 | "ref_delimiter": ",", 517 | "ref_range_delimiter": "", 518 | "string_delimiter": "\"" 519 | }, 520 | "bom_presets": [], 521 | "bom_settings": { 522 | "exclude_dnp": false, 523 | "fields_ordered": [ 524 | { 525 | "group_by": false, 526 | "label": "Reference", 527 | "name": "Reference", 528 | "show": true 529 | }, 530 | { 531 | "group_by": true, 532 | "label": "Value", 533 | "name": "Value", 534 | "show": true 535 | }, 536 | { 537 | "group_by": false, 538 | "label": "Datasheet", 539 | "name": "Datasheet", 540 | "show": true 541 | }, 542 | { 543 | "group_by": false, 544 | "label": "Footprint", 545 | "name": "Footprint", 546 | "show": true 547 | }, 548 | { 549 | "group_by": false, 550 | "label": "Qty", 551 | "name": "${QUANTITY}", 552 | "show": true 553 | }, 554 | { 555 | "group_by": true, 556 | "label": "DNP", 557 | "name": "${DNP}", 558 | "show": true 559 | } 560 | ], 561 | "filter_string": "", 562 | "group_symbols": true, 563 | "include_excluded_from_bom": false, 564 | "name": "Grouped By Value", 565 | "sort_asc": true, 566 | "sort_field": "Reference" 567 | }, 568 | "connection_grid_size": 50.0, 569 | "drawing": { 570 | "dashed_lines_dash_length_ratio": 12.0, 571 | "dashed_lines_gap_length_ratio": 3.0, 572 | "default_line_thickness": 6.0, 573 | "default_text_size": 50.0, 574 | "field_names": [], 575 | "intersheets_ref_own_page": false, 576 | "intersheets_ref_prefix": "", 577 | "intersheets_ref_short": false, 578 | "intersheets_ref_show": false, 579 | "intersheets_ref_suffix": "", 580 | "junction_size_choice": 3, 581 | "label_size_ratio": 0.375, 582 | "operating_point_overlay_i_precision": 3, 583 | "operating_point_overlay_i_range": "~A", 584 | "operating_point_overlay_v_precision": 3, 585 | "operating_point_overlay_v_range": "~V", 586 | "overbar_offset_ratio": 1.23, 587 | "pin_symbol_size": 25.0, 588 | "text_offset_ratio": 0.15 589 | }, 590 | "legacy_lib_dir": "", 591 | "legacy_lib_list": [], 592 | "meta": { 593 | "version": 1 594 | }, 595 | "net_format_name": "", 596 | "page_layout_descr_file": "", 597 | "plot_directory": "", 598 | "space_save_all_events": true, 599 | "spice_current_sheet_as_root": false, 600 | "spice_external_command": "spice \"%I\"", 601 | "spice_model_current_sheet_as_root": true, 602 | "spice_save_all_currents": false, 603 | "spice_save_all_dissipations": false, 604 | "spice_save_all_voltages": false, 605 | "subpart_first_id": 65, 606 | "subpart_id_separator": 0 607 | }, 608 | "sheets": [ 609 | [ 610 | "27f20af8-bc2c-472c-b897-f97b17cc983b", 611 | "Root" 612 | ] 613 | ], 614 | "text_variables": {} 615 | } 616 | -------------------------------------------------------------------------------- /header_boards/audio_header/audio_header.kicad_pro: -------------------------------------------------------------------------------- 1 | { 2 | "board": { 3 | "3dviewports": [], 4 | "design_settings": { 5 | "defaults": { 6 | "apply_defaults_to_fp_fields": false, 7 | "apply_defaults_to_fp_shapes": false, 8 | "apply_defaults_to_fp_text": false, 9 | "board_outline_line_width": 0.05, 10 | "copper_line_width": 0.2, 11 | "copper_text_italic": false, 12 | "copper_text_size_h": 1.5, 13 | "copper_text_size_v": 1.5, 14 | "copper_text_thickness": 0.3, 15 | "copper_text_upright": false, 16 | "courtyard_line_width": 0.05, 17 | "dimension_precision": 4, 18 | "dimension_units": 3, 19 | "dimensions": { 20 | "arrow_length": 1270000, 21 | "extension_offset": 500000, 22 | "keep_text_aligned": true, 23 | "suppress_zeroes": false, 24 | "text_position": 0, 25 | "units_format": 1 26 | }, 27 | "fab_line_width": 0.1, 28 | "fab_text_italic": false, 29 | "fab_text_size_h": 1.0, 30 | "fab_text_size_v": 1.0, 31 | "fab_text_thickness": 0.15, 32 | "fab_text_upright": false, 33 | "other_line_width": 0.1, 34 | "other_text_italic": false, 35 | "other_text_size_h": 1.0, 36 | "other_text_size_v": 1.0, 37 | "other_text_thickness": 0.15, 38 | "other_text_upright": false, 39 | "pads": { 40 | "drill": 0.762, 41 | "height": 1.524, 42 | "width": 1.524 43 | }, 44 | "silk_line_width": 0.1, 45 | "silk_text_italic": false, 46 | "silk_text_size_h": 1.0, 47 | "silk_text_size_v": 1.0, 48 | "silk_text_thickness": 0.1, 49 | "silk_text_upright": false, 50 | "zones": { 51 | "min_clearance": 0.5 52 | } 53 | }, 54 | "diff_pair_dimensions": [ 55 | { 56 | "gap": 0.0, 57 | "via_gap": 0.0, 58 | "width": 0.0 59 | } 60 | ], 61 | "drc_exclusions": [], 62 | "meta": { 63 | "version": 2 64 | }, 65 | "rule_severities": { 66 | "annular_width": "error", 67 | "clearance": "error", 68 | "connection_width": "warning", 69 | "copper_edge_clearance": "error", 70 | "copper_sliver": "warning", 71 | "courtyards_overlap": "error", 72 | "creepage": "error", 73 | "diff_pair_gap_out_of_range": "error", 74 | "diff_pair_uncoupled_length_too_long": "error", 75 | "drill_out_of_range": "error", 76 | "duplicate_footprints": "warning", 77 | "extra_footprint": "warning", 78 | "footprint": "error", 79 | "footprint_filters_mismatch": "ignore", 80 | "footprint_symbol_mismatch": "warning", 81 | "footprint_type_mismatch": "ignore", 82 | "hole_clearance": "error", 83 | "hole_near_hole": "error", 84 | "hole_to_hole": "error", 85 | "holes_co_located": "warning", 86 | "invalid_outline": "error", 87 | "isolated_copper": "warning", 88 | "item_on_disabled_layer": "error", 89 | "items_not_allowed": "error", 90 | "length_out_of_range": "error", 91 | "lib_footprint_issues": "warning", 92 | "lib_footprint_mismatch": "warning", 93 | "malformed_courtyard": "error", 94 | "microvia_drill_out_of_range": "error", 95 | "mirrored_text_on_front_layer": "warning", 96 | "missing_courtyard": "ignore", 97 | "missing_footprint": "warning", 98 | "net_conflict": "warning", 99 | "nonmirrored_text_on_back_layer": "warning", 100 | "npth_inside_courtyard": "ignore", 101 | "padstack": "warning", 102 | "pth_inside_courtyard": "ignore", 103 | "shorting_items": "error", 104 | "silk_edge_clearance": "warning", 105 | "silk_over_copper": "warning", 106 | "silk_overlap": "warning", 107 | "skew_out_of_range": "error", 108 | "solder_mask_bridge": "error", 109 | "starved_thermal": "error", 110 | "text_height": "warning", 111 | "text_on_edge_cuts": "error", 112 | "text_thickness": "warning", 113 | "through_hole_pad_without_hole": "error", 114 | "too_many_vias": "error", 115 | "track_angle": "error", 116 | "track_dangling": "warning", 117 | "track_segment_length": "error", 118 | "track_width": "error", 119 | "tracks_crossing": "error", 120 | "unconnected_items": "error", 121 | "unresolved_variable": "error", 122 | "via_dangling": "warning", 123 | "zones_intersect": "error" 124 | }, 125 | "rules": { 126 | "max_error": 0.005, 127 | "min_clearance": 0.0, 128 | "min_connection": 0.0, 129 | "min_copper_edge_clearance": 0.5, 130 | "min_groove_width": 0.0, 131 | "min_hole_clearance": 0.25, 132 | "min_hole_to_hole": 0.25, 133 | "min_microvia_diameter": 0.2, 134 | "min_microvia_drill": 0.1, 135 | "min_resolved_spokes": 2, 136 | "min_silk_clearance": 0.0, 137 | "min_text_height": 0.8, 138 | "min_text_thickness": 0.08, 139 | "min_through_hole_diameter": 0.3, 140 | "min_track_width": 0.0, 141 | "min_via_annular_width": 0.1, 142 | "min_via_diameter": 0.5, 143 | "solder_mask_to_copper_clearance": 0.0, 144 | "use_height_for_length_calcs": true 145 | }, 146 | "teardrop_options": [ 147 | { 148 | "td_onpthpad": true, 149 | "td_onroundshapesonly": false, 150 | "td_onsmdpad": true, 151 | "td_ontrackend": false, 152 | "td_onvia": true 153 | } 154 | ], 155 | "teardrop_parameters": [ 156 | { 157 | "td_allow_use_two_tracks": true, 158 | "td_curve_segcount": 0, 159 | "td_height_ratio": 1.0, 160 | "td_length_ratio": 0.5, 161 | "td_maxheight": 2.0, 162 | "td_maxlen": 1.0, 163 | "td_on_pad_in_zone": false, 164 | "td_target_name": "td_round_shape", 165 | "td_width_to_size_filter_ratio": 0.9 166 | }, 167 | { 168 | "td_allow_use_two_tracks": true, 169 | "td_curve_segcount": 0, 170 | "td_height_ratio": 1.0, 171 | "td_length_ratio": 0.5, 172 | "td_maxheight": 2.0, 173 | "td_maxlen": 1.0, 174 | "td_on_pad_in_zone": false, 175 | "td_target_name": "td_rect_shape", 176 | "td_width_to_size_filter_ratio": 0.9 177 | }, 178 | { 179 | "td_allow_use_two_tracks": true, 180 | "td_curve_segcount": 0, 181 | "td_height_ratio": 1.0, 182 | "td_length_ratio": 0.5, 183 | "td_maxheight": 2.0, 184 | "td_maxlen": 1.0, 185 | "td_on_pad_in_zone": false, 186 | "td_target_name": "td_track_end", 187 | "td_width_to_size_filter_ratio": 0.9 188 | } 189 | ], 190 | "track_widths": [ 191 | 0.0 192 | ], 193 | "tuning_pattern_settings": { 194 | "diff_pair_defaults": { 195 | "corner_radius_percentage": 80, 196 | "corner_style": 1, 197 | "max_amplitude": 1.0, 198 | "min_amplitude": 0.2, 199 | "single_sided": false, 200 | "spacing": 1.0 201 | }, 202 | "diff_pair_skew_defaults": { 203 | "corner_radius_percentage": 80, 204 | "corner_style": 1, 205 | "max_amplitude": 1.0, 206 | "min_amplitude": 0.2, 207 | "single_sided": false, 208 | "spacing": 0.6 209 | }, 210 | "single_track_defaults": { 211 | "corner_radius_percentage": 80, 212 | "corner_style": 1, 213 | "max_amplitude": 1.0, 214 | "min_amplitude": 0.2, 215 | "single_sided": false, 216 | "spacing": 0.6 217 | } 218 | }, 219 | "via_dimensions": [ 220 | { 221 | "diameter": 0.0, 222 | "drill": 0.0 223 | } 224 | ], 225 | "zones_allow_external_fillets": false 226 | }, 227 | "ipc2581": { 228 | "dist": "", 229 | "distpn": "", 230 | "internal_id": "", 231 | "mfg": "", 232 | "mpn": "" 233 | }, 234 | "layer_pairs": [], 235 | "layer_presets": [], 236 | "viewports": [] 237 | }, 238 | "boards": [], 239 | "cvpcb": { 240 | "equivalence_files": [] 241 | }, 242 | "erc": { 243 | "erc_exclusions": [], 244 | "meta": { 245 | "version": 0 246 | }, 247 | "pin_map": [ 248 | [ 249 | 0, 250 | 0, 251 | 0, 252 | 0, 253 | 0, 254 | 0, 255 | 1, 256 | 0, 257 | 0, 258 | 0, 259 | 0, 260 | 2 261 | ], 262 | [ 263 | 0, 264 | 2, 265 | 0, 266 | 1, 267 | 0, 268 | 0, 269 | 1, 270 | 0, 271 | 2, 272 | 2, 273 | 2, 274 | 2 275 | ], 276 | [ 277 | 0, 278 | 0, 279 | 0, 280 | 0, 281 | 0, 282 | 0, 283 | 1, 284 | 0, 285 | 1, 286 | 0, 287 | 1, 288 | 2 289 | ], 290 | [ 291 | 0, 292 | 1, 293 | 0, 294 | 0, 295 | 0, 296 | 0, 297 | 1, 298 | 1, 299 | 2, 300 | 1, 301 | 1, 302 | 2 303 | ], 304 | [ 305 | 0, 306 | 0, 307 | 0, 308 | 0, 309 | 0, 310 | 0, 311 | 1, 312 | 0, 313 | 0, 314 | 0, 315 | 0, 316 | 2 317 | ], 318 | [ 319 | 0, 320 | 0, 321 | 0, 322 | 0, 323 | 0, 324 | 0, 325 | 0, 326 | 0, 327 | 0, 328 | 0, 329 | 0, 330 | 2 331 | ], 332 | [ 333 | 1, 334 | 1, 335 | 1, 336 | 1, 337 | 1, 338 | 0, 339 | 1, 340 | 1, 341 | 1, 342 | 1, 343 | 1, 344 | 2 345 | ], 346 | [ 347 | 0, 348 | 0, 349 | 0, 350 | 1, 351 | 0, 352 | 0, 353 | 1, 354 | 0, 355 | 0, 356 | 0, 357 | 0, 358 | 2 359 | ], 360 | [ 361 | 0, 362 | 2, 363 | 1, 364 | 2, 365 | 0, 366 | 0, 367 | 1, 368 | 0, 369 | 2, 370 | 2, 371 | 2, 372 | 2 373 | ], 374 | [ 375 | 0, 376 | 2, 377 | 0, 378 | 1, 379 | 0, 380 | 0, 381 | 1, 382 | 0, 383 | 2, 384 | 0, 385 | 0, 386 | 2 387 | ], 388 | [ 389 | 0, 390 | 2, 391 | 1, 392 | 1, 393 | 0, 394 | 0, 395 | 1, 396 | 0, 397 | 2, 398 | 0, 399 | 0, 400 | 2 401 | ], 402 | [ 403 | 2, 404 | 2, 405 | 2, 406 | 2, 407 | 2, 408 | 2, 409 | 2, 410 | 2, 411 | 2, 412 | 2, 413 | 2, 414 | 2 415 | ] 416 | ], 417 | "rule_severities": { 418 | "bus_definition_conflict": "error", 419 | "bus_entry_needed": "error", 420 | "bus_to_bus_conflict": "error", 421 | "bus_to_net_conflict": "error", 422 | "conflicting_netclasses": "error", 423 | "different_unit_footprint": "error", 424 | "different_unit_net": "error", 425 | "duplicate_reference": "error", 426 | "duplicate_sheet_names": "error", 427 | "endpoint_off_grid": "warning", 428 | "extra_units": "error", 429 | "footprint_filter": "ignore", 430 | "footprint_link_issues": "warning", 431 | "four_way_junction": "ignore", 432 | "global_label_dangling": "warning", 433 | "hier_label_mismatch": "error", 434 | "label_dangling": "error", 435 | "label_multiple_wires": "warning", 436 | "lib_symbol_issues": "warning", 437 | "lib_symbol_mismatch": "warning", 438 | "missing_bidi_pin": "warning", 439 | "missing_input_pin": "warning", 440 | "missing_power_pin": "error", 441 | "missing_unit": "warning", 442 | "multiple_net_names": "warning", 443 | "net_not_bus_member": "warning", 444 | "no_connect_connected": "warning", 445 | "no_connect_dangling": "warning", 446 | "pin_not_connected": "error", 447 | "pin_not_driven": "error", 448 | "pin_to_pin": "warning", 449 | "power_pin_not_driven": "error", 450 | "same_local_global_label": "warning", 451 | "similar_label_and_power": "warning", 452 | "similar_labels": "warning", 453 | "similar_power": "warning", 454 | "simulation_model_issue": "ignore", 455 | "single_global_label": "ignore", 456 | "unannotated": "error", 457 | "unconnected_wire_endpoint": "warning", 458 | "unit_value_mismatch": "error", 459 | "unresolved_variable": "error", 460 | "wire_dangling": "error" 461 | } 462 | }, 463 | "libraries": { 464 | "pinned_footprint_libs": [], 465 | "pinned_symbol_libs": [] 466 | }, 467 | "meta": { 468 | "filename": "audio_header.kicad_pro", 469 | "version": 3 470 | }, 471 | "net_settings": { 472 | "classes": [ 473 | { 474 | "bus_width": 12, 475 | "clearance": 0.2, 476 | "diff_pair_gap": 0.25, 477 | "diff_pair_via_gap": 0.25, 478 | "diff_pair_width": 0.2, 479 | "line_style": 0, 480 | "microvia_diameter": 0.3, 481 | "microvia_drill": 0.1, 482 | "name": "Default", 483 | "pcb_color": "rgba(0, 0, 0, 0.000)", 484 | "priority": 2147483647, 485 | "schematic_color": "rgba(0, 0, 0, 0.000)", 486 | "track_width": 0.2, 487 | "via_diameter": 0.6, 488 | "via_drill": 0.3, 489 | "wire_width": 6 490 | } 491 | ], 492 | "meta": { 493 | "version": 4 494 | }, 495 | "net_colors": null, 496 | "netclass_assignments": null, 497 | "netclass_patterns": [] 498 | }, 499 | "pcbnew": { 500 | "last_paths": { 501 | "gencad": "", 502 | "idf": "", 503 | "netlist": "", 504 | "plot": "", 505 | "pos_files": "", 506 | "specctra_dsn": "", 507 | "step": "", 508 | "svg": "", 509 | "vrml": "" 510 | }, 511 | "page_layout_descr_file": "" 512 | }, 513 | "schematic": { 514 | "annotate_start_num": 0, 515 | "bom_export_filename": "", 516 | "bom_fmt_presets": [], 517 | "bom_fmt_settings": { 518 | "field_delimiter": ",", 519 | "keep_line_breaks": false, 520 | "keep_tabs": false, 521 | "name": "CSV", 522 | "ref_delimiter": ",", 523 | "ref_range_delimiter": "", 524 | "string_delimiter": "\"" 525 | }, 526 | "bom_presets": [], 527 | "bom_settings": { 528 | "exclude_dnp": false, 529 | "fields_ordered": [ 530 | { 531 | "group_by": false, 532 | "label": "Reference", 533 | "name": "Reference", 534 | "show": true 535 | }, 536 | { 537 | "group_by": true, 538 | "label": "Value", 539 | "name": "Value", 540 | "show": true 541 | }, 542 | { 543 | "group_by": false, 544 | "label": "Datasheet", 545 | "name": "Datasheet", 546 | "show": true 547 | }, 548 | { 549 | "group_by": false, 550 | "label": "Footprint", 551 | "name": "Footprint", 552 | "show": true 553 | }, 554 | { 555 | "group_by": false, 556 | "label": "Qty", 557 | "name": "${QUANTITY}", 558 | "show": true 559 | }, 560 | { 561 | "group_by": true, 562 | "label": "DNP", 563 | "name": "${DNP}", 564 | "show": true 565 | } 566 | ], 567 | "filter_string": "", 568 | "group_symbols": true, 569 | "include_excluded_from_bom": false, 570 | "name": "Grouped By Value", 571 | "sort_asc": true, 572 | "sort_field": "Reference" 573 | }, 574 | "connection_grid_size": 50.0, 575 | "drawing": { 576 | "dashed_lines_dash_length_ratio": 12.0, 577 | "dashed_lines_gap_length_ratio": 3.0, 578 | "default_line_thickness": 6.0, 579 | "default_text_size": 50.0, 580 | "field_names": [], 581 | "intersheets_ref_own_page": false, 582 | "intersheets_ref_prefix": "", 583 | "intersheets_ref_short": false, 584 | "intersheets_ref_show": false, 585 | "intersheets_ref_suffix": "", 586 | "junction_size_choice": 3, 587 | "label_size_ratio": 0.375, 588 | "operating_point_overlay_i_precision": 3, 589 | "operating_point_overlay_i_range": "~A", 590 | "operating_point_overlay_v_precision": 3, 591 | "operating_point_overlay_v_range": "~V", 592 | "overbar_offset_ratio": 1.23, 593 | "pin_symbol_size": 25.0, 594 | "text_offset_ratio": 0.15 595 | }, 596 | "legacy_lib_dir": "", 597 | "legacy_lib_list": [], 598 | "meta": { 599 | "version": 1 600 | }, 601 | "net_format_name": "", 602 | "page_layout_descr_file": "", 603 | "plot_directory": "", 604 | "space_save_all_events": true, 605 | "spice_current_sheet_as_root": false, 606 | "spice_external_command": "spice \"%I\"", 607 | "spice_model_current_sheet_as_root": true, 608 | "spice_save_all_currents": false, 609 | "spice_save_all_dissipations": false, 610 | "spice_save_all_voltages": false, 611 | "subpart_first_id": 65, 612 | "subpart_id_separator": 0 613 | }, 614 | "sheets": [ 615 | [ 616 | "a46af506-464b-462f-a7bf-88ca3273d5cc", 617 | "Root" 618 | ] 619 | ], 620 | "text_variables": {} 621 | } 622 | -------------------------------------------------------------------------------- /custom_library/custom_library.pretty/SC14CVMDECT.kicad_mod: -------------------------------------------------------------------------------- 1 | (footprint "SC14CVMDECT" 2 | (version 20240108) 3 | (generator "pcbnew") 4 | (generator_version "8.0") 5 | (layer "F.Cu") 6 | (property "Reference" "REF**" 7 | (at -7.77 12 0) 8 | (unlocked yes) 9 | (layer "F.SilkS") 10 | (uuid "767c7d30-7b71-4990-9fd9-dff233f61080") 11 | (effects 12 | (font 13 | (size 1 1) 14 | (thickness 0.1) 15 | ) 16 | ) 17 | ) 18 | (property "Value" "SC14CVMDECT" 19 | (at 0 12 0) 20 | (unlocked yes) 21 | (layer "F.Fab") 22 | (uuid "a6aedec2-4a96-4c0b-bd66-751bc6fa728c") 23 | (effects 24 | (font 25 | (size 1 1) 26 | (thickness 0.15) 27 | ) 28 | ) 29 | ) 30 | (property "Footprint" "" 31 | (at 0 0 0) 32 | (unlocked yes) 33 | (layer "F.Fab") 34 | (hide yes) 35 | (uuid "7c48ac12-ec89-4632-8db1-ce6fee20b728") 36 | (effects 37 | (font 38 | (size 1 1) 39 | (thickness 0.15) 40 | ) 41 | ) 42 | ) 43 | (property "Datasheet" "" 44 | (at 0 0 0) 45 | (unlocked yes) 46 | (layer "F.Fab") 47 | (hide yes) 48 | (uuid "47d25887-bb76-4b76-a414-0e3c340f20cf") 49 | (effects 50 | (font 51 | (size 1 1) 52 | (thickness 0.15) 53 | ) 54 | ) 55 | ) 56 | (property "Description" "" 57 | (at 0 0 0) 58 | (unlocked yes) 59 | (layer "F.Fab") 60 | (hide yes) 61 | (uuid "5b2a3d0e-fff1-44fd-8a54-150e227a42ce") 62 | (effects 63 | (font 64 | (size 1 1) 65 | (thickness 0.15) 66 | ) 67 | ) 68 | ) 69 | (attr smd) 70 | (fp_poly 71 | (pts 72 | (xy -8.75 -6.45) (xy -8.05 -6.45) (xy -8.05 -5.95) (xy -8.75 -5.95) 73 | ) 74 | (stroke 75 | (width 0) 76 | (type solid) 77 | ) 78 | (fill solid) 79 | (layer "F.Paste") 80 | (uuid "ea5eb8e1-8de9-410c-b4d8-b05ebfcdee5d") 81 | ) 82 | (fp_poly 83 | (pts 84 | (xy -0.8 -0.8) (xy -0.15 -0.8) (xy -0.15 -0.15) (xy -0.8 -0.15) 85 | ) 86 | (stroke 87 | (width 0) 88 | (type solid) 89 | ) 90 | (fill solid) 91 | (layer "F.Paste") 92 | (uuid "a45e62a1-60da-4dbb-ae8e-5488707c7fde") 93 | ) 94 | (fp_poly 95 | (pts 96 | (xy -0.8 0.15) (xy -0.15 0.15) (xy -0.15 0.8) (xy -0.8 0.8) 97 | ) 98 | (stroke 99 | (width 0) 100 | (type solid) 101 | ) 102 | (fill solid) 103 | (layer "F.Paste") 104 | (uuid "9b908110-1236-44da-ab2f-246985fec48f") 105 | ) 106 | (fp_poly 107 | (pts 108 | (xy 0.15 -0.8) (xy 0.8 -0.8) (xy 0.8 -0.15) (xy 0.15 -0.15) 109 | ) 110 | (stroke 111 | (width 0) 112 | (type solid) 113 | ) 114 | (fill solid) 115 | (layer "F.Paste") 116 | (uuid "c3565f58-f418-4fb1-8203-4846a6ccbd9c") 117 | ) 118 | (fp_poly 119 | (pts 120 | (xy 0.15 0.15) (xy 0.8 0.15) (xy 0.8 0.8) (xy 0.15 0.8) 121 | ) 122 | (stroke 123 | (width 0) 124 | (type solid) 125 | ) 126 | (fill solid) 127 | (layer "F.Paste") 128 | (uuid "1dc51485-d97f-49ee-8e70-40aa84add67d") 129 | ) 130 | (fp_poly 131 | (pts 132 | (xy -8.75 -6.45) (xy -8.05 -6.45) (xy -8.05 -5.95) (xy -8.75 -5.95) 133 | ) 134 | (stroke 135 | (width 0) 136 | (type solid) 137 | ) 138 | (fill solid) 139 | (layer "F.Mask") 140 | (uuid "f7afc1aa-2b46-4dd3-bb4e-bec10fa35c91") 141 | ) 142 | (fp_rect 143 | (start -9 -9.8) 144 | (end 9 -6.75) 145 | (stroke 146 | (width 0.1) 147 | (type default) 148 | ) 149 | (fill none) 150 | (layer "Dwgs.User") 151 | (uuid "35106846-4541-4dfd-a149-6fd7593d8520") 152 | ) 153 | (fp_line 154 | (start -10 -7.41) 155 | (end -10 10.8) 156 | (stroke 157 | (width 0.05) 158 | (type default) 159 | ) 160 | (layer "F.CrtYd") 161 | (uuid "3de50b0d-0a2a-45c5-9d94-9ff0bc2bd533") 162 | ) 163 | (fp_line 164 | (start -10 -7.41) 165 | (end -6.61 -10.8) 166 | (stroke 167 | (width 0.05) 168 | (type default) 169 | ) 170 | (layer "F.CrtYd") 171 | (uuid "9da45c0d-a131-417a-928c-74a0a0ccc586") 172 | ) 173 | (fp_line 174 | (start -10 10.8) 175 | (end 10 10.8) 176 | (stroke 177 | (width 0.05) 178 | (type default) 179 | ) 180 | (layer "F.CrtYd") 181 | (uuid "2aac86f7-18b5-4fa1-8237-b0305d4d7995") 182 | ) 183 | (fp_line 184 | (start 6.61 -10.8) 185 | (end -6.61 -10.8) 186 | (stroke 187 | (width 0.05) 188 | (type default) 189 | ) 190 | (layer "F.CrtYd") 191 | (uuid "bd1a3a1b-8928-458c-950f-c97ec57e4861") 192 | ) 193 | (fp_line 194 | (start 6.61 -10.8) 195 | (end 10 -7.41) 196 | (stroke 197 | (width 0.05) 198 | (type default) 199 | ) 200 | (layer "F.CrtYd") 201 | (uuid "4c8569ff-a04e-4119-828c-45636f395951") 202 | ) 203 | (fp_line 204 | (start 10 10.8) 205 | (end 10 -7.41) 206 | (stroke 207 | (width 0.05) 208 | (type default) 209 | ) 210 | (layer "F.CrtYd") 211 | (uuid "7ba99f88-e173-451f-a9f3-a78551edaab6") 212 | ) 213 | (fp_line 214 | (start -9 -6.9) 215 | (end -6.1 -9.8) 216 | (stroke 217 | (width 0.1) 218 | (type default) 219 | ) 220 | (layer "F.Fab") 221 | (uuid "55612ee7-0160-4d72-ae96-c296eea1bb97") 222 | ) 223 | (fp_line 224 | (start -9 9.8) 225 | (end -9 -6.9) 226 | (stroke 227 | (width 0.1) 228 | (type default) 229 | ) 230 | (layer "F.Fab") 231 | (uuid "52bb89e3-17d5-40ee-82f5-59ae1a0c5e21") 232 | ) 233 | (fp_line 234 | (start -5.8 -7.9) 235 | (end -5.8 -6.8) 236 | (stroke 237 | (width 0.1) 238 | (type default) 239 | ) 240 | (layer "F.Fab") 241 | (uuid "1df0b61e-8c0c-4ef4-87b2-6a50cbc14c07") 242 | ) 243 | (fp_line 244 | (start -5.3 -6.3) 245 | (end 5.3 -6.3) 246 | (stroke 247 | (width 0.1) 248 | (type default) 249 | ) 250 | (layer "F.Fab") 251 | (uuid "9f450061-e5dd-48ea-b2a6-77470fde3728") 252 | ) 253 | (fp_line 254 | (start 0 -9.8) 255 | (end -6.1 -9.8) 256 | (stroke 257 | (width 0.1) 258 | (type default) 259 | ) 260 | (layer "F.Fab") 261 | (uuid "89adbf32-7550-432e-8268-faa54fb6da1e") 262 | ) 263 | (fp_line 264 | (start 0 -9.8) 265 | (end 6.1 -9.8) 266 | (stroke 267 | (width 0.1) 268 | (type default) 269 | ) 270 | (layer "F.Fab") 271 | (uuid "f1f5139f-43f8-4442-b803-305be432f76e") 272 | ) 273 | (fp_line 274 | (start 5.3 -8.4) 275 | (end -5.3 -8.4) 276 | (stroke 277 | (width 0.1) 278 | (type default) 279 | ) 280 | (layer "F.Fab") 281 | (uuid "ff2a88bf-7634-4634-85ac-d6979ad26944") 282 | ) 283 | (fp_line 284 | (start 5.8 -7.9) 285 | (end 5.8 -6.8) 286 | (stroke 287 | (width 0.1) 288 | (type default) 289 | ) 290 | (layer "F.Fab") 291 | (uuid "2b9abfbf-e4ae-4d37-b643-1f9eae1b2bbd") 292 | ) 293 | (fp_line 294 | (start 6.1 -9.8) 295 | (end 9 -6.9) 296 | (stroke 297 | (width 0.1) 298 | (type default) 299 | ) 300 | (layer "F.Fab") 301 | (uuid "c8465b74-2c36-4bb6-bd8e-2e4802e56686") 302 | ) 303 | (fp_line 304 | (start 9 -6.9) 305 | (end 9 9.8) 306 | (stroke 307 | (width 0.1) 308 | (type default) 309 | ) 310 | (layer "F.Fab") 311 | (uuid "57205005-59f7-4590-b88e-3442e1298f0e") 312 | ) 313 | (fp_line 314 | (start 9 9.8) 315 | (end -9 9.8) 316 | (stroke 317 | (width 0.1) 318 | (type default) 319 | ) 320 | (layer "F.Fab") 321 | (uuid "950067a9-be79-4825-8602-2e40a96cd1ba") 322 | ) 323 | (fp_arc 324 | (start -5.8 -7.9) 325 | (mid -5.653553 -8.253553) 326 | (end -5.3 -8.4) 327 | (stroke 328 | (width 0.1) 329 | (type default) 330 | ) 331 | (layer "F.Fab") 332 | (uuid "431a153c-957e-4475-b897-73a8db50620e") 333 | ) 334 | (fp_arc 335 | (start -5.3 -6.3) 336 | (mid -5.653553 -6.446447) 337 | (end -5.8 -6.8) 338 | (stroke 339 | (width 0.1) 340 | (type default) 341 | ) 342 | (layer "F.Fab") 343 | (uuid "aa1073bc-0c48-48a1-8711-8f6a2b34c5e0") 344 | ) 345 | (fp_arc 346 | (start 5.3 -8.4) 347 | (mid 5.653553 -8.253553) 348 | (end 5.8 -7.9) 349 | (stroke 350 | (width 0.1) 351 | (type default) 352 | ) 353 | (layer "F.Fab") 354 | (uuid "b0045ed4-a010-4df8-b0c9-b4e843c00189") 355 | ) 356 | (fp_arc 357 | (start 5.8 -6.8) 358 | (mid 5.653553 -6.446447) 359 | (end 5.3 -6.3) 360 | (stroke 361 | (width 0.1) 362 | (type default) 363 | ) 364 | (layer "F.Fab") 365 | (uuid "52aaa1ee-d956-4d07-9418-368620da4cef") 366 | ) 367 | (fp_text user "Place off board" 368 | (at -5.95 -7.6 0) 369 | (unlocked yes) 370 | (layer "Dwgs.User") 371 | (uuid "36dae91f-b3d3-4894-997f-52343746f997") 372 | (effects 373 | (font 374 | (size 1 1) 375 | (thickness 0.15) 376 | ) 377 | (justify left bottom) 378 | ) 379 | ) 380 | (fp_text user "${REFERENCE}" 381 | (at 0 13.5 0) 382 | (unlocked yes) 383 | (layer "F.Fab") 384 | (uuid "608b61a5-c2eb-4ca9-a061-71a86c4f96ca") 385 | (effects 386 | (font 387 | (size 1 1) 388 | (thickness 0.15) 389 | ) 390 | ) 391 | ) 392 | (pad "1" smd rect 393 | (at -8.625 -5.05 90) 394 | (size 0.66 0.55) 395 | (layers "F.Cu" "F.Paste" "F.Mask") 396 | (thermal_bridge_angle 45) 397 | (uuid "fdf8a83a-e41c-4adb-9341-c91335a069dd") 398 | ) 399 | (pad "2" smd roundrect 400 | (at -8.625 -4.25) 401 | (size 0.89 0.3) 402 | (layers "F.Cu" "F.Paste" "F.Mask") 403 | (roundrect_rratio 0.25) 404 | (thermal_bridge_angle 45) 405 | (uuid "ca273865-8b9a-4330-8d58-540f35531e97") 406 | ) 407 | (pad "3" smd roundrect 408 | (at -8.625 -3.75) 409 | (size 0.89 0.3) 410 | (layers "F.Cu" "F.Paste" "F.Mask") 411 | (roundrect_rratio 0.25) 412 | (thermal_bridge_angle 45) 413 | (uuid "ff56af03-18b0-453d-a8ef-890ab9333df2") 414 | ) 415 | (pad "4" smd roundrect 416 | (at -8.625 -3.25) 417 | (size 0.89 0.3) 418 | (layers "F.Cu" "F.Paste" "F.Mask") 419 | (roundrect_rratio 0.25) 420 | (thermal_bridge_angle 45) 421 | (uuid "865d828e-fa3f-4770-9234-174ae35b9858") 422 | ) 423 | (pad "5" smd roundrect 424 | (at -8.625 -2.75) 425 | (size 0.89 0.3) 426 | (layers "F.Cu" "F.Paste" "F.Mask") 427 | (roundrect_rratio 0.25) 428 | (thermal_bridge_angle 45) 429 | (uuid "1e1a5d2d-f873-4b6a-a698-200f151ad554") 430 | ) 431 | (pad "6" smd roundrect 432 | (at -8.625 -2.25) 433 | (size 0.89 0.3) 434 | (layers "F.Cu" "F.Paste" "F.Mask") 435 | (roundrect_rratio 0.25) 436 | (thermal_bridge_angle 45) 437 | (uuid "30927f97-5ede-45c1-a0e0-3c42fb4ccd3b") 438 | ) 439 | (pad "7" smd roundrect 440 | (at -8.625 -1.75) 441 | (size 0.89 0.3) 442 | (layers "F.Cu" "F.Paste" "F.Mask") 443 | (roundrect_rratio 0.25) 444 | (thermal_bridge_angle 45) 445 | (uuid "ae591a99-7c25-4f92-a0ce-11a484652468") 446 | ) 447 | (pad "8" smd roundrect 448 | (at -8.625 -1.25) 449 | (size 0.89 0.3) 450 | (layers "F.Cu" "F.Paste" "F.Mask") 451 | (roundrect_rratio 0.25) 452 | (thermal_bridge_angle 45) 453 | (uuid "0c0b292e-19ff-456f-bd1d-e74d6e92d046") 454 | ) 455 | (pad "9" smd roundrect 456 | (at -8.625 -0.75) 457 | (size 0.89 0.3) 458 | (layers "F.Cu" "F.Paste" "F.Mask") 459 | (roundrect_rratio 0.25) 460 | (thermal_bridge_angle 45) 461 | (uuid "b54afb40-0d9d-4de3-b1ba-57840efda133") 462 | ) 463 | (pad "10" smd roundrect 464 | (at -8.625 -0.25) 465 | (size 0.89 0.3) 466 | (layers "F.Cu" "F.Paste" "F.Mask") 467 | (roundrect_rratio 0.25) 468 | (thermal_bridge_angle 45) 469 | (uuid "337c9569-61c0-4336-a754-156760725c30") 470 | ) 471 | (pad "11" smd roundrect 472 | (at -8.625 0.25) 473 | (size 0.89 0.3) 474 | (layers "F.Cu" "F.Paste" "F.Mask") 475 | (roundrect_rratio 0.25) 476 | (thermal_bridge_angle 45) 477 | (uuid "e40ad08d-d897-4aaa-9d09-38ebcbda930d") 478 | ) 479 | (pad "12" smd roundrect 480 | (at -8.625 0.75) 481 | (size 0.89 0.3) 482 | (layers "F.Cu" "F.Paste" "F.Mask") 483 | (roundrect_rratio 0.25) 484 | (thermal_bridge_angle 45) 485 | (uuid "a1889110-e087-444c-8f46-6db4f858a831") 486 | ) 487 | (pad "13" smd roundrect 488 | (at -8.625 1.25) 489 | (size 0.89 0.3) 490 | (layers "F.Cu" "F.Paste" "F.Mask") 491 | (roundrect_rratio 0.25) 492 | (thermal_bridge_angle 45) 493 | (uuid "4c2347f5-edea-42ca-ad09-41e7071e97dc") 494 | ) 495 | (pad "14" smd roundrect 496 | (at -8.625 1.75) 497 | (size 0.89 0.3) 498 | (layers "F.Cu" "F.Paste" "F.Mask") 499 | (roundrect_rratio 0.25) 500 | (thermal_bridge_angle 45) 501 | (uuid "5dc57789-8066-4cb5-b06c-264082148f7c") 502 | ) 503 | (pad "15" smd roundrect 504 | (at -8.625 2.25) 505 | (size 0.89 0.3) 506 | (layers "F.Cu" "F.Paste" "F.Mask") 507 | (roundrect_rratio 0.25) 508 | (thermal_bridge_angle 45) 509 | (uuid "c6c3f2cc-1b13-4816-8fe5-5ca378b95055") 510 | ) 511 | (pad "16" smd roundrect 512 | (at -8.625 2.75) 513 | (size 0.89 0.3) 514 | (layers "F.Cu" "F.Paste" "F.Mask") 515 | (roundrect_rratio 0.25) 516 | (thermal_bridge_angle 45) 517 | (uuid "211ff4b2-52a1-4b34-8a04-cbe3ac21a956") 518 | ) 519 | (pad "17" smd roundrect 520 | (at -8.625 3.25) 521 | (size 0.89 0.3) 522 | (layers "F.Cu" "F.Paste" "F.Mask") 523 | (roundrect_rratio 0.25) 524 | (thermal_bridge_angle 45) 525 | (uuid "6f4f2028-42a1-476a-a78d-f6e8b67373d1") 526 | ) 527 | (pad "18" smd roundrect 528 | (at -8.625 3.75) 529 | (size 0.89 0.3) 530 | (layers "F.Cu" "F.Paste" "F.Mask") 531 | (roundrect_rratio 0.25) 532 | (thermal_bridge_angle 45) 533 | (uuid "3bcbf7ac-2d5e-4660-83ad-a14768a5b149") 534 | ) 535 | (pad "19" smd roundrect 536 | (at -8.625 4.25) 537 | (size 0.89 0.3) 538 | (layers "F.Cu" "F.Paste" "F.Mask") 539 | (roundrect_rratio 0.25) 540 | (thermal_bridge_angle 45) 541 | (uuid "0fcc8df1-795e-4b03-822b-f2260fd92f2a") 542 | ) 543 | (pad "20" smd roundrect 544 | (at -8.625 4.75) 545 | (size 0.89 0.3) 546 | (layers "F.Cu" "F.Paste" "F.Mask") 547 | (roundrect_rratio 0.25) 548 | (thermal_bridge_angle 45) 549 | (uuid "aba36202-6cdc-4294-934a-cafa8d47f36c") 550 | ) 551 | (pad "21" smd roundrect 552 | (at -8.625 5.25) 553 | (size 0.89 0.3) 554 | (layers "F.Cu" "F.Paste" "F.Mask") 555 | (roundrect_rratio 0.25) 556 | (thermal_bridge_angle 45) 557 | (uuid "5984bedb-287b-41eb-b723-8a856e4c531f") 558 | ) 559 | (pad "22" smd roundrect 560 | (at -8.625 5.75) 561 | (size 0.89 0.3) 562 | (layers "F.Cu" "F.Paste" "F.Mask") 563 | (roundrect_rratio 0.25) 564 | (thermal_bridge_angle 45) 565 | (uuid "29f9fdfb-f02f-4ccf-bc84-3b86b8153879") 566 | ) 567 | (pad "23" smd roundrect 568 | (at -8.625 6.25) 569 | (size 0.89 0.3) 570 | (layers "F.Cu" "F.Paste" "F.Mask") 571 | (roundrect_rratio 0.25) 572 | (thermal_bridge_angle 45) 573 | (uuid "6472e778-2b97-4011-95f9-4da9e0779e2d") 574 | ) 575 | (pad "24" smd roundrect 576 | (at -8.625 6.75) 577 | (size 0.89 0.3) 578 | (layers "F.Cu" "F.Paste" "F.Mask") 579 | (roundrect_rratio 0.25) 580 | (thermal_bridge_angle 45) 581 | (uuid "4cfba304-e83c-4e57-b8a1-830229aad999") 582 | ) 583 | (pad "25" smd roundrect 584 | (at -8.625 7.25) 585 | (size 0.89 0.3) 586 | (layers "F.Cu" "F.Paste" "F.Mask") 587 | (roundrect_rratio 0.25) 588 | (thermal_bridge_angle 45) 589 | (uuid "db3da684-e615-4cc3-a585-0023448c55c4") 590 | ) 591 | (pad "26" smd roundrect 592 | (at -8.625 7.75) 593 | (size 0.89 0.3) 594 | (layers "F.Cu" "F.Paste" "F.Mask") 595 | (roundrect_rratio 0.25) 596 | (thermal_bridge_angle 45) 597 | (uuid "4a7449b1-65d8-479e-b3d1-fc0a5b58215e") 598 | ) 599 | (pad "27" smd roundrect 600 | (at -8.625 8.25) 601 | (size 0.89 0.3) 602 | (layers "F.Cu" "F.Paste" "F.Mask") 603 | (roundrect_rratio 0.25) 604 | (thermal_bridge_angle 45) 605 | (uuid "0e9ca6c7-fde7-41d4-91fa-b18adbc3aa50") 606 | ) 607 | (pad "28" smd rect 608 | (at -6.05 9.42 90) 609 | (size 0.55 0.8) 610 | (layers "F.Cu" "F.Paste" "F.Mask") 611 | (thermal_bridge_angle 45) 612 | (uuid "9c921d0b-8c33-4a7b-a1fd-9c0c89aec997") 613 | ) 614 | (pad "29" smd roundrect 615 | (at -5.25 9.42 90) 616 | (size 0.89 0.3) 617 | (layers "F.Cu" "F.Paste" "F.Mask") 618 | (roundrect_rratio 0.25) 619 | (thermal_bridge_angle 45) 620 | (uuid "fa86ee1c-183b-4076-b0c7-6af3446e8883") 621 | ) 622 | (pad "30" smd roundrect 623 | (at -4.75 9.42 90) 624 | (size 0.89 0.3) 625 | (layers "F.Cu" "F.Paste" "F.Mask") 626 | (roundrect_rratio 0.25) 627 | (thermal_bridge_angle 45) 628 | (uuid "22345b36-2d8c-44a7-be95-b4944a80135a") 629 | ) 630 | (pad "31" smd roundrect 631 | (at -4.25 9.42 90) 632 | (size 0.89 0.3) 633 | (layers "F.Cu" "F.Paste" "F.Mask") 634 | (roundrect_rratio 0.25) 635 | (thermal_bridge_angle 45) 636 | (uuid "37648584-7f30-4be0-bdd7-1e82a31b12fb") 637 | ) 638 | (pad "32" smd roundrect 639 | (at -3.75 9.42 90) 640 | (size 0.89 0.3) 641 | (layers "F.Cu" "F.Paste" "F.Mask") 642 | (roundrect_rratio 0.25) 643 | (thermal_bridge_angle 45) 644 | (uuid "7ab68be6-6c96-4b84-b07b-2df1e2fd4ce7") 645 | ) 646 | (pad "33" smd roundrect 647 | (at -3.25 9.42 90) 648 | (size 0.89 0.3) 649 | (layers "F.Cu" "F.Paste" "F.Mask") 650 | (roundrect_rratio 0.25) 651 | (thermal_bridge_angle 45) 652 | (uuid "ef606b7b-1d13-4f96-b7c1-68aa2de0bcf1") 653 | ) 654 | (pad "34" smd roundrect 655 | (at -2.75 9.42 90) 656 | (size 0.89 0.3) 657 | (layers "F.Cu" "F.Paste" "F.Mask") 658 | (roundrect_rratio 0.25) 659 | (thermal_bridge_angle 45) 660 | (uuid "54f0818e-0658-42cd-8b23-da9b5c396183") 661 | ) 662 | (pad "35" smd roundrect 663 | (at -2.25 9.42 90) 664 | (size 0.89 0.3) 665 | (layers "F.Cu" "F.Paste" "F.Mask") 666 | (roundrect_rratio 0.25) 667 | (thermal_bridge_angle 45) 668 | (uuid "c5a68091-2347-4189-9133-2da02ab7a3f2") 669 | ) 670 | (pad "36" smd roundrect 671 | (at -1.75 9.42 90) 672 | (size 0.89 0.3) 673 | (layers "F.Cu" "F.Paste" "F.Mask") 674 | (roundrect_rratio 0.25) 675 | (thermal_bridge_angle 45) 676 | (uuid "b29587f3-7939-447c-8cc7-3e6e7c8dfb33") 677 | ) 678 | (pad "37" smd roundrect 679 | (at -1.25 9.42 90) 680 | (size 0.89 0.3) 681 | (layers "F.Cu" "F.Paste" "F.Mask") 682 | (roundrect_rratio 0.25) 683 | (thermal_bridge_angle 45) 684 | (uuid "6b0d4ea2-8a77-43e6-8838-06e440da59bd") 685 | ) 686 | (pad "38" smd roundrect 687 | (at -0.75 9.42 90) 688 | (size 0.89 0.3) 689 | (layers "F.Cu" "F.Paste" "F.Mask") 690 | (roundrect_rratio 0.25) 691 | (thermal_bridge_angle 45) 692 | (uuid "06bd2802-7d09-4f02-ad85-a0672dc20731") 693 | ) 694 | (pad "39" smd roundrect 695 | (at -0.25 9.42 90) 696 | (size 0.89 0.3) 697 | (layers "F.Cu" "F.Paste" "F.Mask") 698 | (roundrect_rratio 0.25) 699 | (thermal_bridge_angle 45) 700 | (uuid "df2bffd9-0464-4c20-82c5-04ca4e35558f") 701 | ) 702 | (pad "40" smd roundrect 703 | (at 0.25 9.42 90) 704 | (size 0.89 0.3) 705 | (layers "F.Cu" "F.Paste" "F.Mask") 706 | (roundrect_rratio 0.25) 707 | (thermal_bridge_angle 45) 708 | (uuid "8729a1fb-b19c-4b18-ab74-2347a9fc6ba7") 709 | ) 710 | (pad "41" smd roundrect 711 | (at 0.75 9.42 90) 712 | (size 0.89 0.3) 713 | (layers "F.Cu" "F.Paste" "F.Mask") 714 | (roundrect_rratio 0.25) 715 | (thermal_bridge_angle 45) 716 | (uuid "3e91cdf5-9eab-4f68-bfbb-1333eca9741e") 717 | ) 718 | (pad "42" smd roundrect 719 | (at 1.25 9.42 90) 720 | (size 0.89 0.3) 721 | (layers "F.Cu" "F.Paste" "F.Mask") 722 | (roundrect_rratio 0.25) 723 | (thermal_bridge_angle 45) 724 | (uuid "e54a5398-d5f8-4581-9ebc-5091cdbcdd82") 725 | ) 726 | (pad "43" smd roundrect 727 | (at 1.75 9.42 90) 728 | (size 0.89 0.3) 729 | (layers "F.Cu" "F.Paste" "F.Mask") 730 | (roundrect_rratio 0.25) 731 | (thermal_bridge_angle 45) 732 | (uuid "51747f74-9111-4d05-b8a3-46028dabded5") 733 | ) 734 | (pad "44" smd roundrect 735 | (at 2.25 9.42 90) 736 | (size 0.89 0.3) 737 | (layers "F.Cu" "F.Paste" "F.Mask") 738 | (roundrect_rratio 0.25) 739 | (thermal_bridge_angle 45) 740 | (uuid "b71b7b8a-911c-4941-8964-53ba5d047ea4") 741 | ) 742 | (pad "45" smd roundrect 743 | (at 2.75 9.42 90) 744 | (size 0.89 0.3) 745 | (layers "F.Cu" "F.Paste" "F.Mask") 746 | (roundrect_rratio 0.25) 747 | (thermal_bridge_angle 45) 748 | (uuid "d27f0050-2d9b-4ac1-b562-9db0b10df5e8") 749 | ) 750 | (pad "46" smd roundrect 751 | (at 3.25 9.42 90) 752 | (size 0.89 0.3) 753 | (layers "F.Cu" "F.Paste" "F.Mask") 754 | (roundrect_rratio 0.25) 755 | (thermal_bridge_angle 45) 756 | (uuid "4470e1b1-15e2-42b4-ad6a-a004e4c51fdc") 757 | ) 758 | (pad "47" smd roundrect 759 | (at 3.75 9.42 90) 760 | (size 0.89 0.3) 761 | (layers "F.Cu" "F.Paste" "F.Mask") 762 | (roundrect_rratio 0.25) 763 | (thermal_bridge_angle 45) 764 | (uuid "a0996735-2459-4bf1-98f2-a3297115db56") 765 | ) 766 | (pad "48" smd roundrect 767 | (at 4.25 9.42 90) 768 | (size 0.89 0.3) 769 | (layers "F.Cu" "F.Paste" "F.Mask") 770 | (roundrect_rratio 0.25) 771 | (thermal_bridge_angle 45) 772 | (uuid "5a7fc827-5bf5-4e6e-b1c1-ae4a3cafc0fb") 773 | ) 774 | (pad "49" smd roundrect 775 | (at 4.75 9.42 90) 776 | (size 0.89 0.3) 777 | (layers "F.Cu" "F.Paste" "F.Mask") 778 | (roundrect_rratio 0.25) 779 | (thermal_bridge_angle 45) 780 | (uuid "94f129c9-1f22-4c83-bde4-5d61927459ef") 781 | ) 782 | (pad "50" smd roundrect 783 | (at 5.25 9.42 90) 784 | (size 0.89 0.3) 785 | (layers "F.Cu" "F.Paste" "F.Mask") 786 | (roundrect_rratio 0.25) 787 | (thermal_bridge_angle 45) 788 | (uuid "1e8343f1-2697-450c-a439-d89802710fbc") 789 | ) 790 | (pad "51" smd rect 791 | (at 6.05 9.42 90) 792 | (size 0.55 0.8) 793 | (layers "F.Cu" "F.Paste" "F.Mask") 794 | (thermal_bridge_angle 45) 795 | (uuid "8054759e-a1c5-4b44-8e97-05f227d70911") 796 | ) 797 | (pad "52" smd roundrect 798 | (at 8.625 8.25) 799 | (size 0.89 0.3) 800 | (layers "F.Cu" "F.Paste" "F.Mask") 801 | (roundrect_rratio 0.25) 802 | (thermal_bridge_angle 45) 803 | (uuid "e336db69-1bc8-4393-82ca-d7b8cbbb0195") 804 | ) 805 | (pad "53" smd roundrect 806 | (at 8.625 7.75) 807 | (size 0.89 0.3) 808 | (layers "F.Cu" "F.Paste" "F.Mask") 809 | (roundrect_rratio 0.25) 810 | (thermal_bridge_angle 45) 811 | (uuid "9b9f74bf-4dd2-4308-929d-7d84f88ff2a7") 812 | ) 813 | (pad "54" smd roundrect 814 | (at 8.625 7.25) 815 | (size 0.89 0.3) 816 | (layers "F.Cu" "F.Paste" "F.Mask") 817 | (roundrect_rratio 0.25) 818 | (thermal_bridge_angle 45) 819 | (uuid "e27761d3-1242-4683-97e4-2fdd11fb5642") 820 | ) 821 | (pad "55" smd roundrect 822 | (at 8.625 6.75) 823 | (size 0.89 0.3) 824 | (layers "F.Cu" "F.Paste" "F.Mask") 825 | (roundrect_rratio 0.25) 826 | (thermal_bridge_angle 45) 827 | (uuid "dcd2ee93-1d5f-4233-a469-0d095f10ec5a") 828 | ) 829 | (pad "56" smd roundrect 830 | (at 8.625 6.25) 831 | (size 0.89 0.3) 832 | (layers "F.Cu" "F.Paste" "F.Mask") 833 | (roundrect_rratio 0.25) 834 | (thermal_bridge_angle 45) 835 | (uuid "8afa1860-cd6d-4bf4-a112-7a5cf80f6252") 836 | ) 837 | (pad "57" smd roundrect 838 | (at 8.625 5.75) 839 | (size 0.89 0.3) 840 | (layers "F.Cu" "F.Paste" "F.Mask") 841 | (roundrect_rratio 0.25) 842 | (thermal_bridge_angle 45) 843 | (uuid "7a80d79e-a04a-4ec1-aea6-54000610f91d") 844 | ) 845 | (pad "58" smd roundrect 846 | (at 8.625 5.25) 847 | (size 0.89 0.3) 848 | (layers "F.Cu" "F.Paste" "F.Mask") 849 | (roundrect_rratio 0.25) 850 | (thermal_bridge_angle 45) 851 | (uuid "f5062305-743f-4a0a-8aa5-653dfe519a6b") 852 | ) 853 | (pad "59" smd roundrect 854 | (at 8.625 4.75) 855 | (size 0.89 0.3) 856 | (layers "F.Cu" "F.Paste" "F.Mask") 857 | (roundrect_rratio 0.25) 858 | (thermal_bridge_angle 45) 859 | (uuid "719a85f1-4f23-454c-889b-1b845b6b20bc") 860 | ) 861 | (pad "60" smd roundrect 862 | (at 8.625 4.25) 863 | (size 0.89 0.3) 864 | (layers "F.Cu" "F.Paste" "F.Mask") 865 | (roundrect_rratio 0.25) 866 | (thermal_bridge_angle 45) 867 | (uuid "5d73ec08-8795-45c9-a0fa-4a107327ba38") 868 | ) 869 | (pad "61" smd roundrect 870 | (at 8.625 3.75) 871 | (size 0.89 0.3) 872 | (layers "F.Cu" "F.Paste" "F.Mask") 873 | (roundrect_rratio 0.25) 874 | (thermal_bridge_angle 45) 875 | (uuid "dd2be3c9-dc10-4702-95e7-abafff4b8279") 876 | ) 877 | (pad "62" smd roundrect 878 | (at 8.625 3.25) 879 | (size 0.89 0.3) 880 | (layers "F.Cu" "F.Paste" "F.Mask") 881 | (roundrect_rratio 0.25) 882 | (thermal_bridge_angle 45) 883 | (uuid "54eceb19-3857-488a-a469-225702323e89") 884 | ) 885 | (pad "63" smd roundrect 886 | (at 8.625 2.75) 887 | (size 0.89 0.3) 888 | (layers "F.Cu" "F.Paste" "F.Mask") 889 | (roundrect_rratio 0.25) 890 | (thermal_bridge_angle 45) 891 | (uuid "2f7e5172-6bab-4097-a45e-d1c579455b8f") 892 | ) 893 | (pad "64" smd roundrect 894 | (at 8.625 2.25) 895 | (size 0.89 0.3) 896 | (layers "F.Cu" "F.Paste" "F.Mask") 897 | (roundrect_rratio 0.25) 898 | (thermal_bridge_angle 45) 899 | (uuid "0932dff5-c25e-4e4b-a9a3-b7d7413a5bcf") 900 | ) 901 | (pad "65" smd roundrect 902 | (at 8.625 1.75) 903 | (size 0.89 0.3) 904 | (layers "F.Cu" "F.Paste" "F.Mask") 905 | (roundrect_rratio 0.25) 906 | (thermal_bridge_angle 45) 907 | (uuid "b8acee65-c154-430f-9c31-a27dab696a55") 908 | ) 909 | (pad "66" smd roundrect 910 | (at 8.625 1.25) 911 | (size 0.89 0.3) 912 | (layers "F.Cu" "F.Paste" "F.Mask") 913 | (roundrect_rratio 0.25) 914 | (thermal_bridge_angle 45) 915 | (uuid "153af078-2f09-4cc8-8799-3c704f76027f") 916 | ) 917 | (pad "67" smd roundrect 918 | (at 8.625 0.75) 919 | (size 0.89 0.3) 920 | (layers "F.Cu" "F.Paste" "F.Mask") 921 | (roundrect_rratio 0.25) 922 | (thermal_bridge_angle 45) 923 | (uuid "fda85c5a-cac8-4888-840e-1db96e3bc601") 924 | ) 925 | (pad "68" smd roundrect 926 | (at 8.625 0.25) 927 | (size 0.89 0.3) 928 | (layers "F.Cu" "F.Paste" "F.Mask") 929 | (roundrect_rratio 0.25) 930 | (thermal_bridge_angle 45) 931 | (uuid "3ae24506-46b9-4cd6-bbe3-5606f3f3171f") 932 | ) 933 | (pad "69" smd roundrect 934 | (at 8.625 -0.25) 935 | (size 0.89 0.3) 936 | (layers "F.Cu" "F.Paste" "F.Mask") 937 | (roundrect_rratio 0.25) 938 | (thermal_bridge_angle 45) 939 | (uuid "5dba27f5-09b7-4a13-a3a3-3212646a7eaa") 940 | ) 941 | (pad "70" smd roundrect 942 | (at 8.625 -0.75) 943 | (size 0.89 0.3) 944 | (layers "F.Cu" "F.Paste" "F.Mask") 945 | (roundrect_rratio 0.25) 946 | (thermal_bridge_angle 45) 947 | (uuid "f308b90d-2722-410e-954c-f9118384a3f8") 948 | ) 949 | (pad "71" smd roundrect 950 | (at 8.625 -1.25) 951 | (size 0.89 0.3) 952 | (layers "F.Cu" "F.Paste" "F.Mask") 953 | (roundrect_rratio 0.25) 954 | (thermal_bridge_angle 45) 955 | (uuid "6e7c1264-eaa1-4e1f-a97c-513349030d91") 956 | ) 957 | (pad "72" smd roundrect 958 | (at 8.625 -1.75) 959 | (size 0.89 0.3) 960 | (layers "F.Cu" "F.Paste" "F.Mask") 961 | (roundrect_rratio 0.25) 962 | (thermal_bridge_angle 45) 963 | (uuid "3829d8cb-2166-4505-89c7-1b317e035650") 964 | ) 965 | (pad "73" smd roundrect 966 | (at 8.625 -2.25) 967 | (size 0.89 0.3) 968 | (layers "F.Cu" "F.Paste" "F.Mask") 969 | (roundrect_rratio 0.25) 970 | (thermal_bridge_angle 45) 971 | (uuid "1b324528-d837-4584-926b-4dd8b420b574") 972 | ) 973 | (pad "74" smd roundrect 974 | (at 8.625 -2.75) 975 | (size 0.89 0.3) 976 | (layers "F.Cu" "F.Paste" "F.Mask") 977 | (roundrect_rratio 0.25) 978 | (thermal_bridge_angle 45) 979 | (uuid "2d56d43b-1c35-4fa7-b6de-19fd4be5add8") 980 | ) 981 | (pad "75" smd roundrect 982 | (at 8.625 -3.25) 983 | (size 0.89 0.3) 984 | (layers "F.Cu" "F.Paste" "F.Mask") 985 | (roundrect_rratio 0.25) 986 | (thermal_bridge_angle 45) 987 | (uuid "d6b4cd78-56aa-46e4-82da-a01decbf933c") 988 | ) 989 | (pad "76" smd roundrect 990 | (at 8.625 -3.75) 991 | (size 0.89 0.3) 992 | (layers "F.Cu" "F.Paste" "F.Mask") 993 | (roundrect_rratio 0.25) 994 | (thermal_bridge_angle 45) 995 | (uuid "8792daae-8d38-4bd9-89fa-3203e38cf633") 996 | ) 997 | (pad "77" smd roundrect 998 | (at 8.625 -4.25) 999 | (size 0.89 0.3) 1000 | (layers "F.Cu" "F.Paste" "F.Mask") 1001 | (roundrect_rratio 0.25) 1002 | (thermal_bridge_angle 45) 1003 | (uuid "1dd74960-aa5a-4267-9a45-9e7757c735a6") 1004 | ) 1005 | (pad "78" smd rect 1006 | (at 8.625 -5.05 90) 1007 | (size 0.66 0.55) 1008 | (layers "F.Cu" "F.Paste" "F.Mask") 1009 | (thermal_bridge_angle 45) 1010 | (uuid "e7d0519d-6a9f-40f9-a938-630a91f40188") 1011 | ) 1012 | (pad "79" smd custom 1013 | (at -8.4 -6.2) 1014 | (size 0.7 0.5) 1015 | (layers "F.Cu") 1016 | (thermal_bridge_angle 45) 1017 | (options 1018 | (clearance outline) 1019 | (anchor rect) 1020 | ) 1021 | (primitives 1022 | (gr_poly 1023 | (pts 1024 | (xy 0.25 0.25) (xy 2.55 0.25) (xy 2.55 0.05) (xy 0.25 0.05) 1025 | ) 1026 | (width 0) 1027 | (fill yes) 1028 | ) 1029 | ) 1030 | (uuid "e1d621cc-3b31-46dd-ac5e-ad1894c6a585") 1031 | ) 1032 | (pad "80" smd rect 1033 | (at 0 0) 1034 | (size 1.7 1.7) 1035 | (layers "F.Cu" "F.Mask") 1036 | (thermal_bridge_angle 45) 1037 | (uuid "a00e9308-4d4c-47d0-8303-44986abe3e5d") 1038 | ) 1039 | (zone 1040 | (net 0) 1041 | (net_name "") 1042 | (layer "F.Cu") 1043 | (uuid "6155ce8a-e277-4cc8-bfea-836e1593de51") 1044 | (hatch edge 0.5) 1045 | (connect_pads 1046 | (clearance 0) 1047 | ) 1048 | (min_thickness 0.25) 1049 | (filled_areas_thickness no) 1050 | (keepout 1051 | (tracks not_allowed) 1052 | (vias not_allowed) 1053 | (pads not_allowed) 1054 | (copperpour not_allowed) 1055 | (footprints allowed) 1056 | ) 1057 | (fill 1058 | (thermal_gap 0.5) 1059 | (thermal_bridge_width 0.5) 1060 | ) 1061 | (polygon 1062 | (pts 1063 | (xy 2.66 5.54) (xy 8.1 5.54) (xy 8.1 8.88) (xy 2.66 8.88) 1064 | ) 1065 | ) 1066 | ) 1067 | (zone 1068 | (net 0) 1069 | (net_name "") 1070 | (layer "F.Cu") 1071 | (uuid "d7e962c7-5fdb-406e-a545-50abc93f2700") 1072 | (hatch edge 0.5) 1073 | (connect_pads 1074 | (clearance 0) 1075 | ) 1076 | (min_thickness 0.25) 1077 | (filled_areas_thickness no) 1078 | (keepout 1079 | (tracks not_allowed) 1080 | (vias not_allowed) 1081 | (pads not_allowed) 1082 | (copperpour not_allowed) 1083 | (footprints allowed) 1084 | ) 1085 | (fill 1086 | (thermal_gap 0.5) 1087 | (thermal_bridge_width 0.5) 1088 | ) 1089 | (polygon 1090 | (pts 1091 | (xy -1.39939 -3.9) (xy -1.418489 -4.179225) (xy -1.475432 -4.453248) (xy -1.569157 -4.716965) (xy -1.697919 -4.965464) 1092 | (xy -1.859319 -5.194115) (xy -2.05035 -5.39866) (xy -2.267454 -5.575287) (xy -2.506586 -5.720706) 1093 | (xy -2.763293 -5.83221) (xy -3.032791 -5.90772) (xy -3.310061 -5.94583) (xy -3.589939 -5.94583) 1094 | (xy -3.867209 -5.90772) (xy -4.136707 -5.83221) (xy -4.393414 -5.720706) (xy -4.632546 -5.575287) 1095 | (xy -4.84965 -5.39866) (xy -5.040681 -5.194115) (xy -5.202081 -4.965464) (xy -5.330843 -4.716965) 1096 | (xy -5.424568 -4.453248) (xy -5.481511 -4.179225) (xy -5.50061 -3.9) (xy -5.481511 -3.620775) (xy -5.424568 -3.346752) 1097 | (xy -5.330843 -3.083035) (xy -5.202081 -2.834536) (xy -5.040681 -2.605885) (xy -4.84965 -2.40134) 1098 | (xy -4.632546 -2.224713) (xy -4.393414 -2.079294) (xy -4.136707 -1.96779) (xy -3.867209 -1.89228) 1099 | (xy -3.589939 -1.85417) (xy -3.310061 -1.85417) (xy -3.032791 -1.89228) (xy -2.763293 -1.96779) 1100 | (xy -2.506586 -2.079294) (xy -2.267454 -2.224713) (xy -2.05035 -2.40134) (xy -1.859319 -2.605885) 1101 | (xy -1.697919 -2.834536) (xy -1.569157 -3.083035) (xy -1.475432 -3.346752) (xy -1.418489 -3.620775) 1102 | (xy -1.39939 -3.9) 1103 | ) 1104 | ) 1105 | ) 1106 | (model "/home/funkeleinhorn/Downloads/SC14CVMDECTSF02--3DModel-STEP-1.STEP" 1107 | (opacity 0.1600) 1108 | (offset 1109 | (xyz 0 0 0) 1110 | ) 1111 | (scale 1112 | (xyz 1 1 1) 1113 | ) 1114 | (rotate 1115 | (xyz -90 0 0) 1116 | ) 1117 | ) 1118 | ) 1119 | -------------------------------------------------------------------------------- /custom_library/custom_library.kicad_sym: -------------------------------------------------------------------------------- 1 | (kicad_symbol_lib 2 | (version 20231120) 3 | (generator "kicad_symbol_editor") 4 | (generator_version "8.0") 5 | (symbol "SC14CVMDECT" 6 | (exclude_from_sim no) 7 | (in_bom yes) 8 | (on_board yes) 9 | (property "Reference" "U" 10 | (at -27.94 71.12 0) 11 | (effects 12 | (font 13 | (size 1.27 1.27) 14 | ) 15 | ) 16 | ) 17 | (property "Value" "SC14CVMDECT" 18 | (at 27.94 71.12 0) 19 | (effects 20 | (font 21 | (size 1.27 1.27) 22 | ) 23 | ) 24 | ) 25 | (property "Footprint" "" 26 | (at 0 0 0) 27 | (effects 28 | (font 29 | (size 1.27 1.27) 30 | ) 31 | (hide yes) 32 | ) 33 | ) 34 | (property "Datasheet" "https://4donline.ihs.com/images/VipMasterIC/IC/RNCC/RNCC-S-A0015592214/RNCC-S-A0015785019-1.pdf?hkey=6D3A4C79FDBF58556ACFDE234799DDF0" 35 | (at 0 -83.82 0) 36 | (effects 37 | (font 38 | (size 1.27 1.27) 39 | ) 40 | (hide yes) 41 | ) 42 | ) 43 | (property "Description" "The SC14CVMDECT SF is a member of the Cordless\nModule family with integrated radio transceiver and\nbaseband processor in a single package. It is designed\nfor hosted and embedded cordless voice and data\napplications in the DECT frequency band. Its simple to\nuse API commands allow easy setup of a wireless link\nbetween two or more nodes." 44 | (at 0 -88.9 0) 45 | (effects 46 | (font 47 | (size 1.27 1.27) 48 | ) 49 | (justify top) 50 | (hide yes) 51 | ) 52 | ) 53 | (property "ki_keywords" "DECT, RF, TELEPHONY" 54 | (at 0 0 0) 55 | (effects 56 | (font 57 | (size 1.27 1.27) 58 | ) 59 | (hide yes) 60 | ) 61 | ) 62 | (symbol "SC14CVMDECT_0_0" 63 | (rectangle 64 | (start 27.94 68.58) 65 | (end -27.94 -68.58) 66 | (stroke 67 | (width 0.254) 68 | (type default) 69 | ) 70 | (fill 71 | (type background) 72 | ) 73 | ) 74 | (pin power_in line 75 | (at -2.54 -71.12 90) 76 | (length 2.54) 77 | (name "GND" 78 | (effects 79 | (font 80 | (size 1.27 1.27) 81 | ) 82 | ) 83 | ) 84 | (number "1" 85 | (effects 86 | (font 87 | (size 1.27 1.27) 88 | ) 89 | ) 90 | ) 91 | ) 92 | (pin input line 93 | (at 30.48 55.88 180) 94 | (length 2.54) 95 | (name "MICh" 96 | (effects 97 | (font 98 | (size 1.27 1.27) 99 | ) 100 | ) 101 | ) 102 | (number "10" 103 | (effects 104 | (font 105 | (size 1.27 1.27) 106 | ) 107 | ) 108 | ) 109 | (alternate "LINEIN" input line) 110 | ) 111 | (pin power_out line 112 | (at 0 -71.12 90) 113 | (length 2.54) 114 | (name "VREFm" 115 | (effects 116 | (font 117 | (size 1.27 1.27) 118 | ) 119 | ) 120 | ) 121 | (number "11" 122 | (effects 123 | (font 124 | (size 1.27 1.27) 125 | ) 126 | ) 127 | ) 128 | ) 129 | (pin output line 130 | (at 30.48 50.8 180) 131 | (length 2.54) 132 | (name "LSRp" 133 | (effects 134 | (font 135 | (size 1.27 1.27) 136 | ) 137 | ) 138 | ) 139 | (number "12" 140 | (effects 141 | (font 142 | (size 1.27 1.27) 143 | ) 144 | ) 145 | ) 146 | (alternate "AGND" output line) 147 | (alternate "LINEOUT" output line) 148 | ) 149 | (pin output line 150 | (at 30.48 48.26 180) 151 | (length 2.54) 152 | (name "LSRn" 153 | (effects 154 | (font 155 | (size 1.27 1.27) 156 | ) 157 | ) 158 | ) 159 | (number "13" 160 | (effects 161 | (font 162 | (size 1.27 1.27) 163 | ) 164 | ) 165 | ) 166 | (alternate "AGND" output line) 167 | (alternate "LINEOUT" output line) 168 | ) 169 | (pin passive line 170 | (at -2.54 -71.12 90) 171 | (length 2.54) hide 172 | (name "GND" 173 | (effects 174 | (font 175 | (size 1.27 1.27) 176 | ) 177 | ) 178 | ) 179 | (number "14" 180 | (effects 181 | (font 182 | (size 1.27 1.27) 183 | ) 184 | ) 185 | ) 186 | ) 187 | (pin bidirectional line 188 | (at 30.48 20.32 180) 189 | (length 2.54) 190 | (name "ADC0" 191 | (effects 192 | (font 193 | (size 1.27 1.27) 194 | ) 195 | ) 196 | ) 197 | (number "15" 198 | (effects 199 | (font 200 | (size 1.27 1.27) 201 | ) 202 | ) 203 | ) 204 | (alternate "P3[3]" bidirectional line) 205 | ) 206 | (pin bidirectional line 207 | (at 30.48 17.78 180) 208 | (length 2.54) 209 | (name "ADC1" 210 | (effects 211 | (font 212 | (size 1.27 1.27) 213 | ) 214 | ) 215 | ) 216 | (number "16" 217 | (effects 218 | (font 219 | (size 1.27 1.27) 220 | ) 221 | ) 222 | ) 223 | (alternate "INT0" bidirectional line) 224 | (alternate "P1[0]" bidirectional line) 225 | ) 226 | (pin input line 227 | (at 30.48 12.7 180) 228 | (length 2.54) 229 | (name "SOCp" 230 | (effects 231 | (font 232 | (size 1.27 1.27) 233 | ) 234 | ) 235 | ) 236 | (number "17" 237 | (effects 238 | (font 239 | (size 1.27 1.27) 240 | ) 241 | ) 242 | ) 243 | ) 244 | (pin input line 245 | (at 30.48 10.16 180) 246 | (length 2.54) 247 | (name "SOCn" 248 | (effects 249 | (font 250 | (size 1.27 1.27) 251 | ) 252 | ) 253 | ) 254 | (number "18" 255 | (effects 256 | (font 257 | (size 1.27 1.27) 258 | ) 259 | ) 260 | ) 261 | ) 262 | (pin input line 263 | (at 30.48 7.62 180) 264 | (length 2.54) 265 | (name "DC_SENSE" 266 | (effects 267 | (font 268 | (size 1.27 1.27) 269 | ) 270 | ) 271 | ) 272 | (number "19" 273 | (effects 274 | (font 275 | (size 1.27 1.27) 276 | ) 277 | ) 278 | ) 279 | ) 280 | (pin output line 281 | (at -30.48 -30.48 0) 282 | (length 2.54) 283 | (name "P0" 284 | (effects 285 | (font 286 | (size 1.27 1.27) 287 | ) 288 | ) 289 | ) 290 | (number "2" 291 | (effects 292 | (font 293 | (size 1.27 1.27) 294 | ) 295 | ) 296 | ) 297 | ) 298 | (pin input line 299 | (at 30.48 5.08 180) 300 | (length 2.54) 301 | (name "DC_I" 302 | (effects 303 | (font 304 | (size 1.27 1.27) 305 | ) 306 | ) 307 | ) 308 | (number "20" 309 | (effects 310 | (font 311 | (size 1.27 1.27) 312 | ) 313 | ) 314 | ) 315 | ) 316 | (pin output line 317 | (at 30.48 2.54 180) 318 | (length 2.54) 319 | (name "DC_CTRL" 320 | (effects 321 | (font 322 | (size 1.27 1.27) 323 | ) 324 | ) 325 | ) 326 | (number "21" 327 | (effects 328 | (font 329 | (size 1.27 1.27) 330 | ) 331 | ) 332 | ) 333 | ) 334 | (pin output line 335 | (at 30.48 0 180) 336 | (length 2.54) 337 | (name "CHARGE_CTRL" 338 | (effects 339 | (font 340 | (size 1.27 1.27) 341 | ) 342 | ) 343 | ) 344 | (number "22" 345 | (effects 346 | (font 347 | (size 1.27 1.27) 348 | ) 349 | ) 350 | ) 351 | ) 352 | (pin input line 353 | (at 30.48 -2.54 180) 354 | (length 2.54) 355 | (name "CHARGE" 356 | (effects 357 | (font 358 | (size 1.27 1.27) 359 | ) 360 | ) 361 | ) 362 | (number "23" 363 | (effects 364 | (font 365 | (size 1.27 1.27) 366 | ) 367 | ) 368 | ) 369 | (alternate "P1[7]" input line) 370 | ) 371 | (pin bidirectional line 372 | (at 30.48 43.18 180) 373 | (length 2.54) 374 | (name "PAOUTp" 375 | (effects 376 | (font 377 | (size 1.27 1.27) 378 | ) 379 | ) 380 | ) 381 | (number "24" 382 | (effects 383 | (font 384 | (size 1.27 1.27) 385 | ) 386 | ) 387 | ) 388 | (alternate "DP1" bidirectional line) 389 | (alternate "P3[1]" bidirectional line) 390 | ) 391 | (pin power_in line 392 | (at 0 71.12 270) 393 | (length 2.54) 394 | (name "VDDPA" 395 | (effects 396 | (font 397 | (size 1.27 1.27) 398 | ) 399 | ) 400 | ) 401 | (number "25" 402 | (effects 403 | (font 404 | (size 1.27 1.27) 405 | ) 406 | ) 407 | ) 408 | ) 409 | (pin output line 410 | (at 30.48 -5.08 180) 411 | (length 2.54) 412 | (name "CP_VOUT1" 413 | (effects 414 | (font 415 | (size 1.27 1.27) 416 | ) 417 | ) 418 | ) 419 | (number "26" 420 | (effects 421 | (font 422 | (size 1.27 1.27) 423 | ) 424 | ) 425 | ) 426 | ) 427 | (pin bidirectional line 428 | (at 30.48 40.64 180) 429 | (length 2.54) 430 | (name "PAOUTn" 431 | (effects 432 | (font 433 | (size 1.27 1.27) 434 | ) 435 | ) 436 | ) 437 | (number "27" 438 | (effects 439 | (font 440 | (size 1.27 1.27) 441 | ) 442 | ) 443 | ) 444 | (alternate "DP0" bidirectional line) 445 | (alternate "P3[0]" bidirectional line) 446 | ) 447 | (pin passive line 448 | (at -2.54 -71.12 90) 449 | (length 2.54) hide 450 | (name "GND" 451 | (effects 452 | (font 453 | (size 1.27 1.27) 454 | ) 455 | ) 456 | ) 457 | (number "28" 458 | (effects 459 | (font 460 | (size 1.27 1.27) 461 | ) 462 | ) 463 | ) 464 | ) 465 | (pin input line 466 | (at -30.48 40.64 0) 467 | (length 2.54) 468 | (name "PON" 469 | (effects 470 | (font 471 | (size 1.27 1.27) 472 | ) 473 | ) 474 | ) 475 | (number "29" 476 | (effects 477 | (font 478 | (size 1.27 1.27) 479 | ) 480 | ) 481 | ) 482 | (alternate "P1[6]" input line) 483 | ) 484 | (pin output line 485 | (at -30.48 -35.56 0) 486 | (length 2.54) 487 | (name "RFP0" 488 | (effects 489 | (font 490 | (size 1.27 1.27) 491 | ) 492 | ) 493 | ) 494 | (number "3" 495 | (effects 496 | (font 497 | (size 1.27 1.27) 498 | ) 499 | ) 500 | ) 501 | ) 502 | (pin input line 503 | (at -30.48 -22.86 0) 504 | (length 2.54) 505 | (name "ULP_XTAL" 506 | (effects 507 | (font 508 | (size 1.27 1.27) 509 | ) 510 | ) 511 | ) 512 | (number "30" 513 | (effects 514 | (font 515 | (size 1.27 1.27) 516 | ) 517 | ) 518 | ) 519 | ) 520 | (pin input line 521 | (at -30.48 -25.4 0) 522 | (length 2.54) 523 | (name "ULP_PORT" 524 | (effects 525 | (font 526 | (size 1.27 1.27) 527 | ) 528 | ) 529 | ) 530 | (number "31" 531 | (effects 532 | (font 533 | (size 1.27 1.27) 534 | ) 535 | ) 536 | ) 537 | ) 538 | (pin bidirectional line 539 | (at 30.48 -10.16 180) 540 | (length 2.54) 541 | (name "BXTAL" 542 | (effects 543 | (font 544 | (size 1.27 1.27) 545 | ) 546 | ) 547 | ) 548 | (number "32" 549 | (effects 550 | (font 551 | (size 1.27 1.27) 552 | ) 553 | ) 554 | ) 555 | (alternate "INT7" bidirectional line) 556 | (alternate "P2[7]" bidirectional line) 557 | ) 558 | (pin bidirectional line 559 | (at 30.48 -12.7 180) 560 | (length 2.54) 561 | (name "VDDE" 562 | (effects 563 | (font 564 | (size 1.27 1.27) 565 | ) 566 | ) 567 | ) 568 | (number "33" 569 | (effects 570 | (font 571 | (size 1.27 1.27) 572 | ) 573 | ) 574 | ) 575 | (alternate "INT5" bidirectional line) 576 | (alternate "P1[5]" bidirectional line) 577 | (alternate "RDI" bidirectional line) 578 | ) 579 | (pin bidirectional line 580 | (at 30.48 -15.24 180) 581 | (length 2.54) 582 | (name "TDOD" 583 | (effects 584 | (font 585 | (size 1.27 1.27) 586 | ) 587 | ) 588 | ) 589 | (number "34" 590 | (effects 591 | (font 592 | (size 1.27 1.27) 593 | ) 594 | ) 595 | ) 596 | (alternate "INT4" bidirectional line) 597 | (alternate "P1[4]" bidirectional line) 598 | ) 599 | (pin bidirectional line 600 | (at 30.48 -17.78 180) 601 | (length 2.54) 602 | (name "SIO" 603 | (effects 604 | (font 605 | (size 1.27 1.27) 606 | ) 607 | ) 608 | ) 609 | (number "35" 610 | (effects 611 | (font 612 | (size 1.27 1.27) 613 | ) 614 | ) 615 | ) 616 | (alternate "INT3" bidirectional line) 617 | (alternate "P1[3]" bidirectional line) 618 | ) 619 | (pin bidirectional line 620 | (at 30.48 -20.32 180) 621 | (length 2.54) 622 | (name "SK" 623 | (effects 624 | (font 625 | (size 1.27 1.27) 626 | ) 627 | ) 628 | ) 629 | (number "36" 630 | (effects 631 | (font 632 | (size 1.27 1.27) 633 | ) 634 | ) 635 | ) 636 | (alternate "INT2" bidirectional line) 637 | (alternate "P1[2]" bidirectional line) 638 | ) 639 | (pin bidirectional line 640 | (at 30.48 -22.86 180) 641 | (length 2.54) 642 | (name "LE" 643 | (effects 644 | (font 645 | (size 1.27 1.27) 646 | ) 647 | ) 648 | ) 649 | (number "37" 650 | (effects 651 | (font 652 | (size 1.27 1.27) 653 | ) 654 | ) 655 | ) 656 | (alternate "INT1" bidirectional line) 657 | (alternate "P1[1]" bidirectional line) 658 | ) 659 | (pin passive line 660 | (at -2.54 -71.12 90) 661 | (length 2.54) hide 662 | (name "GND" 663 | (effects 664 | (font 665 | (size 1.27 1.27) 666 | ) 667 | ) 668 | ) 669 | (number "38" 670 | (effects 671 | (font 672 | (size 1.27 1.27) 673 | ) 674 | ) 675 | ) 676 | ) 677 | (pin bidirectional line 678 | (at 30.48 -25.4 180) 679 | (length 2.54) 680 | (name "WTF_IN" 681 | (effects 682 | (font 683 | (size 1.27 1.27) 684 | ) 685 | ) 686 | ) 687 | (number "39" 688 | (effects 689 | (font 690 | (size 1.27 1.27) 691 | ) 692 | ) 693 | ) 694 | (alternate "P2[6]" bidirectional line) 695 | ) 696 | (pin output line 697 | (at -30.48 -33.02 0) 698 | (length 2.54) 699 | (name "P0n" 700 | (effects 701 | (font 702 | (size 1.27 1.27) 703 | ) 704 | ) 705 | ) 706 | (number "4" 707 | (effects 708 | (font 709 | (size 1.27 1.27) 710 | ) 711 | ) 712 | ) 713 | ) 714 | (pin bidirectional line 715 | (at -30.48 25.4 0) 716 | (length 2.54) 717 | (name "SPI_DI" 718 | (effects 719 | (font 720 | (size 1.27 1.27) 721 | ) 722 | ) 723 | ) 724 | (number "40" 725 | (effects 726 | (font 727 | (size 1.27 1.27) 728 | ) 729 | ) 730 | ) 731 | (alternate "P0[7]" bidirectional line) 732 | (alternate "PWM1" bidirectional line) 733 | ) 734 | (pin bidirectional line 735 | (at -30.48 22.86 0) 736 | (length 2.54) 737 | (name "SPI_DO" 738 | (effects 739 | (font 740 | (size 1.27 1.27) 741 | ) 742 | ) 743 | ) 744 | (number "41" 745 | (effects 746 | (font 747 | (size 1.27 1.27) 748 | ) 749 | ) 750 | ) 751 | (alternate "P0[6]" bidirectional line) 752 | ) 753 | (pin bidirectional line 754 | (at -30.48 20.32 0) 755 | (length 2.54) 756 | (name "SPI_CLK" 757 | (effects 758 | (font 759 | (size 1.27 1.27) 760 | ) 761 | ) 762 | ) 763 | (number "42" 764 | (effects 765 | (font 766 | (size 1.27 1.27) 767 | ) 768 | ) 769 | ) 770 | (alternate "P0[5]" bidirectional line) 771 | ) 772 | (pin bidirectional line 773 | (at -30.48 17.78 0) 774 | (length 2.54) 775 | (name "SPI_EN" 776 | (effects 777 | (font 778 | (size 1.27 1.27) 779 | ) 780 | ) 781 | ) 782 | (number "43" 783 | (effects 784 | (font 785 | (size 1.27 1.27) 786 | ) 787 | ) 788 | ) 789 | (alternate "P0[4]" bidirectional line) 790 | ) 791 | (pin bidirectional line 792 | (at -30.48 12.7 0) 793 | (length 2.54) 794 | (name "SCL2" 795 | (effects 796 | (font 797 | (size 1.27 1.27) 798 | ) 799 | ) 800 | ) 801 | (number "44" 802 | (effects 803 | (font 804 | (size 1.27 1.27) 805 | ) 806 | ) 807 | ) 808 | (alternate "P0[3]" bidirectional line) 809 | (alternate "URX2" bidirectional line) 810 | ) 811 | (pin passive line 812 | (at -2.54 -71.12 90) 813 | (length 2.54) hide 814 | (name "GND" 815 | (effects 816 | (font 817 | (size 1.27 1.27) 818 | ) 819 | ) 820 | ) 821 | (number "45" 822 | (effects 823 | (font 824 | (size 1.27 1.27) 825 | ) 826 | ) 827 | ) 828 | ) 829 | (pin bidirectional line 830 | (at -30.48 10.16 0) 831 | (length 2.54) 832 | (name "SDA2" 833 | (effects 834 | (font 835 | (size 1.27 1.27) 836 | ) 837 | ) 838 | ) 839 | (number "46" 840 | (effects 841 | (font 842 | (size 1.27 1.27) 843 | ) 844 | ) 845 | ) 846 | (alternate "P0[2]" bidirectional line) 847 | (alternate "UTX2" bidirectional line) 848 | ) 849 | (pin bidirectional line 850 | (at -30.48 5.08 0) 851 | (length 2.54) 852 | (name "URX" 853 | (effects 854 | (font 855 | (size 1.27 1.27) 856 | ) 857 | ) 858 | ) 859 | (number "47" 860 | (effects 861 | (font 862 | (size 1.27 1.27) 863 | ) 864 | ) 865 | ) 866 | (alternate "P0[1]" bidirectional line) 867 | (alternate "PWM0" bidirectional line) 868 | ) 869 | (pin output line 870 | (at -30.48 2.54 0) 871 | (length 2.54) 872 | (name "UTX" 873 | (effects 874 | (font 875 | (size 1.27 1.27) 876 | ) 877 | ) 878 | ) 879 | (number "48" 880 | (effects 881 | (font 882 | (size 1.27 1.27) 883 | ) 884 | ) 885 | ) 886 | (alternate "P0[0]" output line) 887 | ) 888 | (pin passive line 889 | (at -2.54 -71.12 90) 890 | (length 2.54) hide 891 | (name "GND" 892 | (effects 893 | (font 894 | (size 1.27 1.27) 895 | ) 896 | ) 897 | ) 898 | (number "49" 899 | (effects 900 | (font 901 | (size 1.27 1.27) 902 | ) 903 | ) 904 | ) 905 | ) 906 | (pin output line 907 | (at -30.48 -38.1 0) 908 | (length 2.54) 909 | (name "RFP0n" 910 | (effects 911 | (font 912 | (size 1.27 1.27) 913 | ) 914 | ) 915 | ) 916 | (number "5" 917 | (effects 918 | (font 919 | (size 1.27 1.27) 920 | ) 921 | ) 922 | ) 923 | ) 924 | (pin passive line 925 | (at -2.54 -71.12 90) 926 | (length 2.54) hide 927 | (name "GND" 928 | (effects 929 | (font 930 | (size 1.27 1.27) 931 | ) 932 | ) 933 | ) 934 | (number "50" 935 | (effects 936 | (font 937 | (size 1.27 1.27) 938 | ) 939 | ) 940 | ) 941 | ) 942 | (pin passive line 943 | (at -2.54 -71.12 90) 944 | (length 2.54) hide 945 | (name "GND" 946 | (effects 947 | (font 948 | (size 1.27 1.27) 949 | ) 950 | ) 951 | ) 952 | (number "51" 953 | (effects 954 | (font 955 | (size 1.27 1.27) 956 | ) 957 | ) 958 | ) 959 | ) 960 | (pin input line 961 | (at -30.48 35.56 0) 962 | (length 2.54) 963 | (name "RSTn" 964 | (effects 965 | (font 966 | (size 1.27 1.27) 967 | ) 968 | ) 969 | ) 970 | (number "52" 971 | (effects 972 | (font 973 | (size 1.27 1.27) 974 | ) 975 | ) 976 | ) 977 | ) 978 | (pin bidirectional line 979 | (at -30.48 30.48 0) 980 | (length 2.54) 981 | (name "JTAG" 982 | (effects 983 | (font 984 | (size 1.27 1.27) 985 | ) 986 | ) 987 | ) 988 | (number "53" 989 | (effects 990 | (font 991 | (size 1.27 1.27) 992 | ) 993 | ) 994 | ) 995 | ) 996 | (pin bidirectional line 997 | (at -30.48 -2.54 0) 998 | (length 2.54) 999 | (name "PCM_FSC" 1000 | (effects 1001 | (font 1002 | (size 1.27 1.27) 1003 | ) 1004 | ) 1005 | ) 1006 | (number "54" 1007 | (effects 1008 | (font 1009 | (size 1.27 1.27) 1010 | ) 1011 | ) 1012 | ) 1013 | (alternate "P2[5]" bidirectional line) 1014 | (alternate "SF" bidirectional line) 1015 | ) 1016 | (pin bidirectional line 1017 | (at -30.48 -5.08 0) 1018 | (length 2.54) 1019 | (name "PCM_DO" 1020 | (effects 1021 | (font 1022 | (size 1.27 1.27) 1023 | ) 1024 | ) 1025 | ) 1026 | (number "55" 1027 | (effects 1028 | (font 1029 | (size 1.27 1.27) 1030 | ) 1031 | ) 1032 | ) 1033 | (alternate "DP3" bidirectional line) 1034 | (alternate "P2[4]" bidirectional line) 1035 | (alternate "SCL1" bidirectional line) 1036 | ) 1037 | (pin bidirectional line 1038 | (at -30.48 -7.62 0) 1039 | (length 2.54) 1040 | (name "PCM_DI" 1041 | (effects 1042 | (font 1043 | (size 1.27 1.27) 1044 | ) 1045 | ) 1046 | ) 1047 | (number "56" 1048 | (effects 1049 | (font 1050 | (size 1.27 1.27) 1051 | ) 1052 | ) 1053 | ) 1054 | (alternate "DP2" bidirectional line) 1055 | (alternate "P2[3]" bidirectional line) 1056 | (alternate "SDA1" bidirectional line) 1057 | ) 1058 | (pin bidirectional line 1059 | (at -30.48 -10.16 0) 1060 | (length 2.54) 1061 | (name "PCM_CLK" 1062 | (effects 1063 | (font 1064 | (size 1.27 1.27) 1065 | ) 1066 | ) 1067 | ) 1068 | (number "57" 1069 | (effects 1070 | (font 1071 | (size 1.27 1.27) 1072 | ) 1073 | ) 1074 | ) 1075 | (alternate "P2[2]" bidirectional line) 1076 | ) 1077 | (pin bidirectional line 1078 | (at -30.48 -15.24 0) 1079 | (length 2.54) 1080 | (name "LED4" 1081 | (effects 1082 | (font 1083 | (size 1.27 1.27) 1084 | ) 1085 | ) 1086 | ) 1087 | (number "58" 1088 | (effects 1089 | (font 1090 | (size 1.27 1.27) 1091 | ) 1092 | ) 1093 | ) 1094 | (alternate "P2[1]" bidirectional line) 1095 | (alternate "PM1" bidirectional line) 1096 | ) 1097 | (pin bidirectional line 1098 | (at -30.48 -17.78 0) 1099 | (length 2.54) 1100 | (name "LED3" 1101 | (effects 1102 | (font 1103 | (size 1.27 1.27) 1104 | ) 1105 | ) 1106 | ) 1107 | (number "59" 1108 | (effects 1109 | (font 1110 | (size 1.27 1.27) 1111 | ) 1112 | ) 1113 | ) 1114 | (alternate "P2[0]" bidirectional line) 1115 | (alternate "PM0" bidirectional line) 1116 | ) 1117 | (pin passive line 1118 | (at -2.54 -71.12 90) 1119 | (length 2.54) hide 1120 | (name "GND" 1121 | (effects 1122 | (font 1123 | (size 1.27 1.27) 1124 | ) 1125 | ) 1126 | ) 1127 | (number "6" 1128 | (effects 1129 | (font 1130 | (size 1.27 1.27) 1131 | ) 1132 | ) 1133 | ) 1134 | ) 1135 | (pin passive line 1136 | (at -2.54 -71.12 90) 1137 | (length 2.54) hide 1138 | (name "GND" 1139 | (effects 1140 | (font 1141 | (size 1.27 1.27) 1142 | ) 1143 | ) 1144 | ) 1145 | (number "60" 1146 | (effects 1147 | (font 1148 | (size 1.27 1.27) 1149 | ) 1150 | ) 1151 | ) 1152 | ) 1153 | (pin no_connect line 1154 | (at 27.94 -40.64 180) 1155 | (length 2.54) hide 1156 | (name "VDDOUT" 1157 | (effects 1158 | (font 1159 | (size 1.27 1.27) 1160 | ) 1161 | ) 1162 | ) 1163 | (number "61" 1164 | (effects 1165 | (font 1166 | (size 1.27 1.27) 1167 | ) 1168 | ) 1169 | ) 1170 | ) 1171 | (pin no_connect line 1172 | (at 27.94 -43.18 180) 1173 | (length 2.54) hide 1174 | (name "VBATS" 1175 | (effects 1176 | (font 1177 | (size 1.27 1.27) 1178 | ) 1179 | ) 1180 | ) 1181 | (number "62" 1182 | (effects 1183 | (font 1184 | (size 1.27 1.27) 1185 | ) 1186 | ) 1187 | ) 1188 | ) 1189 | (pin power_in line 1190 | (at -2.54 71.12 270) 1191 | (length 2.54) 1192 | (name "VBATIN" 1193 | (effects 1194 | (font 1195 | (size 1.27 1.27) 1196 | ) 1197 | ) 1198 | ) 1199 | (number "63" 1200 | (effects 1201 | (font 1202 | (size 1.27 1.27) 1203 | ) 1204 | ) 1205 | ) 1206 | ) 1207 | (pin passive line 1208 | (at -2.54 71.12 270) 1209 | (length 2.54) hide 1210 | (name "VBATIN" 1211 | (effects 1212 | (font 1213 | (size 1.27 1.27) 1214 | ) 1215 | ) 1216 | ) 1217 | (number "64" 1218 | (effects 1219 | (font 1220 | (size 1.27 1.27) 1221 | ) 1222 | ) 1223 | ) 1224 | ) 1225 | (pin bidirectional line 1226 | (at 30.48 35.56 180) 1227 | (length 2.54) 1228 | (name "CIDINp" 1229 | (effects 1230 | (font 1231 | (size 1.27 1.27) 1232 | ) 1233 | ) 1234 | ) 1235 | (number "65" 1236 | (effects 1237 | (font 1238 | (size 1.27 1.27) 1239 | ) 1240 | ) 1241 | ) 1242 | (alternate "P3[2]" bidirectional line) 1243 | ) 1244 | (pin bidirectional line 1245 | (at 30.48 33.02 180) 1246 | (length 2.54) 1247 | (name "RINGp" 1248 | (effects 1249 | (font 1250 | (size 1.27 1.27) 1251 | ) 1252 | ) 1253 | ) 1254 | (number "66" 1255 | (effects 1256 | (font 1257 | (size 1.27 1.27) 1258 | ) 1259 | ) 1260 | ) 1261 | (alternate "P3[7]" bidirectional line) 1262 | ) 1263 | (pin bidirectional line 1264 | (at 30.48 30.48 180) 1265 | (length 2.54) 1266 | (name "RINGn" 1267 | (effects 1268 | (font 1269 | (size 1.27 1.27) 1270 | ) 1271 | ) 1272 | ) 1273 | (number "67" 1274 | (effects 1275 | (font 1276 | (size 1.27 1.27) 1277 | ) 1278 | ) 1279 | ) 1280 | (alternate "P3[6]" bidirectional line) 1281 | ) 1282 | (pin bidirectional line 1283 | (at 30.48 27.94 180) 1284 | (length 2.54) 1285 | (name "RINGING" 1286 | (effects 1287 | (font 1288 | (size 1.27 1.27) 1289 | ) 1290 | ) 1291 | ) 1292 | (number "68" 1293 | (effects 1294 | (font 1295 | (size 1.27 1.27) 1296 | ) 1297 | ) 1298 | ) 1299 | (alternate "P3[5]" bidirectional line) 1300 | (alternate "RINGOUT" bidirectional line) 1301 | ) 1302 | (pin bidirectional line 1303 | (at 30.48 25.4 180) 1304 | (length 2.54) 1305 | (name "PARADET" 1306 | (effects 1307 | (font 1308 | (size 1.27 1.27) 1309 | ) 1310 | ) 1311 | ) 1312 | (number "69" 1313 | (effects 1314 | (font 1315 | (size 1.27 1.27) 1316 | ) 1317 | ) 1318 | ) 1319 | (alternate "P3[4]" bidirectional line) 1320 | ) 1321 | (pin power_out line 1322 | (at 30.48 63.5 180) 1323 | (length 2.54) 1324 | (name "VREFp" 1325 | (effects 1326 | (font 1327 | (size 1.27 1.27) 1328 | ) 1329 | ) 1330 | ) 1331 | (number "7" 1332 | (effects 1333 | (font 1334 | (size 1.27 1.27) 1335 | ) 1336 | ) 1337 | ) 1338 | ) 1339 | (pin passive line 1340 | (at -2.54 -71.12 90) 1341 | (length 2.54) hide 1342 | (name "GND" 1343 | (effects 1344 | (font 1345 | (size 1.27 1.27) 1346 | ) 1347 | ) 1348 | ) 1349 | (number "70" 1350 | (effects 1351 | (font 1352 | (size 1.27 1.27) 1353 | ) 1354 | ) 1355 | ) 1356 | ) 1357 | (pin passive line 1358 | (at -2.54 -71.12 90) 1359 | (length 2.54) hide 1360 | (name "GND" 1361 | (effects 1362 | (font 1363 | (size 1.27 1.27) 1364 | ) 1365 | ) 1366 | ) 1367 | (number "71" 1368 | (effects 1369 | (font 1370 | (size 1.27 1.27) 1371 | ) 1372 | ) 1373 | ) 1374 | ) 1375 | (pin passive line 1376 | (at -2.54 -71.12 90) 1377 | (length 2.54) hide 1378 | (name "GND" 1379 | (effects 1380 | (font 1381 | (size 1.27 1.27) 1382 | ) 1383 | ) 1384 | ) 1385 | (number "72" 1386 | (effects 1387 | (font 1388 | (size 1.27 1.27) 1389 | ) 1390 | ) 1391 | ) 1392 | ) 1393 | (pin input line 1394 | (at 30.48 -30.48 180) 1395 | (length 2.54) 1396 | (name "RF1" 1397 | (effects 1398 | (font 1399 | (size 1.27 1.27) 1400 | ) 1401 | ) 1402 | ) 1403 | (number "73" 1404 | (effects 1405 | (font 1406 | (size 1.27 1.27) 1407 | ) 1408 | ) 1409 | ) 1410 | ) 1411 | (pin passive line 1412 | (at -2.54 -71.12 90) 1413 | (length 2.54) hide 1414 | (name "GND" 1415 | (effects 1416 | (font 1417 | (size 1.27 1.27) 1418 | ) 1419 | ) 1420 | ) 1421 | (number "74" 1422 | (effects 1423 | (font 1424 | (size 1.27 1.27) 1425 | ) 1426 | ) 1427 | ) 1428 | ) 1429 | (pin input line 1430 | (at 30.48 -33.02 180) 1431 | (length 2.54) 1432 | (name "RF0" 1433 | (effects 1434 | (font 1435 | (size 1.27 1.27) 1436 | ) 1437 | ) 1438 | ) 1439 | (number "75" 1440 | (effects 1441 | (font 1442 | (size 1.27 1.27) 1443 | ) 1444 | ) 1445 | ) 1446 | ) 1447 | (pin passive line 1448 | (at -2.54 -71.12 90) 1449 | (length 2.54) hide 1450 | (name "GND" 1451 | (effects 1452 | (font 1453 | (size 1.27 1.27) 1454 | ) 1455 | ) 1456 | ) 1457 | (number "76" 1458 | (effects 1459 | (font 1460 | (size 1.27 1.27) 1461 | ) 1462 | ) 1463 | ) 1464 | ) 1465 | (pin passive line 1466 | (at -2.54 -71.12 90) 1467 | (length 2.54) hide 1468 | (name "GND" 1469 | (effects 1470 | (font 1471 | (size 1.27 1.27) 1472 | ) 1473 | ) 1474 | ) 1475 | (number "77" 1476 | (effects 1477 | (font 1478 | (size 1.27 1.27) 1479 | ) 1480 | ) 1481 | ) 1482 | ) 1483 | (pin passive line 1484 | (at -2.54 -71.12 90) 1485 | (length 2.54) hide 1486 | (name "GND" 1487 | (effects 1488 | (font 1489 | (size 1.27 1.27) 1490 | ) 1491 | ) 1492 | ) 1493 | (number "78" 1494 | (effects 1495 | (font 1496 | (size 1.27 1.27) 1497 | ) 1498 | ) 1499 | ) 1500 | ) 1501 | (pin input line 1502 | (at 30.48 -35.56 180) 1503 | (length 2.54) 1504 | (name "TP1" 1505 | (effects 1506 | (font 1507 | (size 1.27 1.27) 1508 | ) 1509 | ) 1510 | ) 1511 | (number "79" 1512 | (effects 1513 | (font 1514 | (size 1.27 1.27) 1515 | ) 1516 | ) 1517 | ) 1518 | ) 1519 | (pin input line 1520 | (at 30.48 60.96 180) 1521 | (length 2.54) 1522 | (name "MICp" 1523 | (effects 1524 | (font 1525 | (size 1.27 1.27) 1526 | ) 1527 | ) 1528 | ) 1529 | (number "8" 1530 | (effects 1531 | (font 1532 | (size 1.27 1.27) 1533 | ) 1534 | ) 1535 | ) 1536 | (alternate "CIDINn" input line) 1537 | ) 1538 | (pin passive line 1539 | (at -2.54 -71.12 90) 1540 | (length 2.54) hide 1541 | (name "GND" 1542 | (effects 1543 | (font 1544 | (size 1.27 1.27) 1545 | ) 1546 | ) 1547 | ) 1548 | (number "80" 1549 | (effects 1550 | (font 1551 | (size 1.27 1.27) 1552 | ) 1553 | ) 1554 | ) 1555 | ) 1556 | (pin no_connect line 1557 | (at 27.94 -45.72 180) 1558 | (length 2.54) hide 1559 | (name "TP2" 1560 | (effects 1561 | (font 1562 | (size 1.27 1.27) 1563 | ) 1564 | ) 1565 | ) 1566 | (number "81" 1567 | (effects 1568 | (font 1569 | (size 1.27 1.27) 1570 | ) 1571 | ) 1572 | ) 1573 | ) 1574 | (pin no_connect line 1575 | (at 27.94 -48.26 180) 1576 | (length 2.54) hide 1577 | (name "TP3" 1578 | (effects 1579 | (font 1580 | (size 1.27 1.27) 1581 | ) 1582 | ) 1583 | ) 1584 | (number "82" 1585 | (effects 1586 | (font 1587 | (size 1.27 1.27) 1588 | ) 1589 | ) 1590 | ) 1591 | ) 1592 | (pin no_connect line 1593 | (at 27.94 -50.8 180) 1594 | (length 2.54) hide 1595 | (name "TP4" 1596 | (effects 1597 | (font 1598 | (size 1.27 1.27) 1599 | ) 1600 | ) 1601 | ) 1602 | (number "83" 1603 | (effects 1604 | (font 1605 | (size 1.27 1.27) 1606 | ) 1607 | ) 1608 | ) 1609 | ) 1610 | (pin no_connect line 1611 | (at 27.94 -53.34 180) 1612 | (length 2.54) hide 1613 | (name "TP5" 1614 | (effects 1615 | (font 1616 | (size 1.27 1.27) 1617 | ) 1618 | ) 1619 | ) 1620 | (number "84" 1621 | (effects 1622 | (font 1623 | (size 1.27 1.27) 1624 | ) 1625 | ) 1626 | ) 1627 | ) 1628 | (pin no_connect line 1629 | (at 27.94 -55.88 180) 1630 | (length 2.54) hide 1631 | (name "TP6" 1632 | (effects 1633 | (font 1634 | (size 1.27 1.27) 1635 | ) 1636 | ) 1637 | ) 1638 | (number "85" 1639 | (effects 1640 | (font 1641 | (size 1.27 1.27) 1642 | ) 1643 | ) 1644 | ) 1645 | ) 1646 | (pin no_connect line 1647 | (at 27.94 -58.42 180) 1648 | (length 2.54) hide 1649 | (name "TP7" 1650 | (effects 1651 | (font 1652 | (size 1.27 1.27) 1653 | ) 1654 | ) 1655 | ) 1656 | (number "86" 1657 | (effects 1658 | (font 1659 | (size 1.27 1.27) 1660 | ) 1661 | ) 1662 | ) 1663 | ) 1664 | (pin no_connect line 1665 | (at 27.94 -60.96 180) 1666 | (length 2.54) hide 1667 | (name "TP8" 1668 | (effects 1669 | (font 1670 | (size 1.27 1.27) 1671 | ) 1672 | ) 1673 | ) 1674 | (number "87" 1675 | (effects 1676 | (font 1677 | (size 1.27 1.27) 1678 | ) 1679 | ) 1680 | ) 1681 | ) 1682 | (pin no_connect line 1683 | (at 27.94 -63.5 180) 1684 | (length 2.54) hide 1685 | (name "TP9" 1686 | (effects 1687 | (font 1688 | (size 1.27 1.27) 1689 | ) 1690 | ) 1691 | ) 1692 | (number "88" 1693 | (effects 1694 | (font 1695 | (size 1.27 1.27) 1696 | ) 1697 | ) 1698 | ) 1699 | ) 1700 | (pin input line 1701 | (at 30.48 58.42 180) 1702 | (length 2.54) 1703 | (name "MICn" 1704 | (effects 1705 | (font 1706 | (size 1.27 1.27) 1707 | ) 1708 | ) 1709 | ) 1710 | (number "9" 1711 | (effects 1712 | (font 1713 | (size 1.27 1.27) 1714 | ) 1715 | ) 1716 | ) 1717 | (alternate "CIDOUT" input line) 1718 | ) 1719 | ) 1720 | ) 1721 | ) 1722 | -------------------------------------------------------------------------------- /custom_library/sc14cvmdect.kicad_sym: -------------------------------------------------------------------------------- 1 | (kicad_symbol_lib 2 | (version 20231120) 3 | (generator "kicad-library-utils") 4 | (generator_version "8.0") 5 | (symbol "SC14CVMDECT" 6 | (exclude_from_sim no) 7 | (in_bom yes) 8 | (on_board yes) 9 | (property "Reference" "U" 10 | (at -27.94 71.12 0) 11 | (effects 12 | (font 13 | (size 1.27 1.27) 14 | ) 15 | ) 16 | ) 17 | (property "Value" "SC14CVMDECT" 18 | (at 27.94 71.12 0) 19 | (effects 20 | (font 21 | (size 1.27 1.27) 22 | ) 23 | ) 24 | ) 25 | (property "Footprint" "" 26 | (at 0 0 0) 27 | (effects 28 | (font 29 | (size 1.27 1.27) 30 | ) 31 | (hide yes) 32 | ) 33 | ) 34 | (property "Datasheet" "https://4donline.ihs.com/images/VipMasterIC/IC/RNCC/RNCC-S-A0015592214/RNCC-S-A0015785019-1.pdf?hkey=6D3A4C79FDBF58556ACFDE234799DDF0" 35 | (at 0 -83.82 0) 36 | (effects 37 | (font 38 | (size 1.27 1.27) 39 | ) 40 | (hide yes) 41 | ) 42 | ) 43 | (property "Description" "The SC14CVMDECT SF is a member of the Cordless\nModule family with integrated radio transceiver and\nbaseband processor in a single package. It is designed\nfor hosted and embedded cordless voice and data\napplications in the DECT frequency band. Its simple to\nuse API commands allow easy setup of a wireless link\nbetween two or more nodes." 44 | (at 0 -88.9 0) 45 | (effects 46 | (font 47 | (size 1.27 1.27) 48 | ) 49 | (justify top) 50 | (hide yes) 51 | ) 52 | ) 53 | (property "ki_keywords" "DECT, RF, TELEPHONY" 54 | (at 0 0 0) 55 | (effects 56 | (font 57 | (size 1.27 1.27) 58 | ) 59 | (hide yes) 60 | ) 61 | ) 62 | (property "ki_fp_filters" "" 63 | (at 0 0 0) 64 | (effects 65 | (font 66 | (size 1.27 1.27) 67 | ) 68 | (hide yes) 69 | ) 70 | ) 71 | (symbol "SC14CVMDECT_0_0" 72 | (rectangle 73 | (start 27.94 68.58) 74 | (end -27.94 -68.58) 75 | (stroke 76 | (width 0.254) 77 | (type default) 78 | ) 79 | (fill 80 | (type background) 81 | ) 82 | ) 83 | (pin power_in line 84 | (at -2.54 -71.12 90) 85 | (length 2.54) 86 | (name "GND" 87 | (effects 88 | (font 89 | (size 1.27 1.27) 90 | ) 91 | ) 92 | ) 93 | (number "1" 94 | (effects 95 | (font 96 | (size 1.27 1.27) 97 | ) 98 | ) 99 | ) 100 | ) 101 | (pin input line 102 | (at 30.48 55.88 180) 103 | (length 2.54) 104 | (name "MICh" 105 | (effects 106 | (font 107 | (size 1.27 1.27) 108 | ) 109 | ) 110 | ) 111 | (number "10" 112 | (effects 113 | (font 114 | (size 1.27 1.27) 115 | ) 116 | ) 117 | ) 118 | (alternate "LINEIN" input line) 119 | ) 120 | (pin power_out line 121 | (at 0 -71.12 90) 122 | (length 2.54) 123 | (name "VREFm" 124 | (effects 125 | (font 126 | (size 1.27 1.27) 127 | ) 128 | ) 129 | ) 130 | (number "11" 131 | (effects 132 | (font 133 | (size 1.27 1.27) 134 | ) 135 | ) 136 | ) 137 | ) 138 | (pin output line 139 | (at 30.48 50.8 180) 140 | (length 2.54) 141 | (name "LSRp" 142 | (effects 143 | (font 144 | (size 1.27 1.27) 145 | ) 146 | ) 147 | ) 148 | (number "12" 149 | (effects 150 | (font 151 | (size 1.27 1.27) 152 | ) 153 | ) 154 | ) 155 | (alternate "LINEOUT" output line) 156 | (alternate "AGND" output line) 157 | ) 158 | (pin output line 159 | (at 30.48 48.26 180) 160 | (length 2.54) 161 | (name "LSRn" 162 | (effects 163 | (font 164 | (size 1.27 1.27) 165 | ) 166 | ) 167 | ) 168 | (number "13" 169 | (effects 170 | (font 171 | (size 1.27 1.27) 172 | ) 173 | ) 174 | ) 175 | (alternate "LINEOUT" output line) 176 | (alternate "AGND" output line) 177 | ) 178 | (pin passive line 179 | (at -2.54 -71.12 90) 180 | (length 2.54) hide 181 | (name "GND" 182 | (effects 183 | (font 184 | (size 1.27 1.27) 185 | ) 186 | ) 187 | ) 188 | (number "14" 189 | (effects 190 | (font 191 | (size 1.27 1.27) 192 | ) 193 | ) 194 | ) 195 | ) 196 | (pin bidirectional line 197 | (at 30.48 20.32 180) 198 | (length 2.54) 199 | (name "ADC0" 200 | (effects 201 | (font 202 | (size 1.27 1.27) 203 | ) 204 | ) 205 | ) 206 | (number "15" 207 | (effects 208 | (font 209 | (size 1.27 1.27) 210 | ) 211 | ) 212 | ) 213 | (alternate "P3[3]" bidirectional line) 214 | ) 215 | (pin bidirectional line 216 | (at 30.48 17.78 180) 217 | (length 2.54) 218 | (name "ADC1" 219 | (effects 220 | (font 221 | (size 1.27 1.27) 222 | ) 223 | ) 224 | ) 225 | (number "16" 226 | (effects 227 | (font 228 | (size 1.27 1.27) 229 | ) 230 | ) 231 | ) 232 | (alternate "INT0" bidirectional line) 233 | (alternate "P1[0]" bidirectional line) 234 | ) 235 | (pin input line 236 | (at 30.48 12.7 180) 237 | (length 2.54) 238 | (name "SOCp" 239 | (effects 240 | (font 241 | (size 1.27 1.27) 242 | ) 243 | ) 244 | ) 245 | (number "17" 246 | (effects 247 | (font 248 | (size 1.27 1.27) 249 | ) 250 | ) 251 | ) 252 | ) 253 | (pin input line 254 | (at 30.48 10.16 180) 255 | (length 2.54) 256 | (name "SOCn" 257 | (effects 258 | (font 259 | (size 1.27 1.27) 260 | ) 261 | ) 262 | ) 263 | (number "18" 264 | (effects 265 | (font 266 | (size 1.27 1.27) 267 | ) 268 | ) 269 | ) 270 | ) 271 | (pin input line 272 | (at 30.48 7.62 180) 273 | (length 2.54) 274 | (name "DC_SENSE" 275 | (effects 276 | (font 277 | (size 1.27 1.27) 278 | ) 279 | ) 280 | ) 281 | (number "19" 282 | (effects 283 | (font 284 | (size 1.27 1.27) 285 | ) 286 | ) 287 | ) 288 | ) 289 | (pin output line 290 | (at -30.48 -30.48 0) 291 | (length 2.54) 292 | (name "P0" 293 | (effects 294 | (font 295 | (size 1.27 1.27) 296 | ) 297 | ) 298 | ) 299 | (number "2" 300 | (effects 301 | (font 302 | (size 1.27 1.27) 303 | ) 304 | ) 305 | ) 306 | ) 307 | (pin input line 308 | (at 30.48 5.08 180) 309 | (length 2.54) 310 | (name "DC_I" 311 | (effects 312 | (font 313 | (size 1.27 1.27) 314 | ) 315 | ) 316 | ) 317 | (number "20" 318 | (effects 319 | (font 320 | (size 1.27 1.27) 321 | ) 322 | ) 323 | ) 324 | ) 325 | (pin output line 326 | (at 30.48 2.54 180) 327 | (length 2.54) 328 | (name "DC_CTRL" 329 | (effects 330 | (font 331 | (size 1.27 1.27) 332 | ) 333 | ) 334 | ) 335 | (number "21" 336 | (effects 337 | (font 338 | (size 1.27 1.27) 339 | ) 340 | ) 341 | ) 342 | ) 343 | (pin output line 344 | (at 30.48 0 180) 345 | (length 2.54) 346 | (name "CHARGE_CTRL" 347 | (effects 348 | (font 349 | (size 1.27 1.27) 350 | ) 351 | ) 352 | ) 353 | (number "22" 354 | (effects 355 | (font 356 | (size 1.27 1.27) 357 | ) 358 | ) 359 | ) 360 | ) 361 | (pin input line 362 | (at 30.48 -2.54 180) 363 | (length 2.54) 364 | (name "CHARGE" 365 | (effects 366 | (font 367 | (size 1.27 1.27) 368 | ) 369 | ) 370 | ) 371 | (number "23" 372 | (effects 373 | (font 374 | (size 1.27 1.27) 375 | ) 376 | ) 377 | ) 378 | (alternate "P1[7]" input line) 379 | ) 380 | (pin bidirectional line 381 | (at 30.48 43.18 180) 382 | (length 2.54) 383 | (name "PAOUTp" 384 | (effects 385 | (font 386 | (size 1.27 1.27) 387 | ) 388 | ) 389 | ) 390 | (number "24" 391 | (effects 392 | (font 393 | (size 1.27 1.27) 394 | ) 395 | ) 396 | ) 397 | (alternate "DP1" bidirectional line) 398 | (alternate "P3[1]" bidirectional line) 399 | ) 400 | (pin power_in line 401 | (at 0 71.12 270) 402 | (length 2.54) 403 | (name "VDDPA" 404 | (effects 405 | (font 406 | (size 1.27 1.27) 407 | ) 408 | ) 409 | ) 410 | (number "25" 411 | (effects 412 | (font 413 | (size 1.27 1.27) 414 | ) 415 | ) 416 | ) 417 | ) 418 | (pin output line 419 | (at 30.48 -5.08 180) 420 | (length 2.54) 421 | (name "CP_VOUT1" 422 | (effects 423 | (font 424 | (size 1.27 1.27) 425 | ) 426 | ) 427 | ) 428 | (number "26" 429 | (effects 430 | (font 431 | (size 1.27 1.27) 432 | ) 433 | ) 434 | ) 435 | ) 436 | (pin bidirectional line 437 | (at 30.48 40.64 180) 438 | (length 2.54) 439 | (name "PAOUTn" 440 | (effects 441 | (font 442 | (size 1.27 1.27) 443 | ) 444 | ) 445 | ) 446 | (number "27" 447 | (effects 448 | (font 449 | (size 1.27 1.27) 450 | ) 451 | ) 452 | ) 453 | (alternate "DP0" bidirectional line) 454 | (alternate "P3[0]" bidirectional line) 455 | ) 456 | (pin passive line 457 | (at -2.54 -71.12 90) 458 | (length 2.54) hide 459 | (name "GND" 460 | (effects 461 | (font 462 | (size 1.27 1.27) 463 | ) 464 | ) 465 | ) 466 | (number "28" 467 | (effects 468 | (font 469 | (size 1.27 1.27) 470 | ) 471 | ) 472 | ) 473 | ) 474 | (pin input line 475 | (at -30.48 40.64 0) 476 | (length 2.54) 477 | (name "PON" 478 | (effects 479 | (font 480 | (size 1.27 1.27) 481 | ) 482 | ) 483 | ) 484 | (number "29" 485 | (effects 486 | (font 487 | (size 1.27 1.27) 488 | ) 489 | ) 490 | ) 491 | (alternate "P1[6]" input line) 492 | ) 493 | (pin output line 494 | (at -30.48 -35.56 0) 495 | (length 2.54) 496 | (name "RFP0" 497 | (effects 498 | (font 499 | (size 1.27 1.27) 500 | ) 501 | ) 502 | ) 503 | (number "3" 504 | (effects 505 | (font 506 | (size 1.27 1.27) 507 | ) 508 | ) 509 | ) 510 | ) 511 | (pin input line 512 | (at -30.48 -22.86 0) 513 | (length 2.54) 514 | (name "ULP_XTAL" 515 | (effects 516 | (font 517 | (size 1.27 1.27) 518 | ) 519 | ) 520 | ) 521 | (number "30" 522 | (effects 523 | (font 524 | (size 1.27 1.27) 525 | ) 526 | ) 527 | ) 528 | ) 529 | (pin input line 530 | (at -30.48 -25.4 0) 531 | (length 2.54) 532 | (name "ULP_PORT" 533 | (effects 534 | (font 535 | (size 1.27 1.27) 536 | ) 537 | ) 538 | ) 539 | (number "31" 540 | (effects 541 | (font 542 | (size 1.27 1.27) 543 | ) 544 | ) 545 | ) 546 | ) 547 | (pin bidirectional line 548 | (at 30.48 -10.16 180) 549 | (length 2.54) 550 | (name "BXTAL" 551 | (effects 552 | (font 553 | (size 1.27 1.27) 554 | ) 555 | ) 556 | ) 557 | (number "32" 558 | (effects 559 | (font 560 | (size 1.27 1.27) 561 | ) 562 | ) 563 | ) 564 | (alternate "INT7" bidirectional line) 565 | (alternate "P2[7]" bidirectional line) 566 | ) 567 | (pin bidirectional line 568 | (at 30.48 -12.7 180) 569 | (length 2.54) 570 | (name "VDDE" 571 | (effects 572 | (font 573 | (size 1.27 1.27) 574 | ) 575 | ) 576 | ) 577 | (number "33" 578 | (effects 579 | (font 580 | (size 1.27 1.27) 581 | ) 582 | ) 583 | ) 584 | (alternate "RDI" bidirectional line) 585 | (alternate "INT5" bidirectional line) 586 | (alternate "P1[5]" bidirectional line) 587 | ) 588 | (pin bidirectional line 589 | (at 30.48 -15.24 180) 590 | (length 2.54) 591 | (name "TDOD" 592 | (effects 593 | (font 594 | (size 1.27 1.27) 595 | ) 596 | ) 597 | ) 598 | (number "34" 599 | (effects 600 | (font 601 | (size 1.27 1.27) 602 | ) 603 | ) 604 | ) 605 | (alternate "INT4" bidirectional line) 606 | (alternate "P1[4]" bidirectional line) 607 | ) 608 | (pin bidirectional line 609 | (at 30.48 -17.78 180) 610 | (length 2.54) 611 | (name "SIO" 612 | (effects 613 | (font 614 | (size 1.27 1.27) 615 | ) 616 | ) 617 | ) 618 | (number "35" 619 | (effects 620 | (font 621 | (size 1.27 1.27) 622 | ) 623 | ) 624 | ) 625 | (alternate "INT3" bidirectional line) 626 | (alternate "P1[3]" bidirectional line) 627 | ) 628 | (pin bidirectional line 629 | (at 30.48 -20.32 180) 630 | (length 2.54) 631 | (name "SK" 632 | (effects 633 | (font 634 | (size 1.27 1.27) 635 | ) 636 | ) 637 | ) 638 | (number "36" 639 | (effects 640 | (font 641 | (size 1.27 1.27) 642 | ) 643 | ) 644 | ) 645 | (alternate "INT2" bidirectional line) 646 | (alternate "P1[2]" bidirectional line) 647 | ) 648 | (pin bidirectional line 649 | (at 30.48 -22.86 180) 650 | (length 2.54) 651 | (name "LE" 652 | (effects 653 | (font 654 | (size 1.27 1.27) 655 | ) 656 | ) 657 | ) 658 | (number "37" 659 | (effects 660 | (font 661 | (size 1.27 1.27) 662 | ) 663 | ) 664 | ) 665 | (alternate "INT1" bidirectional line) 666 | (alternate "P1[1]" bidirectional line) 667 | ) 668 | (pin passive line 669 | (at -2.54 -71.12 90) 670 | (length 2.54) hide 671 | (name "GND" 672 | (effects 673 | (font 674 | (size 1.27 1.27) 675 | ) 676 | ) 677 | ) 678 | (number "38" 679 | (effects 680 | (font 681 | (size 1.27 1.27) 682 | ) 683 | ) 684 | ) 685 | ) 686 | (pin bidirectional line 687 | (at 30.48 -25.4 180) 688 | (length 2.54) 689 | (name "WTF_IN" 690 | (effects 691 | (font 692 | (size 1.27 1.27) 693 | ) 694 | ) 695 | ) 696 | (number "39" 697 | (effects 698 | (font 699 | (size 1.27 1.27) 700 | ) 701 | ) 702 | ) 703 | (alternate "P2[6]" bidirectional line) 704 | ) 705 | (pin output line 706 | (at -30.48 -33.02 0) 707 | (length 2.54) 708 | (name "P0n" 709 | (effects 710 | (font 711 | (size 1.27 1.27) 712 | ) 713 | ) 714 | ) 715 | (number "4" 716 | (effects 717 | (font 718 | (size 1.27 1.27) 719 | ) 720 | ) 721 | ) 722 | ) 723 | (pin bidirectional line 724 | (at -30.48 25.4 0) 725 | (length 2.54) 726 | (name "SPI_DI" 727 | (effects 728 | (font 729 | (size 1.27 1.27) 730 | ) 731 | ) 732 | ) 733 | (number "40" 734 | (effects 735 | (font 736 | (size 1.27 1.27) 737 | ) 738 | ) 739 | ) 740 | (alternate "PWM1" bidirectional line) 741 | (alternate "P0[7]" bidirectional line) 742 | ) 743 | (pin bidirectional line 744 | (at -30.48 22.86 0) 745 | (length 2.54) 746 | (name "SPI_DO" 747 | (effects 748 | (font 749 | (size 1.27 1.27) 750 | ) 751 | ) 752 | ) 753 | (number "41" 754 | (effects 755 | (font 756 | (size 1.27 1.27) 757 | ) 758 | ) 759 | ) 760 | (alternate "P0[6]" bidirectional line) 761 | ) 762 | (pin bidirectional line 763 | (at -30.48 20.32 0) 764 | (length 2.54) 765 | (name "SPI_CLK" 766 | (effects 767 | (font 768 | (size 1.27 1.27) 769 | ) 770 | ) 771 | ) 772 | (number "42" 773 | (effects 774 | (font 775 | (size 1.27 1.27) 776 | ) 777 | ) 778 | ) 779 | (alternate "P0[5]" bidirectional line) 780 | ) 781 | (pin bidirectional line 782 | (at -30.48 17.78 0) 783 | (length 2.54) 784 | (name "SPI_EN" 785 | (effects 786 | (font 787 | (size 1.27 1.27) 788 | ) 789 | ) 790 | ) 791 | (number "43" 792 | (effects 793 | (font 794 | (size 1.27 1.27) 795 | ) 796 | ) 797 | ) 798 | (alternate "P0[4]" bidirectional line) 799 | ) 800 | (pin bidirectional line 801 | (at -30.48 12.7 0) 802 | (length 2.54) 803 | (name "SCL2" 804 | (effects 805 | (font 806 | (size 1.27 1.27) 807 | ) 808 | ) 809 | ) 810 | (number "44" 811 | (effects 812 | (font 813 | (size 1.27 1.27) 814 | ) 815 | ) 816 | ) 817 | (alternate "URX2" bidirectional line) 818 | (alternate "P0[3]" bidirectional line) 819 | ) 820 | (pin passive line 821 | (at -2.54 -71.12 90) 822 | (length 2.54) hide 823 | (name "GND" 824 | (effects 825 | (font 826 | (size 1.27 1.27) 827 | ) 828 | ) 829 | ) 830 | (number "45" 831 | (effects 832 | (font 833 | (size 1.27 1.27) 834 | ) 835 | ) 836 | ) 837 | ) 838 | (pin bidirectional line 839 | (at -30.48 10.16 0) 840 | (length 2.54) 841 | (name "SDA2" 842 | (effects 843 | (font 844 | (size 1.27 1.27) 845 | ) 846 | ) 847 | ) 848 | (number "46" 849 | (effects 850 | (font 851 | (size 1.27 1.27) 852 | ) 853 | ) 854 | ) 855 | (alternate "UTX2" bidirectional line) 856 | (alternate "P0[2]" bidirectional line) 857 | ) 858 | (pin bidirectional line 859 | (at -30.48 5.08 0) 860 | (length 2.54) 861 | (name "URX" 862 | (effects 863 | (font 864 | (size 1.27 1.27) 865 | ) 866 | ) 867 | ) 868 | (number "47" 869 | (effects 870 | (font 871 | (size 1.27 1.27) 872 | ) 873 | ) 874 | ) 875 | (alternate "PWM0" bidirectional line) 876 | (alternate "P0[1]" bidirectional line) 877 | ) 878 | (pin output line 879 | (at -30.48 2.54 0) 880 | (length 2.54) 881 | (name "UTX" 882 | (effects 883 | (font 884 | (size 1.27 1.27) 885 | ) 886 | ) 887 | ) 888 | (number "48" 889 | (effects 890 | (font 891 | (size 1.27 1.27) 892 | ) 893 | ) 894 | ) 895 | (alternate "P0[0]" output line) 896 | ) 897 | (pin passive line 898 | (at -2.54 -71.12 90) 899 | (length 2.54) hide 900 | (name "GND" 901 | (effects 902 | (font 903 | (size 1.27 1.27) 904 | ) 905 | ) 906 | ) 907 | (number "49" 908 | (effects 909 | (font 910 | (size 1.27 1.27) 911 | ) 912 | ) 913 | ) 914 | ) 915 | (pin output line 916 | (at -30.48 -38.1 0) 917 | (length 2.54) 918 | (name "RFP0n" 919 | (effects 920 | (font 921 | (size 1.27 1.27) 922 | ) 923 | ) 924 | ) 925 | (number "5" 926 | (effects 927 | (font 928 | (size 1.27 1.27) 929 | ) 930 | ) 931 | ) 932 | ) 933 | (pin passive line 934 | (at -2.54 -71.12 90) 935 | (length 2.54) hide 936 | (name "GND" 937 | (effects 938 | (font 939 | (size 1.27 1.27) 940 | ) 941 | ) 942 | ) 943 | (number "50" 944 | (effects 945 | (font 946 | (size 1.27 1.27) 947 | ) 948 | ) 949 | ) 950 | ) 951 | (pin passive line 952 | (at -2.54 -71.12 90) 953 | (length 2.54) hide 954 | (name "GND" 955 | (effects 956 | (font 957 | (size 1.27 1.27) 958 | ) 959 | ) 960 | ) 961 | (number "51" 962 | (effects 963 | (font 964 | (size 1.27 1.27) 965 | ) 966 | ) 967 | ) 968 | ) 969 | (pin input line 970 | (at -30.48 35.56 0) 971 | (length 2.54) 972 | (name "RSTn" 973 | (effects 974 | (font 975 | (size 1.27 1.27) 976 | ) 977 | ) 978 | ) 979 | (number "52" 980 | (effects 981 | (font 982 | (size 1.27 1.27) 983 | ) 984 | ) 985 | ) 986 | ) 987 | (pin bidirectional line 988 | (at -30.48 30.48 0) 989 | (length 2.54) 990 | (name "JTAG" 991 | (effects 992 | (font 993 | (size 1.27 1.27) 994 | ) 995 | ) 996 | ) 997 | (number "53" 998 | (effects 999 | (font 1000 | (size 1.27 1.27) 1001 | ) 1002 | ) 1003 | ) 1004 | ) 1005 | (pin bidirectional line 1006 | (at -30.48 -2.54 0) 1007 | (length 2.54) 1008 | (name "PCM_FSC" 1009 | (effects 1010 | (font 1011 | (size 1.27 1.27) 1012 | ) 1013 | ) 1014 | ) 1015 | (number "54" 1016 | (effects 1017 | (font 1018 | (size 1.27 1.27) 1019 | ) 1020 | ) 1021 | ) 1022 | (alternate "SF" bidirectional line) 1023 | (alternate "P2[5]" bidirectional line) 1024 | ) 1025 | (pin bidirectional line 1026 | (at -30.48 -5.08 0) 1027 | (length 2.54) 1028 | (name "PCM_DO" 1029 | (effects 1030 | (font 1031 | (size 1.27 1.27) 1032 | ) 1033 | ) 1034 | ) 1035 | (number "55" 1036 | (effects 1037 | (font 1038 | (size 1.27 1.27) 1039 | ) 1040 | ) 1041 | ) 1042 | (alternate "SCL1" bidirectional line) 1043 | (alternate "DP3" bidirectional line) 1044 | (alternate "P2[4]" bidirectional line) 1045 | ) 1046 | (pin bidirectional line 1047 | (at -30.48 -7.62 0) 1048 | (length 2.54) 1049 | (name "PCM_DI" 1050 | (effects 1051 | (font 1052 | (size 1.27 1.27) 1053 | ) 1054 | ) 1055 | ) 1056 | (number "56" 1057 | (effects 1058 | (font 1059 | (size 1.27 1.27) 1060 | ) 1061 | ) 1062 | ) 1063 | (alternate "SDA1" bidirectional line) 1064 | (alternate "DP2" bidirectional line) 1065 | (alternate "P2[3]" bidirectional line) 1066 | ) 1067 | (pin bidirectional line 1068 | (at -30.48 -10.16 0) 1069 | (length 2.54) 1070 | (name "PCM_CLK" 1071 | (effects 1072 | (font 1073 | (size 1.27 1.27) 1074 | ) 1075 | ) 1076 | ) 1077 | (number "57" 1078 | (effects 1079 | (font 1080 | (size 1.27 1.27) 1081 | ) 1082 | ) 1083 | ) 1084 | (alternate "P2[2]" bidirectional line) 1085 | ) 1086 | (pin bidirectional line 1087 | (at -30.48 -15.24 0) 1088 | (length 2.54) 1089 | (name "LED4" 1090 | (effects 1091 | (font 1092 | (size 1.27 1.27) 1093 | ) 1094 | ) 1095 | ) 1096 | (number "58" 1097 | (effects 1098 | (font 1099 | (size 1.27 1.27) 1100 | ) 1101 | ) 1102 | ) 1103 | (alternate "PM1" bidirectional line) 1104 | (alternate "P2[1]" bidirectional line) 1105 | ) 1106 | (pin bidirectional line 1107 | (at -30.48 -17.78 0) 1108 | (length 2.54) 1109 | (name "LED3" 1110 | (effects 1111 | (font 1112 | (size 1.27 1.27) 1113 | ) 1114 | ) 1115 | ) 1116 | (number "59" 1117 | (effects 1118 | (font 1119 | (size 1.27 1.27) 1120 | ) 1121 | ) 1122 | ) 1123 | (alternate "PM0" bidirectional line) 1124 | (alternate "P2[0]" bidirectional line) 1125 | ) 1126 | (pin passive line 1127 | (at -2.54 -71.12 90) 1128 | (length 2.54) hide 1129 | (name "GND" 1130 | (effects 1131 | (font 1132 | (size 1.27 1.27) 1133 | ) 1134 | ) 1135 | ) 1136 | (number "6" 1137 | (effects 1138 | (font 1139 | (size 1.27 1.27) 1140 | ) 1141 | ) 1142 | ) 1143 | ) 1144 | (pin passive line 1145 | (at -2.54 -71.12 90) 1146 | (length 2.54) hide 1147 | (name "GND" 1148 | (effects 1149 | (font 1150 | (size 1.27 1.27) 1151 | ) 1152 | ) 1153 | ) 1154 | (number "60" 1155 | (effects 1156 | (font 1157 | (size 1.27 1.27) 1158 | ) 1159 | ) 1160 | ) 1161 | ) 1162 | (pin no_connect line 1163 | (at 27.94 -40.64 180) 1164 | (length 2.54) hide 1165 | (name "VDDOUT" 1166 | (effects 1167 | (font 1168 | (size 1.27 1.27) 1169 | ) 1170 | ) 1171 | ) 1172 | (number "61" 1173 | (effects 1174 | (font 1175 | (size 1.27 1.27) 1176 | ) 1177 | ) 1178 | ) 1179 | ) 1180 | (pin no_connect line 1181 | (at 27.94 -43.18 180) 1182 | (length 2.54) hide 1183 | (name "VBATS" 1184 | (effects 1185 | (font 1186 | (size 1.27 1.27) 1187 | ) 1188 | ) 1189 | ) 1190 | (number "62" 1191 | (effects 1192 | (font 1193 | (size 1.27 1.27) 1194 | ) 1195 | ) 1196 | ) 1197 | ) 1198 | (pin power_in line 1199 | (at -2.54 71.12 270) 1200 | (length 2.54) 1201 | (name "VBATIN" 1202 | (effects 1203 | (font 1204 | (size 1.27 1.27) 1205 | ) 1206 | ) 1207 | ) 1208 | (number "63" 1209 | (effects 1210 | (font 1211 | (size 1.27 1.27) 1212 | ) 1213 | ) 1214 | ) 1215 | ) 1216 | (pin passive line 1217 | (at -2.54 71.12 270) 1218 | (length 2.54) hide 1219 | (name "VBATIN" 1220 | (effects 1221 | (font 1222 | (size 1.27 1.27) 1223 | ) 1224 | ) 1225 | ) 1226 | (number "64" 1227 | (effects 1228 | (font 1229 | (size 1.27 1.27) 1230 | ) 1231 | ) 1232 | ) 1233 | ) 1234 | (pin bidirectional line 1235 | (at 30.48 35.56 180) 1236 | (length 2.54) 1237 | (name "CIDINp" 1238 | (effects 1239 | (font 1240 | (size 1.27 1.27) 1241 | ) 1242 | ) 1243 | ) 1244 | (number "65" 1245 | (effects 1246 | (font 1247 | (size 1.27 1.27) 1248 | ) 1249 | ) 1250 | ) 1251 | (alternate "P3[2]" bidirectional line) 1252 | ) 1253 | (pin bidirectional line 1254 | (at 30.48 33.02 180) 1255 | (length 2.54) 1256 | (name "RINGp" 1257 | (effects 1258 | (font 1259 | (size 1.27 1.27) 1260 | ) 1261 | ) 1262 | ) 1263 | (number "66" 1264 | (effects 1265 | (font 1266 | (size 1.27 1.27) 1267 | ) 1268 | ) 1269 | ) 1270 | (alternate "P3[7]" bidirectional line) 1271 | ) 1272 | (pin bidirectional line 1273 | (at 30.48 30.48 180) 1274 | (length 2.54) 1275 | (name "RINGn" 1276 | (effects 1277 | (font 1278 | (size 1.27 1.27) 1279 | ) 1280 | ) 1281 | ) 1282 | (number "67" 1283 | (effects 1284 | (font 1285 | (size 1.27 1.27) 1286 | ) 1287 | ) 1288 | ) 1289 | (alternate "P3[6]" bidirectional line) 1290 | ) 1291 | (pin bidirectional line 1292 | (at 30.48 27.94 180) 1293 | (length 2.54) 1294 | (name "RINGING" 1295 | (effects 1296 | (font 1297 | (size 1.27 1.27) 1298 | ) 1299 | ) 1300 | ) 1301 | (number "68" 1302 | (effects 1303 | (font 1304 | (size 1.27 1.27) 1305 | ) 1306 | ) 1307 | ) 1308 | (alternate "RINGOUT" bidirectional line) 1309 | (alternate "P3[5]" bidirectional line) 1310 | ) 1311 | (pin bidirectional line 1312 | (at 30.48 25.4 180) 1313 | (length 2.54) 1314 | (name "PARADET" 1315 | (effects 1316 | (font 1317 | (size 1.27 1.27) 1318 | ) 1319 | ) 1320 | ) 1321 | (number "69" 1322 | (effects 1323 | (font 1324 | (size 1.27 1.27) 1325 | ) 1326 | ) 1327 | ) 1328 | (alternate "P3[4]" bidirectional line) 1329 | ) 1330 | (pin power_out line 1331 | (at 30.48 63.5 180) 1332 | (length 2.54) 1333 | (name "VREFp" 1334 | (effects 1335 | (font 1336 | (size 1.27 1.27) 1337 | ) 1338 | ) 1339 | ) 1340 | (number "7" 1341 | (effects 1342 | (font 1343 | (size 1.27 1.27) 1344 | ) 1345 | ) 1346 | ) 1347 | ) 1348 | (pin passive line 1349 | (at -2.54 -71.12 90) 1350 | (length 2.54) hide 1351 | (name "GND" 1352 | (effects 1353 | (font 1354 | (size 1.27 1.27) 1355 | ) 1356 | ) 1357 | ) 1358 | (number "70" 1359 | (effects 1360 | (font 1361 | (size 1.27 1.27) 1362 | ) 1363 | ) 1364 | ) 1365 | ) 1366 | (pin passive line 1367 | (at -2.54 -71.12 90) 1368 | (length 2.54) hide 1369 | (name "GND" 1370 | (effects 1371 | (font 1372 | (size 1.27 1.27) 1373 | ) 1374 | ) 1375 | ) 1376 | (number "71" 1377 | (effects 1378 | (font 1379 | (size 1.27 1.27) 1380 | ) 1381 | ) 1382 | ) 1383 | ) 1384 | (pin passive line 1385 | (at -2.54 -71.12 90) 1386 | (length 2.54) hide 1387 | (name "GND" 1388 | (effects 1389 | (font 1390 | (size 1.27 1.27) 1391 | ) 1392 | ) 1393 | ) 1394 | (number "72" 1395 | (effects 1396 | (font 1397 | (size 1.27 1.27) 1398 | ) 1399 | ) 1400 | ) 1401 | ) 1402 | (pin input line 1403 | (at 30.48 -30.48 180) 1404 | (length 2.54) 1405 | (name "RF1" 1406 | (effects 1407 | (font 1408 | (size 1.27 1.27) 1409 | ) 1410 | ) 1411 | ) 1412 | (number "73" 1413 | (effects 1414 | (font 1415 | (size 1.27 1.27) 1416 | ) 1417 | ) 1418 | ) 1419 | ) 1420 | (pin passive line 1421 | (at -2.54 -71.12 90) 1422 | (length 2.54) hide 1423 | (name "GND" 1424 | (effects 1425 | (font 1426 | (size 1.27 1.27) 1427 | ) 1428 | ) 1429 | ) 1430 | (number "74" 1431 | (effects 1432 | (font 1433 | (size 1.27 1.27) 1434 | ) 1435 | ) 1436 | ) 1437 | ) 1438 | (pin input line 1439 | (at 30.48 -33.02 180) 1440 | (length 2.54) 1441 | (name "RF0" 1442 | (effects 1443 | (font 1444 | (size 1.27 1.27) 1445 | ) 1446 | ) 1447 | ) 1448 | (number "75" 1449 | (effects 1450 | (font 1451 | (size 1.27 1.27) 1452 | ) 1453 | ) 1454 | ) 1455 | ) 1456 | (pin passive line 1457 | (at -2.54 -71.12 90) 1458 | (length 2.54) hide 1459 | (name "GND" 1460 | (effects 1461 | (font 1462 | (size 1.27 1.27) 1463 | ) 1464 | ) 1465 | ) 1466 | (number "76" 1467 | (effects 1468 | (font 1469 | (size 1.27 1.27) 1470 | ) 1471 | ) 1472 | ) 1473 | ) 1474 | (pin passive line 1475 | (at -2.54 -71.12 90) 1476 | (length 2.54) hide 1477 | (name "GND" 1478 | (effects 1479 | (font 1480 | (size 1.27 1.27) 1481 | ) 1482 | ) 1483 | ) 1484 | (number "77" 1485 | (effects 1486 | (font 1487 | (size 1.27 1.27) 1488 | ) 1489 | ) 1490 | ) 1491 | ) 1492 | (pin passive line 1493 | (at -2.54 -71.12 90) 1494 | (length 2.54) hide 1495 | (name "GND" 1496 | (effects 1497 | (font 1498 | (size 1.27 1.27) 1499 | ) 1500 | ) 1501 | ) 1502 | (number "78" 1503 | (effects 1504 | (font 1505 | (size 1.27 1.27) 1506 | ) 1507 | ) 1508 | ) 1509 | ) 1510 | (pin input line 1511 | (at 30.48 -35.56 180) 1512 | (length 2.54) 1513 | (name "TP1" 1514 | (effects 1515 | (font 1516 | (size 1.27 1.27) 1517 | ) 1518 | ) 1519 | ) 1520 | (number "79" 1521 | (effects 1522 | (font 1523 | (size 1.27 1.27) 1524 | ) 1525 | ) 1526 | ) 1527 | ) 1528 | (pin input line 1529 | (at 30.48 60.96 180) 1530 | (length 2.54) 1531 | (name "MICp" 1532 | (effects 1533 | (font 1534 | (size 1.27 1.27) 1535 | ) 1536 | ) 1537 | ) 1538 | (number "8" 1539 | (effects 1540 | (font 1541 | (size 1.27 1.27) 1542 | ) 1543 | ) 1544 | ) 1545 | (alternate "CIDINn" input line) 1546 | ) 1547 | (pin passive line 1548 | (at -2.54 -71.12 90) 1549 | (length 2.54) hide 1550 | (name "GND" 1551 | (effects 1552 | (font 1553 | (size 1.27 1.27) 1554 | ) 1555 | ) 1556 | ) 1557 | (number "80" 1558 | (effects 1559 | (font 1560 | (size 1.27 1.27) 1561 | ) 1562 | ) 1563 | ) 1564 | ) 1565 | (pin no_connect line 1566 | (at 27.94 -45.72 180) 1567 | (length 2.54) hide 1568 | (name "TP2" 1569 | (effects 1570 | (font 1571 | (size 1.27 1.27) 1572 | ) 1573 | ) 1574 | ) 1575 | (number "81" 1576 | (effects 1577 | (font 1578 | (size 1.27 1.27) 1579 | ) 1580 | ) 1581 | ) 1582 | ) 1583 | (pin no_connect line 1584 | (at 27.94 -48.26 180) 1585 | (length 2.54) hide 1586 | (name "TP3" 1587 | (effects 1588 | (font 1589 | (size 1.27 1.27) 1590 | ) 1591 | ) 1592 | ) 1593 | (number "82" 1594 | (effects 1595 | (font 1596 | (size 1.27 1.27) 1597 | ) 1598 | ) 1599 | ) 1600 | ) 1601 | (pin no_connect line 1602 | (at 27.94 -50.8 180) 1603 | (length 2.54) hide 1604 | (name "TP4" 1605 | (effects 1606 | (font 1607 | (size 1.27 1.27) 1608 | ) 1609 | ) 1610 | ) 1611 | (number "83" 1612 | (effects 1613 | (font 1614 | (size 1.27 1.27) 1615 | ) 1616 | ) 1617 | ) 1618 | ) 1619 | (pin no_connect line 1620 | (at 27.94 -53.34 180) 1621 | (length 2.54) hide 1622 | (name "TP5" 1623 | (effects 1624 | (font 1625 | (size 1.27 1.27) 1626 | ) 1627 | ) 1628 | ) 1629 | (number "84" 1630 | (effects 1631 | (font 1632 | (size 1.27 1.27) 1633 | ) 1634 | ) 1635 | ) 1636 | ) 1637 | (pin no_connect line 1638 | (at 27.94 -55.88 180) 1639 | (length 2.54) hide 1640 | (name "TP6" 1641 | (effects 1642 | (font 1643 | (size 1.27 1.27) 1644 | ) 1645 | ) 1646 | ) 1647 | (number "85" 1648 | (effects 1649 | (font 1650 | (size 1.27 1.27) 1651 | ) 1652 | ) 1653 | ) 1654 | ) 1655 | (pin no_connect line 1656 | (at 27.94 -58.42 180) 1657 | (length 2.54) hide 1658 | (name "TP7" 1659 | (effects 1660 | (font 1661 | (size 1.27 1.27) 1662 | ) 1663 | ) 1664 | ) 1665 | (number "86" 1666 | (effects 1667 | (font 1668 | (size 1.27 1.27) 1669 | ) 1670 | ) 1671 | ) 1672 | ) 1673 | (pin no_connect line 1674 | (at 27.94 -60.96 180) 1675 | (length 2.54) hide 1676 | (name "TP8" 1677 | (effects 1678 | (font 1679 | (size 1.27 1.27) 1680 | ) 1681 | ) 1682 | ) 1683 | (number "87" 1684 | (effects 1685 | (font 1686 | (size 1.27 1.27) 1687 | ) 1688 | ) 1689 | ) 1690 | ) 1691 | (pin no_connect line 1692 | (at 27.94 -63.5 180) 1693 | (length 2.54) hide 1694 | (name "TP9" 1695 | (effects 1696 | (font 1697 | (size 1.27 1.27) 1698 | ) 1699 | ) 1700 | ) 1701 | (number "88" 1702 | (effects 1703 | (font 1704 | (size 1.27 1.27) 1705 | ) 1706 | ) 1707 | ) 1708 | ) 1709 | (pin input line 1710 | (at 30.48 58.42 180) 1711 | (length 2.54) 1712 | (name "MICn" 1713 | (effects 1714 | (font 1715 | (size 1.27 1.27) 1716 | ) 1717 | ) 1718 | ) 1719 | (number "9" 1720 | (effects 1721 | (font 1722 | (size 1.27 1.27) 1723 | ) 1724 | ) 1725 | ) 1726 | (alternate "CIDOUT" input line) 1727 | ) 1728 | ) 1729 | ) 1730 | ) 1731 | --------------------------------------------------------------------------------