├── .gitignore ├── .gitmodules ├── LICENSE.md ├── README.md ├── bluepill.md ├── expo_thermal_compensation ├── README.md └── find_values.py ├── firmware-midi ├── Makefile ├── hardware.h ├── main.c ├── setup.c ├── setup.h ├── usart.c ├── usbmidi.c └── usbmidi.h ├── firmware-rust ├── .cargo │ └── config ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── Makefile ├── build.rs ├── memory.x ├── openocd.cfg ├── openocd.gdb ├── schem │ ├── schem-cache.lib │ ├── schem.kicad_pcb │ ├── schem.pro │ ├── schem.sch │ └── sym-lib-table └── src │ ├── bu2505fv.rs │ ├── coop_threadsafe_container.rs │ ├── envelope.rs │ ├── main.rs │ ├── midi.rs │ ├── reverse_bits.rs │ └── vco.rs ├── hardware ├── control_board_prototype │ ├── README.md │ ├── bom.ods │ ├── control_board_prototype-cache.lib │ ├── control_board_prototype.kicad_pcb │ ├── control_board_prototype.pro │ ├── control_board_prototype.sch │ ├── fab │ │ ├── control_board_prototype-B_Cu.gbr │ │ ├── control_board_prototype-B_Mask.gbr │ │ ├── control_board_prototype-B_Paste.gbr │ │ ├── control_board_prototype-B_SilkS.gbr │ │ ├── control_board_prototype-Edge_Cuts.gbr │ │ ├── control_board_prototype-F_Cu.gbr │ │ ├── control_board_prototype-F_Mask.gbr │ │ ├── control_board_prototype-F_Paste.gbr │ │ ├── control_board_prototype-F_SilkS.gbr │ │ ├── control_board_prototype-NPTH.drl │ │ └── control_board_prototype-PTH.drl │ ├── fp-lib-table │ └── sym-lib-table ├── img │ ├── mainboard.jpg │ ├── vco_blue.jpg │ ├── vco_red.jpg │ └── voiceboard.jpg ├── lib │ ├── footprints.pretty │ │ ├── BLUEPILL.kicad_mod │ │ ├── C_rect_smd_combo.kicad_mod │ │ ├── SSOP20_and_breakout.kicad_mod │ │ ├── SolderDipJumper.kicad_mod │ │ ├── SolderDipJumper2alt.kicad_mod │ │ ├── SolderDipJumper3.kicad_mod │ │ ├── SolderDipJumper3alt.kicad_mod │ │ ├── SolderDipJumper4alt.kicad_mod │ │ ├── TO-92_Inline_alt.kicad_mod │ │ ├── perfboard 3x9.kicad_mod │ │ └── spitfire_logo_small.kicad_mod │ ├── schematic-symbols.bck │ ├── schematic-symbols.dcm │ ├── schematic-symbols.lib │ └── windfisch.pretty │ │ ├── SolderBridge.kicad_mod │ │ ├── windfisch.kicad_mod │ │ ├── windfisch_huge.kicad_mod │ │ ├── windfisch_paint.kicad_mod │ │ ├── windfisch_small.kicad_mod │ │ └── windfisch_smaller.kicad_mod ├── libtest │ ├── fp-info-cache │ ├── fp-lib-table │ ├── libtest-cache.lib │ ├── libtest.kicad_pcb │ ├── libtest.pro │ └── libtest.sch ├── vca │ ├── vca-cache.lib │ ├── vca.kicad_pcb │ ├── vca.pro │ └── vca.sch ├── vco_mk1 │ ├── README.md │ ├── vco_mk1_spitfire │ │ ├── README.md │ │ ├── fp-lib-table │ │ ├── gerber-rev01 │ │ │ ├── vco_mk1-B_Cu.gbr │ │ │ ├── vco_mk1-B_Mask.gbr │ │ │ ├── vco_mk1-B_SilkS.gbr │ │ │ ├── vco_mk1-Edge_Cuts.gbr │ │ │ ├── vco_mk1-F_Cu.gbr │ │ │ ├── vco_mk1-F_Mask.gbr │ │ │ ├── vco_mk1-F_SilkS.gbr │ │ │ └── vco_mk1.drl │ │ ├── schem1 │ │ │ └── vco_mk1.pdf │ │ ├── vco_mk1-cache.lib │ │ ├── vco_mk1.kicad_pcb │ │ ├── vco_mk1.net │ │ ├── vco_mk1.pro │ │ ├── vco_mk1.sch │ │ └── vco_mk1_old.kicad_pcb │ └── vco_mk1_windfisch │ │ ├── bom.ods │ │ ├── fab-rev01 │ │ ├── vco_mk1-B_Cu.gbr │ │ ├── vco_mk1-B_Mask.gbr │ │ ├── vco_mk1-B_SilkS.gbr │ │ ├── vco_mk1-Edge_Cuts.gbr │ │ ├── vco_mk1-F_Cu.gbr │ │ ├── vco_mk1-F_Mask.gbr │ │ ├── vco_mk1-F_SilkS.gbr │ │ ├── vco_mk1-NPTH.drl │ │ └── vco_mk1-PTH.drl │ │ ├── fp-lib-table │ │ ├── schem1 │ │ └── vco_mk1.pdf │ │ ├── vco_mk1-cache.lib │ │ ├── vco_mk1.kicad_pcb │ │ ├── vco_mk1.pro │ │ └── vco_mk1.sch ├── voice_and_control_board_fab.pdf └── voice_board │ ├── README.md │ ├── bom.ods │ ├── fab │ ├── voice_board-B_Cu.gbr │ ├── voice_board-B_Mask.gbr │ ├── voice_board-B_Paste.gbr │ ├── voice_board-B_SilkS.gbr │ ├── voice_board-Edge_Cuts.gbr │ ├── voice_board-F_Cu.gbr │ ├── voice_board-F_Mask.gbr │ ├── voice_board-F_Paste.gbr │ ├── voice_board-F_SilkS.gbr │ ├── voice_board-NPTH-drl_map.ps │ ├── voice_board-NPTH.drl │ ├── voice_board-PTH-drl_map.ps │ └── voice_board-PTH.drl │ ├── fp-lib-table │ ├── sym-lib-table │ ├── voice_board-cache.lib │ ├── voice_board.kicad_pcb │ ├── voice_board.pro │ └── voice_board.sch ├── measure_vco ├── README.md ├── experiments │ ├── 20190922 │ │ ├── README │ │ ├── blue_2.5.png │ │ ├── blue_2.5.txt │ │ ├── blue_5.0.png │ │ ├── blue_5.0.txt │ │ ├── blue_8.0.png │ │ ├── blue_8.0.txt │ │ ├── breadboard1.txt │ │ ├── breadboard1_2.5.png │ │ ├── breadboard1_2.5.txt │ │ ├── breadboard1_5.0.png │ │ ├── breadboard1_5.0.txt │ │ ├── breadboard1_5.0_000.png │ │ ├── breadboard1_8.0.png │ │ ├── breadboard1_8.0.txt │ │ ├── breadboard2_2.5.png │ │ ├── breadboard2_2.5.txt │ │ ├── breadboard2_5.0.png │ │ ├── breadboard2_5.0.txt │ │ ├── breadboard2_8.0.png │ │ ├── breadboard2_8.0.txt │ │ ├── breadboard3_2.5.png │ │ ├── breadboard3_2.5.txt │ │ ├── breadboard3_5.0.png │ │ ├── breadboard3_5.0.txt │ │ ├── breadboard3_5.0b.txt │ │ ├── breadboard3_8.0.png │ │ ├── breadboard3_8.0.txt │ │ ├── breadboard4_2.5.png │ │ ├── breadboard4_2.5.txt │ │ ├── breadboard4_5.0.png │ │ ├── breadboard4_5.0.txt │ │ ├── breadboard4_8.0.png │ │ ├── breadboard4_8.0.txt │ │ ├── red_2.5.png │ │ ├── red_2.5.txt │ │ ├── red_5.0.png │ │ ├── red_5.0.txt │ │ ├── red_8.0.png │ │ └── red_8.0.txt │ ├── 20190625_1v_per_oct_response │ │ ├── 2019-05-25_bcm847-heated.txt │ │ ├── 2019-05-25_bcm847.txt │ │ ├── 2019-05-25_pair1.txt │ │ ├── 2019-05-25_pair2.txt │ │ ├── 2019-05-25_pair3.txt │ │ ├── 2019-05-25_pair4.txt │ │ ├── 2019-05-25_pair5.txt │ │ ├── 2019-05-25_pair5_voltagereg.txt │ │ ├── 2019-05-25_pair5_voltagereg_derpy.txt │ │ ├── 2019-05-25_pair5_with_human.txt │ │ ├── README.md │ │ ├── out.txt │ │ ├── out1.txt │ │ ├── out2.txt │ │ ├── out3.txt │ │ ├── out4.txt │ │ ├── voltage_regulation_plot.gnuplot │ │ └── voltage_regulation_plot.png │ └── 20190705_error_attribution │ │ ├── README.md │ │ ├── plot.gnuplot │ │ ├── plot.png │ │ ├── run1.txt │ │ ├── run2.txt │ │ ├── run3.txt │ │ └── run4.txt ├── firmware │ ├── .gdbinit │ ├── Makefile │ ├── hardware.h │ ├── main.c │ ├── setup.c │ └── setup.h ├── schem │ ├── measure_vco-cache.lib │ ├── measure_vco.pro │ ├── measure_vco.sch │ ├── vco-cache.lib │ └── vco.bak └── software │ ├── README.md │ ├── analyze_stability.py │ ├── compare.py │ ├── read_data.py │ ├── thermal_stability.py │ └── time_stability.py ├── rules.mk └── simulation ├── expo ├── expo-cache.lib ├── expo.bak ├── expo.kicad_pcb ├── expo.pro └── expo.sch ├── filter_feedback ├── filter_feedback-cache.lib ├── filter_feedback.bak ├── filter_feedback.kicad_pcb ├── filter_feedback.pro └── filter_feedback.sch ├── lib ├── 2N7000.nxp.lib ├── 2N7000.onsemi.lib ├── BC546.lib ├── BC547_557.lib ├── LM324.ti.lib ├── TL074.ti.lib └── diodes.lib ├── passive_filter ├── passive_filter-cache.lib ├── passive_filter.bak ├── passive_filter.kicad_pcb ├── passive_filter.pro └── passive_filter.sch ├── software ├── README.md ├── analyze.py ├── generate_joblist.sh └── median.py ├── uce ├── uce-cache.lib ├── uce.bak ├── uce.kicad_pcb ├── uce.pro └── uce.sch ├── vca.py ├── vca ├── vca-cache.lib ├── vca.pro └── vca.sch ├── vca2 ├── vca-cache.lib ├── vca.kicad_pcb ├── vca.pro ├── vca.sch ├── vca2-cache.lib ├── vca2.sch ├── vca3-cache.lib └── vca3.sch ├── vcf ├── .gitignore ├── plot.py ├── plot_all.sh ├── thd.py ├── vcf_buffered-cache.lib ├── vcf_buffered_bjt-cache.lib ├── vcf_buffered_bjt.pro ├── vcf_buffered_bjt.sch ├── vcf_buffered_bjt_100k.cir ├── vcf_buffered_bjt_10k.cir ├── vcf_buffered_bjt_1k.cir ├── vcf_buffered_opamp-cache.lib ├── vcf_buffered_opamp.cir ├── vcf_buffered_opamp.pro ├── vcf_buffered_opamp.sch ├── vcf_buffered_opamp_2stage-cache.lib ├── vcf_buffered_opamp_2stage.cir ├── vcf_buffered_opamp_2stage.pro ├── vcf_buffered_opamp_2stage.sch ├── vcf_buffered_opamp_2stage_resonance-cache.lib ├── vcf_buffered_opamp_2stage_resonance.cir ├── vcf_buffered_opamp_2stage_resonance.sch ├── vcf_buffered_opamp_instramp-cache.lib ├── vcf_buffered_opamp_instramp.cir ├── vcf_buffered_opamp_instramp.sch ├── vcf_buffered_opamp_instramp2.cir ├── vcf_unbuffered-cache.lib ├── vcf_unbuffered.cir ├── vcf_unbuffered.pro ├── vcf_unbuffered.sch ├── vcf_unbuffered_capacitors1-cache.lib ├── vcf_unbuffered_capacitors1.cir ├── vcf_unbuffered_capacitors1.pro ├── vcf_unbuffered_capacitors1.sch ├── vcf_unbuffered_capacitors2-cache.lib ├── vcf_unbuffered_capacitors2.cir └── vcf_unbuffered_capacitors2.sch └── vco ├── BC546.lib ├── LM324.ti.lib ├── vco-cache.lib ├── vco.bak ├── vco.kicad_pcb ├── vco.pro └── vco.sch /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/README.md -------------------------------------------------------------------------------- /bluepill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/bluepill.md -------------------------------------------------------------------------------- /expo_thermal_compensation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/expo_thermal_compensation/README.md -------------------------------------------------------------------------------- /expo_thermal_compensation/find_values.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/expo_thermal_compensation/find_values.py -------------------------------------------------------------------------------- /firmware-midi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/firmware-midi/Makefile -------------------------------------------------------------------------------- /firmware-midi/hardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/firmware-midi/hardware.h -------------------------------------------------------------------------------- /firmware-midi/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/firmware-midi/main.c -------------------------------------------------------------------------------- /firmware-midi/setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/firmware-midi/setup.c -------------------------------------------------------------------------------- /firmware-midi/setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/firmware-midi/setup.h -------------------------------------------------------------------------------- /firmware-midi/usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/firmware-midi/usart.c -------------------------------------------------------------------------------- /firmware-midi/usbmidi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/firmware-midi/usbmidi.c -------------------------------------------------------------------------------- /firmware-midi/usbmidi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/firmware-midi/usbmidi.h -------------------------------------------------------------------------------- /firmware-rust/.cargo/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/firmware-rust/.cargo/config -------------------------------------------------------------------------------- /firmware-rust/.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | -------------------------------------------------------------------------------- /firmware-rust/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/firmware-rust/Cargo.lock -------------------------------------------------------------------------------- /firmware-rust/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/firmware-rust/Cargo.toml -------------------------------------------------------------------------------- /firmware-rust/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/firmware-rust/Makefile -------------------------------------------------------------------------------- /firmware-rust/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/firmware-rust/build.rs -------------------------------------------------------------------------------- /firmware-rust/memory.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/firmware-rust/memory.x -------------------------------------------------------------------------------- /firmware-rust/openocd.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/firmware-rust/openocd.cfg -------------------------------------------------------------------------------- /firmware-rust/openocd.gdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/firmware-rust/openocd.gdb -------------------------------------------------------------------------------- /firmware-rust/schem/schem-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/firmware-rust/schem/schem-cache.lib -------------------------------------------------------------------------------- /firmware-rust/schem/schem.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/firmware-rust/schem/schem.kicad_pcb -------------------------------------------------------------------------------- /firmware-rust/schem/schem.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/firmware-rust/schem/schem.pro -------------------------------------------------------------------------------- /firmware-rust/schem/schem.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/firmware-rust/schem/schem.sch -------------------------------------------------------------------------------- /firmware-rust/schem/sym-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/firmware-rust/schem/sym-lib-table -------------------------------------------------------------------------------- /firmware-rust/src/bu2505fv.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/firmware-rust/src/bu2505fv.rs -------------------------------------------------------------------------------- /firmware-rust/src/coop_threadsafe_container.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/firmware-rust/src/coop_threadsafe_container.rs -------------------------------------------------------------------------------- /firmware-rust/src/envelope.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/firmware-rust/src/envelope.rs -------------------------------------------------------------------------------- /firmware-rust/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/firmware-rust/src/main.rs -------------------------------------------------------------------------------- /firmware-rust/src/midi.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/firmware-rust/src/midi.rs -------------------------------------------------------------------------------- /firmware-rust/src/reverse_bits.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/firmware-rust/src/reverse_bits.rs -------------------------------------------------------------------------------- /firmware-rust/src/vco.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/firmware-rust/src/vco.rs -------------------------------------------------------------------------------- /hardware/control_board_prototype/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/control_board_prototype/README.md -------------------------------------------------------------------------------- /hardware/control_board_prototype/bom.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/control_board_prototype/bom.ods -------------------------------------------------------------------------------- /hardware/control_board_prototype/control_board_prototype-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/control_board_prototype/control_board_prototype-cache.lib -------------------------------------------------------------------------------- /hardware/control_board_prototype/control_board_prototype.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/control_board_prototype/control_board_prototype.kicad_pcb -------------------------------------------------------------------------------- /hardware/control_board_prototype/control_board_prototype.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/control_board_prototype/control_board_prototype.pro -------------------------------------------------------------------------------- /hardware/control_board_prototype/control_board_prototype.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/control_board_prototype/control_board_prototype.sch -------------------------------------------------------------------------------- /hardware/control_board_prototype/fab/control_board_prototype-B_Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/control_board_prototype/fab/control_board_prototype-B_Cu.gbr -------------------------------------------------------------------------------- /hardware/control_board_prototype/fab/control_board_prototype-B_Mask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/control_board_prototype/fab/control_board_prototype-B_Mask.gbr -------------------------------------------------------------------------------- /hardware/control_board_prototype/fab/control_board_prototype-B_Paste.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/control_board_prototype/fab/control_board_prototype-B_Paste.gbr -------------------------------------------------------------------------------- /hardware/control_board_prototype/fab/control_board_prototype-B_SilkS.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/control_board_prototype/fab/control_board_prototype-B_SilkS.gbr -------------------------------------------------------------------------------- /hardware/control_board_prototype/fab/control_board_prototype-Edge_Cuts.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/control_board_prototype/fab/control_board_prototype-Edge_Cuts.gbr -------------------------------------------------------------------------------- /hardware/control_board_prototype/fab/control_board_prototype-F_Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/control_board_prototype/fab/control_board_prototype-F_Cu.gbr -------------------------------------------------------------------------------- /hardware/control_board_prototype/fab/control_board_prototype-F_Mask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/control_board_prototype/fab/control_board_prototype-F_Mask.gbr -------------------------------------------------------------------------------- /hardware/control_board_prototype/fab/control_board_prototype-F_Paste.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/control_board_prototype/fab/control_board_prototype-F_Paste.gbr -------------------------------------------------------------------------------- /hardware/control_board_prototype/fab/control_board_prototype-F_SilkS.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/control_board_prototype/fab/control_board_prototype-F_SilkS.gbr -------------------------------------------------------------------------------- /hardware/control_board_prototype/fab/control_board_prototype-NPTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/control_board_prototype/fab/control_board_prototype-NPTH.drl -------------------------------------------------------------------------------- /hardware/control_board_prototype/fab/control_board_prototype-PTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/control_board_prototype/fab/control_board_prototype-PTH.drl -------------------------------------------------------------------------------- /hardware/control_board_prototype/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/control_board_prototype/fp-lib-table -------------------------------------------------------------------------------- /hardware/control_board_prototype/sym-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/control_board_prototype/sym-lib-table -------------------------------------------------------------------------------- /hardware/img/mainboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/img/mainboard.jpg -------------------------------------------------------------------------------- /hardware/img/vco_blue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/img/vco_blue.jpg -------------------------------------------------------------------------------- /hardware/img/vco_red.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/img/vco_red.jpg -------------------------------------------------------------------------------- /hardware/img/voiceboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/img/voiceboard.jpg -------------------------------------------------------------------------------- /hardware/lib/footprints.pretty/BLUEPILL.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/lib/footprints.pretty/BLUEPILL.kicad_mod -------------------------------------------------------------------------------- /hardware/lib/footprints.pretty/C_rect_smd_combo.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/lib/footprints.pretty/C_rect_smd_combo.kicad_mod -------------------------------------------------------------------------------- /hardware/lib/footprints.pretty/SSOP20_and_breakout.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/lib/footprints.pretty/SSOP20_and_breakout.kicad_mod -------------------------------------------------------------------------------- /hardware/lib/footprints.pretty/SolderDipJumper.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/lib/footprints.pretty/SolderDipJumper.kicad_mod -------------------------------------------------------------------------------- /hardware/lib/footprints.pretty/SolderDipJumper2alt.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/lib/footprints.pretty/SolderDipJumper2alt.kicad_mod -------------------------------------------------------------------------------- /hardware/lib/footprints.pretty/SolderDipJumper3.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/lib/footprints.pretty/SolderDipJumper3.kicad_mod -------------------------------------------------------------------------------- /hardware/lib/footprints.pretty/SolderDipJumper3alt.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/lib/footprints.pretty/SolderDipJumper3alt.kicad_mod -------------------------------------------------------------------------------- /hardware/lib/footprints.pretty/SolderDipJumper4alt.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/lib/footprints.pretty/SolderDipJumper4alt.kicad_mod -------------------------------------------------------------------------------- /hardware/lib/footprints.pretty/TO-92_Inline_alt.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/lib/footprints.pretty/TO-92_Inline_alt.kicad_mod -------------------------------------------------------------------------------- /hardware/lib/footprints.pretty/perfboard 3x9.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/lib/footprints.pretty/perfboard 3x9.kicad_mod -------------------------------------------------------------------------------- /hardware/lib/footprints.pretty/spitfire_logo_small.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/lib/footprints.pretty/spitfire_logo_small.kicad_mod -------------------------------------------------------------------------------- /hardware/lib/schematic-symbols.bck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/lib/schematic-symbols.bck -------------------------------------------------------------------------------- /hardware/lib/schematic-symbols.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/lib/schematic-symbols.dcm -------------------------------------------------------------------------------- /hardware/lib/schematic-symbols.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/lib/schematic-symbols.lib -------------------------------------------------------------------------------- /hardware/lib/windfisch.pretty/SolderBridge.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/lib/windfisch.pretty/SolderBridge.kicad_mod -------------------------------------------------------------------------------- /hardware/lib/windfisch.pretty/windfisch.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/lib/windfisch.pretty/windfisch.kicad_mod -------------------------------------------------------------------------------- /hardware/lib/windfisch.pretty/windfisch_huge.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/lib/windfisch.pretty/windfisch_huge.kicad_mod -------------------------------------------------------------------------------- /hardware/lib/windfisch.pretty/windfisch_paint.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/lib/windfisch.pretty/windfisch_paint.kicad_mod -------------------------------------------------------------------------------- /hardware/lib/windfisch.pretty/windfisch_small.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/lib/windfisch.pretty/windfisch_small.kicad_mod -------------------------------------------------------------------------------- /hardware/lib/windfisch.pretty/windfisch_smaller.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/lib/windfisch.pretty/windfisch_smaller.kicad_mod -------------------------------------------------------------------------------- /hardware/libtest/fp-info-cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/libtest/fp-info-cache -------------------------------------------------------------------------------- /hardware/libtest/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/libtest/fp-lib-table -------------------------------------------------------------------------------- /hardware/libtest/libtest-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/libtest/libtest-cache.lib -------------------------------------------------------------------------------- /hardware/libtest/libtest.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/libtest/libtest.kicad_pcb -------------------------------------------------------------------------------- /hardware/libtest/libtest.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/libtest/libtest.pro -------------------------------------------------------------------------------- /hardware/libtest/libtest.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/libtest/libtest.sch -------------------------------------------------------------------------------- /hardware/vca/vca-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/vca/vca-cache.lib -------------------------------------------------------------------------------- /hardware/vca/vca.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/vca/vca.kicad_pcb -------------------------------------------------------------------------------- /hardware/vca/vca.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/vca/vca.pro -------------------------------------------------------------------------------- /hardware/vca/vca.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/vca/vca.sch -------------------------------------------------------------------------------- /hardware/vco_mk1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/vco_mk1/README.md -------------------------------------------------------------------------------- /hardware/vco_mk1/vco_mk1_spitfire/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/vco_mk1/vco_mk1_spitfire/README.md -------------------------------------------------------------------------------- /hardware/vco_mk1/vco_mk1_spitfire/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/vco_mk1/vco_mk1_spitfire/fp-lib-table -------------------------------------------------------------------------------- /hardware/vco_mk1/vco_mk1_spitfire/gerber-rev01/vco_mk1-B_Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/vco_mk1/vco_mk1_spitfire/gerber-rev01/vco_mk1-B_Cu.gbr -------------------------------------------------------------------------------- /hardware/vco_mk1/vco_mk1_spitfire/gerber-rev01/vco_mk1-B_Mask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/vco_mk1/vco_mk1_spitfire/gerber-rev01/vco_mk1-B_Mask.gbr -------------------------------------------------------------------------------- /hardware/vco_mk1/vco_mk1_spitfire/gerber-rev01/vco_mk1-B_SilkS.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/vco_mk1/vco_mk1_spitfire/gerber-rev01/vco_mk1-B_SilkS.gbr -------------------------------------------------------------------------------- /hardware/vco_mk1/vco_mk1_spitfire/gerber-rev01/vco_mk1-Edge_Cuts.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/vco_mk1/vco_mk1_spitfire/gerber-rev01/vco_mk1-Edge_Cuts.gbr -------------------------------------------------------------------------------- /hardware/vco_mk1/vco_mk1_spitfire/gerber-rev01/vco_mk1-F_Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/vco_mk1/vco_mk1_spitfire/gerber-rev01/vco_mk1-F_Cu.gbr -------------------------------------------------------------------------------- /hardware/vco_mk1/vco_mk1_spitfire/gerber-rev01/vco_mk1-F_Mask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/vco_mk1/vco_mk1_spitfire/gerber-rev01/vco_mk1-F_Mask.gbr -------------------------------------------------------------------------------- /hardware/vco_mk1/vco_mk1_spitfire/gerber-rev01/vco_mk1-F_SilkS.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/vco_mk1/vco_mk1_spitfire/gerber-rev01/vco_mk1-F_SilkS.gbr -------------------------------------------------------------------------------- /hardware/vco_mk1/vco_mk1_spitfire/gerber-rev01/vco_mk1.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/vco_mk1/vco_mk1_spitfire/gerber-rev01/vco_mk1.drl -------------------------------------------------------------------------------- /hardware/vco_mk1/vco_mk1_spitfire/schem1/vco_mk1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/vco_mk1/vco_mk1_spitfire/schem1/vco_mk1.pdf -------------------------------------------------------------------------------- /hardware/vco_mk1/vco_mk1_spitfire/vco_mk1-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/vco_mk1/vco_mk1_spitfire/vco_mk1-cache.lib -------------------------------------------------------------------------------- /hardware/vco_mk1/vco_mk1_spitfire/vco_mk1.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/vco_mk1/vco_mk1_spitfire/vco_mk1.kicad_pcb -------------------------------------------------------------------------------- /hardware/vco_mk1/vco_mk1_spitfire/vco_mk1.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/vco_mk1/vco_mk1_spitfire/vco_mk1.net -------------------------------------------------------------------------------- /hardware/vco_mk1/vco_mk1_spitfire/vco_mk1.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/vco_mk1/vco_mk1_spitfire/vco_mk1.pro -------------------------------------------------------------------------------- /hardware/vco_mk1/vco_mk1_spitfire/vco_mk1.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/vco_mk1/vco_mk1_spitfire/vco_mk1.sch -------------------------------------------------------------------------------- /hardware/vco_mk1/vco_mk1_spitfire/vco_mk1_old.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/vco_mk1/vco_mk1_spitfire/vco_mk1_old.kicad_pcb -------------------------------------------------------------------------------- /hardware/vco_mk1/vco_mk1_windfisch/bom.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/vco_mk1/vco_mk1_windfisch/bom.ods -------------------------------------------------------------------------------- /hardware/vco_mk1/vco_mk1_windfisch/fab-rev01/vco_mk1-B_Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/vco_mk1/vco_mk1_windfisch/fab-rev01/vco_mk1-B_Cu.gbr -------------------------------------------------------------------------------- /hardware/vco_mk1/vco_mk1_windfisch/fab-rev01/vco_mk1-B_Mask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/vco_mk1/vco_mk1_windfisch/fab-rev01/vco_mk1-B_Mask.gbr -------------------------------------------------------------------------------- /hardware/vco_mk1/vco_mk1_windfisch/fab-rev01/vco_mk1-B_SilkS.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/vco_mk1/vco_mk1_windfisch/fab-rev01/vco_mk1-B_SilkS.gbr -------------------------------------------------------------------------------- /hardware/vco_mk1/vco_mk1_windfisch/fab-rev01/vco_mk1-Edge_Cuts.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/vco_mk1/vco_mk1_windfisch/fab-rev01/vco_mk1-Edge_Cuts.gbr -------------------------------------------------------------------------------- /hardware/vco_mk1/vco_mk1_windfisch/fab-rev01/vco_mk1-F_Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/vco_mk1/vco_mk1_windfisch/fab-rev01/vco_mk1-F_Cu.gbr -------------------------------------------------------------------------------- /hardware/vco_mk1/vco_mk1_windfisch/fab-rev01/vco_mk1-F_Mask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/vco_mk1/vco_mk1_windfisch/fab-rev01/vco_mk1-F_Mask.gbr -------------------------------------------------------------------------------- /hardware/vco_mk1/vco_mk1_windfisch/fab-rev01/vco_mk1-F_SilkS.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/vco_mk1/vco_mk1_windfisch/fab-rev01/vco_mk1-F_SilkS.gbr -------------------------------------------------------------------------------- /hardware/vco_mk1/vco_mk1_windfisch/fab-rev01/vco_mk1-NPTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/vco_mk1/vco_mk1_windfisch/fab-rev01/vco_mk1-NPTH.drl -------------------------------------------------------------------------------- /hardware/vco_mk1/vco_mk1_windfisch/fab-rev01/vco_mk1-PTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/vco_mk1/vco_mk1_windfisch/fab-rev01/vco_mk1-PTH.drl -------------------------------------------------------------------------------- /hardware/vco_mk1/vco_mk1_windfisch/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/vco_mk1/vco_mk1_windfisch/fp-lib-table -------------------------------------------------------------------------------- /hardware/vco_mk1/vco_mk1_windfisch/schem1/vco_mk1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/vco_mk1/vco_mk1_windfisch/schem1/vco_mk1.pdf -------------------------------------------------------------------------------- /hardware/vco_mk1/vco_mk1_windfisch/vco_mk1-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/vco_mk1/vco_mk1_windfisch/vco_mk1-cache.lib -------------------------------------------------------------------------------- /hardware/vco_mk1/vco_mk1_windfisch/vco_mk1.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/vco_mk1/vco_mk1_windfisch/vco_mk1.kicad_pcb -------------------------------------------------------------------------------- /hardware/vco_mk1/vco_mk1_windfisch/vco_mk1.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/vco_mk1/vco_mk1_windfisch/vco_mk1.pro -------------------------------------------------------------------------------- /hardware/vco_mk1/vco_mk1_windfisch/vco_mk1.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/vco_mk1/vco_mk1_windfisch/vco_mk1.sch -------------------------------------------------------------------------------- /hardware/voice_and_control_board_fab.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/voice_and_control_board_fab.pdf -------------------------------------------------------------------------------- /hardware/voice_board/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/voice_board/README.md -------------------------------------------------------------------------------- /hardware/voice_board/bom.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/voice_board/bom.ods -------------------------------------------------------------------------------- /hardware/voice_board/fab/voice_board-B_Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/voice_board/fab/voice_board-B_Cu.gbr -------------------------------------------------------------------------------- /hardware/voice_board/fab/voice_board-B_Mask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/voice_board/fab/voice_board-B_Mask.gbr -------------------------------------------------------------------------------- /hardware/voice_board/fab/voice_board-B_Paste.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/voice_board/fab/voice_board-B_Paste.gbr -------------------------------------------------------------------------------- /hardware/voice_board/fab/voice_board-B_SilkS.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/voice_board/fab/voice_board-B_SilkS.gbr -------------------------------------------------------------------------------- /hardware/voice_board/fab/voice_board-Edge_Cuts.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/voice_board/fab/voice_board-Edge_Cuts.gbr -------------------------------------------------------------------------------- /hardware/voice_board/fab/voice_board-F_Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/voice_board/fab/voice_board-F_Cu.gbr -------------------------------------------------------------------------------- /hardware/voice_board/fab/voice_board-F_Mask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/voice_board/fab/voice_board-F_Mask.gbr -------------------------------------------------------------------------------- /hardware/voice_board/fab/voice_board-F_Paste.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/voice_board/fab/voice_board-F_Paste.gbr -------------------------------------------------------------------------------- /hardware/voice_board/fab/voice_board-F_SilkS.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/voice_board/fab/voice_board-F_SilkS.gbr -------------------------------------------------------------------------------- /hardware/voice_board/fab/voice_board-NPTH-drl_map.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/voice_board/fab/voice_board-NPTH-drl_map.ps -------------------------------------------------------------------------------- /hardware/voice_board/fab/voice_board-NPTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/voice_board/fab/voice_board-NPTH.drl -------------------------------------------------------------------------------- /hardware/voice_board/fab/voice_board-PTH-drl_map.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/voice_board/fab/voice_board-PTH-drl_map.ps -------------------------------------------------------------------------------- /hardware/voice_board/fab/voice_board-PTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/voice_board/fab/voice_board-PTH.drl -------------------------------------------------------------------------------- /hardware/voice_board/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/voice_board/fp-lib-table -------------------------------------------------------------------------------- /hardware/voice_board/sym-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/voice_board/sym-lib-table -------------------------------------------------------------------------------- /hardware/voice_board/voice_board-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/voice_board/voice_board-cache.lib -------------------------------------------------------------------------------- /hardware/voice_board/voice_board.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/voice_board/voice_board.kicad_pcb -------------------------------------------------------------------------------- /hardware/voice_board/voice_board.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/voice_board/voice_board.pro -------------------------------------------------------------------------------- /hardware/voice_board/voice_board.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/hardware/voice_board/voice_board.sch -------------------------------------------------------------------------------- /measure_vco/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/README.md -------------------------------------------------------------------------------- /measure_vco/experiments/20190625_1v_per_oct_response/2019-05-25_bcm847-heated.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/experiments/20190625_1v_per_oct_response/2019-05-25_bcm847-heated.txt -------------------------------------------------------------------------------- /measure_vco/experiments/20190625_1v_per_oct_response/2019-05-25_bcm847.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/experiments/20190625_1v_per_oct_response/2019-05-25_bcm847.txt -------------------------------------------------------------------------------- /measure_vco/experiments/20190625_1v_per_oct_response/2019-05-25_pair1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/experiments/20190625_1v_per_oct_response/2019-05-25_pair1.txt -------------------------------------------------------------------------------- /measure_vco/experiments/20190625_1v_per_oct_response/2019-05-25_pair2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/experiments/20190625_1v_per_oct_response/2019-05-25_pair2.txt -------------------------------------------------------------------------------- /measure_vco/experiments/20190625_1v_per_oct_response/2019-05-25_pair3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/experiments/20190625_1v_per_oct_response/2019-05-25_pair3.txt -------------------------------------------------------------------------------- /measure_vco/experiments/20190625_1v_per_oct_response/2019-05-25_pair4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/experiments/20190625_1v_per_oct_response/2019-05-25_pair4.txt -------------------------------------------------------------------------------- /measure_vco/experiments/20190625_1v_per_oct_response/2019-05-25_pair5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/experiments/20190625_1v_per_oct_response/2019-05-25_pair5.txt -------------------------------------------------------------------------------- /measure_vco/experiments/20190625_1v_per_oct_response/2019-05-25_pair5_voltagereg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/experiments/20190625_1v_per_oct_response/2019-05-25_pair5_voltagereg.txt -------------------------------------------------------------------------------- /measure_vco/experiments/20190625_1v_per_oct_response/2019-05-25_pair5_voltagereg_derpy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/experiments/20190625_1v_per_oct_response/2019-05-25_pair5_voltagereg_derpy.txt -------------------------------------------------------------------------------- /measure_vco/experiments/20190625_1v_per_oct_response/2019-05-25_pair5_with_human.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/experiments/20190625_1v_per_oct_response/2019-05-25_pair5_with_human.txt -------------------------------------------------------------------------------- /measure_vco/experiments/20190625_1v_per_oct_response/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/experiments/20190625_1v_per_oct_response/README.md -------------------------------------------------------------------------------- /measure_vco/experiments/20190625_1v_per_oct_response/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/experiments/20190625_1v_per_oct_response/out.txt -------------------------------------------------------------------------------- /measure_vco/experiments/20190625_1v_per_oct_response/out1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/experiments/20190625_1v_per_oct_response/out1.txt -------------------------------------------------------------------------------- /measure_vco/experiments/20190625_1v_per_oct_response/out2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/experiments/20190625_1v_per_oct_response/out2.txt -------------------------------------------------------------------------------- /measure_vco/experiments/20190625_1v_per_oct_response/out3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/experiments/20190625_1v_per_oct_response/out3.txt -------------------------------------------------------------------------------- /measure_vco/experiments/20190625_1v_per_oct_response/out4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/experiments/20190625_1v_per_oct_response/out4.txt -------------------------------------------------------------------------------- /measure_vco/experiments/20190625_1v_per_oct_response/voltage_regulation_plot.gnuplot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/experiments/20190625_1v_per_oct_response/voltage_regulation_plot.gnuplot -------------------------------------------------------------------------------- /measure_vco/experiments/20190625_1v_per_oct_response/voltage_regulation_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/experiments/20190625_1v_per_oct_response/voltage_regulation_plot.png -------------------------------------------------------------------------------- /measure_vco/experiments/20190705_error_attribution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/experiments/20190705_error_attribution/README.md -------------------------------------------------------------------------------- /measure_vco/experiments/20190705_error_attribution/plot.gnuplot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/experiments/20190705_error_attribution/plot.gnuplot -------------------------------------------------------------------------------- /measure_vco/experiments/20190705_error_attribution/plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/experiments/20190705_error_attribution/plot.png -------------------------------------------------------------------------------- /measure_vco/experiments/20190705_error_attribution/run1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/experiments/20190705_error_attribution/run1.txt -------------------------------------------------------------------------------- /measure_vco/experiments/20190705_error_attribution/run2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/experiments/20190705_error_attribution/run2.txt -------------------------------------------------------------------------------- /measure_vco/experiments/20190705_error_attribution/run3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/experiments/20190705_error_attribution/run3.txt -------------------------------------------------------------------------------- /measure_vco/experiments/20190705_error_attribution/run4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/experiments/20190705_error_attribution/run4.txt -------------------------------------------------------------------------------- /measure_vco/experiments/20190922/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/experiments/20190922/README -------------------------------------------------------------------------------- /measure_vco/experiments/20190922/blue_2.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/experiments/20190922/blue_2.5.png -------------------------------------------------------------------------------- /measure_vco/experiments/20190922/blue_2.5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/experiments/20190922/blue_2.5.txt -------------------------------------------------------------------------------- /measure_vco/experiments/20190922/blue_5.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/experiments/20190922/blue_5.0.png -------------------------------------------------------------------------------- /measure_vco/experiments/20190922/blue_5.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/experiments/20190922/blue_5.0.txt -------------------------------------------------------------------------------- /measure_vco/experiments/20190922/blue_8.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/experiments/20190922/blue_8.0.png -------------------------------------------------------------------------------- /measure_vco/experiments/20190922/blue_8.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/experiments/20190922/blue_8.0.txt -------------------------------------------------------------------------------- /measure_vco/experiments/20190922/breadboard1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/experiments/20190922/breadboard1.txt -------------------------------------------------------------------------------- /measure_vco/experiments/20190922/breadboard1_2.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/experiments/20190922/breadboard1_2.5.png -------------------------------------------------------------------------------- /measure_vco/experiments/20190922/breadboard1_2.5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/experiments/20190922/breadboard1_2.5.txt -------------------------------------------------------------------------------- /measure_vco/experiments/20190922/breadboard1_5.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/experiments/20190922/breadboard1_5.0.png -------------------------------------------------------------------------------- /measure_vco/experiments/20190922/breadboard1_5.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/experiments/20190922/breadboard1_5.0.txt -------------------------------------------------------------------------------- /measure_vco/experiments/20190922/breadboard1_5.0_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/experiments/20190922/breadboard1_5.0_000.png -------------------------------------------------------------------------------- /measure_vco/experiments/20190922/breadboard1_8.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/experiments/20190922/breadboard1_8.0.png -------------------------------------------------------------------------------- /measure_vco/experiments/20190922/breadboard1_8.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/experiments/20190922/breadboard1_8.0.txt -------------------------------------------------------------------------------- /measure_vco/experiments/20190922/breadboard2_2.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/experiments/20190922/breadboard2_2.5.png -------------------------------------------------------------------------------- /measure_vco/experiments/20190922/breadboard2_2.5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/experiments/20190922/breadboard2_2.5.txt -------------------------------------------------------------------------------- /measure_vco/experiments/20190922/breadboard2_5.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/experiments/20190922/breadboard2_5.0.png -------------------------------------------------------------------------------- /measure_vco/experiments/20190922/breadboard2_5.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/experiments/20190922/breadboard2_5.0.txt -------------------------------------------------------------------------------- /measure_vco/experiments/20190922/breadboard2_8.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/experiments/20190922/breadboard2_8.0.png -------------------------------------------------------------------------------- /measure_vco/experiments/20190922/breadboard2_8.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/experiments/20190922/breadboard2_8.0.txt -------------------------------------------------------------------------------- /measure_vco/experiments/20190922/breadboard3_2.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/experiments/20190922/breadboard3_2.5.png -------------------------------------------------------------------------------- /measure_vco/experiments/20190922/breadboard3_2.5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/experiments/20190922/breadboard3_2.5.txt -------------------------------------------------------------------------------- /measure_vco/experiments/20190922/breadboard3_5.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/experiments/20190922/breadboard3_5.0.png -------------------------------------------------------------------------------- /measure_vco/experiments/20190922/breadboard3_5.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/experiments/20190922/breadboard3_5.0.txt -------------------------------------------------------------------------------- /measure_vco/experiments/20190922/breadboard3_5.0b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/experiments/20190922/breadboard3_5.0b.txt -------------------------------------------------------------------------------- /measure_vco/experiments/20190922/breadboard3_8.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/experiments/20190922/breadboard3_8.0.png -------------------------------------------------------------------------------- /measure_vco/experiments/20190922/breadboard3_8.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/experiments/20190922/breadboard3_8.0.txt -------------------------------------------------------------------------------- /measure_vco/experiments/20190922/breadboard4_2.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/experiments/20190922/breadboard4_2.5.png -------------------------------------------------------------------------------- /measure_vco/experiments/20190922/breadboard4_2.5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/experiments/20190922/breadboard4_2.5.txt -------------------------------------------------------------------------------- /measure_vco/experiments/20190922/breadboard4_5.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/experiments/20190922/breadboard4_5.0.png -------------------------------------------------------------------------------- /measure_vco/experiments/20190922/breadboard4_5.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/experiments/20190922/breadboard4_5.0.txt -------------------------------------------------------------------------------- /measure_vco/experiments/20190922/breadboard4_8.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/experiments/20190922/breadboard4_8.0.png -------------------------------------------------------------------------------- /measure_vco/experiments/20190922/breadboard4_8.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/experiments/20190922/breadboard4_8.0.txt -------------------------------------------------------------------------------- /measure_vco/experiments/20190922/red_2.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/experiments/20190922/red_2.5.png -------------------------------------------------------------------------------- /measure_vco/experiments/20190922/red_2.5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/experiments/20190922/red_2.5.txt -------------------------------------------------------------------------------- /measure_vco/experiments/20190922/red_5.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/experiments/20190922/red_5.0.png -------------------------------------------------------------------------------- /measure_vco/experiments/20190922/red_5.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/experiments/20190922/red_5.0.txt -------------------------------------------------------------------------------- /measure_vco/experiments/20190922/red_8.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/experiments/20190922/red_8.0.png -------------------------------------------------------------------------------- /measure_vco/experiments/20190922/red_8.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/experiments/20190922/red_8.0.txt -------------------------------------------------------------------------------- /measure_vco/firmware/.gdbinit: -------------------------------------------------------------------------------- 1 | target extended-remote /dev/ttyACM0 2 | mon swd 3 | attach 1 4 | -------------------------------------------------------------------------------- /measure_vco/firmware/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/firmware/Makefile -------------------------------------------------------------------------------- /measure_vco/firmware/hardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/firmware/hardware.h -------------------------------------------------------------------------------- /measure_vco/firmware/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/firmware/main.c -------------------------------------------------------------------------------- /measure_vco/firmware/setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/firmware/setup.c -------------------------------------------------------------------------------- /measure_vco/firmware/setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/firmware/setup.h -------------------------------------------------------------------------------- /measure_vco/schem/measure_vco-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/schem/measure_vco-cache.lib -------------------------------------------------------------------------------- /measure_vco/schem/measure_vco.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/schem/measure_vco.pro -------------------------------------------------------------------------------- /measure_vco/schem/measure_vco.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/schem/measure_vco.sch -------------------------------------------------------------------------------- /measure_vco/schem/vco-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/schem/vco-cache.lib -------------------------------------------------------------------------------- /measure_vco/schem/vco.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/schem/vco.bak -------------------------------------------------------------------------------- /measure_vco/software/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/software/README.md -------------------------------------------------------------------------------- /measure_vco/software/analyze_stability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/software/analyze_stability.py -------------------------------------------------------------------------------- /measure_vco/software/compare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/software/compare.py -------------------------------------------------------------------------------- /measure_vco/software/read_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/software/read_data.py -------------------------------------------------------------------------------- /measure_vco/software/thermal_stability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/software/thermal_stability.py -------------------------------------------------------------------------------- /measure_vco/software/time_stability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/measure_vco/software/time_stability.py -------------------------------------------------------------------------------- /rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/rules.mk -------------------------------------------------------------------------------- /simulation/expo/expo-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/expo/expo-cache.lib -------------------------------------------------------------------------------- /simulation/expo/expo.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/expo/expo.bak -------------------------------------------------------------------------------- /simulation/expo/expo.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/expo/expo.kicad_pcb -------------------------------------------------------------------------------- /simulation/expo/expo.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/expo/expo.pro -------------------------------------------------------------------------------- /simulation/expo/expo.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/expo/expo.sch -------------------------------------------------------------------------------- /simulation/filter_feedback/filter_feedback-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/filter_feedback/filter_feedback-cache.lib -------------------------------------------------------------------------------- /simulation/filter_feedback/filter_feedback.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/filter_feedback/filter_feedback.bak -------------------------------------------------------------------------------- /simulation/filter_feedback/filter_feedback.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/filter_feedback/filter_feedback.kicad_pcb -------------------------------------------------------------------------------- /simulation/filter_feedback/filter_feedback.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/filter_feedback/filter_feedback.pro -------------------------------------------------------------------------------- /simulation/filter_feedback/filter_feedback.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/filter_feedback/filter_feedback.sch -------------------------------------------------------------------------------- /simulation/lib/2N7000.nxp.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/lib/2N7000.nxp.lib -------------------------------------------------------------------------------- /simulation/lib/2N7000.onsemi.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/lib/2N7000.onsemi.lib -------------------------------------------------------------------------------- /simulation/lib/BC546.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/lib/BC546.lib -------------------------------------------------------------------------------- /simulation/lib/BC547_557.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/lib/BC547_557.lib -------------------------------------------------------------------------------- /simulation/lib/LM324.ti.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/lib/LM324.ti.lib -------------------------------------------------------------------------------- /simulation/lib/TL074.ti.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/lib/TL074.ti.lib -------------------------------------------------------------------------------- /simulation/lib/diodes.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/lib/diodes.lib -------------------------------------------------------------------------------- /simulation/passive_filter/passive_filter-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/passive_filter/passive_filter-cache.lib -------------------------------------------------------------------------------- /simulation/passive_filter/passive_filter.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/passive_filter/passive_filter.bak -------------------------------------------------------------------------------- /simulation/passive_filter/passive_filter.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/passive_filter/passive_filter.kicad_pcb -------------------------------------------------------------------------------- /simulation/passive_filter/passive_filter.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/passive_filter/passive_filter.pro -------------------------------------------------------------------------------- /simulation/passive_filter/passive_filter.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/passive_filter/passive_filter.sch -------------------------------------------------------------------------------- /simulation/software/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/software/README.md -------------------------------------------------------------------------------- /simulation/software/analyze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/software/analyze.py -------------------------------------------------------------------------------- /simulation/software/generate_joblist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/software/generate_joblist.sh -------------------------------------------------------------------------------- /simulation/software/median.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/software/median.py -------------------------------------------------------------------------------- /simulation/uce/uce-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/uce/uce-cache.lib -------------------------------------------------------------------------------- /simulation/uce/uce.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/uce/uce.bak -------------------------------------------------------------------------------- /simulation/uce/uce.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/uce/uce.kicad_pcb -------------------------------------------------------------------------------- /simulation/uce/uce.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/uce/uce.pro -------------------------------------------------------------------------------- /simulation/uce/uce.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/uce/uce.sch -------------------------------------------------------------------------------- /simulation/vca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/vca.py -------------------------------------------------------------------------------- /simulation/vca/vca-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/vca/vca-cache.lib -------------------------------------------------------------------------------- /simulation/vca/vca.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/vca/vca.pro -------------------------------------------------------------------------------- /simulation/vca/vca.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/vca/vca.sch -------------------------------------------------------------------------------- /simulation/vca2/vca-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/vca2/vca-cache.lib -------------------------------------------------------------------------------- /simulation/vca2/vca.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/vca2/vca.kicad_pcb -------------------------------------------------------------------------------- /simulation/vca2/vca.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/vca2/vca.pro -------------------------------------------------------------------------------- /simulation/vca2/vca.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/vca2/vca.sch -------------------------------------------------------------------------------- /simulation/vca2/vca2-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/vca2/vca2-cache.lib -------------------------------------------------------------------------------- /simulation/vca2/vca2.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/vca2/vca2.sch -------------------------------------------------------------------------------- /simulation/vca2/vca3-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/vca2/vca3-cache.lib -------------------------------------------------------------------------------- /simulation/vca2/vca3.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/vca2/vca3.sch -------------------------------------------------------------------------------- /simulation/vcf/.gitignore: -------------------------------------------------------------------------------- 1 | *.pdf 2 | -------------------------------------------------------------------------------- /simulation/vcf/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/vcf/plot.py -------------------------------------------------------------------------------- /simulation/vcf/plot_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/vcf/plot_all.sh -------------------------------------------------------------------------------- /simulation/vcf/thd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/vcf/thd.py -------------------------------------------------------------------------------- /simulation/vcf/vcf_buffered-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/vcf/vcf_buffered-cache.lib -------------------------------------------------------------------------------- /simulation/vcf/vcf_buffered_bjt-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/vcf/vcf_buffered_bjt-cache.lib -------------------------------------------------------------------------------- /simulation/vcf/vcf_buffered_bjt.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/vcf/vcf_buffered_bjt.pro -------------------------------------------------------------------------------- /simulation/vcf/vcf_buffered_bjt.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/vcf/vcf_buffered_bjt.sch -------------------------------------------------------------------------------- /simulation/vcf/vcf_buffered_bjt_100k.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/vcf/vcf_buffered_bjt_100k.cir -------------------------------------------------------------------------------- /simulation/vcf/vcf_buffered_bjt_10k.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/vcf/vcf_buffered_bjt_10k.cir -------------------------------------------------------------------------------- /simulation/vcf/vcf_buffered_bjt_1k.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/vcf/vcf_buffered_bjt_1k.cir -------------------------------------------------------------------------------- /simulation/vcf/vcf_buffered_opamp-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/vcf/vcf_buffered_opamp-cache.lib -------------------------------------------------------------------------------- /simulation/vcf/vcf_buffered_opamp.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/vcf/vcf_buffered_opamp.cir -------------------------------------------------------------------------------- /simulation/vcf/vcf_buffered_opamp.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/vcf/vcf_buffered_opamp.pro -------------------------------------------------------------------------------- /simulation/vcf/vcf_buffered_opamp.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/vcf/vcf_buffered_opamp.sch -------------------------------------------------------------------------------- /simulation/vcf/vcf_buffered_opamp_2stage-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/vcf/vcf_buffered_opamp_2stage-cache.lib -------------------------------------------------------------------------------- /simulation/vcf/vcf_buffered_opamp_2stage.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/vcf/vcf_buffered_opamp_2stage.cir -------------------------------------------------------------------------------- /simulation/vcf/vcf_buffered_opamp_2stage.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/vcf/vcf_buffered_opamp_2stage.pro -------------------------------------------------------------------------------- /simulation/vcf/vcf_buffered_opamp_2stage.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/vcf/vcf_buffered_opamp_2stage.sch -------------------------------------------------------------------------------- /simulation/vcf/vcf_buffered_opamp_2stage_resonance-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/vcf/vcf_buffered_opamp_2stage_resonance-cache.lib -------------------------------------------------------------------------------- /simulation/vcf/vcf_buffered_opamp_2stage_resonance.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/vcf/vcf_buffered_opamp_2stage_resonance.cir -------------------------------------------------------------------------------- /simulation/vcf/vcf_buffered_opamp_2stage_resonance.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/vcf/vcf_buffered_opamp_2stage_resonance.sch -------------------------------------------------------------------------------- /simulation/vcf/vcf_buffered_opamp_instramp-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/vcf/vcf_buffered_opamp_instramp-cache.lib -------------------------------------------------------------------------------- /simulation/vcf/vcf_buffered_opamp_instramp.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/vcf/vcf_buffered_opamp_instramp.cir -------------------------------------------------------------------------------- /simulation/vcf/vcf_buffered_opamp_instramp.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/vcf/vcf_buffered_opamp_instramp.sch -------------------------------------------------------------------------------- /simulation/vcf/vcf_buffered_opamp_instramp2.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/vcf/vcf_buffered_opamp_instramp2.cir -------------------------------------------------------------------------------- /simulation/vcf/vcf_unbuffered-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/vcf/vcf_unbuffered-cache.lib -------------------------------------------------------------------------------- /simulation/vcf/vcf_unbuffered.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/vcf/vcf_unbuffered.cir -------------------------------------------------------------------------------- /simulation/vcf/vcf_unbuffered.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/vcf/vcf_unbuffered.pro -------------------------------------------------------------------------------- /simulation/vcf/vcf_unbuffered.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/vcf/vcf_unbuffered.sch -------------------------------------------------------------------------------- /simulation/vcf/vcf_unbuffered_capacitors1-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/vcf/vcf_unbuffered_capacitors1-cache.lib -------------------------------------------------------------------------------- /simulation/vcf/vcf_unbuffered_capacitors1.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/vcf/vcf_unbuffered_capacitors1.cir -------------------------------------------------------------------------------- /simulation/vcf/vcf_unbuffered_capacitors1.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/vcf/vcf_unbuffered_capacitors1.pro -------------------------------------------------------------------------------- /simulation/vcf/vcf_unbuffered_capacitors1.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/vcf/vcf_unbuffered_capacitors1.sch -------------------------------------------------------------------------------- /simulation/vcf/vcf_unbuffered_capacitors2-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/vcf/vcf_unbuffered_capacitors2-cache.lib -------------------------------------------------------------------------------- /simulation/vcf/vcf_unbuffered_capacitors2.cir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/vcf/vcf_unbuffered_capacitors2.cir -------------------------------------------------------------------------------- /simulation/vcf/vcf_unbuffered_capacitors2.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/vcf/vcf_unbuffered_capacitors2.sch -------------------------------------------------------------------------------- /simulation/vco/BC546.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/vco/BC546.lib -------------------------------------------------------------------------------- /simulation/vco/LM324.ti.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/vco/LM324.ti.lib -------------------------------------------------------------------------------- /simulation/vco/vco-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/vco/vco-cache.lib -------------------------------------------------------------------------------- /simulation/vco/vco.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/vco/vco.bak -------------------------------------------------------------------------------- /simulation/vco/vco.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/vco/vco.kicad_pcb -------------------------------------------------------------------------------- /simulation/vco/vco.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/vco/vco.pro -------------------------------------------------------------------------------- /simulation/vco/vco.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/analog-synth/HEAD/simulation/vco/vco.sch --------------------------------------------------------------------------------