├── .gitignore ├── LICENSE ├── README.md ├── VS15 ├── chapro_dll.vcxproj ├── chapro_dll.vcxproj.filters ├── chapro_lib.vcxproj ├── chapro_lib.vcxproj.filters ├── chapro_vs15.sln ├── gha_demo.vcxproj ├── gha_demo.vcxproj.filters ├── tst_cffa.vcxproj ├── tst_cffa.vcxproj.filters ├── tst_cffio.vcxproj ├── tst_cffio.vcxproj.filters ├── tst_cffsc.vcxproj ├── tst_cffsc.vcxproj.filters ├── tst_cifa.vcxproj ├── tst_cifa.vcxproj.filters ├── tst_cifio.vcxproj ├── tst_cifio.vcxproj.filters ├── tst_cifsc.vcxproj ├── tst_cifsc.vcxproj.filters ├── tst_dll.vcxproj ├── tst_dll.vcxproj.filters ├── tst_ffa.vcxproj ├── tst_ffa.vcxproj.filters ├── tst_ffio.vcxproj ├── tst_ffio.vcxproj.filters ├── tst_ffsc.vcxproj ├── tst_ffsc.vcxproj.filters ├── tst_gha.vcxproj ├── tst_gha.vcxproj.filters ├── tst_ifa.vcxproj ├── tst_ifa.vcxproj.filters ├── tst_iffb.vcxproj ├── tst_iffb.vcxproj.filters ├── tst_ifio.vcxproj ├── tst_ifio.vcxproj.filters ├── tst_ifsc.vcxproj └── tst_ifsc.vcxproj.filters ├── VS16 ├── chapro.sln ├── chapro_dll.vcxproj ├── chapro_dll.vcxproj.filters ├── chapro_lib.vcxproj ├── chapro_lib.vcxproj.filters ├── gha_demo.vcxproj ├── tst_cffa.vcxproj ├── tst_cffio.vcxproj ├── tst_cffsc.vcxproj ├── tst_cifa.vcxproj ├── tst_cifio.vcxproj ├── tst_cifsc.vcxproj ├── tst_dll.vcxproj ├── tst_ffa.vcxproj ├── tst_ffio.vcxproj ├── tst_ffsc.vcxproj ├── tst_fft.vcxproj ├── tst_gha.vcxproj ├── tst_ifa.vcxproj ├── tst_ifio.vcxproj ├── tst_ifsc.vcxproj ├── tst_nfc.vcxproj ├── tst_sha.vcxproj └── tst_sha.vcxproj.user ├── afc_demo ├── afc_demo.m ├── test │ ├── carrots.wav │ └── tst_iffb.mat ├── tst_iffb.bat ├── tst_iffb.exe └── tst_iffb.m ├── afc_filters.c ├── afc_flt.m ├── afc_prepare.c ├── afc_process.c ├── agc_prepare.c ├── agc_process.c ├── arsclib.h ├── bbb ├── Toolchain-arm-linux.cmake ├── build ├── carrots.wav ├── chapro-file.cfg ├── chapro-live.cfg └── install ├── bflt.h ├── bflt.m ├── cfirfb_prepare.c ├── cfirfb_process.c ├── cha_cf.h ├── cha_cf_data.h ├── cha_cff_data.h ├── cha_core.c ├── cha_fb.c ├── cha_ff.h ├── cha_ff_data.h ├── cha_fm.h ├── cha_gf.h ├── cha_gf_data.h ├── cha_gha_data.h ├── cha_if.h ├── cha_if_data.h ├── cha_scale.c ├── chapro.c ├── chapro.def ├── chapro.doc ├── chapro.h ├── chapro.pdf ├── ciirfb_design.c ├── ciirfb_prepare.c ├── ciirfb_process.c ├── configure ├── configure.bat ├── db.c ├── dciirfb_prepare.c ├── dciirfb_process.c ├── fft.c ├── firfb_prepare.c ├── firfb_process.c ├── fmins.c ├── fminsearch.c ├── freqshape.c ├── ftsc_prepare.c ├── ftsc_process.c ├── gha_demo.c ├── gha_demo.m ├── icmp_prepare.c ├── icmp_process.c ├── iirfb_design.c ├── iirfb_prepare.c ├── iirfb_process.c ├── iltass.h ├── ite_fb.h ├── makefile.arm ├── makefile.lnx ├── makefile.mac ├── makefile.mgw ├── makefile.pro ├── nad.sed ├── nfc_prepare.c ├── nfc_process.c ├── opt_afc.c ├── rfft.c ├── seriallog.cpp ├── seriallog.h ├── sha_prepare.c ├── sha_process.c ├── test ├── carrots.wav ├── cat.wav └── grab.wav ├── tst.bat ├── tst.m ├── tst.sh ├── tst_afd.plt ├── tst_bbb.c ├── tst_cffa.c ├── tst_cffa.m ├── tst_cffio.c ├── tst_cffio.m ├── tst_cffsc.c ├── tst_cffsc.m ├── tst_cifa.c ├── tst_cifa.m ├── tst_cifio.c ├── tst_cifio.m ├── tst_cifsc.c ├── tst_cifsc.m ├── tst_ffa.c ├── tst_ffa.m ├── tst_ffio.c ├── tst_ffio.m ├── tst_ffsc.c ├── tst_ffsc.m ├── tst_gha.c ├── tst_gha.m ├── tst_ifa.c ├── tst_ifa.m ├── tst_ifio.c ├── tst_ifio.m ├── tst_ifsc.c ├── tst_ifsc.m ├── tst_nad.c ├── tst_nfc.c ├── tst_nfc.m ├── tst_sha.asv ├── tst_sha.c ├── tst_sha.m ├── version.h ├── wflt.h └── wflt.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/README.md -------------------------------------------------------------------------------- /VS15/chapro_dll.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/VS15/chapro_dll.vcxproj -------------------------------------------------------------------------------- /VS15/chapro_dll.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/VS15/chapro_dll.vcxproj.filters -------------------------------------------------------------------------------- /VS15/chapro_lib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/VS15/chapro_lib.vcxproj -------------------------------------------------------------------------------- /VS15/chapro_lib.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/VS15/chapro_lib.vcxproj.filters -------------------------------------------------------------------------------- /VS15/chapro_vs15.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/VS15/chapro_vs15.sln -------------------------------------------------------------------------------- /VS15/gha_demo.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/VS15/gha_demo.vcxproj -------------------------------------------------------------------------------- /VS15/gha_demo.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/VS15/gha_demo.vcxproj.filters -------------------------------------------------------------------------------- /VS15/tst_cffa.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/VS15/tst_cffa.vcxproj -------------------------------------------------------------------------------- /VS15/tst_cffa.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/VS15/tst_cffa.vcxproj.filters -------------------------------------------------------------------------------- /VS15/tst_cffio.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/VS15/tst_cffio.vcxproj -------------------------------------------------------------------------------- /VS15/tst_cffio.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/VS15/tst_cffio.vcxproj.filters -------------------------------------------------------------------------------- /VS15/tst_cffsc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/VS15/tst_cffsc.vcxproj -------------------------------------------------------------------------------- /VS15/tst_cffsc.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/VS15/tst_cffsc.vcxproj.filters -------------------------------------------------------------------------------- /VS15/tst_cifa.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/VS15/tst_cifa.vcxproj -------------------------------------------------------------------------------- /VS15/tst_cifa.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/VS15/tst_cifa.vcxproj.filters -------------------------------------------------------------------------------- /VS15/tst_cifio.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/VS15/tst_cifio.vcxproj -------------------------------------------------------------------------------- /VS15/tst_cifio.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/VS15/tst_cifio.vcxproj.filters -------------------------------------------------------------------------------- /VS15/tst_cifsc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/VS15/tst_cifsc.vcxproj -------------------------------------------------------------------------------- /VS15/tst_cifsc.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/VS15/tst_cifsc.vcxproj.filters -------------------------------------------------------------------------------- /VS15/tst_dll.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/VS15/tst_dll.vcxproj -------------------------------------------------------------------------------- /VS15/tst_dll.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/VS15/tst_dll.vcxproj.filters -------------------------------------------------------------------------------- /VS15/tst_ffa.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/VS15/tst_ffa.vcxproj -------------------------------------------------------------------------------- /VS15/tst_ffa.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/VS15/tst_ffa.vcxproj.filters -------------------------------------------------------------------------------- /VS15/tst_ffio.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/VS15/tst_ffio.vcxproj -------------------------------------------------------------------------------- /VS15/tst_ffio.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/VS15/tst_ffio.vcxproj.filters -------------------------------------------------------------------------------- /VS15/tst_ffsc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/VS15/tst_ffsc.vcxproj -------------------------------------------------------------------------------- /VS15/tst_ffsc.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/VS15/tst_ffsc.vcxproj.filters -------------------------------------------------------------------------------- /VS15/tst_gha.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/VS15/tst_gha.vcxproj -------------------------------------------------------------------------------- /VS15/tst_gha.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/VS15/tst_gha.vcxproj.filters -------------------------------------------------------------------------------- /VS15/tst_ifa.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/VS15/tst_ifa.vcxproj -------------------------------------------------------------------------------- /VS15/tst_ifa.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/VS15/tst_ifa.vcxproj.filters -------------------------------------------------------------------------------- /VS15/tst_iffb.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/VS15/tst_iffb.vcxproj -------------------------------------------------------------------------------- /VS15/tst_iffb.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/VS15/tst_iffb.vcxproj.filters -------------------------------------------------------------------------------- /VS15/tst_ifio.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/VS15/tst_ifio.vcxproj -------------------------------------------------------------------------------- /VS15/tst_ifio.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/VS15/tst_ifio.vcxproj.filters -------------------------------------------------------------------------------- /VS15/tst_ifsc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/VS15/tst_ifsc.vcxproj -------------------------------------------------------------------------------- /VS15/tst_ifsc.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/VS15/tst_ifsc.vcxproj.filters -------------------------------------------------------------------------------- /VS16/chapro.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/VS16/chapro.sln -------------------------------------------------------------------------------- /VS16/chapro_dll.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/VS16/chapro_dll.vcxproj -------------------------------------------------------------------------------- /VS16/chapro_dll.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/VS16/chapro_dll.vcxproj.filters -------------------------------------------------------------------------------- /VS16/chapro_lib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/VS16/chapro_lib.vcxproj -------------------------------------------------------------------------------- /VS16/chapro_lib.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/VS16/chapro_lib.vcxproj.filters -------------------------------------------------------------------------------- /VS16/gha_demo.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/VS16/gha_demo.vcxproj -------------------------------------------------------------------------------- /VS16/tst_cffa.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/VS16/tst_cffa.vcxproj -------------------------------------------------------------------------------- /VS16/tst_cffio.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/VS16/tst_cffio.vcxproj -------------------------------------------------------------------------------- /VS16/tst_cffsc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/VS16/tst_cffsc.vcxproj -------------------------------------------------------------------------------- /VS16/tst_cifa.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/VS16/tst_cifa.vcxproj -------------------------------------------------------------------------------- /VS16/tst_cifio.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/VS16/tst_cifio.vcxproj -------------------------------------------------------------------------------- /VS16/tst_cifsc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/VS16/tst_cifsc.vcxproj -------------------------------------------------------------------------------- /VS16/tst_dll.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/VS16/tst_dll.vcxproj -------------------------------------------------------------------------------- /VS16/tst_ffa.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/VS16/tst_ffa.vcxproj -------------------------------------------------------------------------------- /VS16/tst_ffio.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/VS16/tst_ffio.vcxproj -------------------------------------------------------------------------------- /VS16/tst_ffsc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/VS16/tst_ffsc.vcxproj -------------------------------------------------------------------------------- /VS16/tst_fft.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/VS16/tst_fft.vcxproj -------------------------------------------------------------------------------- /VS16/tst_gha.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/VS16/tst_gha.vcxproj -------------------------------------------------------------------------------- /VS16/tst_ifa.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/VS16/tst_ifa.vcxproj -------------------------------------------------------------------------------- /VS16/tst_ifio.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/VS16/tst_ifio.vcxproj -------------------------------------------------------------------------------- /VS16/tst_ifsc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/VS16/tst_ifsc.vcxproj -------------------------------------------------------------------------------- /VS16/tst_nfc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/VS16/tst_nfc.vcxproj -------------------------------------------------------------------------------- /VS16/tst_sha.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/VS16/tst_sha.vcxproj -------------------------------------------------------------------------------- /VS16/tst_sha.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/VS16/tst_sha.vcxproj.user -------------------------------------------------------------------------------- /afc_demo/afc_demo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/afc_demo/afc_demo.m -------------------------------------------------------------------------------- /afc_demo/test/carrots.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/afc_demo/test/carrots.wav -------------------------------------------------------------------------------- /afc_demo/test/tst_iffb.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/afc_demo/test/tst_iffb.mat -------------------------------------------------------------------------------- /afc_demo/tst_iffb.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/afc_demo/tst_iffb.bat -------------------------------------------------------------------------------- /afc_demo/tst_iffb.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/afc_demo/tst_iffb.exe -------------------------------------------------------------------------------- /afc_demo/tst_iffb.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/afc_demo/tst_iffb.m -------------------------------------------------------------------------------- /afc_filters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/afc_filters.c -------------------------------------------------------------------------------- /afc_flt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/afc_flt.m -------------------------------------------------------------------------------- /afc_prepare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/afc_prepare.c -------------------------------------------------------------------------------- /afc_process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/afc_process.c -------------------------------------------------------------------------------- /agc_prepare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/agc_prepare.c -------------------------------------------------------------------------------- /agc_process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/agc_process.c -------------------------------------------------------------------------------- /arsclib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/arsclib.h -------------------------------------------------------------------------------- /bbb/Toolchain-arm-linux.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/bbb/Toolchain-arm-linux.cmake -------------------------------------------------------------------------------- /bbb/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/bbb/build -------------------------------------------------------------------------------- /bbb/carrots.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/bbb/carrots.wav -------------------------------------------------------------------------------- /bbb/chapro-file.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/bbb/chapro-file.cfg -------------------------------------------------------------------------------- /bbb/chapro-live.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/bbb/chapro-live.cfg -------------------------------------------------------------------------------- /bbb/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/bbb/install -------------------------------------------------------------------------------- /bflt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/bflt.h -------------------------------------------------------------------------------- /bflt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/bflt.m -------------------------------------------------------------------------------- /cfirfb_prepare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/cfirfb_prepare.c -------------------------------------------------------------------------------- /cfirfb_process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/cfirfb_process.c -------------------------------------------------------------------------------- /cha_cf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/cha_cf.h -------------------------------------------------------------------------------- /cha_cf_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/cha_cf_data.h -------------------------------------------------------------------------------- /cha_cff_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/cha_cff_data.h -------------------------------------------------------------------------------- /cha_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/cha_core.c -------------------------------------------------------------------------------- /cha_fb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/cha_fb.c -------------------------------------------------------------------------------- /cha_ff.h: -------------------------------------------------------------------------------- 1 | // cha_ff.h - FIR-filterbank & AGC 2 | -------------------------------------------------------------------------------- /cha_ff_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/cha_ff_data.h -------------------------------------------------------------------------------- /cha_fm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/cha_fm.h -------------------------------------------------------------------------------- /cha_gf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/cha_gf.h -------------------------------------------------------------------------------- /cha_gf_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/cha_gf_data.h -------------------------------------------------------------------------------- /cha_gha_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/cha_gha_data.h -------------------------------------------------------------------------------- /cha_if.h: -------------------------------------------------------------------------------- 1 | // cha_if.h - IIR-filterbank & AGC 2 | -------------------------------------------------------------------------------- /cha_if_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/cha_if_data.h -------------------------------------------------------------------------------- /cha_scale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/cha_scale.c -------------------------------------------------------------------------------- /chapro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/chapro.c -------------------------------------------------------------------------------- /chapro.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/chapro.def -------------------------------------------------------------------------------- /chapro.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/chapro.doc -------------------------------------------------------------------------------- /chapro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/chapro.h -------------------------------------------------------------------------------- /chapro.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/chapro.pdf -------------------------------------------------------------------------------- /ciirfb_design.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/ciirfb_design.c -------------------------------------------------------------------------------- /ciirfb_prepare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/ciirfb_prepare.c -------------------------------------------------------------------------------- /ciirfb_process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/ciirfb_process.c -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/configure -------------------------------------------------------------------------------- /configure.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/configure.bat -------------------------------------------------------------------------------- /db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/db.c -------------------------------------------------------------------------------- /dciirfb_prepare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/dciirfb_prepare.c -------------------------------------------------------------------------------- /dciirfb_process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/dciirfb_process.c -------------------------------------------------------------------------------- /fft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/fft.c -------------------------------------------------------------------------------- /firfb_prepare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/firfb_prepare.c -------------------------------------------------------------------------------- /firfb_process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/firfb_process.c -------------------------------------------------------------------------------- /fmins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/fmins.c -------------------------------------------------------------------------------- /fminsearch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/fminsearch.c -------------------------------------------------------------------------------- /freqshape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/freqshape.c -------------------------------------------------------------------------------- /ftsc_prepare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/ftsc_prepare.c -------------------------------------------------------------------------------- /ftsc_process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/ftsc_process.c -------------------------------------------------------------------------------- /gha_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/gha_demo.c -------------------------------------------------------------------------------- /gha_demo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/gha_demo.m -------------------------------------------------------------------------------- /icmp_prepare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/icmp_prepare.c -------------------------------------------------------------------------------- /icmp_process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/icmp_process.c -------------------------------------------------------------------------------- /iirfb_design.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/iirfb_design.c -------------------------------------------------------------------------------- /iirfb_prepare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/iirfb_prepare.c -------------------------------------------------------------------------------- /iirfb_process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/iirfb_process.c -------------------------------------------------------------------------------- /iltass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/iltass.h -------------------------------------------------------------------------------- /ite_fb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/ite_fb.h -------------------------------------------------------------------------------- /makefile.arm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/makefile.arm -------------------------------------------------------------------------------- /makefile.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/makefile.lnx -------------------------------------------------------------------------------- /makefile.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/makefile.mac -------------------------------------------------------------------------------- /makefile.mgw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/makefile.mgw -------------------------------------------------------------------------------- /makefile.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/makefile.pro -------------------------------------------------------------------------------- /nad.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/nad.sed -------------------------------------------------------------------------------- /nfc_prepare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/nfc_prepare.c -------------------------------------------------------------------------------- /nfc_process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/nfc_process.c -------------------------------------------------------------------------------- /opt_afc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/opt_afc.c -------------------------------------------------------------------------------- /rfft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/rfft.c -------------------------------------------------------------------------------- /seriallog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/seriallog.cpp -------------------------------------------------------------------------------- /seriallog.h: -------------------------------------------------------------------------------- 1 | void seriallog(const char *msg); -------------------------------------------------------------------------------- /sha_prepare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/sha_prepare.c -------------------------------------------------------------------------------- /sha_process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/sha_process.c -------------------------------------------------------------------------------- /test/carrots.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/test/carrots.wav -------------------------------------------------------------------------------- /test/cat.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/test/cat.wav -------------------------------------------------------------------------------- /test/grab.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/test/grab.wav -------------------------------------------------------------------------------- /tst.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/tst.bat -------------------------------------------------------------------------------- /tst.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/tst.m -------------------------------------------------------------------------------- /tst.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/tst.sh -------------------------------------------------------------------------------- /tst_afd.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/tst_afd.plt -------------------------------------------------------------------------------- /tst_bbb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/tst_bbb.c -------------------------------------------------------------------------------- /tst_cffa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/tst_cffa.c -------------------------------------------------------------------------------- /tst_cffa.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/tst_cffa.m -------------------------------------------------------------------------------- /tst_cffio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/tst_cffio.c -------------------------------------------------------------------------------- /tst_cffio.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/tst_cffio.m -------------------------------------------------------------------------------- /tst_cffsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/tst_cffsc.c -------------------------------------------------------------------------------- /tst_cffsc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/tst_cffsc.m -------------------------------------------------------------------------------- /tst_cifa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/tst_cifa.c -------------------------------------------------------------------------------- /tst_cifa.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/tst_cifa.m -------------------------------------------------------------------------------- /tst_cifio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/tst_cifio.c -------------------------------------------------------------------------------- /tst_cifio.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/tst_cifio.m -------------------------------------------------------------------------------- /tst_cifsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/tst_cifsc.c -------------------------------------------------------------------------------- /tst_cifsc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/tst_cifsc.m -------------------------------------------------------------------------------- /tst_ffa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/tst_ffa.c -------------------------------------------------------------------------------- /tst_ffa.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/tst_ffa.m -------------------------------------------------------------------------------- /tst_ffio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/tst_ffio.c -------------------------------------------------------------------------------- /tst_ffio.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/tst_ffio.m -------------------------------------------------------------------------------- /tst_ffsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/tst_ffsc.c -------------------------------------------------------------------------------- /tst_ffsc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/tst_ffsc.m -------------------------------------------------------------------------------- /tst_gha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/tst_gha.c -------------------------------------------------------------------------------- /tst_gha.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/tst_gha.m -------------------------------------------------------------------------------- /tst_ifa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/tst_ifa.c -------------------------------------------------------------------------------- /tst_ifa.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/tst_ifa.m -------------------------------------------------------------------------------- /tst_ifio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/tst_ifio.c -------------------------------------------------------------------------------- /tst_ifio.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/tst_ifio.m -------------------------------------------------------------------------------- /tst_ifsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/tst_ifsc.c -------------------------------------------------------------------------------- /tst_ifsc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/tst_ifsc.m -------------------------------------------------------------------------------- /tst_nad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/tst_nad.c -------------------------------------------------------------------------------- /tst_nfc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/tst_nfc.c -------------------------------------------------------------------------------- /tst_nfc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/tst_nfc.m -------------------------------------------------------------------------------- /tst_sha.asv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/tst_sha.asv -------------------------------------------------------------------------------- /tst_sha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/tst_sha.c -------------------------------------------------------------------------------- /tst_sha.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/tst_sha.m -------------------------------------------------------------------------------- /version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/version.h -------------------------------------------------------------------------------- /wflt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/wflt.h -------------------------------------------------------------------------------- /wflt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoysTownOrg/chapro/HEAD/wflt.m --------------------------------------------------------------------------------