Copyright Paul Janicki 2019
Licensed under the TAPR Open Hardware License (www.tapr.org/OHL)
This documentation is distributed WITHOUT ANY EXPRESS OR IMPLIED WARRANTY, INCLUDING OF MERCHANTABILITY, SATISFACTORY QUALITY AND FITNESS FOR A PARTICULAR PURPOSE.
Quick summary
This is a simple 4 input, 8 output, ADC/DAC board using the Analog Devices AD1939 CODEC
This board forms part the of the open hardware DSP platform which is designed to be a highly customisable and flexible DSP platform.
This repository contains the KiCad design files, manufacturing Gerber/drill files, and PDF/drawing files for this board.
Most folder names are self explanatory. Starting from the top level: uCODEC
- Bill of Materials - This contains the bill of materials in CVS, LibreOffice Calc and XML formats
- Drawings - This contains PDF and SVG Schematic and PCB files
- Gerbers - This contains the PCB Gerbers and drill drawings for manufacture, there is also a zip file ready to send to most manufacturers
- KiCad - This contains the original KiCad schematic and PCB design files
Summary of set up
- Set your self up a directory on a local disk, something simple will make life easier (eg C:\Electronics on Windows as used here), but anywhere will do just fine.
- Download the Kicad-Libs from https://github.com/ohdsp/KiCad-Libs and place in C:\Electronics\Kicad-Libs (or your chosen folder)
- Create a OHDSP subdirectory in C:\Electronics (so C:\Electronics\OHDSP)
- Download this project to C:\Electronics\OHDSP\uCODEC
- Fire up Kicad
- Open the main project file C:\Electronics\OHDSP\uCODEC\KiCad\uCODEC.pro
- Do as you wish with the project, just keep it under the TAPR Open Hardware License. Note: For library issues see below.
Make sure your git setup doesn't exclude files used in the project (like .LIB files) or things may go wrong down the line.
KiCad Library Configuration
Note that libraries are setup using relative paths, if you follow the above instructions things should work just fine. Below is the default library setup.
To setup eeschema component libraries: From KiCad main window go to menu Tools -> Edit Schematic Symbols. In the new Window go to menu Preferences -> Manage Symbol Libraries.
On the new "Symbol Libraries" window select the "Project Specific Libraries" tab. The "Append Library" and "Remove Library" buttons can be used to add/remove enteries. The standard setup is:
Active | Nickname | Library Path | Plugin Type | Options | Description | |
---|---|---|---|---|---|---|
1 | Ticked | power | ${KICAD_SYMBOL_DIR}/power.lib | Legacy | (blank) | (blank) |
2 | Ticked | MyKiCadLibs-Lib | ${KIPRJMOD}/../../../KiCad-Libs/MyKiCadLibs-Lib.lib | Legacy | (blank) | (blank) |
${KICAD_SYMBOL_DIR} is set under the Enviromnet Variable Configuration. Close Symbol Libraries dialogue and go "Preferences" -> "Configure Paths..."
${KICAD_SYMBOL_DIR} is set to C:\Program Files\KiCad\share\kicad\library - this is the default for a KiCad install on the C drive
${KIPRJMOD} is automatically set to the location of the project (.pro file), in this example this would be C:\Electronics\OHDSP\uCODEC\KiCad
To setup Pcbnew libraries: From KiCad main window go to menu Tools -> Edit PCB Footprints. In the new Window go to menu Preferences -> Manage Symbol Libraries.
On the new "Symbol Libraries" window select the "Project Specific Libraries" tab. The "Append Library" and "Remove Library" buttons can be used to add/remove enteries. The standard setup is:
Active | Nickname | Library Path | Plugin Type | Options | Description | |
---|---|---|---|---|---|---|
1 | Ticked | MyKiCadLibs-Footprints | ${KIPRJMOD}/../../../KiCad-Libs/MyKiCadLibs-Footprints.pretty | KiCad | (blank) | (blank) |
${KIPRJMOD} is automatically set to the location of the project (.pro file), in this example this would be C:\Electronics\OHDSP\uCODEC\KiCad