├── .gitignore ├── .gitmodules ├── 1_channel_firmware.bin ├── 6_channels_firmware.bin ├── LICENSE ├── MicArrayV3_firmware ├── 1_channel_dfu_4.0.0_firmware.bin └── 6_channels_dfu_4.0.0_firmware.bin ├── README.md ├── dfu.py ├── dfu_windows.py ├── newdevice.png ├── odas.cfg ├── requirements.txt ├── test ├── REAME.md ├── echo.py ├── kws.py ├── player.py ├── respeaker.wav └── rms.py └── tuning.py /.gitignore: -------------------------------------------------------------------------------- 1 | .python-version -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/respeaker/usb_4_mic_array/HEAD/.gitmodules -------------------------------------------------------------------------------- /1_channel_firmware.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/respeaker/usb_4_mic_array/HEAD/1_channel_firmware.bin -------------------------------------------------------------------------------- /6_channels_firmware.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/respeaker/usb_4_mic_array/HEAD/6_channels_firmware.bin -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/respeaker/usb_4_mic_array/HEAD/LICENSE -------------------------------------------------------------------------------- /MicArrayV3_firmware/1_channel_dfu_4.0.0_firmware.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/respeaker/usb_4_mic_array/HEAD/MicArrayV3_firmware/1_channel_dfu_4.0.0_firmware.bin -------------------------------------------------------------------------------- /MicArrayV3_firmware/6_channels_dfu_4.0.0_firmware.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/respeaker/usb_4_mic_array/HEAD/MicArrayV3_firmware/6_channels_dfu_4.0.0_firmware.bin -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/respeaker/usb_4_mic_array/HEAD/README.md -------------------------------------------------------------------------------- /dfu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/respeaker/usb_4_mic_array/HEAD/dfu.py -------------------------------------------------------------------------------- /dfu_windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/respeaker/usb_4_mic_array/HEAD/dfu_windows.py -------------------------------------------------------------------------------- /newdevice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/respeaker/usb_4_mic_array/HEAD/newdevice.png -------------------------------------------------------------------------------- /odas.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/respeaker/usb_4_mic_array/HEAD/odas.cfg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pyusb==1.0.2 2 | click==7.0 3 | -------------------------------------------------------------------------------- /test/REAME.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/respeaker/usb_4_mic_array/HEAD/test/REAME.md -------------------------------------------------------------------------------- /test/echo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/respeaker/usb_4_mic_array/HEAD/test/echo.py -------------------------------------------------------------------------------- /test/kws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/respeaker/usb_4_mic_array/HEAD/test/kws.py -------------------------------------------------------------------------------- /test/player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/respeaker/usb_4_mic_array/HEAD/test/player.py -------------------------------------------------------------------------------- /test/respeaker.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/respeaker/usb_4_mic_array/HEAD/test/respeaker.wav -------------------------------------------------------------------------------- /test/rms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/respeaker/usb_4_mic_array/HEAD/test/rms.py -------------------------------------------------------------------------------- /tuning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/respeaker/usb_4_mic_array/HEAD/tuning.py --------------------------------------------------------------------------------