├── .github └── FUNDING.yml ├── .gitignore ├── Documentation ├── Commands.xlsx ├── ESP32 D0WDQ6 Datasheet.pdf ├── Fritzing Parts │ ├── Arduino MKR Vidor 4000.fzpz │ ├── OLED 128x64 I2C Monochrome Display.fzpz │ ├── SD Card Module.fzpz │ ├── expander-MCP23008.fzz │ └── microSD Socket 112C-TXAR-R01.fzpz ├── Images │ ├── GUI_FBAPE.png │ ├── GUI_FBAPECPP.png │ ├── GUI_Webinterface.png │ ├── PDM_SpectralView.png │ ├── System.jpg │ ├── System_Bode.png │ ├── System_Overview.png │ └── Testsetup.png ├── NINA-W102 Pinmap to ESP32.png ├── NINA-W1xx Documentation.pdf ├── Vidor 4000 MKR Pinmap.png ├── Vidor 4000 Schematics.pdf ├── fbape Fritzing.fzz └── fbape Fritzing.png ├── FPGA ├── Audioplayer.bdf ├── Audioplayer.ipregen.rpt ├── Audioplayer.out.sdc ├── Audioplayer.qpf ├── Audioplayer.qsf ├── Audioplayer.sdc ├── Audioplayer_assignment_defaults.qdf ├── Audioplayer_description.txt ├── RS232_Decoder.bsf ├── RS232_Decoder.vhdl ├── Tools │ ├── ReverseByte_V2 │ │ ├── KDEE_HiResPG.h │ │ ├── KDEE_HiResPG.ttf │ │ ├── ReverseByte.class │ │ ├── ReverseByte.java │ │ ├── run.bat │ │ └── run.sh │ └── vidorcvt │ │ ├── Info.txt │ │ ├── convert.bat │ │ ├── cygwin1.dll │ │ ├── vidorcvt │ │ ├── vidorcvt.c │ │ └── vidorcvt.exe ├── aes3rx.bsf ├── aes3rx.vhd ├── audiomixer_22ch.bsf ├── audiomixer_22ch.vhd ├── clipper.bsf ├── clipper.vhd ├── clk_by_x.bsf ├── clk_by_x.vhd ├── coeff_const_lr12.bsf ├── coeff_const_lr12.vhd ├── coeff_const_lr24.bsf ├── coeff_const_lr24.vhd ├── compressor.bsf ├── compressor.vhd ├── compressor_stereo.bsf ├── compressor_stereo.vhd ├── compressor_stereosub.bsf ├── compressor_stereosub.vhd ├── ddfs_amplitude.bsf ├── ddfs_amplitude.vhd ├── ddfs_brom.bsf ├── ddfs_brom.vhd ├── ddfs_drom.bsf ├── ddfs_drom.vhd ├── divider.bsf ├── divider.vhd ├── filter_iir.bsf ├── filter_iir.vhd ├── filter_iir_stereo.bsf ├── filter_iir_stereo.vhd ├── filter_lr12_crossover.bsf ├── filter_lr12_crossover.vhd ├── filter_lr12_mono.bsf ├── filter_lr12_mono.vhd ├── filter_lr12_stereo.bsf ├── filter_lr12_stereo.vhd ├── filter_lr12_stereosub.bsf ├── filter_lr12_stereosub.vhd ├── filter_lr24_crossover.bsf ├── filter_lr24_crossover.vhd ├── filter_lr24_mono.bsf ├── filter_lr24_mono.vhd ├── filter_lr24_stereo.bsf ├── filter_lr24_stereo.vhd ├── filter_lr24_stereosub.bsf ├── filter_lr24_stereosub.vhd ├── fsclkselector.bsf ├── fsclkselector.vhd ├── i2s_aes_rx.bsf ├── i2s_aes_rx.vhd ├── i2s_master_rx.bsf ├── i2s_master_rx.vhd ├── i2s_rx.bsf ├── i2s_rx.vhd ├── ideas │ ├── add_noise.vhd │ ├── audiomixer.vhd │ ├── coeff_const_hp_dither.vhd │ ├── dac_dsm3.vhd │ ├── dac_pdm.bsf │ ├── dac_pdm.vhd │ ├── dac_pdm2.bsf │ ├── dac_pdm2.vhd │ ├── dac_pdm2_fb.vhd │ ├── dac_pdm2_withdith.vhd │ ├── divider2.vhd │ ├── lfsr.vhd │ ├── lfsr2.vhd │ ├── lfsr_triangle_pdf.vhd │ ├── sqrt.vhd │ └── vu_meter.vhd ├── ip │ └── SYSTEM_PLL │ │ ├── SYSTEM_PLL.ppf │ │ ├── SYSTEM_PLL.qip │ │ └── SYSTEM_PLL.v ├── mainfadersection.bsf ├── mainfadersection.vhd ├── noisegate.bsf ├── noisegate.vhd ├── noisegate_stereo.bsf ├── noisegate_stereo.vhd ├── pi_fb_ctrl.bsf ├── pi_fb_ctrl.vhd ├── pll_1.bsf ├── pll_1.cmp ├── pll_1.ppf ├── pll_1.qip ├── pll_1.vhd ├── pll_2.bsf ├── pll_2.cmp ├── pll_2.ppf ├── pll_2.qip ├── pll_2.vhd ├── reset_signal.bsf ├── reset_signal.vhd ├── rs232_encoder.bsf ├── rs232_encoder.vhd ├── sigma_delta_first.bsf ├── sigma_delta_first.vhd ├── sigma_delta_second.bsf ├── sigma_delta_second.vhd ├── sigma_delta_twostage.bsf ├── sigma_delta_twostage.vhd ├── spdif_transmitter.bsf ├── spdif_transmitter.vhd ├── subwoofer_sum.bsf ├── subwoofer_sum.vhd ├── syncselector.bsf ├── syncselector.vhd ├── uart_rx.bsf ├── uart_rx.vhd ├── uart_tx.bsf ├── uart_tx.vhd ├── volume_ctrl.bsf ├── volume_ctrl.vhd ├── vu_meter.bsf └── vu_meter.vhd ├── GUI ├── FBAPE │ ├── CONFIG.TXT │ ├── FBAPE.DPR │ ├── FBAPE.EXE │ ├── FBAPE.ICO │ ├── FBAPE.OPT │ ├── FBAPE.RES │ ├── FBAPE.cfg │ ├── FBAPE.dof │ ├── FBAPE311.cfg │ ├── FBAPE311.dof │ ├── MAINFRM.PAS │ └── MAINFRM.dfm ├── FBAPE311 │ ├── CONFIG.TXT │ ├── FBAPE.ICO │ ├── FBAPE311.DPR │ ├── FBAPE311.EXE │ ├── FBAPE311.OPT │ ├── FBAPE311.RES │ ├── MAINFRM.DFM │ └── MAINFRM.PAS ├── FBAPECPP │ ├── CONTROLS.C │ ├── DIALOGS.C │ ├── FBAPE.ICO │ ├── FBAPECPP.APS │ ├── FBAPECPP.BSC │ ├── FBAPECPP.DEF │ ├── FBAPECPP.EXE │ ├── FBAPECPP.H │ ├── FBAPECPP.MAK │ ├── FBAPECPP.PDB │ ├── FBAPECPP.RC │ ├── FBAPECPP.RES │ ├── FBAPECPP.VCW │ ├── FBAPECPP.WSP │ ├── FLAGQC.MAK │ ├── MAIN.C │ ├── MAIN.OBJ │ ├── MAIN.SBR │ ├── MATH.C │ ├── RESOURCE.H │ ├── UART.C │ ├── UART.OBJ │ └── UART.SBR ├── FBAPEWLO.exe └── MarkWLO.exe ├── LICENSE ├── NINA ├── Audio.ino ├── Communication.ino ├── Config.ino ├── Direct_Upload_NINA_W102.bat ├── HelperFunctions.ino ├── Mixerengine.ino ├── NINA.h ├── NINA.ino ├── NINA_Pinmap.h ├── SD.ino ├── Tools │ ├── boot_app0.bin │ ├── esptool.exe │ └── mklittlefs.exe ├── Update_NINA_W102.bat ├── Webserver.ino ├── compile_and_upload_littlefs.bat ├── data │ ├── css │ │ ├── bootstrp.css │ │ ├── fntawsm.css │ │ └── rndsldr.css │ ├── fbape.cfg │ ├── img │ │ ├── favico16.png │ │ ├── favico32.png │ │ └── favicon.ico │ ├── index.htm │ ├── js │ │ ├── ajxrfrsh.js │ │ ├── btstpbdl.js │ │ ├── dynamics.js │ │ ├── eq.js │ │ ├── eq_hgcrt.js │ │ ├── graphs.js │ │ ├── jquery.js │ │ ├── player.js │ │ ├── plotly.js │ │ ├── rndsldr.js │ │ ├── smoothie.js │ │ └── vumeter.js │ ├── stream.json │ ├── webfonts │ │ ├── fa-solid-900.ttf │ │ └── fa-solid-900.woff2 │ └── wifi.cfg ├── littlefs.bin └── partitions.csv ├── README.md └── SAMD ├── ADC.ino ├── Bitmaps.h ├── Communication.ino ├── Display.ino ├── ExternalGPIO.ino ├── HelperFunctions.ino ├── Menu.ino ├── SAMD.h ├── SAMD.ino ├── Spectrum.h ├── Spectrum.ino ├── Uploader ├── About bossac.txt ├── Update_Audioplayer.bat ├── bossac.exe └── bossaui │ ├── bossa.exe │ └── bossac.exe ├── VUmeter.h ├── VUmeter.ino ├── fpga.h ├── jtag.c ├── jtag.h └── update_fpga_bitstream.bat /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/.gitignore -------------------------------------------------------------------------------- /Documentation/Commands.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/Documentation/Commands.xlsx -------------------------------------------------------------------------------- /Documentation/ESP32 D0WDQ6 Datasheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/Documentation/ESP32 D0WDQ6 Datasheet.pdf -------------------------------------------------------------------------------- /Documentation/Fritzing Parts/Arduino MKR Vidor 4000.fzpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/Documentation/Fritzing Parts/Arduino MKR Vidor 4000.fzpz -------------------------------------------------------------------------------- /Documentation/Fritzing Parts/OLED 128x64 I2C Monochrome Display.fzpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/Documentation/Fritzing Parts/OLED 128x64 I2C Monochrome Display.fzpz -------------------------------------------------------------------------------- /Documentation/Fritzing Parts/SD Card Module.fzpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/Documentation/Fritzing Parts/SD Card Module.fzpz -------------------------------------------------------------------------------- /Documentation/Fritzing Parts/expander-MCP23008.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/Documentation/Fritzing Parts/expander-MCP23008.fzz -------------------------------------------------------------------------------- /Documentation/Fritzing Parts/microSD Socket 112C-TXAR-R01.fzpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/Documentation/Fritzing Parts/microSD Socket 112C-TXAR-R01.fzpz -------------------------------------------------------------------------------- /Documentation/Images/GUI_FBAPE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/Documentation/Images/GUI_FBAPE.png -------------------------------------------------------------------------------- /Documentation/Images/GUI_FBAPECPP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/Documentation/Images/GUI_FBAPECPP.png -------------------------------------------------------------------------------- /Documentation/Images/GUI_Webinterface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/Documentation/Images/GUI_Webinterface.png -------------------------------------------------------------------------------- /Documentation/Images/PDM_SpectralView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/Documentation/Images/PDM_SpectralView.png -------------------------------------------------------------------------------- /Documentation/Images/System.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/Documentation/Images/System.jpg -------------------------------------------------------------------------------- /Documentation/Images/System_Bode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/Documentation/Images/System_Bode.png -------------------------------------------------------------------------------- /Documentation/Images/System_Overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/Documentation/Images/System_Overview.png -------------------------------------------------------------------------------- /Documentation/Images/Testsetup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/Documentation/Images/Testsetup.png -------------------------------------------------------------------------------- /Documentation/NINA-W102 Pinmap to ESP32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/Documentation/NINA-W102 Pinmap to ESP32.png -------------------------------------------------------------------------------- /Documentation/NINA-W1xx Documentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/Documentation/NINA-W1xx Documentation.pdf -------------------------------------------------------------------------------- /Documentation/Vidor 4000 MKR Pinmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/Documentation/Vidor 4000 MKR Pinmap.png -------------------------------------------------------------------------------- /Documentation/Vidor 4000 Schematics.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/Documentation/Vidor 4000 Schematics.pdf -------------------------------------------------------------------------------- /Documentation/fbape Fritzing.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/Documentation/fbape Fritzing.fzz -------------------------------------------------------------------------------- /Documentation/fbape Fritzing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/Documentation/fbape Fritzing.png -------------------------------------------------------------------------------- /FPGA/Audioplayer.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/Audioplayer.bdf -------------------------------------------------------------------------------- /FPGA/Audioplayer.ipregen.rpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/Audioplayer.ipregen.rpt -------------------------------------------------------------------------------- /FPGA/Audioplayer.out.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/Audioplayer.out.sdc -------------------------------------------------------------------------------- /FPGA/Audioplayer.qpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/Audioplayer.qpf -------------------------------------------------------------------------------- /FPGA/Audioplayer.qsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/Audioplayer.qsf -------------------------------------------------------------------------------- /FPGA/Audioplayer.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/Audioplayer.sdc -------------------------------------------------------------------------------- /FPGA/Audioplayer_assignment_defaults.qdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/Audioplayer_assignment_defaults.qdf -------------------------------------------------------------------------------- /FPGA/Audioplayer_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/Audioplayer_description.txt -------------------------------------------------------------------------------- /FPGA/RS232_Decoder.bsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/RS232_Decoder.bsf -------------------------------------------------------------------------------- /FPGA/RS232_Decoder.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/RS232_Decoder.vhdl -------------------------------------------------------------------------------- /FPGA/Tools/ReverseByte_V2/KDEE_HiResPG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/Tools/ReverseByte_V2/KDEE_HiResPG.h -------------------------------------------------------------------------------- /FPGA/Tools/ReverseByte_V2/KDEE_HiResPG.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/Tools/ReverseByte_V2/KDEE_HiResPG.ttf -------------------------------------------------------------------------------- /FPGA/Tools/ReverseByte_V2/ReverseByte.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/Tools/ReverseByte_V2/ReverseByte.class -------------------------------------------------------------------------------- /FPGA/Tools/ReverseByte_V2/ReverseByte.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/Tools/ReverseByte_V2/ReverseByte.java -------------------------------------------------------------------------------- /FPGA/Tools/ReverseByte_V2/run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/Tools/ReverseByte_V2/run.bat -------------------------------------------------------------------------------- /FPGA/Tools/ReverseByte_V2/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/Tools/ReverseByte_V2/run.sh -------------------------------------------------------------------------------- /FPGA/Tools/vidorcvt/Info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/Tools/vidorcvt/Info.txt -------------------------------------------------------------------------------- /FPGA/Tools/vidorcvt/convert.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/Tools/vidorcvt/convert.bat -------------------------------------------------------------------------------- /FPGA/Tools/vidorcvt/cygwin1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/Tools/vidorcvt/cygwin1.dll -------------------------------------------------------------------------------- /FPGA/Tools/vidorcvt/vidorcvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/Tools/vidorcvt/vidorcvt -------------------------------------------------------------------------------- /FPGA/Tools/vidorcvt/vidorcvt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/Tools/vidorcvt/vidorcvt.c -------------------------------------------------------------------------------- /FPGA/Tools/vidorcvt/vidorcvt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/Tools/vidorcvt/vidorcvt.exe -------------------------------------------------------------------------------- /FPGA/aes3rx.bsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/aes3rx.bsf -------------------------------------------------------------------------------- /FPGA/aes3rx.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/aes3rx.vhd -------------------------------------------------------------------------------- /FPGA/audiomixer_22ch.bsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/audiomixer_22ch.bsf -------------------------------------------------------------------------------- /FPGA/audiomixer_22ch.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/audiomixer_22ch.vhd -------------------------------------------------------------------------------- /FPGA/clipper.bsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/clipper.bsf -------------------------------------------------------------------------------- /FPGA/clipper.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/clipper.vhd -------------------------------------------------------------------------------- /FPGA/clk_by_x.bsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/clk_by_x.bsf -------------------------------------------------------------------------------- /FPGA/clk_by_x.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/clk_by_x.vhd -------------------------------------------------------------------------------- /FPGA/coeff_const_lr12.bsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/coeff_const_lr12.bsf -------------------------------------------------------------------------------- /FPGA/coeff_const_lr12.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/coeff_const_lr12.vhd -------------------------------------------------------------------------------- /FPGA/coeff_const_lr24.bsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/coeff_const_lr24.bsf -------------------------------------------------------------------------------- /FPGA/coeff_const_lr24.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/coeff_const_lr24.vhd -------------------------------------------------------------------------------- /FPGA/compressor.bsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/compressor.bsf -------------------------------------------------------------------------------- /FPGA/compressor.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/compressor.vhd -------------------------------------------------------------------------------- /FPGA/compressor_stereo.bsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/compressor_stereo.bsf -------------------------------------------------------------------------------- /FPGA/compressor_stereo.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/compressor_stereo.vhd -------------------------------------------------------------------------------- /FPGA/compressor_stereosub.bsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/compressor_stereosub.bsf -------------------------------------------------------------------------------- /FPGA/compressor_stereosub.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/compressor_stereosub.vhd -------------------------------------------------------------------------------- /FPGA/ddfs_amplitude.bsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/ddfs_amplitude.bsf -------------------------------------------------------------------------------- /FPGA/ddfs_amplitude.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/ddfs_amplitude.vhd -------------------------------------------------------------------------------- /FPGA/ddfs_brom.bsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/ddfs_brom.bsf -------------------------------------------------------------------------------- /FPGA/ddfs_brom.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/ddfs_brom.vhd -------------------------------------------------------------------------------- /FPGA/ddfs_drom.bsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/ddfs_drom.bsf -------------------------------------------------------------------------------- /FPGA/ddfs_drom.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/ddfs_drom.vhd -------------------------------------------------------------------------------- /FPGA/divider.bsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/divider.bsf -------------------------------------------------------------------------------- /FPGA/divider.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/divider.vhd -------------------------------------------------------------------------------- /FPGA/filter_iir.bsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/filter_iir.bsf -------------------------------------------------------------------------------- /FPGA/filter_iir.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/filter_iir.vhd -------------------------------------------------------------------------------- /FPGA/filter_iir_stereo.bsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/filter_iir_stereo.bsf -------------------------------------------------------------------------------- /FPGA/filter_iir_stereo.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/filter_iir_stereo.vhd -------------------------------------------------------------------------------- /FPGA/filter_lr12_crossover.bsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/filter_lr12_crossover.bsf -------------------------------------------------------------------------------- /FPGA/filter_lr12_crossover.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/filter_lr12_crossover.vhd -------------------------------------------------------------------------------- /FPGA/filter_lr12_mono.bsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/filter_lr12_mono.bsf -------------------------------------------------------------------------------- /FPGA/filter_lr12_mono.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/filter_lr12_mono.vhd -------------------------------------------------------------------------------- /FPGA/filter_lr12_stereo.bsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/filter_lr12_stereo.bsf -------------------------------------------------------------------------------- /FPGA/filter_lr12_stereo.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/filter_lr12_stereo.vhd -------------------------------------------------------------------------------- /FPGA/filter_lr12_stereosub.bsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/filter_lr12_stereosub.bsf -------------------------------------------------------------------------------- /FPGA/filter_lr12_stereosub.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/filter_lr12_stereosub.vhd -------------------------------------------------------------------------------- /FPGA/filter_lr24_crossover.bsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/filter_lr24_crossover.bsf -------------------------------------------------------------------------------- /FPGA/filter_lr24_crossover.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/filter_lr24_crossover.vhd -------------------------------------------------------------------------------- /FPGA/filter_lr24_mono.bsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/filter_lr24_mono.bsf -------------------------------------------------------------------------------- /FPGA/filter_lr24_mono.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/filter_lr24_mono.vhd -------------------------------------------------------------------------------- /FPGA/filter_lr24_stereo.bsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/filter_lr24_stereo.bsf -------------------------------------------------------------------------------- /FPGA/filter_lr24_stereo.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/filter_lr24_stereo.vhd -------------------------------------------------------------------------------- /FPGA/filter_lr24_stereosub.bsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/filter_lr24_stereosub.bsf -------------------------------------------------------------------------------- /FPGA/filter_lr24_stereosub.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/filter_lr24_stereosub.vhd -------------------------------------------------------------------------------- /FPGA/fsclkselector.bsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/fsclkselector.bsf -------------------------------------------------------------------------------- /FPGA/fsclkselector.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/fsclkselector.vhd -------------------------------------------------------------------------------- /FPGA/i2s_aes_rx.bsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/i2s_aes_rx.bsf -------------------------------------------------------------------------------- /FPGA/i2s_aes_rx.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/i2s_aes_rx.vhd -------------------------------------------------------------------------------- /FPGA/i2s_master_rx.bsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/i2s_master_rx.bsf -------------------------------------------------------------------------------- /FPGA/i2s_master_rx.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/i2s_master_rx.vhd -------------------------------------------------------------------------------- /FPGA/i2s_rx.bsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/i2s_rx.bsf -------------------------------------------------------------------------------- /FPGA/i2s_rx.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/i2s_rx.vhd -------------------------------------------------------------------------------- /FPGA/ideas/add_noise.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/ideas/add_noise.vhd -------------------------------------------------------------------------------- /FPGA/ideas/audiomixer.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/ideas/audiomixer.vhd -------------------------------------------------------------------------------- /FPGA/ideas/coeff_const_hp_dither.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/ideas/coeff_const_hp_dither.vhd -------------------------------------------------------------------------------- /FPGA/ideas/dac_dsm3.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/ideas/dac_dsm3.vhd -------------------------------------------------------------------------------- /FPGA/ideas/dac_pdm.bsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/ideas/dac_pdm.bsf -------------------------------------------------------------------------------- /FPGA/ideas/dac_pdm.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/ideas/dac_pdm.vhd -------------------------------------------------------------------------------- /FPGA/ideas/dac_pdm2.bsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/ideas/dac_pdm2.bsf -------------------------------------------------------------------------------- /FPGA/ideas/dac_pdm2.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/ideas/dac_pdm2.vhd -------------------------------------------------------------------------------- /FPGA/ideas/dac_pdm2_fb.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/ideas/dac_pdm2_fb.vhd -------------------------------------------------------------------------------- /FPGA/ideas/dac_pdm2_withdith.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/ideas/dac_pdm2_withdith.vhd -------------------------------------------------------------------------------- /FPGA/ideas/divider2.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/ideas/divider2.vhd -------------------------------------------------------------------------------- /FPGA/ideas/lfsr.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/ideas/lfsr.vhd -------------------------------------------------------------------------------- /FPGA/ideas/lfsr2.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/ideas/lfsr2.vhd -------------------------------------------------------------------------------- /FPGA/ideas/lfsr_triangle_pdf.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/ideas/lfsr_triangle_pdf.vhd -------------------------------------------------------------------------------- /FPGA/ideas/sqrt.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/ideas/sqrt.vhd -------------------------------------------------------------------------------- /FPGA/ideas/vu_meter.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/ideas/vu_meter.vhd -------------------------------------------------------------------------------- /FPGA/ip/SYSTEM_PLL/SYSTEM_PLL.ppf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/ip/SYSTEM_PLL/SYSTEM_PLL.ppf -------------------------------------------------------------------------------- /FPGA/ip/SYSTEM_PLL/SYSTEM_PLL.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/ip/SYSTEM_PLL/SYSTEM_PLL.qip -------------------------------------------------------------------------------- /FPGA/ip/SYSTEM_PLL/SYSTEM_PLL.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/ip/SYSTEM_PLL/SYSTEM_PLL.v -------------------------------------------------------------------------------- /FPGA/mainfadersection.bsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/mainfadersection.bsf -------------------------------------------------------------------------------- /FPGA/mainfadersection.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/mainfadersection.vhd -------------------------------------------------------------------------------- /FPGA/noisegate.bsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/noisegate.bsf -------------------------------------------------------------------------------- /FPGA/noisegate.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/noisegate.vhd -------------------------------------------------------------------------------- /FPGA/noisegate_stereo.bsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/noisegate_stereo.bsf -------------------------------------------------------------------------------- /FPGA/noisegate_stereo.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/noisegate_stereo.vhd -------------------------------------------------------------------------------- /FPGA/pi_fb_ctrl.bsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/pi_fb_ctrl.bsf -------------------------------------------------------------------------------- /FPGA/pi_fb_ctrl.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/pi_fb_ctrl.vhd -------------------------------------------------------------------------------- /FPGA/pll_1.bsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/pll_1.bsf -------------------------------------------------------------------------------- /FPGA/pll_1.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/pll_1.cmp -------------------------------------------------------------------------------- /FPGA/pll_1.ppf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/pll_1.ppf -------------------------------------------------------------------------------- /FPGA/pll_1.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/pll_1.qip -------------------------------------------------------------------------------- /FPGA/pll_1.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/pll_1.vhd -------------------------------------------------------------------------------- /FPGA/pll_2.bsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/pll_2.bsf -------------------------------------------------------------------------------- /FPGA/pll_2.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/pll_2.cmp -------------------------------------------------------------------------------- /FPGA/pll_2.ppf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/pll_2.ppf -------------------------------------------------------------------------------- /FPGA/pll_2.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/pll_2.qip -------------------------------------------------------------------------------- /FPGA/pll_2.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/pll_2.vhd -------------------------------------------------------------------------------- /FPGA/reset_signal.bsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/reset_signal.bsf -------------------------------------------------------------------------------- /FPGA/reset_signal.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/reset_signal.vhd -------------------------------------------------------------------------------- /FPGA/rs232_encoder.bsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/rs232_encoder.bsf -------------------------------------------------------------------------------- /FPGA/rs232_encoder.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/rs232_encoder.vhd -------------------------------------------------------------------------------- /FPGA/sigma_delta_first.bsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/sigma_delta_first.bsf -------------------------------------------------------------------------------- /FPGA/sigma_delta_first.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/sigma_delta_first.vhd -------------------------------------------------------------------------------- /FPGA/sigma_delta_second.bsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/sigma_delta_second.bsf -------------------------------------------------------------------------------- /FPGA/sigma_delta_second.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/sigma_delta_second.vhd -------------------------------------------------------------------------------- /FPGA/sigma_delta_twostage.bsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/sigma_delta_twostage.bsf -------------------------------------------------------------------------------- /FPGA/sigma_delta_twostage.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/sigma_delta_twostage.vhd -------------------------------------------------------------------------------- /FPGA/spdif_transmitter.bsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/spdif_transmitter.bsf -------------------------------------------------------------------------------- /FPGA/spdif_transmitter.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/spdif_transmitter.vhd -------------------------------------------------------------------------------- /FPGA/subwoofer_sum.bsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/subwoofer_sum.bsf -------------------------------------------------------------------------------- /FPGA/subwoofer_sum.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/subwoofer_sum.vhd -------------------------------------------------------------------------------- /FPGA/syncselector.bsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/syncselector.bsf -------------------------------------------------------------------------------- /FPGA/syncselector.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/syncselector.vhd -------------------------------------------------------------------------------- /FPGA/uart_rx.bsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/uart_rx.bsf -------------------------------------------------------------------------------- /FPGA/uart_rx.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/uart_rx.vhd -------------------------------------------------------------------------------- /FPGA/uart_tx.bsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/uart_tx.bsf -------------------------------------------------------------------------------- /FPGA/uart_tx.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/uart_tx.vhd -------------------------------------------------------------------------------- /FPGA/volume_ctrl.bsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/volume_ctrl.bsf -------------------------------------------------------------------------------- /FPGA/volume_ctrl.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/volume_ctrl.vhd -------------------------------------------------------------------------------- /FPGA/vu_meter.bsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/vu_meter.bsf -------------------------------------------------------------------------------- /FPGA/vu_meter.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/FPGA/vu_meter.vhd -------------------------------------------------------------------------------- /GUI/FBAPE/CONFIG.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/GUI/FBAPE/CONFIG.TXT -------------------------------------------------------------------------------- /GUI/FBAPE/FBAPE.DPR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/GUI/FBAPE/FBAPE.DPR -------------------------------------------------------------------------------- /GUI/FBAPE/FBAPE.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/GUI/FBAPE/FBAPE.EXE -------------------------------------------------------------------------------- /GUI/FBAPE/FBAPE.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/GUI/FBAPE/FBAPE.ICO -------------------------------------------------------------------------------- /GUI/FBAPE/FBAPE.OPT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/GUI/FBAPE/FBAPE.OPT -------------------------------------------------------------------------------- /GUI/FBAPE/FBAPE.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/GUI/FBAPE/FBAPE.RES -------------------------------------------------------------------------------- /GUI/FBAPE/FBAPE.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/GUI/FBAPE/FBAPE.cfg -------------------------------------------------------------------------------- /GUI/FBAPE/FBAPE.dof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/GUI/FBAPE/FBAPE.dof -------------------------------------------------------------------------------- /GUI/FBAPE/FBAPE311.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/GUI/FBAPE/FBAPE311.cfg -------------------------------------------------------------------------------- /GUI/FBAPE/FBAPE311.dof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/GUI/FBAPE/FBAPE311.dof -------------------------------------------------------------------------------- /GUI/FBAPE/MAINFRM.PAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/GUI/FBAPE/MAINFRM.PAS -------------------------------------------------------------------------------- /GUI/FBAPE/MAINFRM.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/GUI/FBAPE/MAINFRM.dfm -------------------------------------------------------------------------------- /GUI/FBAPE311/CONFIG.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/GUI/FBAPE311/CONFIG.TXT -------------------------------------------------------------------------------- /GUI/FBAPE311/FBAPE.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/GUI/FBAPE311/FBAPE.ICO -------------------------------------------------------------------------------- /GUI/FBAPE311/FBAPE311.DPR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/GUI/FBAPE311/FBAPE311.DPR -------------------------------------------------------------------------------- /GUI/FBAPE311/FBAPE311.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/GUI/FBAPE311/FBAPE311.EXE -------------------------------------------------------------------------------- /GUI/FBAPE311/FBAPE311.OPT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/GUI/FBAPE311/FBAPE311.OPT -------------------------------------------------------------------------------- /GUI/FBAPE311/FBAPE311.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/GUI/FBAPE311/FBAPE311.RES -------------------------------------------------------------------------------- /GUI/FBAPE311/MAINFRM.DFM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/GUI/FBAPE311/MAINFRM.DFM -------------------------------------------------------------------------------- /GUI/FBAPE311/MAINFRM.PAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/GUI/FBAPE311/MAINFRM.PAS -------------------------------------------------------------------------------- /GUI/FBAPECPP/CONTROLS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/GUI/FBAPECPP/CONTROLS.C -------------------------------------------------------------------------------- /GUI/FBAPECPP/DIALOGS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/GUI/FBAPECPP/DIALOGS.C -------------------------------------------------------------------------------- /GUI/FBAPECPP/FBAPE.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/GUI/FBAPECPP/FBAPE.ICO -------------------------------------------------------------------------------- /GUI/FBAPECPP/FBAPECPP.APS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/GUI/FBAPECPP/FBAPECPP.APS -------------------------------------------------------------------------------- /GUI/FBAPECPP/FBAPECPP.BSC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/GUI/FBAPECPP/FBAPECPP.BSC -------------------------------------------------------------------------------- /GUI/FBAPECPP/FBAPECPP.DEF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/GUI/FBAPECPP/FBAPECPP.DEF -------------------------------------------------------------------------------- /GUI/FBAPECPP/FBAPECPP.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/GUI/FBAPECPP/FBAPECPP.EXE -------------------------------------------------------------------------------- /GUI/FBAPECPP/FBAPECPP.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/GUI/FBAPECPP/FBAPECPP.H -------------------------------------------------------------------------------- /GUI/FBAPECPP/FBAPECPP.MAK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/GUI/FBAPECPP/FBAPECPP.MAK -------------------------------------------------------------------------------- /GUI/FBAPECPP/FBAPECPP.PDB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/GUI/FBAPECPP/FBAPECPP.PDB -------------------------------------------------------------------------------- /GUI/FBAPECPP/FBAPECPP.RC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/GUI/FBAPECPP/FBAPECPP.RC -------------------------------------------------------------------------------- /GUI/FBAPECPP/FBAPECPP.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/GUI/FBAPECPP/FBAPECPP.RES -------------------------------------------------------------------------------- /GUI/FBAPECPP/FBAPECPP.VCW: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/GUI/FBAPECPP/FBAPECPP.VCW -------------------------------------------------------------------------------- /GUI/FBAPECPP/FBAPECPP.WSP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/GUI/FBAPECPP/FBAPECPP.WSP -------------------------------------------------------------------------------- /GUI/FBAPECPP/FLAGQC.MAK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/GUI/FBAPECPP/FLAGQC.MAK -------------------------------------------------------------------------------- /GUI/FBAPECPP/MAIN.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/GUI/FBAPECPP/MAIN.C -------------------------------------------------------------------------------- /GUI/FBAPECPP/MAIN.OBJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/GUI/FBAPECPP/MAIN.OBJ -------------------------------------------------------------------------------- /GUI/FBAPECPP/MAIN.SBR: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GUI/FBAPECPP/MATH.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/GUI/FBAPECPP/MATH.C -------------------------------------------------------------------------------- /GUI/FBAPECPP/RESOURCE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/GUI/FBAPECPP/RESOURCE.H -------------------------------------------------------------------------------- /GUI/FBAPECPP/UART.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/GUI/FBAPECPP/UART.C -------------------------------------------------------------------------------- /GUI/FBAPECPP/UART.OBJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/GUI/FBAPECPP/UART.OBJ -------------------------------------------------------------------------------- /GUI/FBAPECPP/UART.SBR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/GUI/FBAPECPP/UART.SBR -------------------------------------------------------------------------------- /GUI/FBAPEWLO.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/GUI/FBAPEWLO.exe -------------------------------------------------------------------------------- /GUI/MarkWLO.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/GUI/MarkWLO.exe -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/LICENSE -------------------------------------------------------------------------------- /NINA/Audio.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/NINA/Audio.ino -------------------------------------------------------------------------------- /NINA/Communication.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/NINA/Communication.ino -------------------------------------------------------------------------------- /NINA/Config.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/NINA/Config.ino -------------------------------------------------------------------------------- /NINA/Direct_Upload_NINA_W102.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/NINA/Direct_Upload_NINA_W102.bat -------------------------------------------------------------------------------- /NINA/HelperFunctions.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/NINA/HelperFunctions.ino -------------------------------------------------------------------------------- /NINA/Mixerengine.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/NINA/Mixerengine.ino -------------------------------------------------------------------------------- /NINA/NINA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/NINA/NINA.h -------------------------------------------------------------------------------- /NINA/NINA.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/NINA/NINA.ino -------------------------------------------------------------------------------- /NINA/NINA_Pinmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/NINA/NINA_Pinmap.h -------------------------------------------------------------------------------- /NINA/SD.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/NINA/SD.ino -------------------------------------------------------------------------------- /NINA/Tools/boot_app0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/NINA/Tools/boot_app0.bin -------------------------------------------------------------------------------- /NINA/Tools/esptool.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/NINA/Tools/esptool.exe -------------------------------------------------------------------------------- /NINA/Tools/mklittlefs.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/NINA/Tools/mklittlefs.exe -------------------------------------------------------------------------------- /NINA/Update_NINA_W102.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/NINA/Update_NINA_W102.bat -------------------------------------------------------------------------------- /NINA/Webserver.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/NINA/Webserver.ino -------------------------------------------------------------------------------- /NINA/compile_and_upload_littlefs.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/NINA/compile_and_upload_littlefs.bat -------------------------------------------------------------------------------- /NINA/data/css/bootstrp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/NINA/data/css/bootstrp.css -------------------------------------------------------------------------------- /NINA/data/css/fntawsm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/NINA/data/css/fntawsm.css -------------------------------------------------------------------------------- /NINA/data/css/rndsldr.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/NINA/data/css/rndsldr.css -------------------------------------------------------------------------------- /NINA/data/fbape.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/NINA/data/fbape.cfg -------------------------------------------------------------------------------- /NINA/data/img/favico16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/NINA/data/img/favico16.png -------------------------------------------------------------------------------- /NINA/data/img/favico32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/NINA/data/img/favico32.png -------------------------------------------------------------------------------- /NINA/data/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/NINA/data/img/favicon.ico -------------------------------------------------------------------------------- /NINA/data/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/NINA/data/index.htm -------------------------------------------------------------------------------- /NINA/data/js/ajxrfrsh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/NINA/data/js/ajxrfrsh.js -------------------------------------------------------------------------------- /NINA/data/js/btstpbdl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/NINA/data/js/btstpbdl.js -------------------------------------------------------------------------------- /NINA/data/js/dynamics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/NINA/data/js/dynamics.js -------------------------------------------------------------------------------- /NINA/data/js/eq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/NINA/data/js/eq.js -------------------------------------------------------------------------------- /NINA/data/js/eq_hgcrt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/NINA/data/js/eq_hgcrt.js -------------------------------------------------------------------------------- /NINA/data/js/graphs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/NINA/data/js/graphs.js -------------------------------------------------------------------------------- /NINA/data/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/NINA/data/js/jquery.js -------------------------------------------------------------------------------- /NINA/data/js/player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/NINA/data/js/player.js -------------------------------------------------------------------------------- /NINA/data/js/plotly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/NINA/data/js/plotly.js -------------------------------------------------------------------------------- /NINA/data/js/rndsldr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/NINA/data/js/rndsldr.js -------------------------------------------------------------------------------- /NINA/data/js/smoothie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/NINA/data/js/smoothie.js -------------------------------------------------------------------------------- /NINA/data/js/vumeter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/NINA/data/js/vumeter.js -------------------------------------------------------------------------------- /NINA/data/stream.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/NINA/data/stream.json -------------------------------------------------------------------------------- /NINA/data/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/NINA/data/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /NINA/data/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/NINA/data/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /NINA/data/wifi.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/NINA/data/wifi.cfg -------------------------------------------------------------------------------- /NINA/littlefs.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/NINA/littlefs.bin -------------------------------------------------------------------------------- /NINA/partitions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/NINA/partitions.csv -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/README.md -------------------------------------------------------------------------------- /SAMD/ADC.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/SAMD/ADC.ino -------------------------------------------------------------------------------- /SAMD/Bitmaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/SAMD/Bitmaps.h -------------------------------------------------------------------------------- /SAMD/Communication.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/SAMD/Communication.ino -------------------------------------------------------------------------------- /SAMD/Display.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/SAMD/Display.ino -------------------------------------------------------------------------------- /SAMD/ExternalGPIO.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/SAMD/ExternalGPIO.ino -------------------------------------------------------------------------------- /SAMD/HelperFunctions.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/SAMD/HelperFunctions.ino -------------------------------------------------------------------------------- /SAMD/Menu.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/SAMD/Menu.ino -------------------------------------------------------------------------------- /SAMD/SAMD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/SAMD/SAMD.h -------------------------------------------------------------------------------- /SAMD/SAMD.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/SAMD/SAMD.ino -------------------------------------------------------------------------------- /SAMD/Spectrum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/SAMD/Spectrum.h -------------------------------------------------------------------------------- /SAMD/Spectrum.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/SAMD/Spectrum.ino -------------------------------------------------------------------------------- /SAMD/Uploader/About bossac.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/SAMD/Uploader/About bossac.txt -------------------------------------------------------------------------------- /SAMD/Uploader/Update_Audioplayer.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/SAMD/Uploader/Update_Audioplayer.bat -------------------------------------------------------------------------------- /SAMD/Uploader/bossac.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/SAMD/Uploader/bossac.exe -------------------------------------------------------------------------------- /SAMD/Uploader/bossaui/bossa.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/SAMD/Uploader/bossaui/bossa.exe -------------------------------------------------------------------------------- /SAMD/Uploader/bossaui/bossac.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/SAMD/Uploader/bossaui/bossac.exe -------------------------------------------------------------------------------- /SAMD/VUmeter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/SAMD/VUmeter.h -------------------------------------------------------------------------------- /SAMD/VUmeter.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/SAMD/VUmeter.ino -------------------------------------------------------------------------------- /SAMD/fpga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/SAMD/fpga.h -------------------------------------------------------------------------------- /SAMD/jtag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/SAMD/jtag.c -------------------------------------------------------------------------------- /SAMD/jtag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/SAMD/jtag.h -------------------------------------------------------------------------------- /SAMD/update_fpga_bitstream.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xn--nding-jua/Audioplayer/HEAD/SAMD/update_fpga_bitstream.bat --------------------------------------------------------------------------------