├── .gitignore ├── LICENSE ├── Makefile ├── README ├── README.md ├── docs ├── 4IN8OUT-CODEC.pdf └── ADAU1452_DSP_SCH.pdf ├── fw └── ADAU1452-IPI2C.dspproj ├── i2c.c ├── license.txt ├── regmap.c ├── sigma_tcp.c └── sigma_tcp.h /.gitignore: -------------------------------------------------------------------------------- 1 | sigma_tcp 2 | tags 3 | *.swp 4 | .gdb* 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aventuri/sigma_tcp/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aventuri/sigma_tcp/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aventuri/sigma_tcp/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aventuri/sigma_tcp/HEAD/README.md -------------------------------------------------------------------------------- /docs/4IN8OUT-CODEC.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aventuri/sigma_tcp/HEAD/docs/4IN8OUT-CODEC.pdf -------------------------------------------------------------------------------- /docs/ADAU1452_DSP_SCH.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aventuri/sigma_tcp/HEAD/docs/ADAU1452_DSP_SCH.pdf -------------------------------------------------------------------------------- /fw/ADAU1452-IPI2C.dspproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aventuri/sigma_tcp/HEAD/fw/ADAU1452-IPI2C.dspproj -------------------------------------------------------------------------------- /i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aventuri/sigma_tcp/HEAD/i2c.c -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aventuri/sigma_tcp/HEAD/license.txt -------------------------------------------------------------------------------- /regmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aventuri/sigma_tcp/HEAD/regmap.c -------------------------------------------------------------------------------- /sigma_tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aventuri/sigma_tcp/HEAD/sigma_tcp.c -------------------------------------------------------------------------------- /sigma_tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aventuri/sigma_tcp/HEAD/sigma_tcp.h --------------------------------------------------------------------------------