├── .gitignore ├── LICENSE ├── README.md ├── SigmaStudio projects ├── ADAU1701_original_firmware.txt └── projects │ ├── 4Hz beats │ └── 4Hz beats.dspproj │ ├── 4x4 │ └── 4x4.dspproj │ ├── SigmaDSP Cell Proxy Test │ └── SigmaDSP Cell Proxy Test.dspproj │ ├── demo │ ├── NumBytes_IC_1.dat │ ├── TxBuffer_IC_1.dat │ ├── demo.dspproj │ ├── demo.pdf │ ├── demo.png │ ├── demo.xml │ ├── demo_IC 2 │ │ ├── E2Prom.Hex │ │ └── E2Prom.bin │ └── demo_NetList.xml │ └── demo_upy │ ├── demo_upy.dspproj │ └── demo_upy.png ├── codes ├── sigma │ ├── __init__.py │ ├── bus │ │ ├── __init__.py │ │ └── adapters.py │ ├── factory │ │ ├── __init__.py │ │ ├── factory.py │ │ └── ufactory.py │ ├── mini_xml │ │ ├── __init__.py │ │ ├── etree │ │ │ ├── ElementTree.py │ │ │ └── __init__.py │ │ └── xmltok2.py │ ├── sigma_dsp │ │ ├── __init__.py │ │ ├── adau │ │ │ ├── __init__.py │ │ │ ├── adau.py │ │ │ └── adau1401 │ │ │ │ ├── __init__.py │ │ │ │ ├── adau1401.py │ │ │ │ └── registers_map.py │ │ ├── dsp_processor.py │ │ └── messages.py │ └── sigma_studio │ │ ├── __init__.py │ │ ├── project │ │ ├── __init__.py │ │ ├── netlist.py │ │ └── project_xml.py │ │ └── toolbox │ │ ├── __init__.py │ │ └── cells │ │ ├── __init__.py │ │ ├── adi_algorithms │ │ ├── __init__.py │ │ ├── automatic_eq.py │ │ ├── beam_forming.py │ │ ├── dynamic_bass.py │ │ ├── effects.py │ │ ├── loudness.py │ │ ├── pitch_modification.py │ │ ├── sub_harmonic_synth.py │ │ └── surround_n_3d.py │ │ ├── advanced_dsp │ │ ├── __init__.py │ │ ├── dynamic_mixers.py │ │ ├── transforms.py │ │ └── unclassified.py │ │ ├── basic_dsp │ │ ├── __init__.py │ │ ├── adjustable_gain.py │ │ ├── arithmetic_operations.py │ │ ├── dsp_functions.py │ │ ├── linear_interpolator.py │ │ └── logic.py │ │ ├── cell.py │ │ ├── counters │ │ ├── __init__.py │ │ └── counters.py │ │ ├── custom_algorithms │ │ ├── __init__.py │ │ └── custom_algorithms.py │ │ ├── dynamics_processors │ │ ├── __init__.py │ │ ├── combo.py │ │ ├── dynamics_processors.py │ │ ├── envelope.py │ │ ├── peak.py │ │ └── rms.py │ │ ├── filters │ │ ├── __init__.py │ │ ├── crossover.py │ │ ├── fir.py │ │ ├── first_order.py │ │ ├── miscellaneous.py │ │ ├── nth_order.py │ │ └── second_order.py │ │ ├── gpio_conditioning │ │ ├── __init__.py │ │ ├── push_button.py │ │ ├── rotary_encoder.py │ │ ├── software_debounce.py │ │ └── volume_control.py │ │ ├── io │ │ ├── __init__.py │ │ └── gpio.py │ │ ├── level_detectors_lookup_tables │ │ ├── __init__.py │ │ ├── level_detectors.py │ │ ├── lookup_tables.py │ │ └── signal_detector.py │ │ ├── mixers_splitters │ │ ├── __init__.py │ │ ├── mixers.py │ │ └── splitters.py │ │ ├── muxes_demuxes │ │ ├── __init__.py │ │ ├── cross_fade.py │ │ ├── demultiplexers.py │ │ ├── multiplexers.py │ │ └── state_machine.py │ │ ├── non_linear_processors │ │ ├── __init__.py │ │ └── clippers.py │ │ ├── sources │ │ ├── __init__.py │ │ ├── chime.py │ │ ├── dc.py │ │ ├── linear_sweep.py │ │ ├── logarithmic_sweep.py │ │ ├── oscillators.py │ │ ├── source.py │ │ ├── switch.py │ │ ├── voltage_controlled.py │ │ └── white_noise.py │ │ └── volume_controls │ │ ├── __init__.py │ │ ├── adjustable_volume.py │ │ └── mute.py └── test │ ├── PC │ ├── E2Prom.Hex │ ├── E2Prom.bin │ ├── NumBytes_IC_1.dat │ ├── TxBuffer_IC_1.dat │ ├── demo.xml │ ├── demo_trimed.xml │ ├── parameter_ram.bin │ ├── program_ram.bin │ ├── test SigmaDSP Cell Proxy.py │ ├── test_RAM.py │ ├── test_adau1401_pc.py │ ├── test_dsp_cells.py │ ├── test_eeprom.py │ ├── test_eeprom_parse.py │ ├── test_eeprom_serialize.py │ ├── test_factory.py │ ├── test_factory_usbi2c.py │ ├── test_gpio.py │ ├── test_message.py │ ├── test_netlist.py │ ├── test_numeric.py │ └── test_project_xml.py │ └── uPy │ ├── demo_upy.xml │ ├── micropython │ ├── __init__.py │ ├── config.py │ ├── led.py │ ├── main.py │ └── wifi.py │ └── test_adau_upy.py ├── jpgs ├── demo_equip_setup.png ├── demo_upy.jpg ├── demo_upy2.jpg └── demo_upy3.png ├── notebooks ├── Functional test │ ├── ADAU1401 Functional Test.ipynb │ ├── ADAU1401 RAM EEPROM Functional Test.ipynb │ ├── ADAU1401.Control Functional Test.ipynb │ ├── ADAU1701 Original Firmware.ipynb │ ├── ADAU1701_original_firmware.bin │ ├── Cell Factory test.ipynb │ ├── Cell Functional Test.ipynb │ ├── E2Prom.Hex │ ├── E2Prom.bin │ ├── Factory Functional Test.ipynb │ ├── Functional Demostration - with MicroPython Remote.ipynb │ ├── Functional Demostration - with USBi as USB-I2C converter.ipynb │ ├── Functional Demostration.ipynb │ ├── Message Functional Test.ipynb │ ├── Netlist Functional Test.ipynb │ ├── NumBytes_IC_1.dat │ ├── Profiling.ipynb │ ├── SigmaDSP Cell Proxy Test.ipynb │ ├── SigmaStudio project parser.ipynb │ ├── TxBuffer_IC_1.dat │ ├── XML Related Classes Functional Test.ipynb │ ├── demo.xml │ ├── eeprom.bin │ ├── parameter_ram.bin │ ├── pathfinder.py │ ├── profile.bin │ └── program_ram.bin └── tools │ └── 上傳檔案 - SigmaDSP.ipynb └── references ├── - Basic Operation of the 2x4 HD.url ├── - EVAL-ADAU1467Z (Rev. 0).url ├── - How to program an Analog Devices DSP- - Daumemo.url ├── - Interfacing SigmaDSP Processors with a Microcontroller [Analog Devices Wiki].url ├── - SigmaStudio Toolbox [Analog Devices Wiki].url ├── - SigmaStudio and SigmaDSP Documentation [Analog Devices Wiki].url ├── - Tutorials, Guides, Walkthroughs, and other Information [Analog Devices Wiki].url ├── - UG-072 Evaluation Board User Guide for ADAU1401 (Rev. A).url ├── - freeUSBi - Google 文件.url ├── 24AA64 Data Sheet.url ├── 6a. Gen 2 stereo 3-way DSP Board – Audiodevelopers Reborn.url ├── 8K I2C Serial EEPROM.url ├── A2B control from Python via SigmaStudio (AppNote003) – Clockworks Signal Processing.url ├── ADAU1401 (Rev. C).url ├── ADAU1401 - Analog Deviceshttps---www.analog.com › media › data-sheets › A..-.url ├── ADAU1401 FTDI read 0x081C.sr ├── ADAU1401 FTDI write 0x081C 0x0010.sr ├── ADAU1401 FTDI write 0x081C 0x0018.sr ├── ADAU1401 USBi read 0x081C.sr ├── ADAU1401 USBi write 0x081C 0x0014.sr ├── ADAU1401 USBi write 0x081C 0x001C.sr ├── ADAU1401A (Rev. A).url ├── ADAU1452 (Rev. A).url ├── ADAU1452-ADAU1451-ADAU1450 (Rev.D).url ├── ADAU1462-ADAU1466 (Rev. C).url ├── ADAU1463 Datasheet and Product Info - Analog Devices.url ├── ADAU1463 Development Board ADAU1467 Compatible CT7601 USB Interface SAM5504 Effects Module-Replacement Parts & Accessories- -.url ├── ADAU1463-ADAU1467 (Rev. A).url ├── ADAU1467 + ESP32 ( Прошивка и управление ADAU по Wi-Fi) - YouTube.url ├── ADAU1701 Universal Audio DSP Board - Elektor Magazine.url ├── ADAU1701 how to use the data capture registers - Q&A - SigmaDSP Processors and SigmaStudio Development Tool - EngineerZone.url ├── AN-1006 Using the EVAL-ADUSB2EBZ (Rev. A).url ├── AN-1006- Using the EVAL-ADUSB2EBZ - Analog Devices.url ├── AN-951.url ├── Active Crossovers- miniDSP 2x4.url ├── Adau1467, dsp - YouTube.url ├── Aida DSP Arduino Shield Index · AidaDSP-AidaDSP.github.io Wiki.url ├── Aida DSP Arduino Shield from Aida DSP on Tindie.url ├── Aida DSP Arduino Shield.url ├── Aida DSP.url ├── AidaDSP-AidaDSP- AidaDSP project official repo.url ├── Algorithms- Add-Remove, Grow-Reduce [Analog Devices Wiki].url ├── Analog modeling techniques review [1].url ├── Arduino DSP - YouTube.url ├── Audio Production- Learn the Fundamentals - YouTube.url ├── Audiodevelopers Reborn – A collaborative website for active speaker design.url ├── Axoloti.url ├── Basic DSP Examples [Analog Devices Wiki].url ├── Basic Microphone Measurement - 麦克风测试基础篇网络研讨会 (English - Chinese) - YouTube.url ├── Beocreate – Setting up the software on Raspbian - HiFiBerry.url ├── Booting a SigmaDSP from a microcontroller with no C compiler - Documents - SigmaDSP Processors and SigmaStudio Development To.url ├── Booting a SigmaDSP from a microcontroller with no C compiler.url ├── Building Cheapest Audio DSP - Improve Your Sound Quality - YouTube.url ├── Capture Output Data [Analog Devices Wiki].url ├── Correct your speakers with REW, UMIK-1 and Equalizer APO (Room Correction Tutorial) - YouTube.url ├── Creating and Running SigmaStudio Scripts [Analog Devices Wiki].url ├── DIY DSP PRE-AMP PROJECT PAGE.url ├── DSP 01 — latent laboratories.url ├── DSP 01, part 4- setup & programming — latent laboratories.url ├── DSP-ADAU1452-DSP-ADAU1452-2.0-Schematic.pdf at master · ohdsp-DSP-ADAU1452.url ├── DSP-ADAU1452-StandAlone-Schematics at master · aventuri-DSP-ADAU1452-StandAlone.url ├── Documents - Documents - SigmaDSP Processors and SigmaStudio Development Tool - EngineerZone.url ├── ESP32-WROVER 8MB PSRAM LILIGO T8 V1.8 pinout.url ├── ESP32_ADAU1467_DEFAULT_I2C.zip - Google 雲端硬碟.url ├── EVAL-ADAU1452REVBZ User Guide (Rev. 0).url ├── EVAL-ADAU1466Z User Guide (Rev. 0).url ├── EVAL-ADAU1467 I2C communication - Q&A - SigmaDSP Processors and SigmaStudio Development Tool - EngineerZone.url ├── EVAL-ADAU1467Z (Rev. 0).url ├── EVAL-ADAU1467Z Evaluation Board - Analog Devices.url ├── EZ-USB FX1-FX2LP Boot Options.url ├── EZ-USB® Technical Reference Manual.url ├── Elektor - ADAU1701 Universal Audio DSP Board - YouTube.url ├── Export Program and Parameters [Analog Devices Wiki].url ├── FIR Filter [Analog Devices Wiki].url ├── FREEUSBI - KOMPLETTKIT - freeDSP Programmer incl CY7C68013A - ADAU1701 - EUR 26,90 - PicClick FR.url ├── FTDI device pinout — PyFtdi documentation.url ├── Filter Table Generator [Analog Devices Wiki].url ├── Flow-based programming - Wikipedia.url ├── Free USBi - Device Driver - Installation (Computer Programs).url ├── FreeUSBi-Driver-Install-Guide_Rev1.1.pdf.url ├── Hierarchy Boards [Analog Devices Wiki].url ├── Home · AidaDSP-AidaDSP.github.io Wiki.url ├── How it works · AidaDSP-AidaDSP.github.io Wiki.url ├── How to program an Analog Devices DSP- - Daumemo.url ├── IIR Coefficient (Direct Coefficient Entry) [Analog Devices Wiki].url ├── Interfacing SigmaDSP Processors with a Microcontroller [Analog Devices Wiki].url ├── Interfacing SigmaDSP Processors with a Microcontroller.url ├── MCUdude-SigmaDSP- A versatile Arduino library for interfacing with the ADAU1701 audio DSP.url ├── Microsoft Word - SigmaStudio.doc.url ├── Numeric Formats [Analog Devices Wiki].url ├── Nvarcher ADAU1463 development board ADAU1467 compatible CT7601USB interface SAM5504 effector module-Replacement Parts & Acces.url ├── Open Hardware DSP Platform - Open Hardware DSP Platform.url ├── Patchblocks.url ├── Product Brief-MiniDSP 2x4 Box.pdf.url ├── Products using Sigma DSP technology · AidaDSP-AidaDSP.github.io Wiki.url ├── Project - DSP 01- hi-fi audio signal processor - Hackaday.io.url ├── REW - Room EQ Wizard Room Acoustics Software.url ├── Room EQ Wizard (REW).url ├── Sampling Rate Considerations [Analog Devices Wiki].url ├── Schematic Blocks [Analog Devices Wiki].url ├── Script Dialog [Analog Devices Wiki].url ├── Selection Table for SigmaDSP Audio Processors - Parametric Search - Analog Devices.url ├── SigmaDSP - Arduino Reference.url ├── SigmaDSP Getting started tutorial - YouTube.url ├── SigmaDSP Processors and SigmaStudio Development Tool - EngineerZone.url ├── SigmaDSP with ESP32 · Issue #7 · MCUdude-SigmaDSP.url ├── SigmaStudio - Hackaday.url ├── SigmaStudio Scripting from Python [Analog Devices Wiki].url ├── SigmaStudio Scripting.url ├── SigmaStudio Toolbox [Analog Devices Wiki].url ├── SigmaStudio and SigmaDSP Documentation [Analog Devices Wiki].url ├── SigmaStudio manual.pdf ├── SigmaStudio user manual.url ├── SigmaStudio-installation-step-4.png (1538×723).url ├── SigmaStudio® - Analog Devices.url ├── Similar projects (Audio DSP boards) · AidaDSP-AidaDSP.github.io Wiki.url ├── Sure ADAU1701 - Ein DSP für 20$ - YouTube.url ├── System Implementation [Analog Devices Wiki].url ├── TCP-IP Channels (ADAU144x - ADAU145x - ADAU146x) [Analog Devices Wiki].url ├── TCPi Interface for Sigma Studio, using ESP8266 or ESP32. - Q&A - SigmaDSP Processors and SigmaStudio Development To.url ├── Telegram- Join Group Chat.url ├── The Ultimate Integrate Part 7-.url ├── Thoughts on a cheap, hobbyist USBi- - Q&A - SigmaDSP Processors and SigmaStudio Development Tool - EngineerZone.url ├── Toolbars [Analog Devices Wiki].url ├── Tutorials, Guides, Walkthroughs, and other Information [Analog Devices Wiki].url ├── UMIK-1 cheap measurement microphone from MiniDSP - REVIEW - YouTube.url ├── USBi analog devices Programming the low cost CY7C68013A Solved.url ├── Using SigmaStudio [Analog Devices Wiki].url ├── Which measurement microphone is best- [GSwSST3] - YouTube.url ├── Workspace Windows [Analog Devices Wiki].url ├── [SHARING] TCPi Interface for Sigma Studio, using ESP8266 or ESP32. - Q&A - SigmaDSP Processors and SigmaStudio Development To.url ├── aventuri-sigma_tcp- a C gateway IP-I2C between Analog Device SigmaStudio and ADAU DSP.url ├── brightcloudy-dsp-python- Python software to control an Analog Devices SigmaDSP chip from I2C on the Raspberry Pi-.url ├── dayton-audio-dspb-user-manual-v1_21.pdf.url ├── freeDSP - An Open-Source Low-Budget Audio DSP.url ├── freeDSP - Google 文件.url ├── freeDSP-freeUSBi- The freeUSBi is a real-time programming interface for the freeDSP family-.url ├── freeUSBi - Google 文件.url ├── freeUSBi - complete kit - Audio and signal processing - even elements Shop.url ├── freeUSBi - diy - Audio and signal processing - even elements Shop.url ├── hasaranga-SigmaESP32- ADAU1401 Wireless Access using ESP32.url ├── https---www.minidsp.com-images-documents-miniDSP 2x4 and Kit - User Manual.pdf.url ├── low cost ADAU1452 china board.. - diyAudio.url ├── low cost USBi programmer using cypress CY7C68013A board - diyAudio.url ├── machine.SoftI2C I2C read 0x68.sr ├── micropython-xml.etree.ElementTree · PyPI.url ├── miniDSP 2x4 HD - Initial SETUP and Software CONFIGURATION (part 1) - YouTube.url ├── miniDSP 2x4 and Kit - User Manual.url ├── pfalcon-pycopy-lib- Standard library of the Pycopy project, minimalist and light-weight Python language implementation.url ├── powersoft_sigmastudio_uguide_en_v1.0.pdf.url ├── pycopy-lib-xml.etree.ElementTree-xml-etree at 9b8bbae774140563e9be138724de083267f99ff9 · pfalcon-pycopy-lib.url ├── pycopy-xmltok2 · PyPI.url ├── sigma_tcp-ADAU1452_DSP_SCH.pdf at master · aventuri-sigma_tcp.url └── sigma_tcp-docs at master · aventuri-sigma_tcp.url /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/README.md -------------------------------------------------------------------------------- /SigmaStudio projects/ADAU1701_original_firmware.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/SigmaStudio projects/ADAU1701_original_firmware.txt -------------------------------------------------------------------------------- /SigmaStudio projects/projects/4Hz beats/4Hz beats.dspproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/SigmaStudio projects/projects/4Hz beats/4Hz beats.dspproj -------------------------------------------------------------------------------- /SigmaStudio projects/projects/4x4/4x4.dspproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/SigmaStudio projects/projects/4x4/4x4.dspproj -------------------------------------------------------------------------------- /SigmaStudio projects/projects/SigmaDSP Cell Proxy Test/SigmaDSP Cell Proxy Test.dspproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/SigmaStudio projects/projects/SigmaDSP Cell Proxy Test/SigmaDSP Cell Proxy Test.dspproj -------------------------------------------------------------------------------- /SigmaStudio projects/projects/demo/NumBytes_IC_1.dat: -------------------------------------------------------------------------------- 1 | 4, 2 | 5122, 3 | 4098, 4 | 26, 5 | 4, 6 | -------------------------------------------------------------------------------- /SigmaStudio projects/projects/demo/TxBuffer_IC_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/SigmaStudio projects/projects/demo/TxBuffer_IC_1.dat -------------------------------------------------------------------------------- /SigmaStudio projects/projects/demo/demo.dspproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/SigmaStudio projects/projects/demo/demo.dspproj -------------------------------------------------------------------------------- /SigmaStudio projects/projects/demo/demo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/SigmaStudio projects/projects/demo/demo.pdf -------------------------------------------------------------------------------- /SigmaStudio projects/projects/demo/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/SigmaStudio projects/projects/demo/demo.png -------------------------------------------------------------------------------- /SigmaStudio projects/projects/demo/demo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/SigmaStudio projects/projects/demo/demo.xml -------------------------------------------------------------------------------- /SigmaStudio projects/projects/demo/demo_IC 2/E2Prom.Hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/SigmaStudio projects/projects/demo/demo_IC 2/E2Prom.Hex -------------------------------------------------------------------------------- /SigmaStudio projects/projects/demo/demo_IC 2/E2Prom.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/SigmaStudio projects/projects/demo/demo_IC 2/E2Prom.bin -------------------------------------------------------------------------------- /SigmaStudio projects/projects/demo/demo_NetList.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/SigmaStudio projects/projects/demo/demo_NetList.xml -------------------------------------------------------------------------------- /SigmaStudio projects/projects/demo_upy/demo_upy.dspproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/SigmaStudio projects/projects/demo_upy/demo_upy.dspproj -------------------------------------------------------------------------------- /SigmaStudio projects/projects/demo_upy/demo_upy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/SigmaStudio projects/projects/demo_upy/demo_upy.png -------------------------------------------------------------------------------- /codes/sigma/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codes/sigma/bus/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codes/sigma/bus/adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/bus/adapters.py -------------------------------------------------------------------------------- /codes/sigma/factory/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/factory/__init__.py -------------------------------------------------------------------------------- /codes/sigma/factory/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/factory/factory.py -------------------------------------------------------------------------------- /codes/sigma/factory/ufactory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/factory/ufactory.py -------------------------------------------------------------------------------- /codes/sigma/mini_xml/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codes/sigma/mini_xml/etree/ElementTree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/mini_xml/etree/ElementTree.py -------------------------------------------------------------------------------- /codes/sigma/mini_xml/etree/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codes/sigma/mini_xml/xmltok2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/mini_xml/xmltok2.py -------------------------------------------------------------------------------- /codes/sigma/sigma_dsp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/sigma_dsp/__init__.py -------------------------------------------------------------------------------- /codes/sigma/sigma_dsp/adau/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/sigma_dsp/adau/__init__.py -------------------------------------------------------------------------------- /codes/sigma/sigma_dsp/adau/adau.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/sigma_dsp/adau/adau.py -------------------------------------------------------------------------------- /codes/sigma/sigma_dsp/adau/adau1401/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/sigma_dsp/adau/adau1401/__init__.py -------------------------------------------------------------------------------- /codes/sigma/sigma_dsp/adau/adau1401/adau1401.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/sigma_dsp/adau/adau1401/adau1401.py -------------------------------------------------------------------------------- /codes/sigma/sigma_dsp/adau/adau1401/registers_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/sigma_dsp/adau/adau1401/registers_map.py -------------------------------------------------------------------------------- /codes/sigma/sigma_dsp/dsp_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/sigma_dsp/dsp_processor.py -------------------------------------------------------------------------------- /codes/sigma/sigma_dsp/messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/sigma_dsp/messages.py -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/project/netlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/sigma_studio/project/netlist.py -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/project/project_xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/sigma_studio/project/project_xml.py -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/adi_algorithms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/adi_algorithms/automatic_eq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/sigma_studio/toolbox/cells/adi_algorithms/automatic_eq.py -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/adi_algorithms/beam_forming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/sigma_studio/toolbox/cells/adi_algorithms/beam_forming.py -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/adi_algorithms/dynamic_bass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/sigma_studio/toolbox/cells/adi_algorithms/dynamic_bass.py -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/adi_algorithms/effects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/sigma_studio/toolbox/cells/adi_algorithms/effects.py -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/adi_algorithms/loudness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/sigma_studio/toolbox/cells/adi_algorithms/loudness.py -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/adi_algorithms/pitch_modification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/sigma_studio/toolbox/cells/adi_algorithms/pitch_modification.py -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/adi_algorithms/sub_harmonic_synth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/sigma_studio/toolbox/cells/adi_algorithms/sub_harmonic_synth.py -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/adi_algorithms/surround_n_3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/sigma_studio/toolbox/cells/adi_algorithms/surround_n_3d.py -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/advanced_dsp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/advanced_dsp/dynamic_mixers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/sigma_studio/toolbox/cells/advanced_dsp/dynamic_mixers.py -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/advanced_dsp/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/sigma_studio/toolbox/cells/advanced_dsp/transforms.py -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/advanced_dsp/unclassified.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/sigma_studio/toolbox/cells/advanced_dsp/unclassified.py -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/basic_dsp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/basic_dsp/adjustable_gain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/sigma_studio/toolbox/cells/basic_dsp/adjustable_gain.py -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/basic_dsp/arithmetic_operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/sigma_studio/toolbox/cells/basic_dsp/arithmetic_operations.py -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/basic_dsp/dsp_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/sigma_studio/toolbox/cells/basic_dsp/dsp_functions.py -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/basic_dsp/linear_interpolator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/sigma_studio/toolbox/cells/basic_dsp/linear_interpolator.py -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/basic_dsp/logic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/sigma_studio/toolbox/cells/basic_dsp/logic.py -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/cell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/sigma_studio/toolbox/cells/cell.py -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/counters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/counters/counters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/sigma_studio/toolbox/cells/counters/counters.py -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/custom_algorithms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/custom_algorithms/custom_algorithms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/sigma_studio/toolbox/cells/custom_algorithms/custom_algorithms.py -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/dynamics_processors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/dynamics_processors/combo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/sigma_studio/toolbox/cells/dynamics_processors/combo.py -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/dynamics_processors/dynamics_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/sigma_studio/toolbox/cells/dynamics_processors/dynamics_processors.py -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/dynamics_processors/envelope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/sigma_studio/toolbox/cells/dynamics_processors/envelope.py -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/dynamics_processors/peak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/sigma_studio/toolbox/cells/dynamics_processors/peak.py -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/dynamics_processors/rms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/sigma_studio/toolbox/cells/dynamics_processors/rms.py -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/filters/crossover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/sigma_studio/toolbox/cells/filters/crossover.py -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/filters/fir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/sigma_studio/toolbox/cells/filters/fir.py -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/filters/first_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/sigma_studio/toolbox/cells/filters/first_order.py -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/filters/miscellaneous.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/sigma_studio/toolbox/cells/filters/miscellaneous.py -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/filters/nth_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/sigma_studio/toolbox/cells/filters/nth_order.py -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/filters/second_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/sigma_studio/toolbox/cells/filters/second_order.py -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/gpio_conditioning/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/gpio_conditioning/push_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/sigma_studio/toolbox/cells/gpio_conditioning/push_button.py -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/gpio_conditioning/rotary_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/sigma_studio/toolbox/cells/gpio_conditioning/rotary_encoder.py -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/gpio_conditioning/software_debounce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/sigma_studio/toolbox/cells/gpio_conditioning/software_debounce.py -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/gpio_conditioning/volume_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/sigma_studio/toolbox/cells/gpio_conditioning/volume_control.py -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/io/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/io/gpio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/sigma_studio/toolbox/cells/io/gpio.py -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/level_detectors_lookup_tables/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/level_detectors_lookup_tables/level_detectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/sigma_studio/toolbox/cells/level_detectors_lookup_tables/level_detectors.py -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/level_detectors_lookup_tables/lookup_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/sigma_studio/toolbox/cells/level_detectors_lookup_tables/lookup_tables.py -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/level_detectors_lookup_tables/signal_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/sigma_studio/toolbox/cells/level_detectors_lookup_tables/signal_detector.py -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/mixers_splitters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/mixers_splitters/mixers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/sigma_studio/toolbox/cells/mixers_splitters/mixers.py -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/mixers_splitters/splitters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/sigma_studio/toolbox/cells/mixers_splitters/splitters.py -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/muxes_demuxes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/muxes_demuxes/cross_fade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/sigma_studio/toolbox/cells/muxes_demuxes/cross_fade.py -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/muxes_demuxes/demultiplexers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/sigma_studio/toolbox/cells/muxes_demuxes/demultiplexers.py -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/muxes_demuxes/multiplexers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/sigma_studio/toolbox/cells/muxes_demuxes/multiplexers.py -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/muxes_demuxes/state_machine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/sigma_studio/toolbox/cells/muxes_demuxes/state_machine.py -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/non_linear_processors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/non_linear_processors/clippers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/sigma_studio/toolbox/cells/non_linear_processors/clippers.py -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/sources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/sources/chime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/sigma_studio/toolbox/cells/sources/chime.py -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/sources/dc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/sigma_studio/toolbox/cells/sources/dc.py -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/sources/linear_sweep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/sigma_studio/toolbox/cells/sources/linear_sweep.py -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/sources/logarithmic_sweep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/sigma_studio/toolbox/cells/sources/logarithmic_sweep.py -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/sources/oscillators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/sigma_studio/toolbox/cells/sources/oscillators.py -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/sources/source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/sigma_studio/toolbox/cells/sources/source.py -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/sources/switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/sigma_studio/toolbox/cells/sources/switch.py -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/sources/voltage_controlled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/sigma_studio/toolbox/cells/sources/voltage_controlled.py -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/sources/white_noise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/sigma_studio/toolbox/cells/sources/white_noise.py -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/volume_controls/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/volume_controls/adjustable_volume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/sigma_studio/toolbox/cells/volume_controls/adjustable_volume.py -------------------------------------------------------------------------------- /codes/sigma/sigma_studio/toolbox/cells/volume_controls/mute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/sigma/sigma_studio/toolbox/cells/volume_controls/mute.py -------------------------------------------------------------------------------- /codes/test/PC/E2Prom.Hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/test/PC/E2Prom.Hex -------------------------------------------------------------------------------- /codes/test/PC/E2Prom.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/test/PC/E2Prom.bin -------------------------------------------------------------------------------- /codes/test/PC/NumBytes_IC_1.dat: -------------------------------------------------------------------------------- 1 | 4, 2 | 5122, 3 | 4098, 4 | 26, 5 | 4, 6 | -------------------------------------------------------------------------------- /codes/test/PC/TxBuffer_IC_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/test/PC/TxBuffer_IC_1.dat -------------------------------------------------------------------------------- /codes/test/PC/demo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/test/PC/demo.xml -------------------------------------------------------------------------------- /codes/test/PC/demo_trimed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/test/PC/demo_trimed.xml -------------------------------------------------------------------------------- /codes/test/PC/parameter_ram.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/test/PC/parameter_ram.bin -------------------------------------------------------------------------------- /codes/test/PC/program_ram.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/test/PC/program_ram.bin -------------------------------------------------------------------------------- /codes/test/PC/test SigmaDSP Cell Proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/test/PC/test SigmaDSP Cell Proxy.py -------------------------------------------------------------------------------- /codes/test/PC/test_RAM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/test/PC/test_RAM.py -------------------------------------------------------------------------------- /codes/test/PC/test_adau1401_pc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/test/PC/test_adau1401_pc.py -------------------------------------------------------------------------------- /codes/test/PC/test_dsp_cells.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/test/PC/test_dsp_cells.py -------------------------------------------------------------------------------- /codes/test/PC/test_eeprom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/test/PC/test_eeprom.py -------------------------------------------------------------------------------- /codes/test/PC/test_eeprom_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/test/PC/test_eeprom_parse.py -------------------------------------------------------------------------------- /codes/test/PC/test_eeprom_serialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/test/PC/test_eeprom_serialize.py -------------------------------------------------------------------------------- /codes/test/PC/test_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/test/PC/test_factory.py -------------------------------------------------------------------------------- /codes/test/PC/test_factory_usbi2c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/test/PC/test_factory_usbi2c.py -------------------------------------------------------------------------------- /codes/test/PC/test_gpio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/test/PC/test_gpio.py -------------------------------------------------------------------------------- /codes/test/PC/test_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/test/PC/test_message.py -------------------------------------------------------------------------------- /codes/test/PC/test_netlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/test/PC/test_netlist.py -------------------------------------------------------------------------------- /codes/test/PC/test_numeric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/test/PC/test_numeric.py -------------------------------------------------------------------------------- /codes/test/PC/test_project_xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/test/PC/test_project_xml.py -------------------------------------------------------------------------------- /codes/test/uPy/demo_upy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/test/uPy/demo_upy.xml -------------------------------------------------------------------------------- /codes/test/uPy/micropython/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codes/test/uPy/micropython/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/test/uPy/micropython/config.py -------------------------------------------------------------------------------- /codes/test/uPy/micropython/led.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/test/uPy/micropython/led.py -------------------------------------------------------------------------------- /codes/test/uPy/micropython/main.py: -------------------------------------------------------------------------------- 1 | # from test_adau_upy import dsp, factory, collect_garbage 2 | -------------------------------------------------------------------------------- /codes/test/uPy/micropython/wifi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/test/uPy/micropython/wifi.py -------------------------------------------------------------------------------- /codes/test/uPy/test_adau_upy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/codes/test/uPy/test_adau_upy.py -------------------------------------------------------------------------------- /jpgs/demo_equip_setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/jpgs/demo_equip_setup.png -------------------------------------------------------------------------------- /jpgs/demo_upy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/jpgs/demo_upy.jpg -------------------------------------------------------------------------------- /jpgs/demo_upy2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/jpgs/demo_upy2.jpg -------------------------------------------------------------------------------- /jpgs/demo_upy3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/jpgs/demo_upy3.png -------------------------------------------------------------------------------- /notebooks/Functional test/ADAU1401 Functional Test.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/notebooks/Functional test/ADAU1401 Functional Test.ipynb -------------------------------------------------------------------------------- /notebooks/Functional test/ADAU1401 RAM EEPROM Functional Test.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/notebooks/Functional test/ADAU1401 RAM EEPROM Functional Test.ipynb -------------------------------------------------------------------------------- /notebooks/Functional test/ADAU1401.Control Functional Test.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/notebooks/Functional test/ADAU1401.Control Functional Test.ipynb -------------------------------------------------------------------------------- /notebooks/Functional test/ADAU1701 Original Firmware.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/notebooks/Functional test/ADAU1701 Original Firmware.ipynb -------------------------------------------------------------------------------- /notebooks/Functional test/ADAU1701_original_firmware.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/notebooks/Functional test/ADAU1701_original_firmware.bin -------------------------------------------------------------------------------- /notebooks/Functional test/Cell Factory test.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/notebooks/Functional test/Cell Factory test.ipynb -------------------------------------------------------------------------------- /notebooks/Functional test/Cell Functional Test.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/notebooks/Functional test/Cell Functional Test.ipynb -------------------------------------------------------------------------------- /notebooks/Functional test/E2Prom.Hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/notebooks/Functional test/E2Prom.Hex -------------------------------------------------------------------------------- /notebooks/Functional test/E2Prom.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/notebooks/Functional test/E2Prom.bin -------------------------------------------------------------------------------- /notebooks/Functional test/Factory Functional Test.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/notebooks/Functional test/Factory Functional Test.ipynb -------------------------------------------------------------------------------- /notebooks/Functional test/Functional Demostration - with MicroPython Remote.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/notebooks/Functional test/Functional Demostration - with MicroPython Remote.ipynb -------------------------------------------------------------------------------- /notebooks/Functional test/Functional Demostration - with USBi as USB-I2C converter.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/notebooks/Functional test/Functional Demostration - with USBi as USB-I2C converter.ipynb -------------------------------------------------------------------------------- /notebooks/Functional test/Functional Demostration.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/notebooks/Functional test/Functional Demostration.ipynb -------------------------------------------------------------------------------- /notebooks/Functional test/Message Functional Test.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/notebooks/Functional test/Message Functional Test.ipynb -------------------------------------------------------------------------------- /notebooks/Functional test/Netlist Functional Test.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/notebooks/Functional test/Netlist Functional Test.ipynb -------------------------------------------------------------------------------- /notebooks/Functional test/NumBytes_IC_1.dat: -------------------------------------------------------------------------------- 1 | 4, 2 | 5122, 3 | 4098, 4 | 26, 5 | 4, 6 | -------------------------------------------------------------------------------- /notebooks/Functional test/Profiling.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/notebooks/Functional test/Profiling.ipynb -------------------------------------------------------------------------------- /notebooks/Functional test/SigmaDSP Cell Proxy Test.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/notebooks/Functional test/SigmaDSP Cell Proxy Test.ipynb -------------------------------------------------------------------------------- /notebooks/Functional test/SigmaStudio project parser.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/notebooks/Functional test/SigmaStudio project parser.ipynb -------------------------------------------------------------------------------- /notebooks/Functional test/TxBuffer_IC_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/notebooks/Functional test/TxBuffer_IC_1.dat -------------------------------------------------------------------------------- /notebooks/Functional test/XML Related Classes Functional Test.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/notebooks/Functional test/XML Related Classes Functional Test.ipynb -------------------------------------------------------------------------------- /notebooks/Functional test/demo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/notebooks/Functional test/demo.xml -------------------------------------------------------------------------------- /notebooks/Functional test/eeprom.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/notebooks/Functional test/eeprom.bin -------------------------------------------------------------------------------- /notebooks/Functional test/parameter_ram.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/notebooks/Functional test/parameter_ram.bin -------------------------------------------------------------------------------- /notebooks/Functional test/pathfinder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/notebooks/Functional test/pathfinder.py -------------------------------------------------------------------------------- /notebooks/Functional test/profile.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/notebooks/Functional test/profile.bin -------------------------------------------------------------------------------- /notebooks/Functional test/program_ram.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/notebooks/Functional test/program_ram.bin -------------------------------------------------------------------------------- /notebooks/tools/上傳檔案 - SigmaDSP.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/notebooks/tools/上傳檔案 - SigmaDSP.ipynb -------------------------------------------------------------------------------- /references/- Basic Operation of the 2x4 HD.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://www.amazon.com/vdp/3391760d5abc424cb28f6102c276e62d 3 | -------------------------------------------------------------------------------- /references/- EVAL-ADAU1467Z (Rev. 0).url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/- EVAL-ADAU1467Z (Rev. 0).url -------------------------------------------------------------------------------- /references/- How to program an Analog Devices DSP- - Daumemo.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/- How to program an Analog Devices DSP- - Daumemo.url -------------------------------------------------------------------------------- /references/- Interfacing SigmaDSP Processors with a Microcontroller [Analog Devices Wiki].url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/- Interfacing SigmaDSP Processors with a Microcontroller [Analog Devices Wiki].url -------------------------------------------------------------------------------- /references/- SigmaStudio Toolbox [Analog Devices Wiki].url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/- SigmaStudio Toolbox [Analog Devices Wiki].url -------------------------------------------------------------------------------- /references/- SigmaStudio and SigmaDSP Documentation [Analog Devices Wiki].url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/- SigmaStudio and SigmaDSP Documentation [Analog Devices Wiki].url -------------------------------------------------------------------------------- /references/- Tutorials, Guides, Walkthroughs, and other Information [Analog Devices Wiki].url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/- Tutorials, Guides, Walkthroughs, and other Information [Analog Devices Wiki].url -------------------------------------------------------------------------------- /references/- UG-072 Evaluation Board User Guide for ADAU1401 (Rev. A).url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/- UG-072 Evaluation Board User Guide for ADAU1401 (Rev. A).url -------------------------------------------------------------------------------- /references/- freeUSBi - Google 文件.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/- freeUSBi - Google 文件.url -------------------------------------------------------------------------------- /references/24AA64 Data Sheet.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/24AA64 Data Sheet.url -------------------------------------------------------------------------------- /references/6a. Gen 2 stereo 3-way DSP Board – Audiodevelopers Reborn.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=http://www.audiodevelopers.com/6a-gen-2-stereo-3-way-dsp-board/ 3 | -------------------------------------------------------------------------------- /references/8K I2C Serial EEPROM.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=http://ww1.microchip.com/downloads/en/DeviceDoc/21710a.pdf 3 | -------------------------------------------------------------------------------- /references/A2B control from Python via SigmaStudio (AppNote003) – Clockworks Signal Processing.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/A2B control from Python via SigmaStudio (AppNote003) – Clockworks Signal Processing.url -------------------------------------------------------------------------------- /references/ADAU1401 (Rev. C).url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/ADAU1401 (Rev. C).url -------------------------------------------------------------------------------- /references/ADAU1401 - Analog Deviceshttps---www.analog.com › media › data-sheets › A..-.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/ADAU1401 - Analog Deviceshttps---www.analog.com › media › data-sheets › A..-.url -------------------------------------------------------------------------------- /references/ADAU1401 FTDI read 0x081C.sr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/ADAU1401 FTDI read 0x081C.sr -------------------------------------------------------------------------------- /references/ADAU1401 FTDI write 0x081C 0x0010.sr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/ADAU1401 FTDI write 0x081C 0x0010.sr -------------------------------------------------------------------------------- /references/ADAU1401 FTDI write 0x081C 0x0018.sr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/ADAU1401 FTDI write 0x081C 0x0018.sr -------------------------------------------------------------------------------- /references/ADAU1401 USBi read 0x081C.sr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/ADAU1401 USBi read 0x081C.sr -------------------------------------------------------------------------------- /references/ADAU1401 USBi write 0x081C 0x0014.sr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/ADAU1401 USBi write 0x081C 0x0014.sr -------------------------------------------------------------------------------- /references/ADAU1401 USBi write 0x081C 0x001C.sr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/ADAU1401 USBi write 0x081C 0x001C.sr -------------------------------------------------------------------------------- /references/ADAU1401A (Rev. A).url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/ADAU1401A (Rev. A).url -------------------------------------------------------------------------------- /references/ADAU1452 (Rev. A).url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/ADAU1452 (Rev. A).url -------------------------------------------------------------------------------- /references/ADAU1452-ADAU1451-ADAU1450 (Rev.D).url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/ADAU1452-ADAU1451-ADAU1450 (Rev.D).url -------------------------------------------------------------------------------- /references/ADAU1462-ADAU1466 (Rev. C).url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/ADAU1462-ADAU1466 (Rev. C).url -------------------------------------------------------------------------------- /references/ADAU1463 Datasheet and Product Info - Analog Devices.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/ADAU1463 Datasheet and Product Info - Analog Devices.url -------------------------------------------------------------------------------- /references/ADAU1463 Development Board ADAU1467 Compatible CT7601 USB Interface SAM5504 Effects Module-Replacement Parts & Accessories- -.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/ADAU1463 Development Board ADAU1467 Compatible CT7601 USB Interface SAM5504 Effects Module-Replacement Parts & Accessories- -.url -------------------------------------------------------------------------------- /references/ADAU1463-ADAU1467 (Rev. A).url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/ADAU1463-ADAU1467 (Rev. A).url -------------------------------------------------------------------------------- /references/ADAU1467 + ESP32 ( Прошивка и управление ADAU по Wi-Fi) - YouTube.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://www.youtube.com/watch?v=xo2iYkYvqrA&ab_channel=SkyHawk 3 | -------------------------------------------------------------------------------- /references/ADAU1701 Universal Audio DSP Board - Elektor Magazine.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/ADAU1701 Universal Audio DSP Board - Elektor Magazine.url -------------------------------------------------------------------------------- /references/ADAU1701 how to use the data capture registers - Q&A - SigmaDSP Processors and SigmaStudio Development Tool - EngineerZone.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/ADAU1701 how to use the data capture registers - Q&A - SigmaDSP Processors and SigmaStudio Development Tool - EngineerZone.url -------------------------------------------------------------------------------- /references/AN-1006 Using the EVAL-ADUSB2EBZ (Rev. A).url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/AN-1006 Using the EVAL-ADUSB2EBZ (Rev. A).url -------------------------------------------------------------------------------- /references/AN-1006- Using the EVAL-ADUSB2EBZ - Analog Devices.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://www.analog.com/en/app-notes/an-1006.html 3 | -------------------------------------------------------------------------------- /references/AN-951.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/AN-951.url -------------------------------------------------------------------------------- /references/Active Crossovers- miniDSP 2x4.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/Active Crossovers- miniDSP 2x4.url -------------------------------------------------------------------------------- /references/Adau1467, dsp - YouTube.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://www.youtube.com/watch?v=Bg5ltkQYQ8Y&ab_channel=NicholasS%C3%A4venlid 3 | -------------------------------------------------------------------------------- /references/Aida DSP Arduino Shield Index · AidaDSP-AidaDSP.github.io Wiki.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/Aida DSP Arduino Shield Index · AidaDSP-AidaDSP.github.io Wiki.url -------------------------------------------------------------------------------- /references/Aida DSP Arduino Shield from Aida DSP on Tindie.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/Aida DSP Arduino Shield from Aida DSP on Tindie.url -------------------------------------------------------------------------------- /references/Aida DSP Arduino Shield.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/Aida DSP Arduino Shield.url -------------------------------------------------------------------------------- /references/Aida DSP.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://aidadsp.github.io/ 3 | -------------------------------------------------------------------------------- /references/AidaDSP-AidaDSP- AidaDSP project official repo.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/AidaDSP-AidaDSP- AidaDSP project official repo.url -------------------------------------------------------------------------------- /references/Algorithms- Add-Remove, Grow-Reduce [Analog Devices Wiki].url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/Algorithms- Add-Remove, Grow-Reduce [Analog Devices Wiki].url -------------------------------------------------------------------------------- /references/Analog modeling techniques review [1].url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/Analog modeling techniques review [1].url -------------------------------------------------------------------------------- /references/Arduino DSP - YouTube.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://www.youtube.com/watch?v=dJv1KIvs8O4&ab_channel=SleekandSimpleTechnology 3 | -------------------------------------------------------------------------------- /references/Audio Production- Learn the Fundamentals - YouTube.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://www.youtube.com/watch?v=qonbJHkxH8w&ab_channel=EnvatoTuts%2B 3 | -------------------------------------------------------------------------------- /references/Audiodevelopers Reborn – A collaborative website for active speaker design.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=http://www.audiodevelopers.com/ 3 | -------------------------------------------------------------------------------- /references/Axoloti.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=http://www.axoloti.com/ 3 | -------------------------------------------------------------------------------- /references/Basic DSP Examples [Analog Devices Wiki].url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/Basic DSP Examples [Analog Devices Wiki].url -------------------------------------------------------------------------------- /references/Basic Microphone Measurement - 麦克风测试基础篇网络研讨会 (English - Chinese) - YouTube.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://www.youtube.com/watch?v=etM7aefwlA8&ab_channel=Listen%2CInc. 3 | -------------------------------------------------------------------------------- /references/Beocreate – Setting up the software on Raspbian - HiFiBerry.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/Beocreate – Setting up the software on Raspbian - HiFiBerry.url -------------------------------------------------------------------------------- /references/Booting a SigmaDSP from a microcontroller with no C compiler - Documents - SigmaDSP Processors and SigmaStudio Development To.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/Booting a SigmaDSP from a microcontroller with no C compiler - Documents - SigmaDSP Processors and SigmaStudio Development To.url -------------------------------------------------------------------------------- /references/Booting a SigmaDSP from a microcontroller with no C compiler.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/Booting a SigmaDSP from a microcontroller with no C compiler.url -------------------------------------------------------------------------------- /references/Building Cheapest Audio DSP - Improve Your Sound Quality - YouTube.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://www.youtube.com/watch?v=tvOF1wIL7dw&ab_channel=SteveWillsonKujur 3 | -------------------------------------------------------------------------------- /references/Capture Output Data [Analog Devices Wiki].url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/Capture Output Data [Analog Devices Wiki].url -------------------------------------------------------------------------------- /references/Correct your speakers with REW, UMIK-1 and Equalizer APO (Room Correction Tutorial) - YouTube.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/Correct your speakers with REW, UMIK-1 and Equalizer APO (Room Correction Tutorial) - YouTube.url -------------------------------------------------------------------------------- /references/Creating and Running SigmaStudio Scripts [Analog Devices Wiki].url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/Creating and Running SigmaStudio Scripts [Analog Devices Wiki].url -------------------------------------------------------------------------------- /references/DIY DSP PRE-AMP PROJECT PAGE.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://cyberpithilo.web.fc2.com/audio/dsppreamp/index.html 3 | -------------------------------------------------------------------------------- /references/DSP 01 — latent laboratories.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=http://latentlaboratories.com/dsp-01 3 | -------------------------------------------------------------------------------- /references/DSP 01, part 4- setup & programming — latent laboratories.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/DSP 01, part 4- setup & programming — latent laboratories.url -------------------------------------------------------------------------------- /references/DSP-ADAU1452-DSP-ADAU1452-2.0-Schematic.pdf at master · ohdsp-DSP-ADAU1452.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/DSP-ADAU1452-DSP-ADAU1452-2.0-Schematic.pdf at master · ohdsp-DSP-ADAU1452.url -------------------------------------------------------------------------------- /references/DSP-ADAU1452-StandAlone-Schematics at master · aventuri-DSP-ADAU1452-StandAlone.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://github.com/aventuri/DSP-ADAU1452-StandAlone/tree/master/Schematics 3 | -------------------------------------------------------------------------------- /references/Documents - Documents - SigmaDSP Processors and SigmaStudio Development Tool - EngineerZone.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/Documents - Documents - SigmaDSP Processors and SigmaStudio Development Tool - EngineerZone.url -------------------------------------------------------------------------------- /references/ESP32-WROVER 8MB PSRAM LILIGO T8 V1.8 pinout.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/ESP32-WROVER 8MB PSRAM LILIGO T8 V1.8 pinout.url -------------------------------------------------------------------------------- /references/ESP32_ADAU1467_DEFAULT_I2C.zip - Google 雲端硬碟.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://drive.google.com/file/d/1IHCFIqVBumTsX8ESnUCutYFgU2hdrmLj/view 3 | -------------------------------------------------------------------------------- /references/EVAL-ADAU1452REVBZ User Guide (Rev. 0).url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/EVAL-ADAU1452REVBZ User Guide (Rev. 0).url -------------------------------------------------------------------------------- /references/EVAL-ADAU1466Z User Guide (Rev. 0).url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/EVAL-ADAU1466Z User Guide (Rev. 0).url -------------------------------------------------------------------------------- /references/EVAL-ADAU1467 I2C communication - Q&A - SigmaDSP Processors and SigmaStudio Development Tool - EngineerZone.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/EVAL-ADAU1467 I2C communication - Q&A - SigmaDSP Processors and SigmaStudio Development Tool - EngineerZone.url -------------------------------------------------------------------------------- /references/EVAL-ADAU1467Z (Rev. 0).url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/EVAL-ADAU1467Z (Rev. 0).url -------------------------------------------------------------------------------- /references/EVAL-ADAU1467Z Evaluation Board - Analog Devices.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/EVAL-ADAU1467Z Evaluation Board - Analog Devices.url -------------------------------------------------------------------------------- /references/EZ-USB FX1-FX2LP Boot Options.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/EZ-USB FX1-FX2LP Boot Options.url -------------------------------------------------------------------------------- /references/EZ-USB® Technical Reference Manual.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/EZ-USB® Technical Reference Manual.url -------------------------------------------------------------------------------- /references/Elektor - ADAU1701 Universal Audio DSP Board - YouTube.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://www.youtube.com/watch?v=Je5pi_-eLwg&ab_channel=ElektorTV 3 | -------------------------------------------------------------------------------- /references/Export Program and Parameters [Analog Devices Wiki].url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/Export Program and Parameters [Analog Devices Wiki].url -------------------------------------------------------------------------------- /references/FIR Filter [Analog Devices Wiki].url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/FIR Filter [Analog Devices Wiki].url -------------------------------------------------------------------------------- /references/FREEUSBI - KOMPLETTKIT - freeDSP Programmer incl CY7C68013A - ADAU1701 - EUR 26,90 - PicClick FR.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/FREEUSBI - KOMPLETTKIT - freeDSP Programmer incl CY7C68013A - ADAU1701 - EUR 26,90 - PicClick FR.url -------------------------------------------------------------------------------- /references/FTDI device pinout — PyFtdi documentation.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://eblot.github.io/pyftdi/pinout.html#i2c 3 | -------------------------------------------------------------------------------- /references/Filter Table Generator [Analog Devices Wiki].url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/Filter Table Generator [Analog Devices Wiki].url -------------------------------------------------------------------------------- /references/Flow-based programming - Wikipedia.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/Flow-based programming - Wikipedia.url -------------------------------------------------------------------------------- /references/Free USBi - Device Driver - Installation (Computer Programs).url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://www.scribd.com/doc/312276716/freeUSBi 3 | -------------------------------------------------------------------------------- /references/FreeUSBi-Driver-Install-Guide_Rev1.1.pdf.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/FreeUSBi-Driver-Install-Guide_Rev1.1.pdf.url -------------------------------------------------------------------------------- /references/Hierarchy Boards [Analog Devices Wiki].url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/Hierarchy Boards [Analog Devices Wiki].url -------------------------------------------------------------------------------- /references/Home · AidaDSP-AidaDSP.github.io Wiki.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/Home · AidaDSP-AidaDSP.github.io Wiki.url -------------------------------------------------------------------------------- /references/How it works · AidaDSP-AidaDSP.github.io Wiki.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/How it works · AidaDSP-AidaDSP.github.io Wiki.url -------------------------------------------------------------------------------- /references/How to program an Analog Devices DSP- - Daumemo.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/How to program an Analog Devices DSP- - Daumemo.url -------------------------------------------------------------------------------- /references/IIR Coefficient (Direct Coefficient Entry) [Analog Devices Wiki].url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/IIR Coefficient (Direct Coefficient Entry) [Analog Devices Wiki].url -------------------------------------------------------------------------------- /references/Interfacing SigmaDSP Processors with a Microcontroller [Analog Devices Wiki].url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/Interfacing SigmaDSP Processors with a Microcontroller [Analog Devices Wiki].url -------------------------------------------------------------------------------- /references/Interfacing SigmaDSP Processors with a Microcontroller.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/Interfacing SigmaDSP Processors with a Microcontroller.url -------------------------------------------------------------------------------- /references/MCUdude-SigmaDSP- A versatile Arduino library for interfacing with the ADAU1701 audio DSP.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://github.com/MCUdude/SigmaDSP 3 | -------------------------------------------------------------------------------- /references/Microsoft Word - SigmaStudio.doc.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://d1.amobbs.com/bbs_upload782111/files_35/ourdev_606281QBKE95.pdf 3 | -------------------------------------------------------------------------------- /references/Numeric Formats [Analog Devices Wiki].url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/Numeric Formats [Analog Devices Wiki].url -------------------------------------------------------------------------------- /references/Nvarcher ADAU1463 development board ADAU1467 compatible CT7601USB interface SAM5504 effector module-Replacement Parts & Acces.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/Nvarcher ADAU1463 development board ADAU1467 compatible CT7601USB interface SAM5504 effector module-Replacement Parts & Acces.url -------------------------------------------------------------------------------- /references/Open Hardware DSP Platform - Open Hardware DSP Platform.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://ohdsp.weebly.com/ 3 | -------------------------------------------------------------------------------- /references/Patchblocks.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=http://patchblocks.com/ 3 | -------------------------------------------------------------------------------- /references/Product Brief-MiniDSP 2x4 Box.pdf.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/Product Brief-MiniDSP 2x4 Box.pdf.url -------------------------------------------------------------------------------- /references/Products using Sigma DSP technology · AidaDSP-AidaDSP.github.io Wiki.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/Products using Sigma DSP technology · AidaDSP-AidaDSP.github.io Wiki.url -------------------------------------------------------------------------------- /references/Project - DSP 01- hi-fi audio signal processor - Hackaday.io.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://hackaday.io/project/2374/logs 3 | -------------------------------------------------------------------------------- /references/REW - Room EQ Wizard Room Acoustics Software.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://www.roomeqwizard.com/ 3 | -------------------------------------------------------------------------------- /references/Room EQ Wizard (REW).url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://www.minidsp.com/applications/auto-eq-with-rew 3 | -------------------------------------------------------------------------------- /references/Sampling Rate Considerations [Analog Devices Wiki].url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/Sampling Rate Considerations [Analog Devices Wiki].url -------------------------------------------------------------------------------- /references/Schematic Blocks [Analog Devices Wiki].url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/Schematic Blocks [Analog Devices Wiki].url -------------------------------------------------------------------------------- /references/Script Dialog [Analog Devices Wiki].url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/Script Dialog [Analog Devices Wiki].url -------------------------------------------------------------------------------- /references/Selection Table for SigmaDSP Audio Processors - Parametric Search - Analog Devices.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/Selection Table for SigmaDSP Audio Processors - Parametric Search - Analog Devices.url -------------------------------------------------------------------------------- /references/SigmaDSP - Arduino Reference.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/SigmaDSP - Arduino Reference.url -------------------------------------------------------------------------------- /references/SigmaDSP Getting started tutorial - YouTube.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://www.youtube.com/watch?v=_QNRVaHTZK4&t=1s&ab_channel=MedigradeMachines 3 | -------------------------------------------------------------------------------- /references/SigmaDSP Processors and SigmaStudio Development Tool - EngineerZone.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://ez.analog.com/dsp/sigmadsp 3 | -------------------------------------------------------------------------------- /references/SigmaDSP with ESP32 · Issue #7 · MCUdude-SigmaDSP.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://github.com/MCUdude/SigmaDSP/issues/7 3 | -------------------------------------------------------------------------------- /references/SigmaStudio - Hackaday.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://hackaday.com/tag/sigmastudio/ 3 | -------------------------------------------------------------------------------- /references/SigmaStudio Scripting from Python [Analog Devices Wiki].url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/SigmaStudio Scripting from Python [Analog Devices Wiki].url -------------------------------------------------------------------------------- /references/SigmaStudio Scripting.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/SigmaStudio Scripting.url -------------------------------------------------------------------------------- /references/SigmaStudio Toolbox [Analog Devices Wiki].url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/SigmaStudio Toolbox [Analog Devices Wiki].url -------------------------------------------------------------------------------- /references/SigmaStudio and SigmaDSP Documentation [Analog Devices Wiki].url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/SigmaStudio and SigmaDSP Documentation [Analog Devices Wiki].url -------------------------------------------------------------------------------- /references/SigmaStudio manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/SigmaStudio manual.pdf -------------------------------------------------------------------------------- /references/SigmaStudio user manual.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://d1.amobbs.com/bbs_upload782111/files_35/ourdev_606281QBKE95.pdf 3 | -------------------------------------------------------------------------------- /references/SigmaStudio-installation-step-4.png (1538×723).url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/SigmaStudio-installation-step-4.png (1538×723).url -------------------------------------------------------------------------------- /references/SigmaStudio® - Analog Devices.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/SigmaStudio® - Analog Devices.url -------------------------------------------------------------------------------- /references/Similar projects (Audio DSP boards) · AidaDSP-AidaDSP.github.io Wiki.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/Similar projects (Audio DSP boards) · AidaDSP-AidaDSP.github.io Wiki.url -------------------------------------------------------------------------------- /references/Sure ADAU1701 - Ein DSP für 20$ - YouTube.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://www.youtube.com/watch?v=h9KueCHdCqc&ab_channel=LeoLautsprecher 3 | -------------------------------------------------------------------------------- /references/System Implementation [Analog Devices Wiki].url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/System Implementation [Analog Devices Wiki].url -------------------------------------------------------------------------------- /references/TCP-IP Channels (ADAU144x - ADAU145x - ADAU146x) [Analog Devices Wiki].url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/TCP-IP Channels (ADAU144x - ADAU145x - ADAU146x) [Analog Devices Wiki].url -------------------------------------------------------------------------------- /references/TCPi Interface for Sigma Studio, using ESP8266 or ESP32. - Q&A - SigmaDSP Processors and SigmaStudio Development To.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/TCPi Interface for Sigma Studio, using ESP8266 or ESP32. - Q&A - SigmaDSP Processors and SigmaStudio Development To.url -------------------------------------------------------------------------------- /references/Telegram- Join Group Chat.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/Telegram- Join Group Chat.url -------------------------------------------------------------------------------- /references/The Ultimate Integrate Part 7-.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/The Ultimate Integrate Part 7-.url -------------------------------------------------------------------------------- /references/Thoughts on a cheap, hobbyist USBi- - Q&A - SigmaDSP Processors and SigmaStudio Development Tool - EngineerZone.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/Thoughts on a cheap, hobbyist USBi- - Q&A - SigmaDSP Processors and SigmaStudio Development Tool - EngineerZone.url -------------------------------------------------------------------------------- /references/Toolbars [Analog Devices Wiki].url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/Toolbars [Analog Devices Wiki].url -------------------------------------------------------------------------------- /references/Tutorials, Guides, Walkthroughs, and other Information [Analog Devices Wiki].url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/Tutorials, Guides, Walkthroughs, and other Information [Analog Devices Wiki].url -------------------------------------------------------------------------------- /references/UMIK-1 cheap measurement microphone from MiniDSP - REVIEW - YouTube.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://www.youtube.com/watch?v=mLZTb8ErUNM&ab_channel=JulianKrause 3 | -------------------------------------------------------------------------------- /references/USBi analog devices Programming the low cost CY7C68013A Solved.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://www.meddens.eu/audio/USBi.html 3 | -------------------------------------------------------------------------------- /references/Using SigmaStudio [Analog Devices Wiki].url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/Using SigmaStudio [Analog Devices Wiki].url -------------------------------------------------------------------------------- /references/Which measurement microphone is best- [GSwSST3] - YouTube.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://www.youtube.com/watch?v=Cz-QQDpznnw&ab_channel=NathanLively 3 | -------------------------------------------------------------------------------- /references/Workspace Windows [Analog Devices Wiki].url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/Workspace Windows [Analog Devices Wiki].url -------------------------------------------------------------------------------- /references/[SHARING] TCPi Interface for Sigma Studio, using ESP8266 or ESP32. - Q&A - SigmaDSP Processors and SigmaStudio Development To.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/[SHARING] TCPi Interface for Sigma Studio, using ESP8266 or ESP32. - Q&A - SigmaDSP Processors and SigmaStudio Development To.url -------------------------------------------------------------------------------- /references/aventuri-sigma_tcp- a C gateway IP-I2C between Analog Device SigmaStudio and ADAU DSP.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://github.com/aventuri/sigma_tcp 3 | -------------------------------------------------------------------------------- /references/brightcloudy-dsp-python- Python software to control an Analog Devices SigmaDSP chip from I2C on the Raspberry Pi-.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://github.com/brightcloudy/dsp-python 3 | -------------------------------------------------------------------------------- /references/dayton-audio-dspb-user-manual-v1_21.pdf.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/dayton-audio-dspb-user-manual-v1_21.pdf.url -------------------------------------------------------------------------------- /references/freeDSP - An Open-Source Low-Budget Audio DSP.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://freedsp.github.io/ 3 | -------------------------------------------------------------------------------- /references/freeDSP - Google 文件.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/freeDSP - Google 文件.url -------------------------------------------------------------------------------- /references/freeDSP-freeUSBi- The freeUSBi is a real-time programming interface for the freeDSP family-.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/freeDSP-freeUSBi- The freeUSBi is a real-time programming interface for the freeDSP family-.url -------------------------------------------------------------------------------- /references/freeUSBi - Google 文件.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/freeUSBi - Google 文件.url -------------------------------------------------------------------------------- /references/freeUSBi - complete kit - Audio and signal processing - even elements Shop.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/freeUSBi - complete kit - Audio and signal processing - even elements Shop.url -------------------------------------------------------------------------------- /references/freeUSBi - diy - Audio and signal processing - even elements Shop.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/freeUSBi - diy - Audio and signal processing - even elements Shop.url -------------------------------------------------------------------------------- /references/hasaranga-SigmaESP32- ADAU1401 Wireless Access using ESP32.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://github.com/hasaranga/SigmaESP32 3 | -------------------------------------------------------------------------------- /references/https---www.minidsp.com-images-documents-miniDSP 2x4 and Kit - User Manual.pdf.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/https---www.minidsp.com-images-documents-miniDSP 2x4 and Kit - User Manual.pdf.url -------------------------------------------------------------------------------- /references/low cost ADAU1452 china board.. - diyAudio.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/low cost ADAU1452 china board.. - diyAudio.url -------------------------------------------------------------------------------- /references/low cost USBi programmer using cypress CY7C68013A board - diyAudio.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/low cost USBi programmer using cypress CY7C68013A board - diyAudio.url -------------------------------------------------------------------------------- /references/machine.SoftI2C I2C read 0x68.sr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/machine.SoftI2C I2C read 0x68.sr -------------------------------------------------------------------------------- /references/micropython-xml.etree.ElementTree · PyPI.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://pypi.org/project/micropython-xml.etree.ElementTree/#files 3 | -------------------------------------------------------------------------------- /references/miniDSP 2x4 HD - Initial SETUP and Software CONFIGURATION (part 1) - YouTube.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://www.youtube.com/watch?v=eRRr8xTmxVQ&ab_channel=HomeTheaterGamer 3 | -------------------------------------------------------------------------------- /references/miniDSP 2x4 and Kit - User Manual.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/miniDSP 2x4 and Kit - User Manual.url -------------------------------------------------------------------------------- /references/pfalcon-pycopy-lib- Standard library of the Pycopy project, minimalist and light-weight Python language implementation.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://github.com/pfalcon/pycopy-lib 3 | -------------------------------------------------------------------------------- /references/powersoft_sigmastudio_uguide_en_v1.0.pdf.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/powersoft_sigmastudio_uguide_en_v1.0.pdf.url -------------------------------------------------------------------------------- /references/pycopy-lib-xml.etree.ElementTree-xml-etree at 9b8bbae774140563e9be138724de083267f99ff9 · pfalcon-pycopy-lib.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei1234c/SigmaDSP/HEAD/references/pycopy-lib-xml.etree.ElementTree-xml-etree at 9b8bbae774140563e9be138724de083267f99ff9 · pfalcon-pycopy-lib.url -------------------------------------------------------------------------------- /references/pycopy-xmltok2 · PyPI.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://pypi.org/project/pycopy-xmltok2/#files 3 | -------------------------------------------------------------------------------- /references/sigma_tcp-ADAU1452_DSP_SCH.pdf at master · aventuri-sigma_tcp.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://github.com/aventuri/sigma_tcp/blob/master/docs/ADAU1452_DSP_SCH.pdf 3 | -------------------------------------------------------------------------------- /references/sigma_tcp-docs at master · aventuri-sigma_tcp.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://github.com/aventuri/sigma_tcp/tree/master/docs 3 | --------------------------------------------------------------------------------