├── .gitignore ├── Makefile ├── docs ├── CC2650.pdf ├── DDI0029.pdf ├── GD25Q64CSIG.pdf ├── GPEL3101A.pdf ├── T24C128A.pdf ├── test-points.png └── test-points.txt ├── dumps ├── fairy-blue │ └── mainboard-spi-flash.bin └── magic-green │ └── mainboard-spi-flash.bin ├── readme.md ├── tamaed ├── .prettierrc ├── index.html ├── main.js └── style.css └── test_128x128.png /.gitignore: -------------------------------------------------------------------------------- 1 | dump.bin 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaero/t-on/HEAD/Makefile -------------------------------------------------------------------------------- /docs/CC2650.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaero/t-on/HEAD/docs/CC2650.pdf -------------------------------------------------------------------------------- /docs/DDI0029.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaero/t-on/HEAD/docs/DDI0029.pdf -------------------------------------------------------------------------------- /docs/GD25Q64CSIG.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaero/t-on/HEAD/docs/GD25Q64CSIG.pdf -------------------------------------------------------------------------------- /docs/GPEL3101A.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaero/t-on/HEAD/docs/GPEL3101A.pdf -------------------------------------------------------------------------------- /docs/T24C128A.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaero/t-on/HEAD/docs/T24C128A.pdf -------------------------------------------------------------------------------- /docs/test-points.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaero/t-on/HEAD/docs/test-points.png -------------------------------------------------------------------------------- /docs/test-points.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaero/t-on/HEAD/docs/test-points.txt -------------------------------------------------------------------------------- /dumps/fairy-blue/mainboard-spi-flash.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaero/t-on/HEAD/dumps/fairy-blue/mainboard-spi-flash.bin -------------------------------------------------------------------------------- /dumps/magic-green/mainboard-spi-flash.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaero/t-on/HEAD/dumps/magic-green/mainboard-spi-flash.bin -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | # t-on 2 | 3 | - [Online firmware viewer](https://kaero.github.io/t-on/) 4 | -------------------------------------------------------------------------------- /tamaed/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaero/t-on/HEAD/tamaed/.prettierrc -------------------------------------------------------------------------------- /tamaed/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaero/t-on/HEAD/tamaed/index.html -------------------------------------------------------------------------------- /tamaed/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaero/t-on/HEAD/tamaed/main.js -------------------------------------------------------------------------------- /tamaed/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaero/t-on/HEAD/tamaed/style.css -------------------------------------------------------------------------------- /test_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaero/t-on/HEAD/test_128x128.png --------------------------------------------------------------------------------