├── .gitignore ├── README.md ├── base.py ├── firmware ├── Makefile ├── linker.ld └── main.c ├── ios.py └── ncoCounter.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trabucayre/litexOnColorlightLab004/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trabucayre/litexOnColorlightLab004/HEAD/README.md -------------------------------------------------------------------------------- /base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trabucayre/litexOnColorlightLab004/HEAD/base.py -------------------------------------------------------------------------------- /firmware/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trabucayre/litexOnColorlightLab004/HEAD/firmware/Makefile -------------------------------------------------------------------------------- /firmware/linker.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trabucayre/litexOnColorlightLab004/HEAD/firmware/linker.ld -------------------------------------------------------------------------------- /firmware/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trabucayre/litexOnColorlightLab004/HEAD/firmware/main.c -------------------------------------------------------------------------------- /ios.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trabucayre/litexOnColorlightLab004/HEAD/ios.py -------------------------------------------------------------------------------- /ncoCounter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trabucayre/litexOnColorlightLab004/HEAD/ncoCounter.py --------------------------------------------------------------------------------