├── .github └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE.txt ├── README.md ├── companders.c ├── companders.h ├── companders_fulltest.c ├── compandit.c ├── dev └── companders-todo.md ├── makefile ├── run.sh ├── run_test_coverage.sh ├── simple-opamp-gain-circuit.pdf ├── test_companders.c └── testout.txt /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deftio/companders/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deftio/companders/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deftio/companders/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deftio/companders/HEAD/README.md -------------------------------------------------------------------------------- /companders.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deftio/companders/HEAD/companders.c -------------------------------------------------------------------------------- /companders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deftio/companders/HEAD/companders.h -------------------------------------------------------------------------------- /companders_fulltest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deftio/companders/HEAD/companders_fulltest.c -------------------------------------------------------------------------------- /compandit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deftio/companders/HEAD/compandit.c -------------------------------------------------------------------------------- /dev/companders-todo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deftio/companders/HEAD/dev/companders-todo.md -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deftio/companders/HEAD/makefile -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deftio/companders/HEAD/run.sh -------------------------------------------------------------------------------- /run_test_coverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deftio/companders/HEAD/run_test_coverage.sh -------------------------------------------------------------------------------- /simple-opamp-gain-circuit.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deftio/companders/HEAD/simple-opamp-gain-circuit.pdf -------------------------------------------------------------------------------- /test_companders.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deftio/companders/HEAD/test_companders.c -------------------------------------------------------------------------------- /testout.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deftio/companders/HEAD/testout.txt --------------------------------------------------------------------------------